/* =============================================================
   Circle & Thread — Custom Embroidery
   Master stylesheet
   -------------------------------------------------------------
   Structure:
     1. Design tokens (:root)            ← change brand here
     2. Reset & base
     3. Typography
     4. Layout helpers (.wrap / .section)
     5. Brand devices (eyebrow, stitch line)
     6. Buttons
     7. Header / navigation
     8. Footer
     9. Hero + page hero + breadcrumbs
    10. Components (cards, tiles, process, values, CTA band)
    11. Gallery filter + media placeholders
    12. Forms
    13. Motion / reveal
    14. Responsive
   ============================================================= */

/* 1. DESIGN TOKENS ------------------------------------------- */
:root{
  /* Brand colour, pulled from the logo */
  --navy:      #16233f;
  --navy-800:  #101a30;
  --navy-900:  #0b1424;
  --red:       #c8102e;   /* Canadian red */
  --red-700:   #a00c24;
  --ink:       #171c26;   /* body copy */
  --muted:     #5b6473;   /* secondary copy */
  --cream:     #f7f5f0;   /* page background (matches logo) */
  --cream-2:   #efece4;   /* alt band */
  --paper:     #ffffff;
  --line:      #e5e0d5;   /* warm hairline */
  --line-2:    #d9d3c6;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  /* Running-stitch line drawn from the logo's dashed arc */
  --stitch: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%25' height='6'><line x1='2' y1='3' x2='99%25' y2='3' stroke='%23c8102e' stroke-width='4' stroke-dasharray='1 13' stroke-linecap='round'/></svg>");
  --stitch-navy: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%25' height='6'><line x1='2' y1='3' x2='99%25' y2='3' stroke='%2316233f' stroke-width='4' stroke-dasharray='1 13' stroke-linecap='round'/></svg>");
  --stitch-cream: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%25' height='6'><line x1='2' y1='3' x2='99%25' y2='3' stroke='%23f7f5f0' stroke-width='4' stroke-dasharray='1 13' stroke-linecap='round'/></svg>");

  /* Radius, shadow, spacing */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(16,26,48,.06), 0 4px 14px rgba(16,26,48,.05);
  --shadow-md: 0 10px 30px rgba(16,26,48,.10);
  --wrap: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* 2. RESET & BASE ------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:1.02rem;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; height:auto; }
a{ color:var(--red-700); text-decoration:none; }
a:hover{ text-decoration:underline; }
:focus-visible{ outline:3px solid var(--red); outline-offset:2px; border-radius:3px; }
hr{ border:0; height:6px; background-image:var(--stitch); background-repeat:no-repeat; margin:2.5rem 0; }

