/* =============================================================
   BIO Home Health Services, Inc.
   Single-page static site · vanilla CSS · warm orange theme
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #faf5ee;
  --bg-alt:    #fffdf9;
  --surface:   #ffffff;
  --deep:      #2c241d;
  --deep-2:    #221b15;
  --text:      #2a221c;
  --text-soft: #6f6256;
  --primary:   #d9691c;
  --primary-d: #b9540f;
  --accent:    #e0a02f;
  --accent-soft:#f8e7d1;
  --on-deep:   #f4ebe2;
  --on-deep-soft:#c8b3a2;
  --line:      rgba(42,34,28,0.12);
  --card-sh:   0 1px 2px rgba(44,36,29,.04), 0 14px 34px -18px rgba(44,36,29,.26);
  --card-sh-h: 0 1px 2px rgba(44,36,29,.05), 0 26px 54px -22px rgba(44,36,29,.40);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --sec-pad: clamp(4.5rem, 9vw, 8rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--primary); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; color: var(--text); }
.display { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 4.9rem); font-weight: 700; letter-spacing: -0.025em; }
.h2 { font-size: clamp(1.95rem, 1.4rem + 2.2vw, 3.1rem); }
.h3 { font-size: clamp(1.35rem, 1.15rem + 1vw, 1.8rem); }
.lead { font-size: clamp(1.1rem, 1.02rem + 0.5vw, 1.38rem); line-height: 1.55; color: var(--text-soft); font-weight: 400; }
.kicker {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: .7rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.kicker.center::after { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.wrap-wide { max-width: 1340px; }
.section { padding-block: var(--sec-pad); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--deep); color: var(--on-deep); }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--deep .lead { color: var(--on-deep-soft); }
.section--deep .kicker { color: var(--accent); }
.sec-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin-top: 1rem; }
.sec-head .lead { margin-top: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  border: 1.5px solid transparent; transition: transform .25s ease, background .25s, box-shadow .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 12px 26px -12px color-mix(in srgb, var(--primary) 70%, transparent); }
.btn--primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 18px 34px -14px color-mix(in srgb, var(--primary) 75%, transparent); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(0,0,0,.5); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding-block: 1.1rem;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; line-height: 1; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 12px; overflow: hidden;
  display: grid; place-items: center; flex: none; background: #fff;
  box-shadow: 0 2px 10px -4px rgba(0,0,0,.25);
}
.brand__mark img { width: 86%; height: 86%; object-fit: contain; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.01em; color: #fff; transition: color .35s; }
.brand__name small { display: block; font-family: var(--font-body); font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: 3px; transition: color .35s; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .55rem .8rem; border-radius: 999px; font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.9);
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.16); }
.nav a.is-active::after { content: ""; display: block; height: 2px; background: var(--accent); margin: 2px .8rem 0; }
.header.is-solid .nav a.is-active { color: var(--primary); }
.nav a.apply { color: #fff; background: var(--primary); margin-left: .35rem; }
.nav a.apply:hover { background: var(--primary-d); color: #fff; }

/* scrolled state */
.header.is-solid { background: color-mix(in srgb, var(--bg-alt) 92%, transparent); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(0,0,0,.5); padding-block: .65rem; }
.header.is-solid .brand__name { color: var(--text); }
.header.is-solid .brand__name small { color: var(--text-soft); }
.header.is-solid .nav a { color: var(--text-soft); }
.header.is-solid .nav a:hover { color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); }
.header.is-solid .nav a.apply { color: #fff; }
.header.is-solid .menu-btn span { background: var(--text); }

/* mobile menu button */
.menu-btn { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 0; border-radius: 10px; }
.menu-btn span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
.menu-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
   linear-gradient(180deg, rgba(38,26,16,.58) 0%, rgba(38,26,16,.34) 38%, rgba(38,26,16,.66) 100%),
   linear-gradient(90deg, rgba(38,26,16,.62), rgba(38,26,16,.08) 72%); }
