:root {
  --ink: #191919;
  --charcoal: #242424;
  --stone: #6a6a6a;
  --stone-light: #a5a5a5;
  --paper: #ffffff;
  --paper-alt: #eeeeec;
  --line: #dcdcda;
  --line-light: rgba(255, 255, 255, 0.16);
  --maroon: #8a2323;
  --maroon-dark: #641818;
  --maroon-tint: rgba(138, 35, 35, 0.07);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.13);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'IBM Plex Sans', -apple-system, sans-serif;
  --script: 'Beau Rivage', cursive;
  --fs-h1: clamp(2.3rem, 5.2vw, 3.9rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.6rem);
}

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

html { scroll-behavior: smooth; }

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

body.nav-locked { overflow: hidden; }

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

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

:focus-visible { outline: 2px solid var(--maroon); outline-offset: 2px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.14; }

h1 em, h2 em { font-style: italic; color: var(--maroon); }

p { color: var(--stone); }

.shell { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ---------- Section numbering (replaces generic eyebrow labels) ---------- */
.section-head { display: flex; gap: 22px; align-items: flex-end; margin-bottom: 44px; }
.section-num {
  font-family: var(--serif); font-weight: 300; font-size: 58px; line-height: 0.78;
  color: transparent; -webkit-text-stroke: 1px var(--line); flex-shrink: 0;
}
.section-num--inline { display: inline-block; margin-bottom: 6px; }
.section-num--light { -webkit-text-stroke: 1px rgba(250,248,244,0.3); }
.section-head-text h2 { font-size: var(--fs-h2); margin-bottom: 10px; }
.section-head-text p { font-size: 15.5px; max-width: 52ch; }

/* ---------- Buttons ---------- */
.btn-solid, .btn-line, .btn-ghost-line {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 14.5px; line-height: 1;
  padding: 15px 28px; border-radius: 1px; border: 1px solid transparent; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn-solid i, .btn-line i, .btn-ghost-line i { line-height: 1; display: inline-block; }
.btn-solid { background: var(--maroon); color: var(--paper); box-shadow: var(--shadow-md); }
.btn-solid:hover { background: var(--maroon-dark); }
.btn-solid--sm { padding: 11px 20px; font-size: 13.5px; box-shadow: none; }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--maroon); color: var(--maroon); }
.btn-ghost-line { background: transparent; color: var(--stone); border-color: var(--line); }
.btn-ghost-line:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Logo lockup ---------- */
.brandmark { display: flex; align-items: center; gap: 13px; }
.brandmark-mark {
  width: 42px; height: 42px; border: 1px solid var(--maroon); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brandmark-mark i { color: var(--maroon); font-size: 18px; line-height: 1; }
.brandmark-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.brandmark-script { font-family: var(--script); font-size: 27px; color: var(--ink); }
.brandmark-script--light { color: var(--paper); font-size: 30px; }
.brandmark-sub { font-family: var(--sans); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }

/* ---------- Header ---------- */
.masthead { position: sticky; top: 0; z-index: 70; border-bottom: 1px solid var(--line); }
.masthead::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(10px); }
.masthead-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }

.navtoggle { display: inline-flex; background: none; border: 1px solid var(--line); border-radius: 1px; width: 42px; height: 42px; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; color: var(--ink); z-index: 90; }