/* 3. TYPOGRAPHY --------------------------------------------- */
h1,h2,h3,h4{ font-family:var(--display); color:var(--navy); line-height:1.12; margin:0 0 .5em; font-weight:600; letter-spacing:-.01em; }
h1{ font-size:clamp(2.3rem, 1.4rem + 3.6vw, 3.9rem); font-weight:600; }
h2{ font-size:clamp(1.8rem, 1.2rem + 2.2vw, 2.7rem); }
h3{ font-size:clamp(1.25rem, 1rem + 1vw, 1.55rem); }
h4{ font-size:1.12rem; }
p{ margin:0 0 1.1rem; }
.lead{ font-size:clamp(1.08rem,1rem + .5vw,1.3rem); color:#33404f; }
strong{ font-weight:700; }
.muted{ color:var(--muted); }
ul.ticks{ list-style:none; padding:0; margin:1.2rem 0; }
ul.ticks li{ position:relative; padding:.35rem 0 .35rem 2rem; }
ul.ticks li::before{
  content:""; position:absolute; left:0; top:.72em; width:18px; height:6px;
  background-image:var(--stitch); background-repeat:no-repeat;
}

/* 4. LAYOUT ------------------------------------------------- */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section--tight{ padding-block:clamp(2.5rem,1.6rem + 3vw,4rem); }
.section--cream2{ background:var(--cream-2); }
.section--paper{ background:var(--paper); }
.section--navy{ background:var(--navy); color:#e9edf5; }
.section--navy h2,.section--navy h3{ color:#fff; }
.grid{ display:grid; gap:clamp(1.4rem,1rem + 2vw,2.4rem); }
.cols-2{ grid-template-columns:repeat(2,1fr); }
.cols-3{ grid-template-columns:repeat(3,1fr); }
.cols-4{ grid-template-columns:repeat(4,1fr); }
.center{ text-align:center; }
.section-head{ max-width:44rem; margin:0 auto 2.6rem; }
.section-head.center{ text-align:center; }

/* 5. BRAND DEVICES ------------------------------------------ */
.eyebrow{
  display:inline-flex; align-items:center; gap:.7rem;
  font-family:var(--sans); font-weight:700; font-size:.78rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--red);
  margin:0 0 1rem;
}
.eyebrow::before{ content:""; width:26px; height:6px; background-image:var(--stitch); background-repeat:no-repeat; }
.center .eyebrow{ justify-content:center; }
.eyebrow--navy{ color:#ffb3bd; }
.eyebrow--navy::before{ background-image:var(--stitch); }

.stitch-rule{ height:6px; background-image:var(--stitch); background-repeat:no-repeat; border:0; }

/* 6. BUTTONS ------------------------------------------------ */
.btn{
  --bg:var(--red); --fg:#fff;
  display:inline-flex; align-items:center; gap:.55rem;
  font-family:var(--sans); font-weight:700; font-size:.98rem; line-height:1;
  padding:.92rem 1.5rem; border-radius:var(--r-sm);
  background:var(--bg); color:var(--fg); border:2px solid var(--bg);
  cursor:pointer; transition:transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  text-decoration:none; white-space:nowrap;
}
.btn:hover{ text-decoration:none; transform:translateY(-2px); background:var(--red-700); border-color:var(--red-700); }
.btn--ghost{ --bg:transparent; --fg:var(--navy); border-color:var(--navy); }
.btn--ghost:hover{ --bg:var(--navy); --fg:#fff; background:var(--navy); border-color:var(--navy); }
.btn--onnavy{ --bg:#fff; --fg:var(--navy); border-color:#fff; }
.btn--onnavy:hover{ --bg:var(--cream); border-color:var(--cream); background:var(--cream); color:var(--navy); }
.btn--ghost-light{ --bg:transparent; --fg:#fff; border-color:rgba(255,255,255,.6); }
.btn--ghost-light:hover{ --bg:#fff; --fg:var(--navy); background:#fff; border-color:#fff; }
.btn--lg{ padding:1.05rem 1.8rem; font-size:1.04rem; }
.btn-row{ display:flex; flex-wrap:wrap; gap:.9rem; align-items:center; }
.arrow{ transition:transform .2s ease; }
.btn:hover .arrow{ transform:translateX(3px); }

/* 7. HEADER ------------------------------------------------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(247,245,240,.86); backdrop-filter:saturate(1.4) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:1rem; min-height:74px; }
.brand{ display:inline-flex; align-items:center; gap:.7rem; text-decoration:none; }
.brand:hover{ text-decoration:none; }
.brand__mark{ width:44px; height:44px; flex:0 0 auto; }
.brand__text{ display:flex; flex-direction:column; line-height:1; }
.brand__name{
  font-family:var(--display); font-weight:600; font-size:1.32rem; color:var(--navy);
  letter-spacing:.02em;
}
.brand__name .amp{ color:var(--red); }
.brand__tag{
  font-family:var(--sans); font-size:.6rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--muted); margin-top:3px; font-weight:600;
}
.nav{ display:flex; align-items:center; gap:.35rem; }
.nav a{
  color:var(--navy); font-weight:600; font-size:.96rem; padding:.55rem .8rem; border-radius:6px;
  text-decoration:none; position:relative;
}
.nav a:hover{ background:rgba(22,35,63,.06); text-decoration:none; }
.nav a[aria-current="page"]{ color:var(--red); }
.nav a[aria-current="page"]::after{
  content:""; position:absolute; left:.8rem; right:.8rem; bottom:.28rem; height:5px;
  background-image:var(--stitch); background-repeat:no-repeat;
}
.header-cta{ margin-left:.4rem; }
.nav-toggle{
  display:none; width:46px; height:46px; border:1px solid var(--line-2); border-radius:8px;
  background:var(--paper); cursor:pointer; align-items:center; justify-content:center;
}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  content:""; display:block; width:22px; height:2px; background:var(--navy); border-radius:2px; position:relative; transition:.2s;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }
.nav-toggle[aria-expanded="true"] span{ background:transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); }

/* 8. FOOTER ------------------------------------------------- */
.site-footer{ background:var(--navy-900); color:#c4ccda; }
.footer-top{ padding-block:clamp(3rem,2rem + 3vw,4.5rem); }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:2.4rem; }
.footer-brand__lockup{ display:flex; align-items:center; gap:.8rem; margin-bottom:1rem; }
.footer-brand__badge{ width:56px; height:56px; }
.footer-brand__name{ font-family:var(--display); font-size:1.5rem; color:#fff; line-height:1; }
.footer-brand__name .amp{ color:#ff8493; }
.footer-brand__tag{ font-size:.62rem; letter-spacing:.24em; text-transform:uppercase; color:#8f9bb0; margin-top:5px; }
.footer-brand p{ color:#9aa6ba; max-width:32ch; font-size:.96rem; }
.footer-col h4{ color:#fff; font-family:var(--sans); font-weight:700; font-size:.82rem; letter-spacing:.16em; text-transform:uppercase; margin-bottom:1rem; }
.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col li{ margin-bottom:.6rem; }
.footer-col a{ color:#c4ccda; text-decoration:none; font-size:.96rem; }
.footer-col a:hover{ color:#fff; text-decoration:underline; }
.footer-contact a{ display:inline-block; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.09); padding-block:1.3rem; }
.footer-bottom .wrap{ display:flex; flex-wrap:wrap; gap:.6rem 1.5rem; align-items:center; justify-content:space-between; }
.footer-bottom p{ margin:0; font-size:.85rem; color:#8f9bb0; }
.maple{ color:var(--red); }

/* 9. HERO / PAGE HERO / BREADCRUMBS ------------------------- */
.hero{ position:relative; overflow:hidden; padding-block:clamp(3rem,2rem + 5vw,6rem); }
.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,1rem + 4vw,4rem); align-items:center; }
.hero h1{ margin-bottom:.6rem; }
.hero h1 em{ font-style:italic; color:var(--red); font-weight:500; }
.hero__chips{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.6rem; }
.chip{
  display:inline-flex; align-items:center; gap:.5rem; font-size:.82rem; font-weight:600;
  color:var(--navy); background:var(--paper); border:1px solid var(--line);
  padding:.5rem .85rem; border-radius:999px;
}
.chip .dot{ width:8px; height:8px; border-radius:50%; background:var(--red); }
.hero__art{ position:relative; }
.hero__card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:clamp(1.6rem,1rem + 3vw,2.8rem); box-shadow:var(--shadow-md); position:relative;
}
.hero__card::before{
  content:""; position:absolute; inset:12px; border:2px dashed rgba(200,16,46,.30); border-radius:12px; pointer-events:none;
}
.hero__card img{ width:100%; }
.hero__est{
  position:absolute; top:-14px; right:-10px; background:var(--navy); color:#fff;
  font-family:var(--sans); font-weight:700; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase;
  padding:.55rem .9rem; border-radius:999px; box-shadow:var(--shadow-sm); z-index:2;
}
.hero__est .maple{ color:#ff8493; }

.page-hero{ background:var(--navy); color:#e9edf5; padding-block:clamp(2.6rem,2rem + 3vw,4.2rem); position:relative; }
.page-hero h1{ color:#fff; margin:.4rem 0 .5rem; }
.page-hero p{ color:#c4ccda; max-width:52ch; margin:0; }
.page-hero .eyebrow{ color:#ff8493; }
.breadcrumbs{ font-size:.85rem; color:#9aa6ba; margin-bottom:.4rem; }
.breadcrumbs a{ color:#c4ccda; }
.breadcrumbs a:hover{ color:#fff; }
.breadcrumbs span{ color:#6d7893; }
.breadcrumbs [aria-current]{ color:#ff8493; }

/* 10. COMPONENTS -------------------------------------------- */
/* Service cards */
.card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:1.8rem; box-shadow:var(--shadow-sm); position:relative; height:100%;
  transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
  display:flex; flex-direction:column;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--line-2); }
.card__ico{
  width:52px; height:52px; border-radius:12px; display:grid; place-items:center;
  background:rgba(200,16,46,.08); color:var(--red); margin-bottom:1.1rem;
}
.card__ico svg{ width:26px; height:26px; }
.card h3{ margin-bottom:.4rem; }
.card p{ color:var(--muted); margin-bottom:1rem; }
.card__link{ margin-top:auto; font-weight:700; color:var(--red-700); display:inline-flex; align-items:center; gap:.4rem; }
.card__link:hover{ text-decoration:none; }
.card--soon{ background:var(--cream); border-style:dashed; border-color:var(--line-2); }
.card--soon .card__ico{ background:rgba(22,35,63,.06); color:var(--navy); }
.badge-soon{
  position:absolute; top:1.2rem; right:1.2rem; font-size:.66rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--navy); background:var(--cream-2); border:1px solid var(--line-2);
  padding:.3rem .6rem; border-radius:999px; white-space:nowrap;
}
/* inline badge inside a heading gets a touch of breathing room */
h2 .badge-soon{ margin-left:.5rem; font-size:.6rem; }

/* What-we-make tiles / work tiles with graceful photo placeholders */
.tile{ display:flex; flex-direction:column; }
.tile figcaption,.work__cap{ padding-top:1rem; }
.tile h3,.work__cap h3{ font-size:1.2rem; margin-bottom:.25rem; }
.tile p,.work__cap p{ color:var(--muted); font-size:.95rem; margin:0; }
.media{
  position:relative; aspect-ratio:4/3; border-radius:var(--r-md); overflow:hidden;
  background:var(--cream-2); border:1px solid var(--line);
  display:grid; place-items:center;
}
.media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:2; }
.media img.is-missing{ display:none; }               /* JS/onerror hides broken img → placeholder shows */
.media__ph{
  text-align:center; color:var(--navy); padding:1rem; z-index:1;
}
.media__ph .crest{ width:64px; height:64px; opacity:.5; margin:0 auto .5rem; }
.media__ph span{ display:block; font-size:.74rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.tag{
  position:absolute; top:.8rem; left:.8rem; z-index:3;
  font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  background:rgba(22,35,63,.92); color:#fff; padding:.32rem .6rem; border-radius:999px;
}

/* Process steps (real ordered sequence → numbered) */
.steps{ counter-reset:step; }
.step{ position:relative; padding-left:0; }
.step__n{
  font-family:var(--display); font-size:2.4rem; color:var(--red); font-weight:600; line-height:1;
  display:flex; align-items:baseline; gap:.5rem; margin-bottom:.7rem;
}
.step__n::after{ content:""; flex:1; height:6px; background-image:var(--stitch); background-repeat:no-repeat; }
.step h3{ font-size:1.2rem; }
.step p{ color:var(--muted); margin:0; }

/* Value list */
.value{ display:flex; gap:1rem; align-items:flex-start; }
.value__ico{ flex:0 0 auto; width:44px; height:44px; border-radius:10px; background:rgba(200,16,46,.08); color:var(--red); display:grid; place-items:center; }
.value__ico svg{ width:22px; height:22px; }
.value h3{ font-size:1.12rem; margin-bottom:.25rem; }
.value p{ color:var(--muted); margin:0; font-size:.96rem; }
.section--navy .value__ico{ background:rgba(255,255,255,.1); color:#ff8493; }
.section--navy .value p{ color:#b7c0d0; }

/* CTA band */
.cta-band{ position:relative; overflow:hidden; }
.cta-band .wrap{ display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.cta-band__badge{ width:96px; height:96px; flex:0 0 auto; }
.cta-band h2{ margin-bottom:.4rem; color:#fff; }
.cta-band .eyebrow{ color:#ff8493; }
.cta-band p{ color:#c4ccda; margin:0; max-width:46ch; }

/* Stat / trust strip */
.trust{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; align-items:center; }
.trust__item{ display:flex; align-items:center; gap:.75rem; justify-content:center; text-align:left; }
.trust__item svg{ width:30px; height:30px; color:var(--red); flex:0 0 auto; }
.trust__item b{ display:block; font-family:var(--display); color:var(--navy); font-size:1.05rem; line-height:1.1; }
.trust__item small{ color:var(--muted); font-size:.82rem; }

/* Split feature (image + text) */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,1rem + 4vw,4rem); align-items:center; }
.split--flip .split__media{ order:2; }

/* Info list (contact) */
.info{ list-style:none; padding:0; margin:0; display:grid; gap:1.3rem; }
.info li{ display:flex; gap:1rem; align-items:flex-start; }
.info__ico{ width:44px; height:44px; border-radius:10px; background:rgba(200,16,46,.08); color:var(--red); display:grid; place-items:center; flex:0 0 auto; }
.info__ico svg{ width:22px; height:22px; }
.info b{ display:block; font-family:var(--display); color:var(--navy); font-size:1.05rem; }
.info a,.info span{ color:var(--muted); }

/* FAQ */
.faq details{ background:var(--paper); border:1px solid var(--line); border-radius:var(--r-md); padding:1.1rem 1.3rem; margin-bottom:.9rem; }
.faq summary{ font-family:var(--display); color:var(--navy); font-size:1.12rem; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; color:var(--red); font-size:1.6rem; font-family:var(--sans); line-height:1; }
.faq details[open] summary::after{ content:"–"; }
.faq details p{ margin:.9rem 0 0; color:var(--muted); }

/* 11. GALLERY FILTER ---------------------------------------- */
.filter{ display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-bottom:2.4rem; }
.filter button{
  font-family:var(--sans); font-weight:700; font-size:.9rem; color:var(--navy);
  background:var(--paper); border:1px solid var(--line-2); border-radius:999px;
  padding:.55rem 1.1rem; cursor:pointer; transition:.18s;
}
.filter button:hover{ border-color:var(--navy); }
.filter button[aria-pressed="true"]{ background:var(--navy); color:#fff; border-color:var(--navy); }
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.gallery .work-tile.is-hidden{ display:none; }
.gallery-empty{ text-align:center; color:var(--muted); padding:2rem; grid-column:1/-1; display:none; }
.gallery-empty.show{ display:block; }

/* 12. FORMS ------------------------------------------------- */
.form-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(1.6rem,1rem + 3vw,2.6rem); box-shadow:var(--shadow-sm); }
.field{ margin-bottom:1.2rem; }
.field label{ display:block; font-weight:700; color:var(--navy); font-size:.9rem; margin-bottom:.4rem; }
.field .req{ color:var(--red); }
.field input,.field select,.field textarea{
  width:100%; font-family:var(--sans); font-size:1rem; color:var(--ink);
  padding:.8rem .9rem; border:1px solid var(--line-2); border-radius:var(--r-sm); background:var(--cream);
  transition:border-color .15s, box-shadow .15s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--red); box-shadow:0 0 0 3px rgba(200,16,46,.14); background:#fff;
}
.field textarea{ min-height:130px; resize:vertical; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.hp{ position:absolute; left:-9999px; }               /* honeypot */
.form-note{ font-size:.85rem; color:var(--muted); margin-top:.4rem; }
.form-status{ display:none; margin-top:1rem; padding:1rem 1.2rem; border-radius:var(--r-sm); font-weight:600; }
.form-status.show{ display:block; }
.form-status.ok{ background:rgba(22,35,63,.06); color:var(--navy); border:1px solid var(--line-2); }

/* 13. MOTION ------------------------------------------------ */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .btn:hover,.card:hover{ transform:none; }
}

/* 14. RESPONSIVE -------------------------------------------- */
@media (max-width:960px){
  .footer-grid{ grid-template-columns:1fr 1fr; gap:2rem; }
  .cols-4{ grid-template-columns:repeat(2,1fr); }
  .trust{ grid-template-columns:repeat(2,1fr); gap:1.4rem; }
}
@media (max-width:820px){
  .nav{
    position:fixed; inset:74px 0 auto 0; flex-direction:column; align-items:stretch;
    background:var(--cream); border-bottom:1px solid var(--line); padding:1rem var(--gutter) 1.4rem;
    gap:.2rem; transform:translateY(-140%); transition:transform .25s ease; box-shadow:var(--shadow-md);
  }
  .nav.open{ transform:translateY(0); }
  .nav a{ padding:.8rem .6rem; font-size:1.05rem; border-bottom:1px solid var(--line); border-radius:0; }
  .nav a[aria-current="page"]::after{ display:none; }
  .header-cta{ margin:.6rem 0 0; }
  .nav-toggle{ display:inline-flex; }
  .hero__grid{ grid-template-columns:1fr; }
  .hero__art{ max-width:440px; margin-inline:auto; }
  .split,.cols-2,.cols-3{ grid-template-columns:1fr; }
  .split--flip .split__media{ order:0; }
  .gallery{ grid-template-columns:repeat(2,1fr); }
  .cta-band .wrap{ flex-direction:column; text-align:center; align-items:center; }
  .cta-band p{ margin-inline:auto; }
}
@media (max-width:520px){
  .cols-4,.gallery,.field-row{ grid-template-columns:1fr; }
  .trust{ grid-template-columns:1fr; }
  .brand__tag{ display:none; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom .wrap{ flex-direction:column; align-items:flex-start; }
}
