/* ============================================================
   Vardharma Law global stylesheet
   Editorial / international. Cream + ink bands, gold accent.
   ============================================================ */

:root {
  --ink: #14110D;
  --ink-2: #1C1814;
  --navy: #1A2436;
  --cream: #F5F1E8;
  --cream-2: #ECE7DA;
  --paper: #FBF9F3;
  --gold: #B08D4F;
  --gold-soft: #C4A368;
  --walnut: #4A3826;
  --walnut-2: #6E5638;
  --ink-text: #1E1A15;
  --muted: #6A6258;
  --faint: #9A9286;
  --line: #DAD3C5;
  --line-dark: #332E27;
  --cream-on-dark: #EDE7DA;
  --muted-on-dark: #A59E90;
  --cream-dim: #C9C2B4;
  --sand-dim: #9A9286;
  --sienna: #9B5B3C;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --r: 0px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; overflow-y: auto; }
body { overflow-y: auto; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
.serif { font-family: var(--font-display); }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.eyebrow--line { display: inline-flex; align-items: center; gap: 0.9rem; }
.eyebrow--line::before { content: ''; width: 34px; height: 1px; background: currentColor; opacity: 0.6; }
.lede { font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.65; color: var(--muted); }
.icon { display: inline-block; vertical-align: middle; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 4rem); }
.rule { height: 1px; background: var(--line); border: 0; }
.band-cream { background: var(--cream); }
.band-cream2 { background: var(--cream-2); }
.band-ink { background: var(--ink); color: var(--cream-on-dark); }
.band-navy { background: var(--navy); color: var(--cream-on-dark); }
.band-walnut { background: var(--walnut); color: var(--cream-on-dark); }

/* ---- Buttons: every variant has white or gold text ---- */
.btn { display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-body); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 1em 1.6em; border: 1px solid transparent; border-radius: var(--r); transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease); }
.btn .icon { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.btn:hover .icon { transform: translate(2px, -2px); }
.btn--gold,
.btn--solid { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover,
.btn--solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); border-color: var(--ink-2); }
.btn--light { background: var(--paper); color: var(--ink-text); border-color: var(--paper); }
.btn--light:hover { background: #fff; border-color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn--ghost-dark { border-color: var(--line); color: var(--ink-text); }
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
/* gold-outline secondary — visible on both light and dark bands */
.btn--ghost { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--ghost:hover { background: var(--gold); color: #fff; }
/* text-only, gold */
.btn--text { color: var(--gold); padding: 0.5em 0; letter-spacing: 0.1em; }
.btn--text:hover { color: var(--gold-soft); }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-text); border-bottom: 1px solid currentColor; padding-bottom: 4px; transition: color 0.3s var(--ease); }
.link-arrow:hover { color: var(--gold); }
.link-arrow .icon { width: 14px; height: 14px; }
.band-ink .link-arrow, .band-navy .link-arrow, .band-walnut .link-arrow { color: var(--cream-on-dark); }
.band-ink .link-arrow:hover, .band-walnut .link-arrow:hover { color: var(--gold-soft); }

.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--paper) 90%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header__row { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.01em; color: var(--ink-text); display: flex; align-items: baseline; gap: 0.5rem; }
.brand b { font-weight: 600; }
.brand .brand__sub { font-style: italic; color: var(--gold); font-size: 1.2rem; }
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a { font-size: 0.8rem; letter-spacing: 0.03em; color: var(--muted); transition: color 0.3s var(--ease); position: relative; }
.nav a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease); }
.nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="page"] { color: var(--ink-text); }
.nav a:not(.btn):hover::after, .nav a:not(.btn)[aria-current="page"]::after { width: 100%; }
.nav__cta { margin-left: 0.4rem; color: var(--cream) !important; }
.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 2rem; transform: translateY(-130%); transition: transform 0.45s var(--ease); box-shadow: 0 18px 30px -22px rgba(0,0,0,0.4); }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a:not(.btn) { padding: 0.95rem 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--ink-text); }
  .nav a:not(.btn)::after { display: none; }
  .nav__cta { margin: 1.25rem 0 0; width: 100%; justify-content: center; }
  .nav-toggle { display: inline-flex; padding: 0.6rem; }
}

