/* =========================================================================
   MLT Attorneys Inc — Design System
   Warm, editorial, compassion-forward. Surrogacy-led.
   ========================================================================= */

:root {
  /* Warm neutral foundation */
  --bg:        oklch(0.965 0.008 75);   /* soft warm cream */
  --bg-2:      oklch(0.945 0.010 72);   /* slightly deeper band */
  --surface:   oklch(0.985 0.006 80);   /* card / panel */
  --ink:       oklch(0.255 0.012 55);   /* deep warm charcoal */
  --ink-soft:  oklch(0.255 0.012 55 / 0.66);
  --ink-faint: oklch(0.255 0.012 55 / 0.40);
  --line:      oklch(0.255 0.012 55 / 0.13);
  --line-2:    oklch(0.255 0.012 55 / 0.08);
  --dark:      oklch(0.255 0.018 60);   /* espresso dark section */
  --dark-2:    oklch(0.225 0.018 60);
  --on-dark:   oklch(0.95 0.01 80);
  --on-dark-soft: oklch(0.95 0.01 80 / 0.66);

  /* Accent — default warm antique gold */
  --accent:      oklch(0.62 0.062 72);
  --accent-deep: oklch(0.52 0.062 70);
  --accent-tint: oklch(0.62 0.062 72 / 0.12);
  --accent-on:   oklch(0.985 0.006 80);  /* text on accent fills */

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
}

/* Accent presets ---------------------------------------------------------- */
[data-accent="navy"] {
  --accent: oklch(0.46 0.066 245); --accent-deep: oklch(0.38 0.066 245);
  --accent-tint: oklch(0.46 0.066 245 / 0.12);
}
[data-accent="sage"] {
  --accent: oklch(0.55 0.05 150); --accent-deep: oklch(0.46 0.05 150);
  --accent-tint: oklch(0.55 0.05 150 / 0.12);
}
[data-accent="plum"] {
  --accent: oklch(0.48 0.07 350); --accent-deep: oklch(0.40 0.07 350);
  --accent-tint: oklch(0.48 0.07 350 / 0.12);
}
[data-accent="mono"] {
  --accent: oklch(0.30 0.012 60); --accent-deep: oklch(0.22 0.012 60);
  --accent-tint: oklch(0.30 0.012 60 / 0.10);
}

/* Font presets ------------------------------------------------------------ */
[data-font="newsreader"] { --font-display: "Newsreader", Georgia, serif; }
[data-font="spectral"]   { --font-display: "Spectral", Georgia, serif; }

