:root {
  --ink: #121a2c;
  --ink-2: #1b2640;
  --paper: #ebedf0;
  --paper-2: #f7f8f9;
  --slate: #4c5568;
  --line-on-ink: rgba(247,248,249,0.16);
  --line-on-paper: rgba(18,26,44,0.12);
  --accent: #c8993f;
  --accent-deep: #7c5a1f;
  --accent-on-paper-bg: #b8863a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Petrona', Georgia, 'Times New Roman', serif; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 96px); }
.kicker { font-size: 13px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent-deep); }
.kicker.on-ink { color: var(--accent); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Public Sans', sans-serif; font-weight: 600; font-size: 15px; border-radius: 2px; padding: 15px 30px; cursor: pointer; border: none; transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.btn-gold { background: var(--accent); color: var(--ink); }
.btn-gold:hover { background: #d7ab55; }
.btn-ghost-ink { background: transparent; color: var(--paper-2); border: 1.5px solid var(--line-on-ink); }
.btn-ghost-ink:hover { border-color: var(--accent); color: var(--accent); }
.btn-ink { background: var(--ink); color: var(--paper-2); }
.btn-ink:hover { background: var(--ink-2); }
.navlink { font-size: 15px; font-weight: 500; color: var(--ink); padding: 6px 0; border-bottom: 1px solid transparent; transition: color 0.15s ease, border-color 0.15s ease; cursor: pointer; }
.navlink:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.navlink.is-current { color: var(--accent-deep); border-color: var(--accent-deep); }
.field-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field-error { display: block; font-size: 13px; font-weight: 600; color: #b3261e; min-height: 0; }
.field-error:empty { display: none; }
.field.is-invalid { border-color: #b3261e; }
.field { width: 100%; font-family: 'Public Sans', sans-serif; font-size: 15px; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line-on-paper); border-radius: 2px; padding: 13px 14px; }
.field:focus, .btn:focus-visible, .navlink:focus-visible, .brand:focus-visible, .footer-top a:focus-visible, .practice-grid-link:focus-visible, .resource-row:focus-visible, .nav-toggle:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; }
.pill { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink); border: 1px solid var(--line-on-paper); border-radius: 2px; padding: 12px 16px; background: var(--paper-2); cursor: pointer; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---- structure ---- */
header.site-nav { display: flex; align-items: center; justify-content: space-between; padding: 22px clamp(24px, 5vw, 96px); background: var(--paper-2); border-bottom: 1px solid var(--line-on-paper); position: sticky; top: 0; z-index: 10; }
.brand { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: 'Petrona', Georgia, serif; font-size: 21px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin: -8px; color: var(--ink); }

section.hero { background: var(--ink); color: var(--paper-2); padding: clamp(32px, 4vw, 56px) 0 clamp(28px, 3.5vw, 48px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 560px; }
.hero-copy h1 { font-size: clamp(34px, 4.2vw, 50px); line-height: 1.12; font-weight: 600; margin: 18px 0 20px; }
.hero-copy p { font-size: 18px; line-height: 1.62; color: rgba(247,248,249,0.78); margin: 0 0 30px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.phone-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: var(--paper-2); }
.phone-link:hover { color: var(--accent); }
.hero-slider { position: relative; height: 420px; border-radius: 6px; overflow: hidden; background: var(--ink-2); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,26,44,0.88) 0%, rgba(18,26,44,0.2) 48%, transparent 68%); }
.hero-slide-caption { position: absolute; left: 0; right: 56px; bottom: 0; padding: 28px 28px 24px; z-index: 2; }
.hero-slide-caption span { display: block; font-family: 'Petrona', Georgia, serif; font-style: italic; font-size: 18px; line-height: 1.4; color: var(--paper-2); border-top: 2px solid var(--accent); padding-top: 14px; }
.hero-slider-dots { position: absolute; bottom: 18px; right: 20px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(247,248,249,0.4); border: none; padding: 0; cursor: pointer; transition: background-color 0.2s ease, transform 0.2s ease; }
.hero-dot.is-active { background: var(--accent); transform: scale(1.3); }
.hero-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

section.process { background: var(--paper-2); border-bottom: 1px solid var(--line-on-paper); padding: 56px 0; }
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { padding: 0 clamp(8px, 2vw, 24px); border-left: 1px solid var(--line-on-paper); display: flex; flex-direction: column; gap: 10px; }
.step:first-child { border-left: none; }
.step-num { font-family: 'Petrona', Georgia, serif; font-size: 15px; font-weight: 600; color: var(--accent-deep); }
.step-title { font-size: 18px; font-weight: 600; }
.step-text { font-size: 14.5px; line-height: 1.6; color: var(--slate); margin: 0; }

section.about { padding: clamp(64px, 8vw, 104px) 0; }
.about-copy { display: flex; flex-direction: column; gap: 18px; justify-content: center; max-width: 680px; }
.about-copy h2 { font-size: 32px; }
.about-copy p { font-size: 17px; line-height: 1.7; color: var(--slate); margin: 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px; margin-top: 48px; }
.why-card { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 2px solid var(--accent); }
.why-card h3 { font-size: 17px; font-weight: 600; }
.why-card p { font-size: 14.5px; line-height: 1.6; color: var(--slate); margin: 0; }

section.practice { background: var(--paper-2); padding: clamp(64px, 8vw, 104px) 0; border-top: 1px solid var(--line-on-paper); border-bottom: 1px solid var(--line-on-paper); }
.practice-grid-link { display: block; cursor: pointer; }
.practice-grid-link:hover .practice-card, .practice-grid-link:focus-visible .practice-card { background: var(--paper); }
.practice-grid { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line-on-paper); border: 1px solid var(--line-on-paper); }
.practice-card { background: var(--paper-2); padding: 30px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1 1 250px; transition: background-color 0.15s ease; }
.practice-card h3 { font-size: 18px; font-weight: 600; }
.practice-card p { font-size: 14.5px; line-height: 1.6; color: var(--slate); margin: 0; }
.pa-section { padding: 40px 0; border-bottom: 1px solid var(--line-on-paper); }
.pa-section:first-child { padding-top: 0; }
.pa-section:last-child { border-bottom: none; }
.pa-section h2 { font-size: 26px; margin-bottom: 16px; }
.pa-intro { font-size: 16px; line-height: 1.7; color: var(--slate); max-width: 760px; margin: 0 0 28px; }
.pa-benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 40px; }
.pa-benefit { display: flex; flex-direction: column; gap: 4px; }
.pa-benefit strong { font-size: 14.5px; color: var(--ink); }
.pa-benefit span { font-size: 14px; line-height: 1.55; color: var(--slate); }
.resource-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-on-paper); }
.resource-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 4px; border-bottom: 1px solid var(--line-on-paper); transition: background-color 0.15s ease; }
.resource-row:hover { background: var(--paper-2); }
.resource-info { display: flex; flex-direction: column; gap: 4px; }
.resource-info strong { font-size: 15.5px; color: var(--ink); }
.resource-info span { font-size: 14px; line-height: 1.5; color: var(--slate); }
.resource-arrow { font-size: 18px; color: var(--accent-deep); flex-shrink: 0; }