.hero__inner { position: relative; z-index: 1; padding-block: 8rem 5rem; max-width: 900px; }
.hero .kicker { color: #fff; }
.hero .kicker::before { background: var(--accent); }
.hero h1 { color: #fff; margin: 1.1rem 0 .5rem; }
.hero .tagline { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 1rem + 1.8vw, 2.3rem); color: #fff; opacity: .96; }
.hero p.lead { color: rgba(255,255,255,.92); margin-top: 1.6rem; max-width: 600px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.scroll-cue { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.8); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.scroll-cue span { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); transform-origin: top; opacity:.5 } 50%{ transform: scaleY(1); opacity:1 } }

/* trust strip under hero */
.trust { background: var(--deep-2); color: var(--on-deep); }
.trust .wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; padding-block: 1.6rem; }
.trust__item { display: flex; align-items: center; gap: .9rem; justify-content: center; font-weight: 600; font-size: .96rem; }
.trust__item b { color: #fff; }
.trust__item .ic { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--primary); color:#fff; flex: none; }
.trust__item .ic svg { width: 18px; height: 18px; }

/* ---------- Serving band ---------- */
.serving { background: var(--accent-soft); }
.serving .wrap { padding-block: 2.4rem; text-align: center; }
.serving .label { font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--primary-d); }
.serving .counties { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-top: 1.2rem; }
.serving .counties span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem; font-weight: 700; font-size: .9rem; color: var(--text); }

/* ---------- Service intro opener ---------- */
.service-open { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.service-open__media { position: relative; }
.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-sh); background: var(--deep); aspect-ratio: 16/12; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.service-open__body .lead { margin-top: 1.25rem; }
.service-open__body .btn { margin-top: 1.8rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--card-sh);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--card-sh-h); }
.card__media { aspect-ratio: 3/2; overflow: hidden; background: var(--accent-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: clamp(1.35rem, 2.4vw, 1.8rem); }
.card h3 { font-size: 1.18rem; }
.card h3.up { text-transform: uppercase; font-family: var(--font-body); font-weight: 800; font-size: .96rem; letter-spacing: .05em; color: var(--primary); }
.card p { margin-top: .55rem; color: var(--text-soft); font-size: .96rem; }

/* numbered specialty card (no image) */
.card--num .card__body { padding-top: clamp(1.6rem,2.6vw,2rem); }
.card .num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--accent); display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); margin-bottom: 1rem; }

/* ---------- Two-column lists (qualify / insurance) ---------- */
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem,3vw,2.6rem); box-shadow: var(--card-sh); }
.panel .h3 { margin-bottom: 1.2rem; }
.checklist { list-style: none; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--text-soft); }
.checklist li .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: #fff; flex: none; display: grid; place-items: center; margin-top: 2px; }
.checklist li .tick svg { width: 12px; height: 12px; }
.checklist.tight li { color: var(--text); font-weight: 500; }
.note { font-size: .82rem; color: var(--text-soft); margin-top: 1.2rem; font-style: italic; }

/* ---------- Values / commitment ---------- */
.values { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem 2rem; margin-top: clamp(1.5rem,3vw,2.5rem); }
.values li { display: flex; gap: .9rem; align-items: flex-start; font-size: 1.02rem; }
.values li .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex: none; margin-top: .55rem; }

/* CEO / mission quote band */
.quote { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.quote__mark { width: clamp(90px,12vw,130px); }
.quote blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.35rem, 1.1rem + 1.4vw, 2.1rem); line-height: 1.34; color: #fff; }
.quote cite { display: block; margin-top: 1.4rem; font-family: var(--font-body); font-style: normal; font-weight: 800; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* ---------- Callout band ---------- */
.callout { text-align: center; }
.callout .h2 { max-width: 18ch; margin-inline: auto; }
.callout p { max-width: 56ch; margin: 1.2rem auto 2rem; color: var(--on-deep-soft); }

/* ---------- About support layout ---------- */
.support { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.support__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-sh); aspect-ratio: 4/3; }
.support__media img { width: 100%; height: 100%; object-fit: cover; }
.mv { display: grid; gap: 1.4rem; margin-top: 2rem; }
.mv__item { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; box-shadow: var(--card-sh); }
.mv__item h4 { font-family: var(--font-body); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: .6rem; }
.mv__item p { color: var(--text-soft); font-size: .98rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: clamp(1rem,2.5vw,1.6rem); }
.team-card { text-align: center; }
.team-card__photo { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-sh); background: var(--accent-soft); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-body); font-weight: 800; font-size: .96rem; margin-top: 1rem; line-height: 1.3; }
.team-card span { display: block; color: var(--text-soft); font-size: .85rem; margin-top: .2rem; }