.navscrim { position: fixed; inset: 0; background: rgba(28,27,26,0.4); z-index: 55; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.navscrim.is-open { opacity: 1; visibility: visible; }

.mainnav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
  background: var(--paper); display: flex; flex-direction: column; gap: 2px;
  padding: 94px 26px 30px; transform: translateX(100%); transition: transform .3s ease;
  z-index: 60; overflow-y: auto; box-shadow: var(--shadow-lg);
}
.mainnav.is-open { transform: translateX(0); }
.mainnav a { font-size: 18px; font-weight: 500; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.mainnav .nav-cta { display: inline-flex; margin-top: 22px; background: var(--maroon); color: var(--paper); justify-content: center; padding: 15px; border-bottom: none; font-size: 14.5px; font-weight: 600; }

.nav-drop { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.nav-drop-trigger {
  font-family: var(--sans); font-size: 18px; font-weight: 500; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; color: var(--ink); padding: 14px 2px; width: 100%; text-align: left;
}
.nav-drop-trigger i { transition: transform .2s ease; }
.nav-drop.is-open .nav-drop-trigger i { transform: rotate(180deg); }
.nav-drop-panel {
  display: flex; flex-direction: column; max-height: 0; overflow: hidden;
  transition: max-height .3s ease; padding-left: 12px;
}
.nav-drop.is-open .nav-drop-panel { max-height: 320px; }
.nav-drop-panel a { padding: 11px 2px; font-size: 15px; font-weight: 400; border-bottom: none; color: var(--stone); }
.nav-drop-panel a:hover { color: var(--maroon); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 46px 0 0; background: var(--paper); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; }
.hero-copy { padding-bottom: 40px; }
.hero h1 { font-size: var(--fs-h1); margin-bottom: 18px; }
.lede { font-size: 17px; max-width: 42ch; margin-bottom: 28px; }

.hero-media { position: relative; }
.hero-photo { width: 100%; height: 300px; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(78%) contrast(1.04); }

.hero-widget {
  display: flex; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  margin: -34px 14px 40px; position: relative; z-index: 5;
}
.widget-card { flex: 1; display: flex; align-items: center; gap: 16px; padding: 18px 16px; min-width: 0; }
.widget-num { font-family: var(--serif); font-weight: 300; font-size: 34px; color: var(--line); line-height: 1; flex-shrink: 0; }
.widget-photo { width: 58px; height: 58px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.widget-photo img { width: 100%; height: 100%; object-fit: cover; }
.widget-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.widget-text strong { font-family: var(--serif); font-size: 16px; font-weight: 600; }
.widget-text span { font-size: 12px; color: var(--stone); line-height: 1.5; }
.widget-tabs { display: flex; flex-direction: column; width: 48px; flex-shrink: 0; border-left: 1px solid var(--line); }
.widget-tab {
  flex: 1; border: none; background: var(--paper-alt); color: var(--stone); font-family: var(--serif);
  font-size: 14px; cursor: pointer; border-bottom: 1px solid var(--line); transition: background .2s ease, color .2s ease;
}
.widget-tab:last-child { border-bottom: none; }
.widget-tab.is-active { background: var(--maroon); color: var(--paper); }
.widget-tab:not(.is-active):hover { background: var(--maroon-tint); color: var(--maroon); }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Practice ---------- */
.practice { padding: 70px 0; }
.practice-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.practice-card {
  border: 1px solid var(--line); padding: 30px 26px; background: var(--paper);
  display: flex; flex-direction: column; gap: 12px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.practice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.practice-card i { font-size: 27px; color: var(--maroon); }
.practice-card h3 { font-size: 20px; }
.practice-card p { font-size: 14px; flex-grow: 1; }
.card-link { font-size: 12.5px; font-weight: 600; color: var(--maroon); display: inline-flex; align-items: center; gap: 6px; }
.practice-card--dark { background: var(--ink); border-color: var(--ink); }
.practice-card--dark i, .practice-card--dark h3, .practice-card--dark .card-link { color: var(--paper); }
.practice-card--dark p { color: var(--stone-light); }

/* ---------- About ---------- */
.about { padding: 70px 0; background: var(--paper-alt); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.dropcap::first-letter { font-size: 2.9em; float: left; line-height: 0.75; padding: 4px 10px 0 0; color: var(--maroon); font-weight: 400; }
.about-copy h2 { font-size: var(--fs-h2); margin-bottom: 18px; }
.about-text { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 22px; }
.about-text p { font-size: 15px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.check-list i { color: var(--maroon); font-size: 16px; flex-shrink: 0; margin-top: 3px; }
.about-media img { width: 100%; height: 340px; object-fit: cover; filter: grayscale(60%); box-shadow: var(--shadow-md); }

/* ---------- Scope (dropcap statement + two-column list) ---------- */
.scope { padding: 70px 0; background: var(--ink); color: var(--paper); }
.scope-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.scope-intro h2 { color: var(--paper); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 10px 0 14px; }
.scope-intro p { color: var(--stone-light); font-size: 14.5px; max-width: 42ch; }
.dropcap--light::first-letter { color: var(--maroon); }
.scope-lists { display: grid; grid-template-columns: 1fr; gap: 4px; }
.scope-list { list-style: none; display: flex; flex-direction: column; }
.scope-list li { border-bottom: 1px solid var(--line-light); }
.scope-list a { display: flex; align-items: center; justify-content: space-between; padding: 15px 2px; font-size: 15px; color: var(--paper); }
.scope-list a i { color: var(--stone-light); font-size: 16px; }
.scope-list a:hover { color: var(--maroon); }
.scope-list a:hover i { color: var(--maroon); }

/* ---------- Method ---------- */
.method { padding: 70px 0; background: var(--paper); }
.method .section-head-text h2 { font-size: var(--fs-h2); }
.method-row { display: grid; grid-template-columns: 1fr; gap: 30px; }
.method-num { font-family: var(--serif); font-size: 36px; color: var(--maroon); font-weight: 300; }
.method-step h3 { font-size: 18px; margin: 10px 0 8px; }
.method-step p { font-size: 14px; }

/* ---------- People ---------- */
.people { padding: 70px 0; background: var(--paper-alt); }
.people-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.person-photo { width: 100%; height: 240px; overflow: hidden; margin-bottom: 16px; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(75%); transition: filter .3s ease; }
.person-card:hover .person-photo img { filter: grayscale(0%); }
.person-photo--mono { background: var(--maroon); display: flex; align-items: center; justify-content: center; }
.person-photo--mono span { font-family: var(--serif); font-size: 46px; color: var(--paper); }
.person-card h3 { font-size: 18px; margin-bottom: 4px; }
.person-role { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--maroon); margin-bottom: 10px; }
.person-card p { font-size: 14px; }

/* ---------- Numbers ---------- */
.numbers { padding: 64px 0; background: var(--ink); color: var(--paper); }
.numbers-grid { display: flex; flex-direction: column; gap: 32px; }
.numbers-head h2 { color: var(--paper); font-size: var(--fs-h2); margin-top: 10px; }
.numbers-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.nstat { display: flex; flex-direction: column; gap: 5px; border-left: 2px solid var(--maroon); padding-left: 14px; }
.nstat-num { font-family: var(--serif); font-size: 36px; color: var(--paper); }
.nstat-label { font-size: 12.5px; color: var(--stone-light); }

/* ---------- Voices ---------- */
.voices { padding: 70px 0; }
.voices-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.voice-card { background: var(--paper-alt); padding: 30px; }
.voice-card i { font-size: 24px; color: var(--maroon); }
.voice-card p { font-size: 15px; margin: 14px 0 18px; font-style: italic; color: var(--ink); }
.voice-name { display: block; font-weight: 600; font-size: 14px; color: var(--ink); }
.voice-role { font-size: 12px; }

/* ---------- FAQ ---------- */
.faq { padding: 70px 0; background: var(--paper-alt); }
.faq-shell { max-width: 880px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--serif); font-size: 17px; font-weight: 500; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--maroon); transition: transform .25s ease; flex-shrink: 0; margin-left: 14px; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item p { margin-top: 12px; font-size: 14.5px; max-width: 65ch; }

/* ---------- Closing ---------- */
.closing { display: grid; grid-template-columns: 1fr; }
.closing-media { min-height: 260px; }
.closing-media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; filter: grayscale(70%); }
.closing-panel { background: var(--paper-alt); padding: 52px 24px; }
.closing-panel h2 { font-size: var(--fs-h2); margin: 10px 0 14px; }
.closing-panel > p { font-size: 15.5px; max-width: 46ch; margin-bottom: 26px; }
.closing-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.info-row { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink); }
.info-row i { color: var(--maroon); font-size: 17px; }

/* ---------- Footer ---------- */
.sitefoot { background: var(--charcoal); color: var(--stone-light); padding: 60px 0 0; }
.sitefoot-grid { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 44px; }
.foot-brand p { color: var(--stone-light); font-size: 13.5px; max-width: 30ch; margin-top: 12px; }
.foot-col h5 { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 13.5px; color: var(--stone-light); transition: color .2s ease; }
.foot-col a:hover { color: var(--paper); }
.sitefoot-bottom { border-top: 1px solid var(--line-light); padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; font-size: 12px; }

/* ---------- Cookie consent ---------- */
.consent {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 200; max-width: 960px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 22px; display: flex; flex-direction: column; gap: 16px;
  opacity: 0; visibility: hidden; transform: translateY(24px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.consent.is-visible { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.consent-copy strong { font-family: var(--serif); font-size: 16px; display: block; margin-bottom: 6px; }
.consent-copy p { font-size: 13px; }
.consent-copy a { color: var(--maroon); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.consent-modal {
  position: fixed; inset: 0; z-index: 210; display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(28,27,26,0.55);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease;
}
.consent-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.consent-panel { background: var(--paper); max-width: 440px; width: 100%; padding: 30px; box-shadow: var(--shadow-lg); }
.consent-panel h3 { font-size: 21px; margin-bottom: 8px; }
.consent-panel > p { font-size: 13.5px; margin-bottom: 20px; }
.consent-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.consent-row strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--ink); }
.consent-row span { font-size: 12px; }
.consent-panel-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: var(--line); cursor: pointer; transition: .25s; }
.switch span::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: var(--paper); transition: .25s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.switch input:checked + span { background: var(--maroon); }
.switch input:checked + span::before { transform: translateX(18px); }
.switch--disabled { opacity: 0.55; }
.switch--disabled span { cursor: not-allowed; }

/* ============================================================
   Responsive — desktop enhancements
   ============================================================ */
@media (min-width: 900px) {
  .navtoggle { display: none; }
  .navscrim { display: none; }
  .mainnav {
    position: static; width: auto; transform: none; flex-direction: row; align-items: center;
    padding: 0; gap: 30px; box-shadow: none; background: transparent; overflow: visible;
  }
  .mainnav a { font-size: 14.5px; font-weight: 500; padding: 6px 0; border-bottom: none; position: relative; }
  .mainnav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--maroon); transition: width .25s ease; }
  .mainnav a:hover::after { width: 100%; }
  .mainnav .nav-cta { margin-top: 0; padding: 13px 24px; }
  .mainnav .nav-cta::after { display: none; }

  .nav-drop { border-bottom: none; position: relative; }
  .nav-drop-trigger { width: auto; padding: 6px 0; font-size: 14.5px; }
  .nav-drop-panel {
    position: absolute; top: calc(100% + 16px); left: -16px; max-height: none; overflow: visible;
    background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    min-width: 250px; padding: 8px; padding-left: 8px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-drop.is-open .nav-drop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-drop-panel a { padding: 11px 13px; font-size: 14px; color: var(--ink); }
  .nav-drop-panel a:hover { background: var(--paper-alt); color: var(--maroon); }

  .hero-grid { grid-template-columns: 1fr 1fr; align-items: end; }
  .hero-copy { padding: 60px 40px 90px 0; }
  .hero-photo { height: 460px; }
  .hero-widget { grid-column: 1 / span 2; margin: -70px 0 0; max-width: 640px; }

  .practice-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1.05fr 0.95fr; }
  .about-text { grid-template-columns: 1fr 1fr; }
  .about-media img { height: 420px; }
  .scope-grid { grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
  .scope-lists { grid-template-columns: 1fr 1fr; gap: 0 40px; }
  .method-row { grid-template-columns: repeat(4, 1fr); }
  .people-grid { grid-template-columns: repeat(4, 1fr); }
  .numbers-grid { flex-direction: row; align-items: center; justify-content: space-between; gap: 50px; }
  .numbers-head { flex-shrink: 0; max-width: 300px; }
  .numbers-stats { grid-template-columns: repeat(4, 1fr); }
  .voices-grid { grid-template-columns: repeat(3, 1fr); }
  .closing { grid-template-columns: 0.9fr 1.1fr; }
  .closing-media { min-height: 100%; }
  .closing-media img { height: 100%; }
  .closing-panel { padding: 70px 64px; }
  .sitefoot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .sitefoot-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .consent { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1180px) {
  .practice-grid { grid-template-columns: repeat(5, 1fr); }
}
[aria-current="page"] { color: var(--maroon) !important; }
.mainnav a[aria-current="page"]::after { width: 100%; }
.nav-drop:has([aria-current="page"]) .nav-drop-trigger { color: var(--maroon); }

.phero { padding: 44px 0 0; background: var(--paper); }
.phero-copy h1 { font-size: var(--fs-h1); margin-bottom: 18px; }

.phero--index .phero-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; padding-bottom: 44px; }
.phero--index .phero-media img { width: 100%; height: 260px; object-fit: cover; filter: grayscale(75%); }

.phero--split { padding: 0; }
.phero-split-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.phero-split-media { position: relative; }
.phero-split-media img { width: 100%; height: 320px; object-fit: cover; filter: grayscale(70%); }
.phero-split-tag {
  position: absolute; left: 20px; bottom: 20px; background: var(--ink); color: var(--paper);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 16px;
}
.phero-split-copy { padding: 40px 20px 46px; }
.phero-split-copy h1 { font-size: var(--fs-h1); margin-bottom: 16px; }

.phero--banner { position: relative; padding: 0; }
.phero-banner-img { width: 100%; height: 420px; object-fit: cover; filter: grayscale(55%); display: block; }
.phero-banner-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(25,25,25,0.86) 0%, rgba(25,25,25,0.3) 55%, rgba(25,25,25,0.1) 100%); }
.phero-banner-copy { position: absolute; left: 0; right: 0; bottom: 34px; color: var(--paper); }
.phero-banner-copy h1 { font-size: var(--fs-h1); color: var(--paper); margin-bottom: 14px; max-width: 16ch; }
.phero-banner-copy .lede { color: rgba(255,255,255,0.82); max-width: 44ch; }