/* =========================================================================
   Base
   ========================================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-tint); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 140px); }

/* Shared bits -------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); line-height: 1.6; }

/* Buttons */
.btn {
  --pad-y: 0.92em; --pad-x: 1.5em;
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn .arr { transition: transform .3s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: var(--accent-on); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-onaccent { background: var(--accent); color: var(--accent-on); }
.btn-ondark { background: var(--on-dark); color: var(--dark); }
.btn-ondark:hover { background: var(--accent); color: var(--accent-on); }
.btn-outline-dark { background: transparent; color: var(--on-dark); border-color: oklch(0.95 0.01 80 / 0.3); }
.btn-outline-dark:hover { border-color: var(--on-dark); }

/* Text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em;
  color: var(--accent-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .25s, gap .25s;
}
.tlink:hover { gap: 0.8em; border-color: var(--accent); }

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.965 0.008 75 / 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px oklch(0.25 0.02 60 / 0.5); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 38px; width: auto; }
.brand .brand-text {
  font-family: var(--font-display); font-size: 1.28rem; font-weight: 600;
  letter-spacing: 0.02em; line-height: 1; white-space: nowrap;
}
.brand .brand-text small {
  display: block; font-family: var(--font-body);
  font-size: 0.56rem; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--accent-deep); margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; font-size: 0.9rem; font-weight: 500;
  padding: 10px 14px; color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.has-menu { display: inline-flex; align-items: center; gap: 5px; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; white-space: nowrap;
}
.nav-phone svg { color: var(--accent-deep); }

/* dropdown */
.has-dd { position: relative; }
/* invisible bridge across the gap so the panel stays open while the cursor travels to it */
.has-dd::after {
  content: ""; position: absolute; top: 100%; left: -30px; right: -30px; height: 16px;
}
.dd-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 260px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 30px 60px -30px oklch(0.25 0.02 60 / 0.55);
  padding: 10px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s;
}
.has-dd:hover .dd-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd-panel a {
  display: block; padding: 9px 12px; border-radius: 7px;
  font-size: 0.88rem; color: var(--ink-soft);
}
.dd-panel a:hover { background: var(--accent-tint); color: var(--ink); }
.dd-panel a.flag { color: var(--ink); font-weight: 600; }
.dd-panel a.flag span { color: var(--accent-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: .1em; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 70; background: var(--bg);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 24px var(--gutter);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; height: 60px; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.mobile-nav nav a { font-family: var(--font-display); font-size: 1.7rem; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.mobile-nav nav a.sub { font-family: var(--font-body); font-size: 1rem; color: var(--ink-soft); padding-left: 16px; }
.mobile-nav .m-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; overflow: hidden; background: color-mix(in oklch, var(--accent) 18%, var(--surface));
  }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding-block: clamp(44px, 5vw, 80px) clamp(0px, 2vw, 24px);
  min-height: min(78vh, 720px);
}
.hero-copy { max-width: 600px; position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  line-height: 1.06;
  margin-top: 20px; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--accent-deep); }
.hero h1 em.rotator { display: inline-block; transition: opacity .4s ease, transform .4s ease; }
.hero h1 em.rotator.swap { opacity: 0; transform: translateY(10px); }
.hero-sub { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--ink-soft); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 26px 38px;
}
.hero-trust .ht { max-width: 24ch; }
.hero-trust .ht b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; display: block; line-height: 1; }
.hero-trust .ht span { font-size: 0.82rem; color: var(--ink-soft); }

/* portrait stage */
.hero-figure { position: relative; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; min-height: 520px; }
.hero-panel {
  position: absolute; inset: 0;
}
.hero-portrait {
  position: relative; z-index: 2;
  width: min(480px, 100%); height: auto; margin-bottom: 0;
  filter: drop-shadow(0 36px 46px oklch(0.3 0.03 60 / 0.22));
}
.hero-badge {
  position: absolute; z-index: 3; left: -6px; bottom: 64px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 24px 50px -28px oklch(0.25 0.02 60 / 0.6);
  max-width: 230px;
}
.hero-badge .name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; line-height: 1.1; }
.hero-badge .role { font-size: 0.78rem; color: var(--accent-deep); font-weight: 600; letter-spacing: 0.04em; }
.hero-watermark {
  position: absolute; top: -8%; right: -4%; width: 360px; opacity: 0.05;
  pointer-events: none; z-index: 0;
}

/* Hero layout variant: portrait BELOW (stacked, centered) */
[data-hero="below"] .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: auto; }
[data-hero="below"] .hero-copy { max-width: 720px; margin-inline: auto; }
[data-hero="below"] .hero-sub { margin-inline: auto; }
[data-hero="below"] .hero-cta { justify-content: center; }
[data-hero="below"] .hero-figure { margin-top: 36px; min-height: 560px; max-width: 560px; margin-inline: auto; }

/* trust strip under hero */
.marquee-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.marquee-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 32px; padding-block: 22px;
}
.marquee-strip .mi {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 0.86rem; font-weight: 500; color: var(--ink-soft);
}
.marquee-strip .mi svg { color: var(--accent-deep); flex: none; }

/* =========================================================================
   Section heading block
   ========================================================================= */
.sec-head { max-width: 680px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); margin-top: 18px; }
.sec-head p { margin-top: 18px; }

/* =========================================================================
   Surrogacy flagship
   ========================================================================= */