/* ---------- Forms ---------- */
.forms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.6rem); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem,2.6vw,2.1rem); box-shadow: var(--card-sh); display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s; }
.form-card:hover { transform: translateY(-5px); box-shadow: var(--card-sh-h); }
.form-card__ic { width: 54px; height: 54px; border-radius: 14px; background: var(--accent-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 1.2rem; }
.form-card__ic svg { width: 26px; height: 26px; }
.form-card h3 { font-size: 1.2rem; }
.form-card p { color: var(--text-soft); font-size: .95rem; margin-top: .55rem; flex: 1 1 auto; }
.form-card .btn { margin-top: 1.5rem; align-self: flex-start; }
.forms-apply { margin-top: clamp(1.5rem,3vw,2.2rem); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; background: var(--accent-soft); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.forms-apply p { font-weight: 600; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: stretch; }
.contact__panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem,3vw,2.8rem); box-shadow: var(--card-sh); }
.contact__rows { display: grid; gap: 1.4rem; margin-top: 1.8rem; }
.crow { display: flex; gap: 1rem; align-items: flex-start; }
.crow .ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--primary); }
.crow .ic svg { width: 22px; height: 22px; }
.crow .lbl { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }
.crow a, .crow .val { font-size: 1.06rem; font-weight: 600; color: var(--text); }
.crow a:hover { color: var(--primary); }
.crow .val.small { font-weight: 500; font-size: 1rem; line-height: 1.5; }
.email-cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.email-cta span { color: var(--text-soft); font-size: .92rem; }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-sh); min-height: 400px; border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: grayscale(.12); }

/* ---------- Footer ---------- */
.footer { background: var(--deep-2); color: var(--on-deep); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1.1fr; gap: clamp(2rem,4vw,3rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: var(--on-deep-soft); margin-top: 1rem; max-width: 34ch; font-size: .95rem; }
.footer h4 { font-family: var(--font-body); font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: grid; gap: .65rem; }
.footer ul a, .footer address { color: var(--on-deep-soft); font-style: normal; font-size: .95rem; line-height: 1.7; }
.footer ul a:hover { color: #fff; }
.footer address b { color: #fff; font-weight: 700; }
.footer address a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; color: var(--on-deep-soft); font-size: .85rem; }
.footer__credit { text-align: center; margin-top: 1.4rem; color: var(--on-deep-soft); font-size: .85rem; }
.footer__credit a { color: #fff; font-weight: 700; letter-spacing: .04em; border-bottom: 1px solid var(--accent); padding-bottom: 1px; transition: color .2s; }
.footer__credit a:hover { color: var(--accent); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70; width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff; border: 0; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px color-mix(in srgb, var(--primary) 70%, transparent), 0 2px 6px rgba(0,0,0,.18);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .25s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--primary-d); }
.to-top.show:hover { transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity .2s; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .forms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { position: fixed; top: 0; left: 0; right: 0; width: auto; background: var(--bg-alt); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .15rem; padding: 5.25rem 1.25rem 1.5rem; transform: translateY(-105%); transition: transform .42s cubic-bezier(.22,.61,.36,1); box-shadow: 0 26px 54px -26px rgba(0,0,0,.55); z-index: 90; max-height: 100svh; overflow-y: auto; }
  .menu-open .nav { transform: none; }
  .nav a { color: var(--text); font-size: 1rem; padding: .85rem 1rem; border-radius: 12px; text-transform: none; letter-spacing: 0; }
  .nav a:hover { background: color-mix(in srgb, var(--primary) 10%, transparent); }
  .nav a.apply { margin-left: 0; margin-top: .6rem; justify-content: center; }
  .menu-btn { display: flex; z-index: 110; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(20,14,8,.5); opacity: 0; visibility: hidden; transition: opacity .35s; z-index: 80; }
  .menu-open .nav-scrim { opacity: 1; visibility: visible; }
  .service-open { grid-template-columns: 1fr; }
  .service-open__media { order: -1; }
  .cols { grid-template-columns: 1fr; }
  .quote { grid-template-columns: 1fr; text-align: center; }
  .quote__mark { margin-inline: auto; }
  .support { grid-template-columns: 1fr; }
  .support__media { order: -1; }
  .contact { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .trust .wrap { grid-template-columns: 1fr; gap: .8rem; }
  .trust__item { justify-content: flex-start; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .footer__top { grid-template-columns: 1fr; }
}