.phero--plain { background: var(--paper-alt); padding: 70px 0; }
.phero-plain-inner { max-width: 640px; }
.phero-mark {
  width: 52px; height: 52px; border: 1px solid var(--maroon); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.phero-mark i { color: var(--maroon); font-size: 22px; }
.phero-plain-inner h1 { font-size: var(--fs-h1); margin-bottom: 16px; }

.phero--dark { background: var(--ink); padding: 76px 0; }
.phero-dark-inner { max-width: 620px; }
.phero-mark--light { border-color: var(--maroon); }
.phero-mark--light i { color: var(--maroon); }
.phero-dark-inner h1 { font-size: var(--fs-h1); color: var(--paper); margin: 22px 0 16px; }
.phero-dark-inner .lede { color: var(--stone-light); }

.phero--duo { padding: 56px 0 0; }
.phero-duo-copy { max-width: 640px; margin-bottom: 32px; }
.phero-duo-copy h1 { font-size: var(--fs-h1); margin-bottom: 16px; }
.phero-duo-media { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.phero-duo-media img { width: 100%; height: 220px; object-fit: cover; filter: grayscale(70%); }

.index-tiles { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); }
.index-tile { background: var(--paper); display: flex; align-items: center; gap: 20px; padding: 26px 24px; transition: background .2s ease; }
.index-tile:hover { background: var(--paper-alt); }
.index-tile-num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--line); flex-shrink: 0; }
.index-tile h3 { font-size: 19px; margin-bottom: 6px; }
.index-tile p { font-size: 13.5px; }
.index-tile > i { margin-left: auto; color: var(--maroon); font-size: 20px; flex-shrink: 0; }