.flagship { background: var(--bg-2); border-block: 1px solid var(--line-2); position: relative; }
.flagship-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 80px); align-items: stretch; }
.flagship-media { position: relative; display: flex; }
.flagship-media .photo {
  border-radius: 10px; overflow: hidden;
  width: 100%; height: 100%; min-height: 520px;
  box-shadow: 0 50px 80px -50px oklch(0.25 0.02 60 / 0.6);
}
.flagship-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.flagship-media image-slot { width: 100%; height: 100%; }

/* Designed photo placeholder (user supplies real imagery later) */
.ph-photo {
  position: relative;
  background:
    repeating-linear-gradient(135deg, oklch(0.90 0.012 72) 0 2px, transparent 2px 13px),
    linear-gradient(160deg, oklch(0.93 0.014 74), oklch(0.88 0.016 70));
  display: grid; place-items: center; text-align: center;
}
.ph-photo::after {
  content: attr(data-label);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: oklch(0.42 0.02 60); max-width: 60%; line-height: 1.5;
}
.ph-photo .ph-ic {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -150%);
  width: 38px; height: 38px; color: oklch(0.5 0.03 65); opacity: 0.7;
}
.flagship-tag {
  position: absolute; right: -18px; bottom: 40px;
  background: var(--dark); color: var(--on-dark);
  padding: 18px 22px; border-radius: 10px; max-width: 220px;
  box-shadow: 0 30px 60px -30px oklch(0.25 0.02 60 / 0.7);
}
.flagship-tag b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; display: block; }
.flagship-tag span { font-size: 0.8rem; color: var(--on-dark-soft); }
.star { color: var(--accent); }

.feature-list { display: grid; gap: 0; margin-top: 30px; }
.feature-list .fl {
  padding: 18px 0; border-top: 1px solid var(--line);
}
.feature-list .fl:last-child { border-bottom: 1px solid var(--line); }
.feature-list .fl b { font-weight: 600; font-size: 1.02rem; display: block; }
.feature-list .fl p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 4px; }

/* =========================================================================
   Practice areas
   ========================================================================= */
.pa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.pa-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 32px 30px; min-height: 270px;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s, background .35s, color .35s;
  overflow: hidden;
}
/* Every card adopts the warm espresso treatment on hover */
.pa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 70px -44px oklch(0.25 0.02 60 / 0.5);
  background: var(--dark); border-color: transparent; color: var(--on-dark);
}
.pa-card .pa-num { font-family: var(--font-display); font-size: 0.95rem; color: var(--ink-faint); transition: color .35s; }
.pa-card h3 { font-size: 1.7rem; margin-top: 14px; transition: color .35s; }
.pa-card p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 12px; flex: 1; transition: color .35s; }
.pa-card .tlink { margin-top: 18px; transition: color .35s; }
.pa-card:hover .pa-num { color: var(--accent); }
.pa-card:hover h3 { color: var(--on-dark); }
.pa-card:hover p { color: var(--on-dark-soft); }
.pa-card:hover .tlink { color: var(--accent); }
.pa-card.flag { background: var(--dark); border-color: transparent; color: var(--on-dark); grid-row: span 1; }
.pa-card.flag .pa-num { color: var(--accent); }
.pa-card.flag p { color: var(--on-dark-soft); }
.pa-card.flag .tlink { color: var(--accent); }
.pa-card.flag .flag-pill {
  position: absolute; top: 26px; right: 26px;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 6px;
}
.pa-card .wm { position: absolute; right: -30px; bottom: -30px; width: 180px; opacity: 0; transition: opacity .4s ease; pointer-events: none; }
.pa-card:hover .wm { opacity: 0.08; }

/* =========================================================================
   Interior page hero (compact)
   ========================================================================= */
