/* ===============================================================
   Insurance Services (Group) India — Kunal Mukhi
   Institutional / high-finance identity.
   Cool white + deep navy ink + restrained gold. Sharp corners.
   =============================================================== */

:root {
  --ink:       #0a1420;   /* near-black navy — dark sections */
  --navy:      #0f1e30;
  --navy-2:    #16283e;
  --slate:     #2f3e4f;   /* body text on light */
  --muted:     #5f6d7c;
  --line:      #e4e8ee;
  --line-dk:   rgba(255,255,255,.12);
  --bg:        #ffffff;
  --bg-alt:    #f4f6f9;   /* cool light band */
  --gold:      #b5893a;   /* restrained gold */
  --gold-2:    #caa155;
  --gold-soft: #d8bd7f;
  --white:     #ffffff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --r: 4px;               /* sharp, corporate */
}

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

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

/* ===== Utility bar ===== */
.utility { background: var(--ink); color: rgba(255,255,255,.72); font-size: 13px; }
.utility__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.utility__tag { letter-spacing: .04em; }
.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: rgba(255,255,255,.6);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.72);
  border-bottom-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 6px 30px rgba(10,20,32,.10);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r);
  background: var(--ink); color: var(--white);
  font-family: var(--serif); font-size: 17px; font-weight: 700; letter-spacing: .04em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.brand__sub { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--slate); transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  padding: 12px 22px; background: var(--ink); color: var(--white) !important;
  border-radius: var(--r); font-weight: 600 !important; transition: background .2s;
}
.nav__cta:hover { background: var(--gold); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--r); font-weight: 600; font-size: 15px;
  letter-spacing: .01em; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(181,137,58,.32); }
.btn--outline-light {
  border-color: rgba(255,255,255,.28); color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px) saturate(160%); -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(10,20,32,.24); }

/* ===== Hero ===== */
.hero { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(181,137,58,.18), transparent 55%),
    linear-gradient(180deg, #0a1420 0%, #0d1a2a 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(80% 60% at 70% 20%, #000, transparent 75%);
}
.hero__inner {
  position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 84px);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero__content { max-width: 40ch; }
.hero__title { font-size: clamp(3rem, 6.5vw, 5.2rem); font-weight: 600; color: var(--white); line-height: 1; letter-spacing: -0.025em; }
.hero__role { margin-top: 22px; font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2.1vw, 1.5rem); color: var(--gold-soft); line-height: 1.35; }
.hero__lede { margin-top: 24px; font-size: clamp(1rem, 1.7vw, 1.15rem); color: rgba(255,255,255,.7); max-width: 52ch; }
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }

/* Portrait */
.hero__portrait { position: relative; justify-self: end; width: 100%; max-width: 420px; }
.hero__frame {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
}
.hero__frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); pointer-events: none; }
.hero__frame img { display: block; width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: 50% 35%; }
.hero__portrait::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 66px; height: 66px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); border-top-right-radius: var(--r); }
.hero__portrait::after { content: ""; position: absolute; inset: auto auto -14px -14px; width: 66px; height: 66px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); border-bottom-left-radius: var(--r); }
.hero__badge {
  position: absolute; left: 50%; bottom: -18px; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: 9px 18px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 12px 28px rgba(0,0,0,.38);
}
.hero__badge em { font-style: normal; opacity: .7; }

.hero__figures {
  position: relative;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.figures { display: grid; grid-template-columns: repeat(4, 1fr); }
.figure { padding: 30px 0; }
.figure + .figure { border-left: 1px solid var(--line-dk); padding-left: clamp(20px, 3vw, 40px); }
.figure__num { display: block; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; color: var(--white); line-height: 1; }
.figure__num em { color: var(--gold-2); font-style: normal; }
.figure__label { display: block; margin-top: 10px; font-size: 13px; letter-spacing: .05em; color: rgba(255,255,255,.55); }

/* ===== Trust strip ===== */
.trust { background: var(--bg); border-bottom: 1px solid var(--line); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 30px 0; flex-wrap: wrap; }
.trust__label { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.trust__logos { list-style: none; display: flex; align-items: center; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap; }
.trust__logos li { font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; color: var(--ink); opacity: .78; letter-spacing: -0.01em; }

/* ===== Section scaffolding ===== */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: var(--white); }
.section__head { max-width: 560px; }
.section__head--wide { max-width: 680px; margin-bottom: clamp(48px, 6vw, 72px); }
.section__head h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
.section__sub { margin-top: 20px; color: var(--muted); font-size: 1.08rem; }
.section__head--onDark h2 { color: var(--white); }
.section__head--onDark .section__sub { color: rgba(255,255,255,.62); }

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

/* ===== About prose ===== */
.prose p { color: var(--slate); margin-bottom: 20px; font-size: 1.05rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.45;
  color: var(--ink); border-left: 2px solid var(--gold); padding: 4px 0 4px 24px; margin: 30px 0 14px;
}
.prose__sign { font-size: 14px; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }

/* ===== Vision (on dark) ===== */
.vision__statement {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); font-weight: 500; font-style: italic;
  color: var(--white); line-height: 1.25; max-width: 20ch; letter-spacing: -0.01em;
}
.vision__body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.vision__text p { color: rgba(255,255,255,.72); font-size: 1.08rem; margin-bottom: 18px; }
.vision__sign { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-soft); margin: 30px 0 2px !important; line-height: 1; }
.vision__sign-role { font-size: 12px !important; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5) !important; margin: 0 !important; }
.vision__pillars { list-style: none; display: grid; gap: 8px; }
.vision__pillars li {
  position: relative; padding: 26px 28px; border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 32px rgba(0,0,0,.20);
  transition: background .25s, border-color .25s, transform .25s;
}
.vision__pillars li::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 45%; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent);
}
.vision__pillars li:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); transform: translateY(-3px); }
.pillar__no { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--gold-2); letter-spacing: .06em; }
.vision__pillars h3 { color: var(--white); font-size: 1.2rem; margin: 10px 0 8px; }
.vision__pillars p { color: rgba(255,255,255,.6); font-size: .98rem; margin: 0; }

/* ===== Stats band ===== */
.band { background: var(--navy); color: var(--white); }
.band__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.band__item { padding: clamp(40px, 5vw, 60px) clamp(20px, 3vw, 40px); }
.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: var(--white); line-height: 1; }
.band__num em { font-style: normal; font-size: .5em; color: var(--gold-2); letter-spacing: .02em; }
.band__label { display: block; margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.6); letter-spacing: .02em; }

/* ===== Capabilities ===== */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cap { background: var(--bg-alt); padding: clamp(30px, 3.5vw, 44px); transition: background .25s, transform .25s; position: relative; }
.section:not(.section--alt) .caps { background: var(--line); }
.section:not(.section--alt) .cap { background: var(--bg); }
.cap:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 20px 44px rgba(10,20,32,.08); z-index: 1; }
.cap__no { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; }
.cap h3 { font-size: 1.3rem; margin: 16px 0 12px; }
.cap p { color: var(--muted); font-size: 1rem; }

/* ===== Partners ===== */
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner {
  background: var(--bg); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  padding: clamp(30px, 3vw, 42px); display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.partner:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(10,20,32,.12); }
.partner__wordmark {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink);
  padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); letter-spacing: -0.02em;
}
.partner h3 { font-size: 1.15rem; margin-bottom: 12px; }
.partner p { color: var(--muted); font-size: .98rem; flex: 1; }
.partner__meta { margin-top: 22px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ===== Timeline (on dark) ===== */
.timeline { list-style: none; position: relative; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: var(--line-dk); }
.tl { position: relative; padding: 0 0 38px 40px; }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 13px; border-radius: 50%; background: var(--ink); border: 2px solid var(--gold); }
.tl__year { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.tl h3 { font-size: 1.3rem; margin: 8px 0 5px; color: var(--white); }
.tl__org { color: rgba(255,255,255,.82); font-weight: 500; margin-bottom: 8px; }
.tl p:not(.tl__org) { color: rgba(255,255,255,.58); font-size: .98rem; }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__list { list-style: none; margin-top: 40px; display: grid; gap: 22px; }
.contact__list li { display: grid; grid-template-columns: 110px 1fr; align-items: baseline; gap: 16px; padding-bottom: 20px; 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.1rem; color: var(--ink); transition: color .2s; }
a.contact__v:hover { color: var(--gold); }

/* ===== Form ===== */
.formcard {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.7); border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 30px 70px rgba(10,20,32,.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: 13px; font-weight: 600; letter-spacing: .04em; color: var(--slate); text-transform: uppercase; }
.field label span { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r);
  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(181,137,58,.14);
}
.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; position: relative; }
.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: 500; margin-top: 2px; display: none; }
.form__status.show { display: block; }
.form__status.ok { color: #1e7a4d; }
.form__status.err { color: #c0392b; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: rgba(255,255,255,.7); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(32px, 5vw, 72px); padding: clamp(56px, 7vw, 84px) 0 clamp(40px, 5vw, 56px); }
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__sub { color: rgba(255,255,255,.5); }
.brand--footer .brand__mark { background: var(--white); color: var(--ink); }
.footer__blurb { margin-top: 22px; max-width: 40ch; font-size: .96rem; color: rgba(255,255,255,.55); }
.footer__col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 20px; font-weight: 600; }
.footer__col a, .footer__col span { display: block; color: rgba(255,255,255,.68); font-size: .96rem; margin-bottom: 12px; transition: color .2s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 0; border-top: 1px solid var(--line-dk); font-size: 13px; color: rgba(255,255,255,.45); }
.footer__disc { max-width: 46ch; text-align: right; }

.footer__credit-bar { border-top: 1px solid var(--line-dk); background: rgba(0,0,0,.25); }
.footer__credit {
  max-width: var(--wrap); margin: 0 auto; padding: 18px clamp(20px, 5vw, 48px);
  text-align: center; font-size: 13px; letter-spacing: .02em; color: rgba(255,255,255,.5);
}
.footer__credit a { color: rgba(255,255,255,.72); font-weight: 500; transition: color .2s; }
.footer__credit a:hover { color: var(--gold-soft); }
.footer__heart { color: #e0525f; margin: 0 2px; }
.footer__credit-sep { margin: 0 8px; opacity: .4; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: left; }
  .hero__content { max-width: none; }
  .hero__portrait { justify-self: start; max-width: 340px; margin-top: 8px; }
  .vision__statement { max-width: none; }
  .vision__body { grid-template-columns: 1fr; gap: 44px; }
  .grid-split { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; }
  .caps { grid-template-columns: 1fr 1fr; }
  .partners { 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(3) { border-left: 0; padding-left: 0; }
  .figure:nth-child(n+3) { border-top: 1px solid var(--line-dk); }
  .figure { padding-left: 0 !important; }
  .figure + .figure { padding-left: clamp(20px,3vw,40px); }
  .figure:nth-child(odd) { padding-left: 0 !important; border-left: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__disc { text-align: left; }

  .nav__links {
    position: fixed; inset: 118px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.72);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border-bottom: 1px solid rgba(255,255,255,.5);
    transform: translateY(-140%); transition: transform .32s ease; padding: 8px 0 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 24px 48px rgba(10,20,32,.14);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 15px clamp(20px, 5vw, 48px); font-size: 17px; }
  .nav__cta { margin: 8px clamp(20px, 5vw, 48px) 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: 620px) {
  .utility__tag { display: none; }
  .utility__inner { justify-content: center; }
  .caps { grid-template-columns: 1fr; }
  .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-dk); padding-left: 0 !important; }
  .field-row { grid-template-columns: 1fr; }
  .contact__list li { grid-template-columns: 1fr; gap: 4px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}

/* ===== Reveal on scroll ===== */
.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; }
}
