/* ============================================================
   A YENKE LAW PLLC — Design System v3.0 (July 2026 overhaul)
   Palette and motifs derived from the firm logo:
   deep navy serif mark, single gold diagonal ("the slash"),
   line–diamond–line divider, letterspaced capitals.
   v3: self-hosted fonts, header phone, sticky mobile action bar,
   scroll reveals (reduced-motion safe), flat-fee strip,
   multilingual band, refined cards & spacing.
   ============================================================ */

:root {
  --paper: #FBF9F5;
  --paper-deep: #F4EFE6;
  --white: #FFFFFF;
  --navy: #182640;
  --navy-2: #22324F;
  --navy-deep: #101A2E;
  --body-ink: #38404F;
  --muted: #5C6470;
  --gold: #B08C3E;        /* decorative only */
  --gold-soft: #D9C896;
  --bronze: #76591F;      /* text-safe gold, AA on paper */
  --hairline: #E5DECD;
  --hairline-2: #EFEADD;
  --danger: #8C2F2F;
  --focus: #B08C3E;
  --max: 1140px;
  --radius: 2px;
  --shadow: 0 1px 2px rgba(24, 38, 64, .05), 0 12px 32px -18px rgba(24, 38, 64, .18);
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body-ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-color: var(--gold-soft); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 1px; }
::selection { background: var(--navy); color: var(--paper); }
[id] { scroll-margin-top: 90px; }

h1, h2, h3 { font-family: var(--font-display); color: var(--navy); font-weight: 600; line-height: 1.1; margin: 0 0 .55em; letter-spacing: -.005em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); font-weight: 600; }
h4, .footer-h { font-family: var(--font-body); font-size: 1rem; color: var(--navy); margin: 0 0 .4em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--navy); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--hairline); margin: 2.5rem 0; }
.small { font-size: .875rem; color: var(--muted); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--alt { background: var(--white); border-top: 1px solid var(--hairline-2); border-bottom: 1px solid var(--hairline-2); }
.section--tint { background: var(--paper-deep); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head p { color: var(--muted); }
.center { text-align: center; }
.center.section-head { margin-left: auto; margin-right: auto; }

/* ---------- Brand motifs ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--gold);
  transform: rotate(-24deg); transform-origin: center; flex: none;
}
.eyebrow--gold { color: #C8B477; }
.divider {
  display: flex; align-items: center; gap: 14px; margin: 1.4rem 0;
  color: var(--gold);
}
.divider::before, .divider::after { content: ""; height: 1px; background: var(--gold-soft); flex: 1; }
.divider .gem { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex: none; }
.divider--short::before, .divider--short::after { max-width: 88px; }
.divider--center { justify-content: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 18px; z-index: 100; font-size: .9rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 245, .94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
  font-size: 1.18rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.1;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .58rem; letter-spacing: .3em; color: var(--bronze); margin-top: 3px; }
.header-actions { display: flex; align-items: center; gap: 16px; order: 3; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-size: .9rem; font-weight: 600; color: var(--navy); white-space: nowrap;
  padding: 7px 0; border-bottom: 2px solid transparent;
}
.header-phone:hover { border-bottom-color: var(--gold); }
.header-phone svg { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); order: 2; }
.site-nav a.nav-link {
  font-size: .9rem; font-weight: 500; color: var(--navy-2); text-decoration: none;
  padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.site-nav a.nav-link:hover { border-bottom-color: var(--gold-soft); }
.site-nav a.nav-link[aria-current="page"] { border-bottom-color: var(--gold); color: var(--navy); }
.nav-toggle { display: none; background: none; border: 1px solid var(--hairline); padding: 9px 11px; cursor: pointer; border-radius: var(--radius); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 30px; border-radius: var(--radius); text-decoration: none;
  border: 1px solid var(--navy); cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); border-color: var(--navy-2); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { border-color: var(--gold); color: var(--navy); }
.btn-light { background: transparent; color: var(--paper); border-color: rgba(251, 249, 245, .55); }
.btn-light:hover { border-color: var(--gold); color: #fff; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #C09A47; border-color: #C09A47; }
.btn-nav { padding: 12px 22px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.arrow-link { font-weight: 600; font-size: .92rem; text-decoration: none; color: var(--navy); border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; }
.arrow-link::after { content: " \2192"; color: var(--gold); }
.arrow-link:hover { border-bottom-color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 118px) 0 clamp(60px, 8vw, 100px); background:
  radial-gradient(1200px 500px at 85% -10%, rgba(217, 200, 150, .16), transparent 60%),
  linear-gradient(180deg, #FFFFFF 0%, var(--paper) 70%);
}
.hero::before { /* the Yenke slash */
  content: ""; position: absolute; top: -12%; right: 6%; width: 1px; height: 130%;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  transform: rotate(24deg); opacity: .55; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4.6fr); gap: clamp(40px, 6vw, 84px); align-items: center; }
.hero h1 { margin-bottom: .5em; }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 56ch; }
.hero-ctas { margin-top: 2rem; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 0; margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--hairline); font-size: .82rem; color: var(--navy-2); font-weight: 500;
}
.trust-row span { display: inline-flex; align-items: center; }
.trust-row span + span::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); margin: 0 14px; flex: none; }