/* ---- Hero ---- */
.hero { position: relative; min-height: clamp(580px, 84vh, 780px); display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg--photo {
  background-image:
    linear-gradient(180deg, rgba(13,11,8,0.62) 0%, rgba(13,11,8,0.42) 38%, rgba(11,9,7,0.86) 100%),
    url('/images/hero.webp');
  background-size: cover;
  background-position: center;
}
/* Light hero variant — for the cream/gold Supreme Court illustration */
.hero__bg--sci {
  background-image:
    linear-gradient(90deg, rgba(245,241,232,0.97) 0%, rgba(245,241,232,0.84) 34%, rgba(245,241,232,0.34) 60%, rgba(245,241,232,0.04) 100%),
    url('/images/hero-sc-india.webp');
  background-size: cover;
  background-position: right center;
  background-color: var(--cream);
}
.hero.hero--light { color: var(--ink-text); }
.hero.hero--light .eyebrow { color: var(--gold); opacity: 1; }
.hero.hero--light h1 { color: var(--ink-text); }
.hero.hero--light h1 .it { color: var(--ink-text); }
.hero.hero--light .hero__sub { color: var(--muted); }
@media (max-width: 760px) {
  .hero__bg--sci {
    background-image:
      linear-gradient(180deg, rgba(245,241,232,0.9) 0%, rgba(245,241,232,0.6) 55%, rgba(245,241,232,0.85) 100%),
      url('/images/hero-sc-india.webp');
    background-position: center 30%;
  }
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.credit-bar { background: var(--ink); }
.credit-bar .wrap { padding-block: 0.55rem; font-size: 0.72rem; letter-spacing: 0.04em; color: #fff; text-align: center; line-height: 1.4; }
.hero .eyebrow { color: var(--cream); opacity: 0.85; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 4.3rem); line-height: 1.04; margin: 1.5rem 0; font-weight: 500; letter-spacing: -0.02em; max-width: 16ch; }
.hero h1 .it { display: block; font-style: italic; color: var(--cream); }
.hero__sub { max-width: 46ch; color: rgba(245,241,232,0.85); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.6; }
.hero__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.locations { border-bottom: 1px solid var(--line); }
.locations__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; padding-block: 1.4rem; }
.locations__row span { font-family: var(--font-display); font-size: 0.95rem; color: var(--muted); }

.intro-grid { display: grid; gap: 2rem; }
@media (min-width: 820px) { .intro-grid { grid-template-columns: 200px 1fr; gap: 3rem; } }
.intro__label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); padding-top: 0.6rem; }
.intro__big { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.2; letter-spacing: -0.01em; color: var(--ink-text); max-width: 24ch; }
.intro__big em { font-style: italic; }
.intro__support { margin-top: 1.5rem; max-width: 58ch; color: var(--muted); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.section-head__title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; line-height: 1.05; }
.section-head__title .it { display: block; font-style: italic; }
.section-head .eyebrow { margin-bottom: 1rem; display: block; }

/* ---- Expertise / practice cards (real imagery) ---- */
.expertise-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .expertise-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.exp-card { display: flex; flex-direction: column; }
.exp-card__img { aspect-ratio: 4 / 3; margin-bottom: 1.5rem; overflow: hidden; background: var(--ink); position: relative; }
.exp-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.exp-card:hover .exp-card__img img { transform: scale(1.045); }
.exp-card__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,13,0) 55%, rgba(20,17,13,0.32) 100%); }
.exp-card h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); font-weight: 500; line-height: 1.1; margin-bottom: 0.75rem; }
.exp-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; flex: 1; }

/* ---- Sub-practice areas toggle (accordion) ---- */
.sub-areas { border-top: 1px solid var(--line); margin-bottom: 1.25rem; }
.sub-areas summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-text); transition: color 0.3s var(--ease); }
.sub-areas summary::-webkit-details-marker { display: none; }
.sub-areas summary:hover { color: var(--gold); }
.sub-areas__count { color: var(--gold); margin-left: 0.35rem; }
.sub-areas__ico { display: inline-flex; transition: transform 0.35s var(--ease); }
.sub-areas__ico .icon { width: 16px; height: 16px; }
.sub-areas[open] summary { color: var(--gold); }
.sub-areas[open] .sub-areas__ico { transform: rotate(45deg); }
.sub-areas__list { list-style: none; padding: 0 0 0.5rem; margin: 0; }
.sub-areas__list li { border-top: 1px solid var(--line); }
.sub-areas__list a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; font-size: 0.92rem; color: var(--muted); transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.sub-areas__list a:hover { color: var(--gold); padding-left: 0.4rem; }
.sub-areas__list a .icon { width: 13px; height: 13px; flex-shrink: 0; }