.page-hero {
  position: relative; overflow: hidden;
  background: color-mix(in oklch, var(--accent) 18%, var(--surface));
  border-bottom: 1px solid var(--line-2);
}
.page-hero-inner { padding-block: clamp(48px, 6vw, 86px); position: relative; z-index: 2; max-width: 820px; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 22px;
}
.page-hero .breadcrumb a { color: var(--ink-soft); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--accent-deep); }
.page-hero .breadcrumb .sep { color: var(--ink-faint); }
.page-hero .breadcrumb .here { color: var(--ink); font-weight: 500; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); margin-top: 18px; line-height: 1.04; }
.page-hero h1 em { font-style: italic; color: var(--accent-deep); }
.page-hero .lead { margin-top: 22px; max-width: 60ch; }
.page-hero-watermark {
  position: absolute; top: 50%; right: -3%; transform: translateY(-50%);
  width: 340px; opacity: 0.06; pointer-events: none; z-index: 0;
}

/* Service-page hero variant: copy beside a photo slot */
.page-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.88fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; padding-block: clamp(40px, 5vw, 74px); position: relative; z-index: 2;
}
.page-hero-grid .page-hero-copy { max-width: 600px; }
.page-hero-grid h1 { font-size: clamp(2.2rem, 4.2vw, 3.3rem); margin-top: 16px; }
.page-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.page-hero-figure {
  aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden;
  background: var(--surface); border: 1px dashed var(--line);
  box-shadow: 0 50px 80px -52px oklch(0.25 0.02 60 / 0.5);
}
.page-hero-figure image-slot { width: 100%; height: 100%; display: block; }

/* Service: overview split (sticky aside + body) */
.service-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.ss-aside { position: sticky; top: 110px; }
.ss-aside h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.ss-body p { font-size: 1.05rem; color: var(--ink-soft); }
.ss-body p + p { margin-top: 18px; }
.ss-body p.lead { color: var(--ink); }
.glance-card {
  margin-top: 28px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 8px 24px;
}
.glance-card .gc-row { padding: 16px 0; border-top: 1px solid var(--line); }
.glance-card .gc-row:first-child { border-top: 0; }
.glance-card .gc-k { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.glance-card .gc-v { font-size: 1.02rem; font-weight: 500; margin-top: 3px; }

/* Service: "what we help with" item grid */
.covers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }
.cover-item {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 28px 30px; transition: border-color .3s, box-shadow .3s, transform .3s;
}
.cover-item:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 30px 60px -44px oklch(0.25 0.02 60 / 0.45); }
.cover-item h3 { font-size: 1.34rem; }
.cover-item p { font-size: 0.95rem; color: var(--ink-soft); margin-top: 10px; }
.cover-item .tlink { margin-top: 16px; }

/* Service: process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 52px; }
.step { padding-top: 22px; border-top: 2px solid var(--accent); }
.step .s-n { font-family: var(--font-display); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.12em; color: var(--accent-deep); text-transform: uppercase; }
.step h3 { font-size: 1.28rem; margin-top: 10px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 8px; }

/* Service: related areas */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.rel-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 28px 30px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .3s, transform .3s;
}
.rel-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.rel-card h3 { font-size: 1.34rem; }
.rel-card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.rel-card .tlink { margin-top: 4px; }

/* Service: full-bleed photo band (the second image) */
.photo-band { position: relative; height: clamp(320px, 42vw, 520px); overflow: hidden; background: var(--dark); }
.photo-band image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.photo-band .pb-cap {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end;
  padding: clamp(26px, 5vw, 58px); pointer-events: none;
  background: linear-gradient(to top, oklch(0.20 0.02 60 / 0.62), oklch(0.20 0.02 60 / 0) 58%);
}
.photo-band .pb-cap p {
  font-family: var(--font-display); font-style: italic; color: var(--on-dark);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.18; max-width: 22ch;
  text-shadow: 0 2px 24px oklch(0.18 0.02 60 / 0.5);
}

/* =========================================================================
   Practice groups (overview page)
   ========================================================================= */