section.cta-band { background: var(--accent-on-paper-bg); padding: clamp(48px, 6vw, 72px) 0; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-row h2 { font-size: 28px; color: var(--ink); }
.cta-row .sub { font-size: 15.5px; color: rgba(18,26,44,0.75); margin-top: 6px; }

footer.site-footer { background: var(--ink); padding: 56px 0 32px; color: var(--paper-2); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a { font-size: 14.5px; color: rgba(247,248,249,0.75); }
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 14.5px; color: rgba(247,248,249,0.75); text-align: right; }
.footer-rule { border-top: 1px solid var(--line-on-ink); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 12.5px; color: rgba(247,248,249,0.5); flex-wrap: wrap; }

.page-head { padding: clamp(48px, 7vw, 72px) 0 clamp(32px, 5vw, 48px); max-width: 700px; display: flex; flex-direction: column; gap: 14px; }
.page-head h1 { font-size: clamp(30px, 4vw, 42px); }
.page-head p { font-size: 17px; line-height: 1.6; color: var(--slate); margin: 0; }
.intake-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; padding-bottom: clamp(64px, 8vw, 104px); }
.intake-form { background: var(--paper-2); border: 1px solid var(--line-on-paper); border-radius: 3px; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 22px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-group { display: flex; flex-direction: column; gap: 8px; }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.side-col { display: flex; flex-direction: column; gap: 24px; }
.side-card { border-radius: 3px; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.side-card.dark { background: var(--ink); color: var(--paper-2); }
.side-card.light { background: var(--paper-2); border: 1px solid var(--line-on-paper); }
.contact-row { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 600; }
.contact-row:hover { color: var(--accent); }

.coming-soon { border: 1px dashed var(--line-on-paper); border-radius: 3px; padding: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; color: var(--slate); max-width: 640px; }
.coming-soon strong { font-family: 'Petrona', Georgia, serif; font-size: 18px; font-weight: 600; color: var(--ink); }
.coming-soon span { font-size: 14.5px; line-height: 1.6; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper-2); border-bottom: 1px solid var(--line-on-paper); flex-direction: column; align-items: flex-start; gap: 0; padding: 4px clamp(24px, 5vw, 96px) 16px; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-on-paper); }
  .hero-grid, .intake-grid { grid-template-columns: 1fr; }
  .hero-slider { height: 280px; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .pa-benefits { grid-template-columns: 1fr; gap: 20px; }
  .process-row { grid-template-columns: 1fr; gap: 28px; }
  .step { border-left: none; border-top: 1px solid var(--line-on-paper); padding-top: 20px; }
  .step:first-child { border-top: none; padding-top: 0; }
  .two-col { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
}
@media (max-width: 560px) {
  .practice-card { flex-basis: 100%; }
  .cta-row { flex-direction: column; align-items: flex-start; }
}