/* ---- Method ---- */
.method { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 920px) { .method { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.method h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.08; margin: 1.25rem 0 2.5rem; }
.method h2 .it { display: block; font-style: italic; }
.method-list { display: grid; gap: 2rem; }
.method-item { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line-dark); }
.method-item:last-child { border-bottom: 0; padding-bottom: 0; }
.method-item__n { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); font-style: italic; }
.method-item h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; color: var(--cream); margin-bottom: 0.5rem; }
.method-item p { color: var(--muted-on-dark); font-size: 0.92rem; }
.method__media { aspect-ratio: 3 / 4; position: relative; overflow: hidden; background: var(--ink); display: flex; align-items: flex-end; }
.method__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.method__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,14,20,0.25) 0%, rgba(11,14,20,0.55) 55%, rgba(11,14,20,0.88) 100%); }
.method__stat { position: relative; z-index: 1; padding: 2.25rem; }
.method__stat b { display: block; font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); color: var(--gold); font-weight: 500; line-height: 1; }
.method__stat span { font-size: 0.85rem; color: var(--cream-on-dark); opacity: 0.9; }

/* ---- Stats strip ---- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 2.5rem 1.5rem; border-right: 1px solid var(--line); }
.stat:nth-child(2n) { border-right: 0; }
@media (min-width: 760px) { .stat:nth-child(2n) { border-right: 1px solid var(--line); } .stat:last-child { border-right: 0; } }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 500; color: var(--gold); line-height: 1.05; }
.stat span { display: block; margin-top: 0.6rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.band-ink .stat { border-color: var(--line-dark); }
.band-ink .stat span { color: var(--muted-on-dark); }

/* ---- Briefing / insight cards (editorial, no placeholder) ---- */
.briefing-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .briefing-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.brief-card { display: flex; flex-direction: column; border-top: 2px solid var(--ink); padding-top: 1.5rem; transition: border-color 0.4s var(--ease); }
.brief-card:hover { border-color: var(--gold); }
.brief-card__meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.85rem; }
.brief-card__cat { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.brief-card__date { font-size: 0.75rem; color: var(--faint); }
.brief-card__title { font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 500; line-height: 1.2; margin-bottom: 0.75rem; display: block; color: var(--ink-text); }
.brief-card p, .brief-card__excerpt { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.25rem; flex: 1; }

/* ---- Closing / CTA band (image-backed) ---- */
.closing { text-align: center; position: relative; overflow: hidden; }
.closing::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(45,34,22,0.86) 0%, rgba(20,16,11,0.92) 100%),
    url('/images/cta-towers.webp');
  background-size: cover; background-position: center;
}
.closing__inner { position: relative; z-index: 1; }
.closing h2 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 500; line-height: 1.05; max-width: 18ch; margin: 0 auto; color: var(--cream); }
.closing__lede { margin: 1.5rem auto 0; max-width: 52ch; color: var(--cream-on-dark); opacity: 0.85; }
.closing__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: center; }
.closing__email { font-size: 0.85rem; color: var(--cream-on-dark); opacity: 0.9; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

/* ---- Page head ---- */
.page-head { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-head .breadcrumbs { font-size: 0.78rem; color: var(--faint); }
.page-head .breadcrumbs a:hover { color: var(--gold); }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1; margin-top: 1.25rem; font-weight: 500; }
.page-head h1 .it { font-style: italic; }
.page-head .lede { margin-top: 1.5rem; max-width: 60ch; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

.prose p { color: var(--muted); margin-bottom: 1.1rem; max-width: 70ch; }
.prose p:last-child { margin-bottom: 0; }
.feature-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.feature-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 1rem; align-items: baseline; color: var(--ink-text); }
.feature-list li::before { content: '/'; color: var(--gold); }
.band-ink .feature-list { border-color: var(--line-dark); }
.band-ink .feature-list li { border-color: var(--line-dark); color: var(--cream-on-dark); }

.card-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--cream); padding: clamp(1.75rem, 3vw, 2.5rem); transition: background 0.4s var(--ease); }
.card:hover { background: var(--paper); }
.card__idx { font-family: var(--font-display); font-style: italic; color: var(--gold); margin-bottom: 0.75rem; }
.card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