/* Crest panel */
.crest {
  position: relative; background: var(--white); border: 1px solid var(--gold-soft);
  padding: clamp(34px, 4vw, 52px) clamp(26px, 3vw, 44px);
  display: grid; justify-items: center; text-align: center; box-shadow: var(--shadow);
}
.crest::after { content: ""; position: absolute; inset: 9px; border: 1px solid var(--hairline); pointer-events: none; }
.crest img { width: min(220px, 52%); margin-bottom: 6px; }
.crest .crest-firm { font-family: var(--font-display); font-weight: 600; letter-spacing: .14em; color: var(--navy); font-size: 1.06rem; text-transform: uppercase; }
.crest .divider { width: 78%; margin: .9rem 0 .7rem; }
.crest .crest-sub { font-size: .68rem; letter-spacing: .26em; color: var(--bronze); font-weight: 600; text-transform: uppercase; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 22px; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--hairline);
  padding: 30px 28px 26px; border-radius: var(--radius); display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card::before { content: ""; position: absolute; top: -1px; left: 24px; right: 24px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.card:hover { transform: translateY(-3px); border-color: var(--gold-soft); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: 1.32rem; margin-bottom: .45em; }
.card p { font-size: .95rem; color: var(--muted); margin-bottom: 1.2em; }
.card .arrow-link { margin-top: auto; align-self: flex-start; font-size: .85rem; }
.card-label { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); margin-bottom: .9rem; }

/* Card as full-tile link */
.card-link { text-decoration: none; }
.card-link:focus-visible { outline-offset: 4px; }

/* ---------- Flat-fee strip ---------- */
.flatfee {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px); align-items: center;
  background: var(--white); border: 1px solid var(--gold-soft); box-shadow: var(--shadow);
  padding: clamp(26px, 3.6vw, 44px);
  position: relative; overflow: hidden;
}
.flatfee::before { content: ""; position: absolute; top: -30%; right: -2%; width: 1px; height: 160%;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent); transform: rotate(24deg); }
.flatfee h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .3em; }
.flatfee p { color: var(--muted); font-size: .95rem; margin: 0; }
.flatfee-item { border-left: 2px solid var(--gold); padding-left: 18px; }
.flatfee-item h3 { font-size: 1.15rem; margin-bottom: .25em; }
.flatfee-item .small { display: block; margin-bottom: .6rem; }

/* ---------- Language band ---------- */
.lang-band { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(30px, 5vw, 64px); align-items: center; }
.lang-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.lang-chips li { border: 1px solid var(--hairline); background: var(--white); font-size: .85rem; font-weight: 500; padding: 8px 16px; color: var(--navy-2); }
.lang-chips li strong { font-weight: 600; }

/* ---------- Feature list (Why the firm) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(26px, 4vw, 44px) clamp(30px, 4vw, 56px); }
.feature { border-top: 1px solid var(--hairline); padding-top: 20px; }
.feature h3 { font-size: 1.28rem; }
.feature p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(36px, 6vw, 72px); align-items: start; }
.split--flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.portrait-frame {
  background: var(--paper-deep); border: 1px solid var(--hairline);
  aspect-ratio: 4 / 5; display: grid; place-items: center; position: relative; padding: 24px; overflow: hidden;
}
.portrait-frame::after { content: ""; position: absolute; inset: 9px; border: 1px solid var(--hairline-2); pointer-events: none; }
.portrait-frame img { width: 46%; opacity: .9; }
.portrait-frame img.photo { width: 100%; height: 100%; object-fit: cover; opacity: 1; position: absolute; inset: 0; }
.portrait-frame figcaption { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.portrait-frame--photo { padding: 0; border-color: var(--gold-soft); }
.portrait-frame--photo picture { position: absolute; inset: 0; }
.portrait-frame--photo::after { border-color: rgba(251, 249, 245, .45); }
.portrait-frame--photo figcaption {
  bottom: 0; padding: 44px 14px 15px; color: #F4EFE6;
  background: linear-gradient(180deg, transparent, rgba(16, 26, 46, .78));
}

/* ---------- Process steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.steps li { counter-increment: step; border-top: 1px solid var(--hairline); padding-top: 18px; position: relative; }
.steps li::before {
  content: "0" counter(step); font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.7rem; color: var(--gold); display: block; line-height: 1; margin-bottom: .55rem;
}
.steps h3 { font-size: 1.18rem; margin-bottom: .35em; }
.steps p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Facts table ---------- */
.facts { width: 100%; border-collapse: collapse; font-size: .95rem; }
.facts th, .facts td { text-align: left; padding: 13px 16px 13px 0; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.facts th { width: 220px; font-weight: 600; color: var(--navy); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 400; font-size: 1.4rem; color: var(--gold); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer { padding: 0 0 22px; max-width: 70ch; color: var(--body-ink); font-size: .98rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy-deep); color: var(--paper); padding: clamp(60px, 8vw, 96px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -15%; right: 10%; width: 1px; height: 140%; background: linear-gradient(180deg, transparent, var(--gold), transparent); transform: rotate(24deg); opacity: .6; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #B9C2D4; max-width: 60ch; }
.cta-band .micro { font-size: .8rem; color: #8E99AF; margin-top: 1.2rem; }
.cta-btns { margin-top: 1.6rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .02em; }
.field .hint { font-weight: 400; color: var(--muted); display: block; font-size: .78rem; margin-top: 3px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--body-ink);
  background: var(--white); border: 1px solid #CCC4B0; border-radius: var(--radius);
  padding: 13px 14px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--navy); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--danger); }
.field .err { display: none; color: var(--danger); font-size: .8rem; font-weight: 500; margin-top: 6px; }
.field.show-err .err { display: block; }
.field.show-err input, .field.show-err textarea { border-color: var(--danger); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .86rem; color: var(--body-ink); background: var(--paper-deep); border: 1px solid var(--hairline); padding: 16px; border-radius: var(--radius); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--navy); }
.form-note { font-size: .8rem; color: var(--muted); }
.hp { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; overflow: hidden; }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4.4fr); gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--hairline); padding: 30px; }
.contact-card h3 { font-size: 1.25rem; }
.contact-card dl { margin: 0; }
.contact-card dt { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze); margin-top: 18px; }
.contact-card dd { margin: 4px 0 0; font-size: .98rem; }
.contact-card dd a { font-weight: 500; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .8rem; color: var(--muted); padding: 16px 0 0; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li + li::before { content: "/"; color: var(--gold-soft); margin-right: 8px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- Page intro ---------- */
.page-intro { padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 5vw, 64px); background: linear-gradient(180deg, #FFFFFF 0%, var(--paper) 85%); border-bottom: 1px solid var(--hairline-2); position: relative; overflow: hidden; }
.page-intro::before { content: ""; position: absolute; top: -30%; right: 8%; width: 1px; height: 160%;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent); transform: rotate(24deg); opacity: .7; }
.page-intro .lead { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--muted); max-width: 62ch; margin-bottom: 0; }

/* ---------- Prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.55rem, 2.6vw, 2rem); margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul li::marker { color: var(--gold); }
.checklist { list-style: none; padding: 0; columns: 2; column-gap: 44px; }
.checklist li { break-inside: avoid; padding: 10px 0 10px 26px; border-bottom: 1px solid var(--hairline-2); position: relative; font-size: .96rem; }
.checklist li::before { content: ""; position: absolute; left: 4px; top: 19px; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #AEB8CB; font-size: .9rem; }
.site-footer a { color: #D7DDE8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 56px); padding: clamp(48px, 6vw, 72px) 0 40px; }
.footer-brand img { width: 48px; margin-bottom: 14px; }
.footer-brand .fname { font-family: var(--font-display); color: #fff; letter-spacing: .12em; font-size: 1.05rem; text-transform: uppercase; }
.footer-brand p { color: #8E99AF; font-size: .84rem; margin-top: 10px; }
.footer-langs { letter-spacing: .06em; }
.site-footer .footer-h { color: #E4D6AE; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-legal { border-top: 1px solid rgba(217, 200, 150, .22); padding: 26px 0 36px; font-size: .76rem; color: #7E8AA1; line-height: 1.65; }
.footer-legal p { margin-bottom: .7em; }
.footer-legal .copy { color: #97A2B8; }
.footer-adv { color: #C8B477; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; grid-template-columns: 1fr 1.6fr;
  border-top: 1px solid rgba(217, 200, 150, .35);
  background: rgba(16, 26, 46, .97); backdrop-filter: blur(8px);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; text-decoration: none; color: var(--paper);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.mobile-bar a.mb-primary { background: var(--gold); color: var(--navy-deep); }

/* ---------- Utility / misc ---------- */
.notice { background: var(--paper-deep); border: 1px solid var(--hairline); border-left: 3px solid var(--gold); padding: 18px 22px; font-size: .92rem; margin: 1.6rem 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 1rem 0 0; padding: 0; list-style: none; }
.tag-row li { border: 1px solid var(--hairline); background: var(--white); font-size: .82rem; padding: 7px 14px; color: var(--navy-2); }

/* ---------- Scroll reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .header-phone span { display: none; }
}
@media (max-width: 940px) {
  .hero-grid, .split, .split--flip, .contact-grid, .lang-band { grid-template-columns: 1fr; }
  .crest { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checklist { columns: 1; }
  .flatfee { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--hairline);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 16px;
    display: none; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a.nav-link { padding: 13px clamp(20px, 4vw, 32px); border-bottom: 1px solid var(--hairline-2); border-left: 3px solid transparent; }
  .site-nav a.nav-link[aria-current="page"] { border-left-color: var(--gold); }
  .site-nav .btn { margin: 14px clamp(20px, 4vw, 32px) 0; text-align: center; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 58px; }
  .site-footer { padding-bottom: 12px; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { flex-direction: column; gap: 8px; }
  .trust-row span + span::before { display: none; }
  .brand-name { font-size: 1.02rem; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-bar, .cta-band, .site-footer .footer-grid { display: none; }
  body { background: #fff; }
}