.pa-group { padding-block: clamp(56px, 7vw, 96px); border-top: 1px solid var(--line); }
.pa-group:first-of-type { border-top: 0; }
.pa-group.band { background: var(--bg-2); }
.pa-group-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.pa-group-head { position: sticky; top: 110px; }
.pa-group-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.pa-group-head p { margin-top: 16px; color: var(--ink-soft); max-width: 38ch; }
.pa-group-head .g-meta {
  margin-top: 20px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
}
.pa-group-photo {
  margin-top: 30px; border-radius: 10px; overflow: hidden; aspect-ratio: 5 / 4;
  background: var(--bg-2); border: 1px dashed var(--line);
  box-shadow: 0 40px 70px -48px oklch(0.25 0.02 60 / 0.55);
}
.pa-group.band .pa-group-photo { background: var(--surface); }
.pa-group-photo image-slot { width: 100%; height: 100%; display: block; }

/* Cards: even single-column stack of horizontal cards (balanced for any count) */
.pa-group-cards { display: flex; flex-direction: column; gap: 16px; }
.pa-group-cards .pa-card {
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 28px; align-items: center;
  min-height: 0; padding: 30px 34px;
}
.pa-group-cards .pa-card h3 { margin-top: 0; font-size: 1.6rem; }
.pa-group-cards .pa-card p { margin-top: 0; flex: none; }
.pa-group-cards .pa-card .pa-covers { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pa-group-cards .pa-card .pa-covers span {
  font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); white-space: nowrap;
  background: var(--accent-tint); padding: 5px 10px; border-radius: 100px;
}
.pa-group-cards .pa-card .pa-card-body { display: flex; flex-direction: column; }
.pa-group-cards .pa-card .tlink { margin-top: 16px; }

/* Hover: no espresso flip — only the watermark fades in */
.pa-group-cards .pa-card:hover {
  transform: none; background: var(--surface); color: inherit;
  border-color: var(--accent); box-shadow: none;
}
.pa-group-cards .pa-card:hover h3,
.pa-group-cards .pa-card:hover p { color: inherit; }
.pa-group-cards .pa-card:hover .tlink { color: var(--accent-deep); }
.pa-group-cards .pa-card:hover .pa-covers span { background: var(--accent-tint); color: var(--ink-soft); }
.pa-group-cards .pa-card .wm { width: 150px; right: -24px; bottom: -24px; }
.pa-group-cards .pa-card:hover .wm { opacity: 0.07; }

/* =========================================================================
   Why choose
   ========================================================================= */
.why { background: var(--dark); color: var(--on-dark); }
.why .sec-head h2 { color: var(--on-dark); }
.why .eyebrow { color: var(--accent); }
.why .eyebrow::before, .why .eyebrow::after { background: var(--accent); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 56px; margin-top: 52px; }
.why-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid oklch(0.95 0.01 80 / 0.12); }
.why-item .n { font-family: var(--font-display); font-size: 1rem; color: var(--accent); padding-top: 3px; }
.why-item h3 { font-size: 1.32rem; color: var(--on-dark); }
.why-item p { font-size: 0.92rem; color: var(--on-dark-soft); margin-top: 6px; }

/* =========================================================================
   FAQ (AEO)
   ========================================================================= */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq-aside { position: sticky; top: 110px; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500; color: var(--ink); line-height: 1.2;
}
.faq-q .pm { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: var(--accent-deep);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .pm::before { width: 16px; height: 1.5px; }
.faq-q .pm::after { width: 1.5px; height: 16px; transition: transform .3s; }
.faq-item.open .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a .faq-a-inner { padding-bottom: 28px; color: var(--ink-soft); max-width: 60ch; font-size: 0.98rem; }
.faq-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); }

/* =========================================================================
   Testimonials
   ========================================================================= */
.testi { background: var(--bg-2); border-block: 1px solid var(--line-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 30px 28px; display: flex; flex-direction: column;
}
.testi-card .quote-mark { font-family: var(--font-display); font-size: 3.4rem; line-height: 0.6; color: var(--accent); height: 30px; }
.testi-card blockquote { margin: 18px 0 0; font-size: 1.02rem; line-height: 1.55; color: var(--ink); flex: 1; }
.testi-card .who { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-card .who b { font-weight: 600; font-size: 0.92rem; }
.testi-card .who span { display: block; font-size: 0.8rem; color: var(--ink-soft); }
.testi-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 0.82rem; margin-bottom: 2px; }

/* =========================================================================
   About / team strip
   ========================================================================= */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.team-card {
  display: grid; grid-template-columns: 116px 1fr; gap: 24px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 28px;
}
.team-card .avatar {
  width: 116px; height: 140px; border-radius: 10px; overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--line);
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.team-card h3 { font-size: 1.5rem; }
.team-card .role { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--accent-deep); margin-top: 3px; }
.team-card p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 12px; }
.team-card .creds { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.team-card .creds span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft);
  background: var(--accent-tint); padding: 5px 10px; border-radius: 100px;
}

/* =========================================================================
   Contact CTA
   ========================================================================= */
.contact { position: relative; background: var(--dark); color: var(--on-dark); overflow: hidden; }
.contact .wm { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 420px; opacity: 0.06; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 80px); align-items: center; position: relative; z-index: 2; }
.contact h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--on-dark); }
.contact .eyebrow { color: var(--accent); }
.contact .eyebrow::before { background: var(--accent); }
.contact-sub { color: var(--on-dark-soft); margin-top: 20px; font-size: 1.08rem; max-width: 46ch; }
.contact-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.contact-card {
  background: oklch(0.95 0.01 80 / 0.05); border: 1px solid oklch(0.95 0.01 80 / 0.16);
  border-radius: 14px; padding: 32px;
}
.contact-card .row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid oklch(0.95 0.01 80 / 0.12); }
.contact-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card .row:first-child { padding-top: 0; }
.contact-card .row svg { color: var(--accent); flex: none; margin-top: 3px; }
.contact-card .row .k { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); }
.contact-card .row .v { font-size: 1.02rem; color: var(--on-dark); font-weight: 500; }
.contact-card .row .v a:hover { color: var(--accent); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--dark-2); color: var(--on-dark-soft); padding-block: 64px 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid oklch(0.95 0.01 80 / 0.2); color: var(--on-dark); transition: background .2s, border-color .2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark); margin: 0 0 16px; }
.footer-col a { display: block; font-size: 0.9rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid oklch(0.95 0.01 80 / 0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.8rem; color: var(--on-dark-soft);
}

/* =========================================================================
   Reveal — content is always visible (no entrance animation, for reliability)
   ========================================================================= */
.reveal { opacity: 1; transform: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .pa-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pa-card.flag { grid-column: span 2; }
}
@media (max-width: 940px) {
  .nav-links, .nav-phone { display: none; }
  .nav-actions .btn-primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 36px; }
  .hero-cta { justify-content: center; }
  .hero-figure { margin-top: 24px; order: 2; min-height: 460px; }
  .flagship-grid, .faq-layout, .contact-grid, .why-grid { grid-template-columns: 1fr; }
  .pa-group-grid { grid-template-columns: 1fr; gap: 32px; }
  .pa-group-head { position: static; }
  .page-hero-grid, .service-split, .related-grid { grid-template-columns: 1fr; }
  .ss-aside { position: static; }
  .page-hero-figure { aspect-ratio: 16 / 10; max-width: 560px; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .flagship-media .photo { min-height: 0; aspect-ratio: 4/5; }
  .faq-aside { position: static; }
  .why-grid { gap: 0; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .pa-grid, .testi-grid { grid-template-columns: 1fr; }
  .pa-group-cards .pa-card { grid-template-columns: 1fr; gap: 14px; }
  .covers-grid, .related-grid { grid-template-columns: 1fr; }
  .pa-card.flag { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .flagship-tag { right: 0; }
  .hero-badge { left: 0; }
  .team-card { grid-template-columns: 1fr; }
  .team-card .avatar { width: 220px; height: 264px; }
}