.route-list { list-style: none; display: flex; flex-direction: column; }
.route-item { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.route-item span { font-size: 15.5px; color: var(--paper); }
.route-item a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--maroon); flex-shrink: 0; }

.detail-list { display: grid; grid-template-columns: 1fr; gap: 26px; }
.detail-item { display: flex; gap: 16px; }
.detail-num { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--maroon); flex-shrink: 0; line-height: 1; }
.detail-item h3 { font-size: 17.5px; margin-bottom: 6px; }
.detail-item p { font-size: 14px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip { border: 1px solid var(--line); padding: 9px 18px; font-size: 13px; font-weight: 500; color: var(--ink); }

.case-note { display: flex; gap: 16px; align-items: flex-start; border-left: 3px solid var(--maroon); background: var(--paper-alt); padding: 24px 26px; }
.case-note i { font-size: 20px; color: var(--maroon); flex-shrink: 0; margin-top: 3px; }
.case-note p { font-size: 14.5px; color: var(--ink); font-style: italic; }

.cta-banner { padding: 56px 0; background: var(--paper-alt); }
.cta-banner-inner { display: flex; flex-direction: column; gap: 22px; }
.cta-banner-inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-banner-inner p { font-size: 15px; max-width: 48ch; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.method-row--3 { grid-template-columns: 1fr; }

.check-list--wide { display: grid; grid-template-columns: 1fr; gap: 13px; }

.voice-card--feature { max-width: 640px; margin: 0 auto; padding: 40px 34px; }
.voice-card--feature p { font-size: 18px; }

.step-line { position: relative; display: flex; flex-direction: column; gap: 30px; }
.step-line::before { content: ""; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.step-line-item { display: flex; gap: 22px; position: relative; }
.step-line-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--paper); border: 1px solid var(--maroon);
  color: var(--maroon); font-family: var(--serif); font-size: 15px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-line-item h3 { font-size: 17.5px; margin-bottom: 6px; }
.step-line-item p { font-size: 14px; }

.pricing-block { display: grid; grid-template-columns: 1fr; gap: 20px; }
.price-card { border: 1px solid var(--line); padding: 30px; }
.price-card i { font-size: 26px; color: var(--maroon); }
.price-card h3 { font-size: 19px; margin: 14px 0 8px; }
.price-card p { font-size: 14px; }

@media (min-width: 640px) {
  .phero-duo-media { grid-template-columns: 1fr 1fr; }
  .detail-list { grid-template-columns: 1fr 1fr; }
  .pricing-block { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
  .phero--index .phero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 60px; padding: 20px 0 60px; }
  .phero--index .phero-media img { height: 380px; }

  .phero-split-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .phero-split-media img { height: 520px; }
  .phero-split-copy { padding: 0 70px 0 60px; }

  .phero-banner-img { height: 520px; }
  .phero-banner-copy { bottom: 60px; }

  .phero-dark-inner { display: flex; flex-direction: column; }

  .phero-duo-copy { max-width: 60ch; }

  .index-tiles { grid-template-columns: 1fr 1fr; }

  .route-item { flex-direction: row; align-items: center; justify-content: space-between; }

  .detail-list { grid-template-columns: 1fr 1fr; gap: 34px 44px; }

  .method-row--3 { grid-template-columns: repeat(3, 1fr); }

  .check-list--wide { grid-template-columns: 1fr 1fr; column-gap: 40px; }

  .step-line-item { padding-left: 4px; }
  .step-line-item h3, .step-line-item p { max-width: 46ch; }
}
.phero--contact { background: var(--paper-alt); padding: 66px 0 54px; }
.phero--contact h1 { font-size: var(--fs-h1); margin-bottom: 16px; }
.quick-contact { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); margin-top: 36px; }
.quick-contact-tile { background: var(--paper); display: flex; align-items: center; gap: 14px; padding: 22px 20px; }
.quick-contact-tile i { font-size: 22px; color: var(--maroon); flex-shrink: 0; }
.quick-contact-tile div { display: flex; flex-direction: column; gap: 3px; }
.quick-contact-tile span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--stone); }
.quick-contact-tile strong { font-family: var(--serif); font-size: 16.5px; font-weight: 500; color: var(--ink); }

