/* ===============================================================
   Vijay Kumar Mukhi — Insurance Professional since 1971
   Identity: heritage oxblood/wine + antique gold on parchment.
   Old-world, editorial, distinguished. Cormorant Garamond + Jost.
   =============================================================== */

:root {
  /* fixed brand colours */
  --wine:    #2b1319;   /* deepest oxblood — dark sections */
  --wine-2:  #3c1c25;
  --wine-3:  #4f2731;
  --gold:    #a9843f;   /* antique brass gold */
  --gold-2:  #c19a52;
  --gold-soft: #d8ba7f;
  --cream:   #ffffff;

  /* semantic tokens (theme-aware) */
  --bg:        #f5efe3;   /* warm parchment */
  --bg-alt:    #ece2cf;   /* deeper parchment */
  --line:      #e0d4bd;
  --line-dk:   rgba(255,255,255,.13);
  --text:      #26191a;   /* warm near-black ink */
  --body:      #4a3c3a;
  --muted:     #776a64;
  --surface:   #fbf6ec;   /* warm ivory card */
  --card-hover:#ffffff;
  --formcard-bg: rgba(255,255,255,.7);
  --nav-bg:          rgba(245,239,227,.9);
  --nav-bg-scrolled: rgba(245,239,227,.95);
  --nav-border:      var(--line);
  --nav-highlight:   rgba(255,255,255,.8);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1180px;
  --r: 6px;
}

/* ===== Dark theme — wine & gold ===== */
:root[data-theme="dark"] {
  --wine:    #150a0d;
  --wine-2:  #1e0f13;
  --wine-3:  #2e1820;
  --gold:    #c19a52;
  --gold-2:  #d8ba7f;
  --gold-soft: #e7d0a2;
  --cream:   #ffffff;

  --bg:        #180d10;
  --bg-alt:    #1f1216;
  --line:      rgba(226,212,189,.14);
  --line-dk:   rgba(255,255,255,.10);
  --text:      #f2e7d8;
  --body:      #cbbcb4;
  --muted:     #948178;
  --surface:   #21141a;
  --card-hover:#291a20;
  --formcard-bg: rgba(255,255,255,.045);
  --nav-bg:          rgba(21,10,13,.8);
  --nav-bg-scrolled: rgba(21,10,13,.92);
  --nav-border:      rgba(255,255,255,.10);
  --nav-highlight:   rgba(255,255,255,.05);
}
:root { color-scheme: light; }
:root[data-theme="dark"] { color-scheme: dark; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--body); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: 0; color: var(--text); }
strong { color: var(--text); font-weight: 600; }

.eyebrow, .kicker { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); display: inline-block; margin-bottom: 20px; }
.kicker { position: relative; padding-left: 36px; }
.kicker::before { content: ""; position: absolute; left: 0; top: 50%; width: 26px; height: 1px; background: var(--gold); }
.kicker--gold { color: var(--gold-2); }