.values { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 760px) { .values { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; } }
.value { border-top: 2px solid var(--gold); padding-top: 1.1rem; }
.value h4 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
.value p { color: var(--muted); font-size: 0.95rem; }

/* ---- People ---- */
.person { display: grid; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
@media (min-width: 820px) { .person { grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; } }
.person__monogram { aspect-ratio: 3 / 4; background: linear-gradient(165deg, var(--navy) 0%, var(--ink) 75%); display: grid; place-items: center; position: relative; overflow: hidden; border: 1px solid var(--line-dark); }
.person__monogram::before { content: ''; position: absolute; inset: 14px; border: 1px solid rgba(176,141,79,0.4); }
.person__monogram::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--gold); }
.person__monogram span { font-family: var(--font-display); font-size: 3.6rem; font-style: italic; letter-spacing: 0.04em; color: var(--gold); }
.person__role { color: var(--gold); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.5rem; }
.person h3 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 500; }
.person h3 small { display: block; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.08em; color: var(--faint); margin-top: 0.4rem; font-weight: 400; }
.person__pull { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.35; color: var(--ink-text); margin: 1.25rem 0; padding-left: 1.5rem; border-left: 2px solid var(--gold); }
.person__bio p { color: var(--muted); margin-bottom: 1rem; }

/* ---- Insights list ---- */
.insight-list { border-top: 1px solid var(--line); }
.insight { display: grid; gap: 0.75rem 2rem; padding: clamp(1.5rem, 4vw, 2.5rem) 0; border-bottom: 1px solid var(--line); transition: padding-left 0.5s var(--ease); }
.insight:hover { padding-left: 1rem; }
@media (min-width: 760px) { .insight { grid-template-columns: 170px 1fr auto; align-items: baseline; } }
.insight__cat { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.insight__date { font-size: 0.78rem; color: var(--faint); margin-top: 0.3rem; display: block; }
.insight__title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 500; line-height: 1.15; display: block; }
.insight__excerpt { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; max-width: 70ch; display: block; }
.insight__authors { font-size: 0.8rem; color: var(--faint); font-style: italic; margin-top: 0.5rem; display: block; }
.insight__arrow { color: var(--faint); transition: color 0.4s var(--ease); }
.insight:hover .insight__arrow { color: var(--gold); }

/* ---- Contact ---- */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.field { display: grid; gap: 0.5rem; margin-bottom: 1.5rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.field input, .field textarea, .field select { font: inherit; font-size: 0.95rem; color: var(--ink-text); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 0.85rem 1rem; width: 100%; transition: border-color 0.3s var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--faint); margin-top: 1rem; }
.form-status { margin-top: 1rem; font-size: 0.9rem; }
.form-status[data-state="ok"] { color: var(--gold); }
.form-status[data-state="err"] { color: var(--sienna); }
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail .k { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.4rem; }
.contact-detail a, .contact-detail .v { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink-text); }
.contact-detail a:hover { color: var(--gold); }

/* ---- Disclaimer gate ---- */
.gate { position: fixed; inset: 0; z-index: 200; background: var(--ink); color: var(--cream); display: grid; place-items: center; padding: var(--gutter); overflow-y: auto; }
.gate[hidden] { display: none; }
.gate__inner { max-width: 640px; }
.gate__mark { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 2.5rem; }
.gate__mark span { color: var(--gold); font-style: italic; }
.gate h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.5rem; font-weight: 500; }
.gate__body { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.7; }
.gate__body p { margin-bottom: 1rem; }
.gate__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--cream-on-dark); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand .brand { font-size: 1.6rem; color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: var(--muted-on-dark); font-size: 0.92rem; max-width: 42ch; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { color: var(--muted-on-dark); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); color: var(--muted-on-dark); font-size: 0.78rem; line-height: 1.7; max-width: 92ch; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2rem; font-size: 0.78rem; color: var(--muted-on-dark); }
.footer-bottom a:hover { color: var(--gold); }

.reveal { opacity: 1; transform: none; }
.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-reveal .reveal { opacity: 1; transform: none; } }

.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: #fff; padding: 0.75rem 1.25rem; z-index: 300; }
.skip:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