.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form-field label em { font-style: normal; color: var(--stone); font-weight: 400; }
.form-field input, .form-field textarea {
  font-family: var(--sans); font-size: 15px; padding: 13px 15px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); border-radius: 1px; transition: border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--maroon); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field.has-error input, .form-field.has-error textarea { border-color: var(--maroon); }
.form-field--hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { font-size: 12.5px; color: var(--maroon); min-height: 16px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--stone); cursor: pointer; }
.form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.form-checkbox a { color: var(--maroon); text-decoration: underline; }

.note-block { padding: 56px 0; background: var(--ink); }
.note-block-inner { max-width: 700px; }
.note-block-inner p { color: var(--paper); font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.5; margin-top: 16px; }

.contact-detail { display: flex; flex-direction: column; gap: 16px; border: 1px solid var(--line); padding: 30px; max-width: 460px; }

.legal-hero { padding: 60px 0 20px; background: var(--paper); }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.legal-body { padding: 20px 0 80px; }
.legal-shell { max-width: 760px; }
.legal-shell h2 { font-size: 21px; margin: 34px 0 12px; }
.legal-shell h2:first-child { margin-top: 0; }
.legal-shell p { font-size: 15px; margin-bottom: 4px; }

.thanks-modal {
  position: fixed; inset: 0; z-index: 220; display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(25,25,25,0.6); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease;
}
.thanks-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.thanks-panel { background: var(--paper); max-width: 400px; width: 100%; padding: 40px 34px; text-align: center; box-shadow: var(--shadow-lg); }
.thanks-panel i { font-size: 42px; color: var(--maroon); }
.thanks-panel h3 { font-size: 24px; margin: 14px 0 10px; }
.thanks-panel p { font-size: 14.5px; margin-bottom: 22px; }

@media (min-width: 640px) {
  .quick-contact { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .phero--contact { padding: 90px 0 70px; }
  .phero--contact h1 { max-width: 16ch; }
}