/* ===== Utility bar ===== */
.utility { background: var(--wine); color: rgba(255,255,255,.72); font-size: 13px; }
.utility__inner { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.utility__tag { letter-spacing: .06em; }
.utility__contact a { color: rgba(255,255,255,.72); transition: color .2s; }
.utility__contact a:hover { color: var(--gold-soft); }
.utility__contact .sep { margin: 0 10px; opacity: .4; }

/* ===== Navigation ===== */
.nav { position: sticky; top: 0; z-index: 50; background: var(--nav-bg); backdrop-filter: saturate(150%) blur(20px); -webkit-backdrop-filter: saturate(150%) blur(20px); border-bottom: 1px solid var(--nav-border); box-shadow: inset 0 1px 0 var(--nav-highlight); transition: background .3s, box-shadow .3s, border-color .3s; }
.nav.is-scrolled { background: var(--nav-bg-scrolled); box-shadow: inset 0 1px 0 var(--nav-highlight), 0 6px 30px rgba(43,19,25,.10); }
.nav__inner { display: flex; align-items: center; height: 78px; }
.nav__inner > .brand { margin-right: auto; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand__mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r); background: var(--wine); color: var(--gold-soft); font-family: var(--serif); font-size: 17px; font-weight: 700; letter-spacing: .02em; border: 1px solid var(--gold); }
.brand__name { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14px; font-weight: 500; letter-spacing: .02em; color: var(--body); transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta { padding: 11px 22px; background: var(--wine); color: #fff !important; border-radius: 999px; font-weight: 500 !important; transition: background .2s; }
.nav__cta:hover { background: var(--wine-3); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); transition: .3s; }

.theme-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--text); cursor: pointer; margin-left: 12px; transition: background .2s, border-color .2s, color .2s; }
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 30px; border-radius: 999px; font-weight: 500; font-size: 15px; letter-spacing: .02em; cursor: pointer; border: 1px solid transparent; transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s; }
.btn--solid { background: var(--wine); color: #fff; box-shadow: 0 12px 30px rgba(43,19,25,.2); }
.btn--solid:hover { background: var(--wine-3); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(43,19,25,.26); }
.btn--outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
:root[data-theme="dark"] .btn--solid { background: var(--gold); color: var(--wine); }
:root[data-theme="dark"] .btn--solid:hover { background: var(--gold-2); box-shadow: 0 16px 36px rgba(193,154,82,.26); }
:root[data-theme="dark"] .btn--outline:hover { color: var(--wine); }
:root[data-theme="dark"] .nav__cta { background: var(--gold); color: var(--wine) !important; }
:root[data-theme="dark"] .nav__cta:hover { background: var(--gold-2); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(120% 80% at 88% 0%, rgba(169,132,63,.12), transparent 55%),
  radial-gradient(90% 70% at 0% 100%, rgba(43,19,25,.05), transparent 60%); }
.hero__inner { position: relative; padding-block: clamp(54px, 8vw, 100px) clamp(40px, 5vw, 72px); display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero__content { max-width: 42ch; }
.hero__title { font-size: clamp(3.4rem, 8vw, 6.2rem); font-weight: 600; color: var(--text); line-height: .96; letter-spacing: -0.01em; }
.hero__role { margin-top: 22px; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--gold); line-height: 1.34; }
.hero__lede { margin-top: 20px; font-size: clamp(1rem, 1.7vw, 1.14rem); color: var(--body); max-width: 54ch; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__portrait { position: relative; justify-self: end; width: 100%; max-width: 400px; }
.hero__frame { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--gold); box-shadow: 0 40px 84px rgba(43,19,25,.22); }
.hero__frame img { display: block; width: 100%; height: 100%; aspect-ratio: 5/6; object-fit: cover; }
.portrait-placeholder { aspect-ratio: 5/6; display: grid; place-content: center; background: radial-gradient(130% 100% at 50% 0%, var(--wine-3), var(--wine)); }
.crest { display: grid; justify-items: center; gap: 14px; padding: 22px 30px; border: 1px solid rgba(216,186,127,.5); border-radius: 4px; position: relative; }
.crest::before, .crest::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 30px; height: 1px; background: var(--gold-soft); opacity: .7; }
.crest::before { top: 8px; } .crest::after { bottom: 8px; }
.crest__mono { font-family: var(--serif); font-size: 4.6rem; font-weight: 600; color: var(--gold-soft); line-height: 1; letter-spacing: .04em; }
.crest__year { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero__portrait::before { content: ""; position: absolute; inset: -12px -12px auto auto; width: 58px; height: 58px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.hero__portrait::after { content: ""; position: absolute; inset: auto auto -12px -12px; width: 58px; height: 58px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hero__badge { position: absolute; left: 50%; bottom: -17px; transform: translateX(-50%); background: var(--gold); color: var(--wine); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 9px 20px; border-radius: 999px; white-space: nowrap; box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 12px 26px rgba(43,19,25,.3); }

.hero__figures { position: relative; border-top: 1px solid var(--line); }
.figures { display: grid; grid-template-columns: repeat(4, 1fr); }
.figure { padding: 28px 0; }
.figure + .figure { border-left: 1px solid var(--line); padding-left: clamp(18px, 3vw, 38px); }
.figure__num { display: block; font-family: var(--serif); font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 600; color: var(--text); line-height: 1; }
.figure__num em { color: var(--gold); font-style: normal; }
.figure__label { display: block; margin-top: 8px; font-size: 13px; letter-spacing: .04em; color: var(--muted); }

/* ===== Trust strip ===== */
.trust { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 26px; flex-wrap: wrap; }
.trust__label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.trust__logos { list-style: none; display: flex; align-items: center; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; }
.trust__logos li { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; color: var(--text); opacity: .82; }

/* ===== Sections ===== */
.section { padding: clamp(70px, 9vw, 122px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--wine); color: #fff; }
.section__head { max-width: 560px; }
.section__head--wide { max-width: 700px; margin-bottom: clamp(48px, 6vw, 70px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.section__sub { margin-top: 18px; color: var(--muted); font-size: 1.12rem; }
.section--dark .section__sub { color: rgba(255,255,255,.64); }

.grid-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 84px); align-items: start; }

/* ===== Prose ===== */
.prose p { color: var(--body); margin-bottom: 18px; font-size: 1.1rem; }
.prose blockquote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--text); border-left: 2px solid var(--gold); padding: 6px 0 6px 24px; margin: 28px 0 12px; }
.prose__sign { font-size: 13px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }

/* ===== Distinction / 1984 honour ===== */
.distinction { text-align: center; }
.distinction__inner { max-width: 760px; margin: 0 auto; }
.medal { width: 74px; height: 74px; margin: 0 auto 26px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 50% 35%, var(--gold-2), var(--gold) 60%, #8a6a30); box-shadow: 0 0 0 6px rgba(216,186,127,.14), 0 14px 30px rgba(0,0,0,.35); position: relative; }
.medal::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 1px solid rgba(43,19,25,.35); }
.medal__star { font-size: 30px; color: var(--wine); line-height: 1; }
.distinction .kicker { padding-left: 0; }
.distinction .kicker::before { display: none; }
.distinction__title { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; }
.distinction__body { margin: 22px auto 0; max-width: 60ch; font-size: 1.14rem; color: rgba(255,255,255,.78); }
.distinction__body strong { color: var(--gold-soft); }
.distinction__meta { margin-top: 24px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ===== Credentials band ===== */
.band { background: var(--wine-2); color: #fff; }
.band__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.band__item { padding: clamp(38px, 5vw, 58px) clamp(18px, 3vw, 36px); }
.band__item + .band__item { border-left: 1px solid var(--line-dk); }
.band__num { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #fff; line-height: 1; }
.band__num em { font-style: normal; font-size: .45em; color: var(--gold-soft); letter-spacing: .02em; }
.band__label { display: block; margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,.64); line-height: 1.5; }

/* ===== Associations (partners) ===== */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--r); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.partner:hover { transform: translateY(-4px); box-shadow: 0 24px 52px rgba(43,19,25,.13); }
.partner__wordmark { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--text); padding-bottom: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.partner h3 { font-size: 1.16rem; margin-bottom: 11px; }
.partner p { color: var(--muted); font-size: .99rem; flex: 1; }
.partner p strong { color: var(--gold); }
.partner__meta { margin-top: 20px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ===== Timeline ===== */
.timeline { list-style: none; position: relative; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.tl { position: relative; padding: 0 0 32px 40px; }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ""; position: absolute; left: 0; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: var(--bg); border: 2px solid var(--gold); }
.tl--honour::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(169,132,63,.2); }
.tl__year { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.tl h3 { font-size: 1.3rem; margin: 6px 0 4px; }
.tl__org { color: var(--body); font-weight: 500; margin-bottom: 5px; }
.tl p:not(.tl__org) { color: var(--muted); font-size: .98rem; }

/* ===== Legacy continues ===== */
.continues__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin: clamp(44px, 6vw, 64px) auto 0; }
.lineage { display: grid; gap: 6px; padding: clamp(28px, 3vw, 38px); border: 1px solid var(--line-dk); border-radius: var(--r); background: rgba(255,255,255,.03); text-align: left; transition: background .25s, border-color .25s, transform .25s; }
.lineage:hover { background: rgba(255,255,255,.06); border-color: rgba(216,186,127,.4); transform: translateY(-4px); }
.lineage__rel { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.lineage__name { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: #fff; line-height: 1.1; margin-top: 4px; }
.lineage__role { font-size: .96rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.lineage__link { margin-top: 14px; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--gold-soft); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 76px); align-items: start; }
.contact__list { list-style: none; margin-top: 36px; display: grid; gap: 20px; }
.contact__list li { display: grid; grid-template-columns: 100px 1fr; align-items: baseline; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact__k { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contact__v { font-family: var(--serif); font-size: 1.22rem; color: var(--text); transition: color .2s; }
a.contact__v:hover { color: var(--gold); }

/* ===== Form ===== */
.formcard { background: var(--formcard-bg); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px, 4vw, 44px); box-shadow: 0 30px 66px rgba(43,19,25,.08); }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--body); text-transform: uppercase; }
.field label span { color: var(--gold); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: 1rem; color: var(--text); padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg); transition: border-color .2s, box-shadow .2s; width: 100%; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169,132,63,.16); }
.field input.invalid, .field textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.hp { position: absolute; left: -9999px; opacity: 0; width: 0; height: 0; }
.form__submit { width: 100%; margin-top: 4px; }
.form__submit[disabled] { opacity: .75; cursor: default; }
.form__spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; display: none; animation: spin .7s linear infinite; }
.is-sending .form__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__note { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.form__status { font-size: 14px; font-weight: 600; margin-top: 2px; display: none; }
.form__status.show { display: block; }
.form__status.ok { color: #1e7a4d; }
.form__status.err { color: #c0392b; }

/* ===== Footer ===== */
.footer { background: var(--wine); color: rgba(255,255,255,.7); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(32px, 5vw, 68px); padding-block: clamp(54px, 7vw, 80px) clamp(38px, 5vw, 54px); }
.footer__name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: #fff; }
.footer__blurb { margin-top: 18px; max-width: 44ch; font-size: .97rem; color: rgba(255,255,255,.56); }
.footer__col h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col span { display: block; color: rgba(255,255,255,.68); font-size: .96rem; margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: 24px; border-top: 1px solid var(--line-dk); font-size: 13px; color: rgba(255,255,255,.45); }
.footer__disc { max-width: 48ch; text-align: right; }
.footer__credit-bar { border-top: 1px solid var(--line-dk); background: rgba(0,0,0,.22); }
.footer__credit { max-width: var(--wrap); margin: 0 auto; padding: 17px clamp(20px,5vw,44px); text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }
.footer__credit a { color: rgba(255,255,255,.72); font-weight: 600; transition: color .2s; }
.footer__credit a:hover { color: var(--gold-soft); }
.footer__heart { color: #d17b7b; margin: 0 2px; }
.footer__credit-sep { margin: 0 8px; opacity: .4; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .hero__portrait { justify-self: start; max-width: 330px; }
  .grid-split { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; }
  .partners { grid-template-columns: 1fr; }
  .continues__grid { grid-template-columns: 1fr; }
  .band__grid { grid-template-columns: 1fr 1fr; }
  .band__item:nth-child(3) { border-left: 0; }
  .band__item:nth-child(n+3) { border-top: 1px solid var(--line-dk); }
  .figures { grid-template-columns: 1fr 1fr; }
  .figure:nth-child(odd) { border-left: 0; padding-left: 0 !important; }
  .figure:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__disc { text-align: left; }

  .nav__links { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: translateY(calc(-100% - 200px)); visibility: hidden; transition: transform .32s ease, visibility .32s; padding: 8px 0 16px; box-shadow: 0 24px 48px rgba(43,19,25,.16); }
  .nav__links.is-open { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 15px clamp(20px, 5vw, 44px); font-size: 17px; }
  .nav__cta { margin: 8px clamp(20px, 5vw, 44px) 0; text-align: center; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .utility__tag { display: none; }
  .utility__inner { justify-content: center; }
  .band__grid { grid-template-columns: 1fr; }
  .band__item + .band__item { border-left: 0; border-top: 1px solid var(--line-dk); }
  .figures { grid-template-columns: 1fr; }
  .figure + .figure { border-left: 0; border-top: 1px solid var(--line); padding-left: 0 !important; }
  .figure { padding-block: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .contact__list li { grid-template-columns: 1fr; gap: 4px; }
  .footer__top { grid-template-columns: 1fr; }
  .brand__name { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
}

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }
