:root {
  --ink: #1b1815;
  --ink-2: #211d19;
  --paper: #e7dfdc;
  --surface: #fffaf1;
  --gold: #c9a25b;
  --gold-deep: #a3803f;
  --muted: #b4a9a0;
  --ink-soft: #6b625c;
  --line: rgba(27,24,21,.13);
  --line-light: rgba(255,255,255,.13);
  --radius: 11px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'IBM Plex Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }

h1 em, h2 em, .quote-text { font-style: italic; font-weight: 500; }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.1rem;
}

.eyebrow.center { justify-content: center; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.wide-caps {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.6vw + .7rem, 2.15rem) !important;
}

.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: .6rem;
  margin-bottom: 3.6rem;
}
.steps-rail .section-sub, .quote-block .section-sub { color: rgba(255,255,255,.6); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.btn-gold, .btn-line {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  padding: .95rem 1.7rem;
  border-radius: 7px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #171308;
  box-shadow: 0 18px 34px rgba(156,122,60,.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 40px rgba(156,122,60,.4); }

.btn-line {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-line:hover { background: rgba(201,163,92,.12); border-color: var(--gold); }

.site-head { position: sticky; top: 0; z-index: 200; background: var(--ink); }
.top-accent { height: 4px; background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep)); }

.head-row {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.15rem 1.9rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.brand-mark { display: flex; align-items: center; gap: .8rem; color: #fff; }
.brand-glyph {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.16rem; }
.brand-tag { font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.navlinks { display: flex; align-items: center; gap: 2.1rem; margin-left: auto; }
.navlinks > a, .nav-drop-trigger {
  color: rgba(255,255,255,.82);
  font-size: .93rem;
  font-weight: 500;
  position: relative;
  padding: .3rem 0;
}
.navlinks > a::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .25s ease;
}
.navlinks > a:hover { color: #fff; }
.navlinks > a:hover::after { width: 100%; }

.nav-drop { position: relative; }
.nav-drop-trigger { background: none; border: none; font: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; }
.nav-drop-trigger i { font-size: .82rem; }
.nav-drop-panel {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px;
  min-width: 215px;
  box-shadow: 0 24px 48px rgba(10,14,26,.24);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 80;
}
.nav-drop-panel a { color: var(--ink); padding: .68rem .8rem; border-radius: 6px; font-size: .9rem; }
.nav-drop-panel a:hover { background: var(--paper); color: var(--gold-deep); }

@media (min-width: 901px) {
  .nav-drop:hover .nav-drop-panel, .nav-drop-panel.open { display: flex; }
}

.head-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .87rem;
  font-weight: 600;
  padding: .72rem 1.35rem;
  border-radius: 6px;
  transition: background .22s ease, color .22s ease;
  white-space: nowrap;
}
.head-cta:hover { background: var(--gold); color: #171308; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-frame {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3.8rem;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 6.4rem 1.9rem 5.6rem;
  background:
    radial-gradient(120% 140% at 84% 0%, rgba(201,162,91,.24), transparent 55%),
    linear-gradient(160deg, #23201b 0%, #191613 68%, #100e0c 100%);
}
.hero-frame { border-radius: 0; }

.hero-copy h1 {
  font-size: clamp(2.5rem, 3.6vw + 1rem, 4.4rem);
  color: #fdfaf3;
  margin-bottom: 1.6rem;
}
.hero-copy h1 em { color: var(--gold); }

.hero-copy .lede { color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 54ch; margin-bottom: 2.4rem; line-height: 1.7; }

.hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 3.6rem; }
.hero-copy .btn-line { color: rgba(255,255,255,.88); }

.stat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; padding-top: 2.4rem; border-top: 1px solid var(--line-light); max-width: 34rem; }
.stat-tile .num { display: block; font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: .35rem; }
.stat-tile .lbl { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; height: 33rem; object-fit: cover;
  border-radius: 4px 78px 4px 4px;
  filter: grayscale(.2) sepia(.16) saturate(1.28) contrast(1.03);
}
.hero-tag {
  position: absolute; left: -1.6rem; bottom: -1.7rem;
  background: var(--surface);
  border-radius: 9px;
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: .95rem;
  box-shadow: 0 26px 50px rgba(8,10,20,.4);
  max-width: 15.5rem;
}
.hero-tag i { font-size: 1.5rem; color: var(--gold-deep); flex-shrink: 0; }
.hero-tag strong { display: block; font-size: .88rem; color: var(--ink); }
.hero-tag span { font-size: .77rem; color: var(--ink-soft); }

.practice-band {
  padding: 8.4rem 1.9rem 8rem;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 2.2%, 100% 100%, 0 97.8%);
  margin: -2.6rem 0 -2.6rem;
  position: relative;
  z-index: 2;
}
.practice-band h2 { margin-bottom: 0; color: var(--ink); }

.practice-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; }

.practice-tile {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
  background-size: cover; background-position: center;
}
.practice-tile:nth-child(2) { transition-delay: .05s; }
.practice-tile:nth-child(3) { transition-delay: .1s; }
.practice-tile:nth-child(4) { transition-delay: .15s; }
.practice-tile:hover { transform: translateY(-9px); box-shadow: 0 30px 50px rgba(10,14,26,.3); }
.practice-tile i { font-size: 2rem; color: var(--gold); margin-bottom: 1.3rem; }
.practice-tile h3 { font-size: 1.36rem; margin-bottom: .8rem; }
.practice-tile p { color: rgba(255,255,255,.68); font-size: .92rem; flex-grow: 1; }
.practice-tile.featured { padding: 2.8rem 2.1rem; justify-content: flex-end; min-height: 24rem; }
.practice-tile.featured h3 { font-size: 1.7rem; }
.practice-tile.featured p { color: rgba(255,255,255,.78); font-size: .98rem; }
.tile-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  margin-top: 1.6rem;
  padding: .68rem 1.3rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 3px;
  width: fit-content;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
}
.practice-tile:hover .tile-more { background: var(--gold); border-color: var(--gold); color: #17140f; }

.about-panel {
  max-width: 1320px; margin: 0 auto;
  padding: 7rem 1.9rem;
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: 4.4rem; align-items: center;
}
.about-figure { position: relative; }
.about-figure img { width: 100%; height: 30rem; object-fit: cover; border-radius: 4px; }
.about-badge {
  position: absolute; top: -1.3rem; right: -1.3rem;
  background: var(--ink); color: var(--gold);
  font-family: var(--serif); font-style: italic;
  font-size: 1.02rem; line-height: 1.28;
  padding: 1.1rem 1.4rem;
  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(10,14,26,.24);
}
.about-copy h2 { font-size: clamp(1.9rem, 2.2vw + .8rem, 2.7rem); margin-bottom: 1.5rem; color: var(--ink); }
.about-copy p { margin-bottom: 1.2rem; font-size: 1rem; }

.check-rail { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0 2.6rem; }
.check-rail li { display: flex; gap: .9rem; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.check-rail i { color: var(--gold-deep); font-size: 1.2rem; margin-top: .1rem; flex-shrink: 0; }

.mini-stats { display: flex; gap: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.mini-stats strong { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--gold-deep); }
.mini-stats span { font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

.steps-rail {
  background: linear-gradient(180deg, #100e0c, #211d19);
  padding: 6.6rem 1.9rem;
}
.steps-rail h2 { font-size: clamp(1.9rem, 2.4vw + .8rem, 2.9rem); color: #fdfaf3; margin-bottom: 4rem; }

.steps-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.8rem; position: relative; }
.step-node { position: relative; padding-top: 2.6rem; }
.step-num { font-family: var(--serif); font-style: italic; font-size: 3.4rem; color: rgba(201,163,92,.36); position: absolute; top: -.9rem; left: 0; line-height: 1; }
.step-node h3 { color: #fdfaf3; font-size: 1.28rem; margin-bottom: .7rem; }
.step-node p { color: rgba(255,255,255,.62); font-size: .92rem; }

.team-row {
  padding: 8.6rem 1.9rem 8.2rem;
  background: var(--paper);
  text-align: center;
  clip-path: polygon(0 2.2%, 100% 0, 100% 97.8%, 0 100%);
  margin: -2.6rem 0 -2.6rem;
  position: relative;
  z-index: 2;
}
.team-row h2 { color: var(--ink); margin-bottom: 0; }

.team-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.6rem; text-align: left; }
.team-figure img { width: 11rem; height: 11rem; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; filter: grayscale(.85) contrast(1.06) brightness(.96); box-shadow: 0 20px 40px rgba(27,24,21,.16); }
.team-figure h3 { font-size: 1.36rem; margin-bottom: .3rem; }
.team-figure .role { font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: .9rem; }
.team-figure p { font-size: .95rem; }

.see-team { display: inline-flex; align-items: center; gap: .5rem; margin-top: 3.6rem; font-weight: 600; color: var(--gold-deep); font-size: .95rem; }
.see-team:hover { color: var(--ink); }

.quote-block {
  position: relative;
  background-size: cover; background-position: center;
  padding: 8rem 1.9rem;
  text-align: center;
  color: #fdfaf3;
}
.quote-block::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,18,36,.55), rgba(11,14,28,.9)); }
.quote-block > * { position: relative; z-index: 2; }
.quote-mark { font-family: var(--serif); font-size: 7rem; color: var(--gold); opacity: .5; line-height: 1; display: block; margin-bottom: -1rem; }
.quote-text { font-family: var(--serif); font-size: clamp(1.5rem, 1.6vw + 1rem, 2.3rem); max-width: 46rem; margin: 0 auto 1.6rem; line-height: 1.35; color: #fdfaf3; }
.quote-name { font-family: var(--serif); font-style: italic; font-size: .95rem; letter-spacing: .01em; color: var(--gold); }
.quote-name::before { content: "— "; }
.quote-name span { font-family: var(--mono); font-style: normal; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; color: rgba(255,255,255,.5); margin-left: .6rem; }

.faq-rail { padding: 7rem 1.9rem; background: var(--surface); }
.faq-rail h2 { font-size: clamp(1.9rem, 2.4vw + .8rem, 2.9rem); color: var(--ink); margin-bottom: 3.6rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-row {
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.faq-row summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.14rem;
  color: var(--ink);
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary i { color: var(--gold-deep); transition: transform .25s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-row[open] summary i { transform: rotate(45deg); }
.faq-row p { margin-top: 1.1rem; font-size: .96rem; max-width: 60ch; }

.cta-band {
  max-width: 1320px; margin: 3.6rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  background:
    radial-gradient(110% 140% at 12% 0%, rgba(201,162,91,.22), transparent 55%),
    linear-gradient(150deg, #211d19, #17140f 70%);
}
.cta-copy { padding: 5.6rem 3.4rem; }
.cta-copy h2 { font-size: clamp(1.9rem, 2.2vw + .8rem, 2.7rem); color: #fdfaf3; margin-bottom: 1.3rem; }
.cta-copy h2 em { color: var(--gold); }
.cta-copy p { color: rgba(255,255,255,.68); margin-bottom: 2.2rem; max-width: 42ch; }

.cta-info { padding: 5.6rem 3rem; border-left: 1px solid var(--line-light); display: flex; flex-direction: column; justify-content: center; gap: 1.7rem; }
.cta-info div { display: flex; gap: 1rem; align-items: flex-start; }
.cta-info i { color: var(--gold); font-size: 1.2rem; margin-top: .15rem; }
.cta-info span { color: rgba(255,255,255,.82); font-size: .96rem; user-select: text; }

.site-foot { background: #100e0c; color: rgba(255,255,255,.62); padding: 5.6rem 1.9rem 0; margin-top: 5.4rem; }
.foot-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3.2rem; padding-bottom: 3.6rem; }
.site-foot .brand-mark { margin-bottom: 1.2rem; }
.foot-brand p { font-size: .88rem; max-width: 32ch; color: rgba(255,255,255,.55); }
.foot-col h4 { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.foot-col a { font-size: .88rem; color: rgba(255,255,255,.66); transition: color .2s ease; }
.foot-col a:hover { color: #fff; }
.foot-contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .86rem; }
.foot-contact i { color: var(--gold); font-size: 1rem; margin-top: .15rem; flex-shrink: 0; }

.foot-bar { border-top: 1px solid rgba(255,255,255,.09); padding: 1.7rem 0; max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.foot-legal { display: flex; gap: 1.6rem; }
.foot-legal a:hover { color: #fff; }

.cookie-tray {
  position: fixed; left: 1.4rem; right: 1.4rem; bottom: 1.4rem;
  z-index: 999;
  background: var(--ink);
  color: rgba(255,255,255,.86);
  padding: 1.5rem 1.9rem;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  box-shadow: 0 30px 60px rgba(8,10,20,.4);
  transform: translateY(140%);
  transition: transform .45s ease;
  max-width: 1320px;
  margin: 0 auto;
}
.cookie-tray.visible { transform: translateY(0); }
.cookie-tray p { color: rgba(255,255,255,.78); font-size: .88rem; max-width: 46ch; }
.cookie-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.cookie-tray .btn-line { color: rgba(255,255,255,.85); font-size: .84rem; padding: .78rem 1.3rem; }
.cookie-tray .btn-gold { font-size: .84rem; padding: .78rem 1.3rem; }

.cookie-modal { position: fixed; inset: 0; background: rgba(10,14,26,.6); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.4rem; }
.cookie-modal-box { background: #fff; color: var(--ink); max-width: 30rem; width: 100%; border-radius: 14px; padding: 2.2rem; box-shadow: 0 40px 80px rgba(8,10,20,.4); }
.cookie-modal-box h3 { font-size: 1.4rem; margin-bottom: .7rem; }
.cookie-modal-box > p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1.8rem; }
.cookie-row { display: flex; justify-content: space-between; align-items: center; gap: 1.4rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.cookie-row div strong { display: block; font-size: .94rem; margin-bottom: .2rem; }
.cookie-row div span { font-size: .82rem; color: var(--ink-soft); }
.cookie-modal-actions { display: flex; gap: .9rem; margin-top: 1.8rem; flex-wrap: wrap; }

.switch { position: relative; display: inline-block; width: 42px; height: 25px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: #d7d2c4; border-radius: 999px; cursor: pointer; transition: background .2s ease; }
.switch span::before { content: ""; position: absolute; width: 19px; height: 19px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s ease; }
.switch input:checked + span { background: var(--gold); }
.switch input:checked + span::before { transform: translateX(17px); }
.switch.disabled span { opacity: .55; cursor: not-allowed; }

[hidden] { display: none !important; }

@media (max-width: 1080px) {
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .practice-tile.featured { grid-column: span 2; }
  .about-panel { grid-template-columns: 1fr; }
  .about-figure img { height: 22rem; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-info { border-left: none; border-top: 1px solid var(--line-light); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .navlinks, .head-cta { display: none; }
  .burger { display: flex; }
  .navlinks {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--ink);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 0; z-index: 150;
    overflow-y: auto;
  }
  .navlinks.open { display: flex; }
  .navlinks > a, .nav-drop-trigger { padding: 1.1rem 1.9rem; border-bottom: 1px solid var(--line-light); width: 100%; }
  .navlinks > a::after { display: none; }
  .nav-drop { width: 100%; }
  .nav-drop-trigger { width: 100%; justify-content: space-between; }
  .nav-drop-panel { position: static; transform: none; box-shadow: none; border: none; border-radius: 0; background: #211d19; padding: 0 0 0 1.4rem; display: none; }
  .nav-drop-panel.open { display: flex; }
  .nav-drop-panel a { color: rgba(255,255,255,.78); }
  .hero-frame { grid-template-columns: 1fr; padding: 3.6rem 1.5rem 4.6rem; }
  .hero-figure { order: -1; }
  .hero-figure img { height: 20rem; }
  .stat-tiles { max-width: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .practice-grid { grid-template-columns: 1fr; }
  .practice-tile.featured { grid-column: span 1; min-height: 18rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-copy, .cta-info { padding: 3.4rem 1.9rem; }
  .cookie-tray { left: .7rem; right: .7rem; bottom: .7rem; padding: 1.3rem; }
  .about-badge { position: static; margin-top: 1rem; display: inline-block; }
  .hero-tag { position: static; margin-top: 1.2rem; max-width: none; }
  .practice-band, .team-row { clip-path: none; margin: 0; padding-top: 4.2rem; padding-bottom: 4.2rem; }
}
.navlinks > a.active { color: #fff; }
.navlinks > a.active::after { width: 100%; }
.nav-drop-trigger.active { color: #fff; }
.nav-drop-panel a.active { color: var(--gold-deep); background: var(--paper); }

.breadcrumb {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

.page-hero {
  padding: 5.6rem 1.9rem 6rem;
  background:
    radial-gradient(120% 140% at 84% 0%, rgba(201,162,91,.22), transparent 55%),
    linear-gradient(160deg, #23201b 0%, #191613 68%, #100e0c 100%);
}
.page-hero-inner { max-width: 1320px; margin: 0 auto; }
.page-hero.with-media .page-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.6rem; align-items: center; }
.page-hero h1 { font-size: clamp(2.1rem, 2.6vw + 1rem, 3.4rem); color: #fdfaf3; margin-bottom: 1.3rem; }
.page-hero .lede { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 56ch; line-height: 1.7; margin-bottom: 2rem; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .btn-gold { margin-top: .4rem; }
.page-hero.plain .page-hero-inner { max-width: 780px; text-align: center; }
.page-hero.plain .breadcrumb { display: flex; justify-content: center; }
.page-hero.plain .lede { margin-left: auto; margin-right: auto; }
.page-hero.plain .btn-gold { margin-left: auto; margin-right: auto; }

.page-media { position: relative; }
.page-media img {
  width: 100%; height: 24rem; object-fit: cover;
  border-radius: 4px 64px 4px 4px;
  filter: grayscale(.2) sepia(.14) saturate(1.24) contrast(1.02);
}

.timeline-block { padding: 7rem 1.9rem; background: var(--surface); }
.timeline-head { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.timeline-rail {
  max-width: 760px; margin: 0 auto;
  padding-left: 2.6rem;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2.6rem;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.98rem; top: .3rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--surface);
}
.timeline-year { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 1.5rem; display: block; margin-bottom: .3rem; }
.timeline-item h3 { font-size: 1.14rem; margin-bottom: .4rem; color: var(--ink); }
.timeline-item p { font-size: .94rem; }

.values-block { padding: 7rem 1.9rem; background: var(--paper); }
.values-head { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.values-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.value-card { background: var(--surface); border-radius: var(--radius); padding: 2.2rem 1.6rem; position: relative; overflow: hidden; }
.value-num { font-family: var(--serif); font-style: italic; font-size: 4rem; color: rgba(201,162,91,.2); position: absolute; top: -.6rem; right: .6rem; line-height: 1; }
.value-card h3 { font-size: 1.12rem; margin-bottom: .6rem; position: relative; color: var(--ink); }
.value-card p { font-size: .9rem; position: relative; }

.profile-row { max-width: 1180px; margin: 0 auto; padding: 7rem 1.9rem; display: flex; flex-direction: column; gap: 5.4rem; }
.profile-item { display: grid; grid-template-columns: .6fr 1.4fr; gap: 3.4rem; align-items: center; }
.profile-item.reverse { direction: rtl; }
.profile-item.reverse > * { direction: ltr; }
.profile-media img { width: 100%; height: 22rem; object-fit: cover; border-radius: 4px; filter: grayscale(.85) contrast(1.05); }
.profile-body .role { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: .8rem; }
.profile-body h2 { font-size: 1.9rem; margin-bottom: .9rem; color: var(--ink); }
.profile-body p { margin-bottom: 1rem; font-size: .98rem; }

.assoc-block { background: var(--paper); padding: 7rem 1.9rem; }
.assoc-head { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.assoc-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.assoc-card { background: var(--surface); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; }
.avatar-mono {
  width: 4.4rem; height: 4.4rem; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.assoc-card h3 { font-size: 1.02rem; margin-bottom: .2rem; color: var(--ink); }
.assoc-card .role { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: .7rem; }
.assoc-card p { font-size: .84rem; }

.intro-col { max-width: 760px; margin: 0 auto; padding: 6.6rem 1.9rem 1rem; }
.intro-col h2 { font-size: clamp(1.7rem, 2vw + .8rem, 2.3rem); margin-bottom: 1.3rem; color: var(--ink); }
.intro-col p { font-size: 1.02rem; margin-bottom: 1.2rem; }
.pull-note {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem;
  color: var(--gold-deep); border-left: 3px solid var(--gold);
  padding-left: 1.6rem; margin: 2.2rem 0; line-height: 1.5;
}

.scope-rail { max-width: 760px; margin: 0 auto; padding: 0 1.9rem 5.6rem; display: flex; flex-direction: column; }
.scope-rail .scope-row { display: flex; gap: 1.3rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.scope-rail .scope-row:last-child { border-bottom: none; }
.scope-rail i { color: var(--gold-deep); font-size: 1.3rem; margin-top: .15rem; flex-shrink: 0; }
.scope-rail span { font-size: 1rem; color: var(--ink); }

.scope-plain { max-width: 900px; margin: 0 auto; padding: 0 1.9rem 5.2rem; }
.scope-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.6rem; }
.scope-list li { display: flex; gap: .7rem; font-size: .96rem; color: var(--ink); }
.scope-list i { color: var(--gold-deep); flex-shrink: 0; margin-top: .15rem; }

.fact-strip { max-width: 1000px; margin: 0 auto; padding: 0 1.9rem 6rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.6rem; }
.fact-strip .fact { display: flex; align-items: center; gap: .9rem; }
.fact-strip i { color: var(--gold-deep); font-size: 1.6rem; }
.fact-strip strong { display: block; font-family: var(--serif); font-size: 1.24rem; color: var(--ink); }
.fact-strip span { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }

.pricing-tiers { max-width: 940px; margin: 0 auto; padding: 0 1.9rem 6.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.tier-card { background: var(--paper); border-radius: var(--radius); padding: 2.4rem; }
.tier-card.highlight { background: var(--ink); }
.tier-card h3 { font-size: 1.3rem; margin-bottom: .6rem; color: var(--ink); }
.tier-card.highlight h3 { color: #fdfaf3; }
.tier-price { font-family: var(--serif); font-size: 2rem; margin: .9rem 0; color: var(--gold-deep); }
.tier-card.highlight .tier-price { color: var(--gold); }
.tier-card p { font-size: .9rem; margin-bottom: 1.4rem; }
.tier-card.highlight p { color: rgba(255,255,255,.68); }
.tier-card ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.7rem; }
.tier-card li { display: flex; gap: .6rem; font-size: .88rem; color: var(--ink); }
.tier-card.highlight li { color: rgba(255,255,255,.85); }
.tier-card i { color: var(--gold-deep); }
.tier-card.highlight i { color: var(--gold); }
.tier-card .btn-line, .tier-card .btn-gold { width: 100%; justify-content: center; }

.scenario-block { background: var(--paper); padding: 6.6rem 1.9rem; }
.scenario-head { max-width: 640px; margin: 0 auto 3.6rem; text-align: center; }
.scenario-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.scenario-card { background: var(--surface); border-radius: var(--radius); padding: 2.1rem; border-left: 3px solid var(--gold); }
.scenario-card h3 { font-size: 1.08rem; margin-bottom: .6rem; color: var(--ink); }
.scenario-card p { font-size: .9rem; }

.audience-block { padding: 6.6rem 1.9rem; background: var(--surface); text-align: center; }
.audience-head { max-width: 640px; margin: 0 auto 3.2rem; }
.audience-pills { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.audience-pill { display: inline-flex; align-items: center; gap: .6rem; background: var(--paper); border-radius: 999px; padding: .85rem 1.6rem; font-size: .92rem; color: var(--ink); }
.audience-pill i { color: var(--gold-deep); }

.quote-block.no-media { background: linear-gradient(150deg, #23201b, #100e0c); }
.quote-block.no-media::before { display: none; }

.process-row { padding: 6.8rem 1.9rem; background: var(--surface); }
.process-head { max-width: 640px; margin: 0 auto 3.6rem; text-align: center; }
.process-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.process-card { background: var(--paper); border-radius: var(--radius); padding: 1.9rem; }
.process-card .pc-num { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 1.7rem; display: block; margin-bottom: .7rem; }
.process-card h3 { font-size: 1.04rem; margin-bottom: .5rem; color: var(--ink); }
.process-card p { font-size: .86rem; }

.stat-banner { background: linear-gradient(150deg, #23201b, #100e0c); padding: 4.8rem 1.9rem; text-align: center; }
.stat-banner .big-num { font-family: var(--serif); font-style: italic; font-size: 5rem; color: var(--gold); line-height: 1; }
.stat-banner p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 46ch; margin: 1rem auto 0; }

.split-sides { position: relative; padding: 7rem 1.9rem; background-size: cover; background-position: center; }
.split-sides-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.side-card { background: rgba(255,255,255,.04); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 2.4rem; }
.side-card h3 { color: #fdfaf3; font-size: 1.3rem; margin-bottom: 1.2rem; }
.side-card ul { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.side-card li { display: flex; gap: .7rem; font-size: .92rem; color: rgba(255,255,255,.75); }
.side-card i { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

@media (max-width: 1080px) {
  .page-hero.with-media .page-hero-inner { grid-template-columns: 1fr; }
  .page-media img { height: 18rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .assoc-grid { grid-template-columns: 1fr 1fr; }
  .scenario-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .profile-item, .profile-item.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-sides-inner { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 640px) {
  .values-grid, .assoc-grid, .scenario-grid, .process-grid { grid-template-columns: 1fr; }
  .scope-list { grid-template-columns: 1fr; }
  .timeline-rail { padding-left: 1.8rem; }
  .fact-strip { gap: 1.6rem; justify-content: flex-start; }
  .stat-banner .big-num { font-size: 3.4rem; }
  .timeline-block, .values-block, .profile-row, .assoc-block, .scenario-block, .audience-block, .split-sides, .process-row { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.legal-col { max-width: 740px; margin: 0 auto; padding: 5rem 1.9rem 7.4rem; }
.legal-col h2 { font-size: 1.42rem; margin: 2.3rem 0 1rem; color: var(--ink); }
.legal-col h2:first-child { margin-top: 0; }
.legal-col p { font-size: .98rem; margin-bottom: 1.1rem; }
.legal-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin: 0 0 1.4rem; }
.legal-col li { padding-left: 1.3rem; position: relative; font-size: .95rem; color: var(--ink-soft); }
.legal-col li::before { content: "—"; position: absolute; left: 0; color: var(--gold-deep); }

.contact-frame {
  padding: 6.2rem 1.9rem 3rem;
  background:
    radial-gradient(120% 140% at 14% 0%, rgba(201,162,91,.2), transparent 55%),
    linear-gradient(160deg, #23201b 0%, #191613 68%, #100e0c 100%);
}
.contact-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: start; }
.contact-copy h1 { color: #fdfaf3; font-size: clamp(2.1rem, 2.6vw + 1rem, 3.2rem); margin-bottom: 1.3rem; }
.contact-copy .lede { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 46ch; margin-bottom: 3rem; line-height: 1.7; }
.contact-copy .eyebrow { color: var(--gold); }
.contact-list { display: flex; flex-direction: column; gap: 1.9rem; }
.contact-list .c-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-list i { color: var(--gold); font-size: 1.5rem; margin-top: .2rem; }
.contact-list .c-label { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .3rem; }
.contact-list .c-value { font-family: var(--serif); font-size: 1.2rem; color: #fdfaf3; }

.contact-form-card { background: var(--surface); border-radius: 14px; padding: 2.6rem; box-shadow: 0 34px 70px rgba(8,7,5,.4); }
.contact-form-card h2 { font-size: 1.4rem; margin-bottom: .4rem; color: var(--ink); }
.contact-form-card > p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 1.8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans); font-size: .94rem; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 7px;
  background: var(--paper); color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-field textarea { min-height: 8.5rem; resize: vertical; }
.form-field .field-error { font-size: .76rem; color: #b5462f; min-height: 1rem; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #b5462f; }
.form-field.consent-row { flex-direction: column; gap: .4rem; }
.form-field.consent-row > div { display: flex; gap: .8rem; align-items: flex-start; }
.form-field.consent-row input { margin-top: .3rem; }
.form-field.consent-row label { font-size: .82rem; color: var(--ink-soft); font-weight: 400; }
.form-field.consent-row a { color: var(--gold-deep); }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; justify-content: center; }
.form-submit[disabled] { opacity: .6; cursor: not-allowed; }

.next-steps { max-width: 1000px; margin: 0 auto; padding: 5.6rem 1.9rem 6.6rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.4rem; }
.next-step { flex: 1 1 220px; text-align: center; padding: 0 1.4rem; }
.next-step .ns-num {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold-deep);
  font-family: var(--serif); font-style: italic;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.next-step h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--ink); }
.next-step p { font-size: .86rem; }

.thanks-modal { position: fixed; inset: 0; background: rgba(10,14,26,.6); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.4rem; }
.thanks-modal-box { background: #fff; color: var(--ink); max-width: 26rem; width: 100%; border-radius: 14px; padding: 2.6rem; text-align: center; box-shadow: 0 40px 80px rgba(8,10,20,.4); }
.thanks-modal-box i { font-size: 2.6rem; color: var(--gold-deep); margin-bottom: 1rem; }
.thanks-modal-box h3 { font-size: 1.5rem; margin-bottom: .7rem; }
.thanks-modal-box p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.8rem; }

@media (max-width: 1080px) {
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .legal-col { padding-left: 1.5rem; padding-right: 1.5rem; }
  .contact-form-card { padding: 1.9rem; }
}