/* ==========================================================================
   EPIC Healthcare — main stylesheet
   Palette taken from the Whole Me Care / EPIC flyer: forest, parchment, bronze, sage.
   ========================================================================== */

:root {
  --forest: #1f4331;
  --forest-deep: #15311f;
  --forest-soft: #2d5a44;
  --parchment: #f7f0e5;
  --linen: #eee3d1;
  --paper: #fcf8f1;
  --bronze: #b07a40;
  --bronze-ink: #83572a;
  --bronze-light: #dcb683;
  --sage: #8b9678;
  --sage-pale: #dfe3d4;
  --ink: #22302a;
  --muted: #55615a;
  --line: #ddd0bb;

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 10vw, 128px);
  --radius-arch: 999px 999px 18px 18px;
  --radius: 14px;
  --radius-sm: 6px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--forest); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--bronze-ink); }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--forest-deep);
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.9rem); line-height: 1; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
h3 { font-size: 1.6rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  clip: auto; width: auto; height: auto; z-index: 100;
  top: 12px; left: 12px; padding: 10px 16px;
  background: var(--paper); color: var(--forest);
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.measure { max-width: 62ch; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 52ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font: 500 1rem/1.2 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--forest); color: var(--paper); }
.btn-primary:hover { background: var(--forest-deep); color: var(--paper); }
.btn-ghost { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-ghost:hover { background: var(--forest); color: var(--paper); }
.btn-light { background: var(--bronze-light); color: var(--forest-deep); }
.btn-light:hover { background: var(--paper); color: var(--forest-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 248, 241, .94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--forest); }
.brand-mark { width: 44px; height: 44px; flex: none; color: var(--forest); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; letter-spacing: .14em; }
.brand-sub { font-size: .72rem; letter-spacing: .12em; color: var(--muted); margin-top: .2rem; }
.custom-logo { max-height: 56px; width: auto; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 1.75rem; }
.primary-nav a { text-decoration: none; color: var(--ink); font-size: .98rem; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--bronze-ink); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { text-decoration: none; color: var(--muted); font-size: .95rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: var(--radius-sm);
  width: 46px; height: 46px; cursor: pointer; color: var(--forest);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 1.5px; background: currentColor; margin: auto; position: relative; content: "";
  transition: transform .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .primary-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
  }
  .nav-open .primary-nav { display: block; }
  .primary-nav ul { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .primary-nav a { display: block; padding: .6rem 0; font-size: 1.1rem; }
}
@media (max-width: 560px) {
  .header-cta .btn { display: none; }
  .brand-name { font-size: 1.45rem; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section-paper { background: var(--paper); }
.section-linen { background: var(--linen); }
.section-forest { background: var(--forest); color: #e9e4d8; }
.section-forest h2, .section-forest h3, .section-forest h4 { color: var(--paper); }
.section-forest a:not(.btn) { color: var(--bronze-light); }

.section-head { display: grid; gap: 1rem; margin-bottom: clamp(40px, 6vw, 64px); max-width: 720px; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.12rem; }
.section-forest .section-head p { color: #cdd3c8; }
.kicker { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--bronze-ink); margin: 0; }
.section-forest .kicker { color: var(--bronze-light); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 8vw, 104px) clamp(64px, 9vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--forest-soft); margin: 0 0 1.25rem; line-height: 1.3; }
.hero h1 { margin-bottom: .45em; max-width: 13ch; }
.hero .lede { margin-bottom: 0; }
.hero-note { margin-top: 1.25rem; font-size: .95rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-arch);
  overflow: hidden;
  background: var(--linen);
  box-shadow: 0 0 0 10px var(--paper), 0 0 0 11px var(--line);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 30%; }
.hero-sprig { position: absolute; right: -34px; top: -18px; width: 120px; color: var(--sage); transform: rotate(18deg); }

/* The time dial — the one signature moment */
.time-dial {
  position: absolute; left: -44px; bottom: -52px;
  width: 188px; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.time-dial svg {
  width: 100%; height: auto; overflow: visible;
  padding: 14px; background: var(--paper); border-radius: 50%;
  box-shadow: 0 18px 40px -22px rgba(21, 49, 31, .45);
}
.dial-track { fill: none; stroke: var(--linen); }
.dial-arc { fill: none; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 100px 100px; }
.dial-arc-short { stroke: var(--sage); }
.dial-arc-long { stroke: var(--bronze); }
.dial-num { font-family: var(--serif); font-size: 44px; font-weight: 600; fill: var(--forest-deep); }
.dial-label { font-family: var(--sans); font-size: 11px; fill: var(--muted); }
.dial-legend { display: flex; justify-content: center; gap: .8rem; padding: .3rem .8rem; background: var(--paper); border-radius: 999px; font-size: .75rem; color: var(--muted); white-space: nowrap; }
.dial-legend span::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; vertical-align: 1px; }
.dial-legend .is-long::before { background: var(--bronze); }
.dial-legend .is-short::before { background: var(--sage); }

.js .dial-arc { stroke-dashoffset: 100; }
.js .dial-ready .dial-arc { transition: stroke-dashoffset 1.6s cubic-bezier(.3, .7, .2, 1); stroke-dashoffset: var(--to); }
.js .dial-ready .dial-arc-long.lap2 { transition-delay: 1.1s; }
@media (prefers-reduced-motion: reduce) {
  .js .dial-arc, .js .dial-ready .dial-arc { transition: none; stroke-dashoffset: var(--to); }
}

.facts { border-top: 1px solid var(--line); margin-top: clamp(56px, 8vw, 88px); padding-top: 1.5rem; }
.facts ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .75rem 2.5rem; }
.facts li { display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .98rem; }
.facts svg { width: 18px; height: 18px; color: var(--bronze); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 1rem auto 2rem; width: 100%; }
  .time-dial { left: -12px; bottom: -44px; width: 156px; }
  .hero-sprig { right: -10px; width: 90px; }
}

/* ---------- Two paths ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.path { padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; }
.path-care { background: var(--forest); color: #e3e6dc; }
.path-care h3 { color: var(--paper); }
.path-consult { background: var(--paper); }
.path-label { font-size: .9rem; color: var(--bronze-ink); margin-bottom: .5rem; }
.path-care .path-label { color: var(--bronze-light); }
.path h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; }
.path ul { list-style: none; padding: 0; margin: .5rem 0 2rem; display: grid; gap: .5rem; }
.path li { display: flex; gap: .6rem; align-items: baseline; }
.path li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); flex: none; transform: translateY(-2px); }
.path .btn { margin-top: auto; align-self: flex-start; }
.wmc-lockup { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.25rem; }
.wmc-lockup svg { width: 58px; color: var(--bronze); flex: none; }
.wmc-lockup small { display: block; font-size: .8rem; color: var(--muted); }
@media (max-width: 820px) { .paths { grid-template-columns: 1fr; } }

/* ---------- For you ---------- */
.for-you { display: grid; grid-template-columns: repeat(4, 1fr); }
.for-you-item { padding: .25rem 1.75rem 0; border-left: 1px solid var(--line); }
.for-you-item:first-child { border-left: 0; padding-left: 0; }
.for-you-item svg { width: 46px; height: 46px; color: var(--forest); margin-bottom: 1.25rem; }
.for-you-item h3 { font-style: italic; font-weight: 500; font-size: 1.55rem; }
.for-you-item p { color: var(--muted); margin: 0; }
.pull {
  margin-top: clamp(56px, 8vw, 88px);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 56px);
  background: var(--forest); color: var(--paper);
  border-radius: var(--radius);
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center;
}
.pull svg { width: 64px; color: var(--bronze-light); }
.pull p { margin: 0; font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.2; }
.pull small { display: block; font-family: var(--sans); font-size: 1rem; color: #cdd3c8; margin-top: .5rem; line-height: 1.5; }
@media (max-width: 900px) {
  .for-you { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .for-you-item:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 560px) {
  .for-you { grid-template-columns: 1fr; }
  .for-you-item { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.75rem; }
  .for-you-item:first-child { border-top: 0; padding-top: 0; }
  .pull { grid-template-columns: 1fr; }
}

/* ---------- Assessment ---------- */
.assessment { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: .75rem; }
.checklist svg { width: 20px; height: 20px; color: var(--forest); margin-top: 4px; }
.checklist small { display: block; color: var(--muted); font-size: .9rem; }
.report-note {
  margin-top: 2rem; display: flex; gap: 1rem; align-items: center;
  padding: 1.1rem 1.25rem; background: var(--paper); border-radius: var(--radius-sm);
}
.report-note svg { width: 34px; height: 34px; color: var(--bronze-ink); flex: none; }
.report-note p { margin: 0; }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding: 0 0 2rem 4.25rem; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--bronze); color: var(--bronze-ink);
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  background: var(--paper);
}
.steps li::after { content: ""; position: absolute; left: 22px; top: 46px; bottom: 4px; width: 1px; background: var(--line); }
.steps li:last-child::after { display: none; }
.steps h4 { margin: .45rem 0 .25rem; }
.steps p { margin: 0; color: var(--muted); }
.assessment-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); }
.assessment-card h3 { margin-bottom: 1.5rem; }
@media (max-width: 860px) { .assessment { grid-template-columns: 1fr; } }

/* ---------- Fees (menu style) ---------- */
.fees { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.fee-list { list-style: none; margin: 0; padding: 0; }
.fee { padding: 1.35rem 0; border-bottom: 1px solid rgba(233, 228, 216, .16); }
.fee:first-child { padding-top: 0; }
.fee-head { display: flex; align-items: baseline; gap: .8rem; }
.fee-name { font-family: var(--serif); font-size: 1.65rem; color: var(--paper); line-height: 1.15; }
.fee-leader { flex: 1; border-bottom: 1px dotted rgba(220, 182, 131, .55); transform: translateY(-6px); min-width: 24px; }
.fee-price { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--bronze-light); white-space: nowrap; }
.fee-meta { font-size: .92rem; color: #cdd3c8; margin: .15rem 0 0; }
.membership {
  border: 1px solid var(--bronze-light);
  border-radius: var(--radius-arch);
  padding: clamp(56px, 7vw, 76px) clamp(28px, 4vw, 44px) clamp(32px, 4vw, 44px);
  text-align: center;
  background: var(--forest-deep);
}
.membership h3 { font-weight: 500; font-size: 2rem; margin-bottom: .25rem; }
.membership-price { font-family: var(--serif); font-size: 3.4rem; line-height: 1; color: var(--bronze-light); margin: .75rem 0 .25rem; }
.membership-price span { font-size: 1.2rem; color: #cdd3c8; }
.membership ul { list-style: none; padding: 0; margin: 1.5rem 0 2rem; text-align: left; display: grid; gap: .55rem; }
.membership li { display: flex; gap: .6rem; }
.membership li svg { width: 18px; height: 18px; color: var(--bronze-light); flex: none; margin-top: 5px; }
.fees-foot { margin-top: 2.5rem; font-size: .95rem; color: #cdd3c8; max-width: 70ch; }
@media (max-width: 900px) { .fees { grid-template-columns: 1fr; } .membership { max-width: 460px; } }
@media (max-width: 480px) { .fee-head { flex-wrap: wrap; } .fee-leader { display: none; } .fee-price { margin-left: auto; } }

/* ---------- Follow-up rhythm ---------- */
.rhythm { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.rhythm::before { content: ""; position: absolute; left: 28px; right: calc(25% - 28px); top: 27px; height: 1px; background: var(--bronze); opacity: .5; }
.rhythm li { position: relative; padding-right: 1.5rem; }
.rhythm-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--parchment); border: 1px solid var(--bronze);
  display: grid; place-items: center; color: var(--forest);
  position: relative; margin-bottom: 1.25rem;
}
.section-paper .rhythm-dot { background: var(--paper); }
.rhythm-dot svg { width: 24px; height: 24px; }
.rhythm h4 { font-size: 1.5rem; margin-bottom: .15rem; }
.rhythm p { margin: 0; color: var(--muted); }
@media (max-width: 820px) {
  .rhythm { grid-template-columns: 1fr; gap: 1.75rem; }
  .rhythm::before { left: 27px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .rhythm li { display: grid; grid-template-columns: 56px 1fr; column-gap: 1.25rem; padding: 0; }
  .rhythm-dot { margin: 0; grid-row: span 2; }
}

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.service-group h3 { display: flex; align-items: center; gap: .75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.status { font-family: var(--sans); font-size: .8rem; font-weight: 500; padding: .25rem .65rem; border-radius: 999px; }
.status-now { background: var(--sage-pale); color: var(--forest); }
.status-soon { background: var(--linen); color: var(--bronze-ink); }
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: baseline; }
.service-list strong { font-weight: 500; }
.service-list span { color: var(--muted); font-size: .92rem; text-align: right; }
.services-note { margin-top: 1.25rem; font-size: .95rem; color: var(--muted); }
@media (max-width: 820px) { .services { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.person-portrait {
  aspect-ratio: 5 / 6; border-radius: var(--radius-arch);
  background: var(--paper);
  display: grid; place-items: center; overflow: hidden;
  margin-bottom: 1.5rem;
}
.person-portrait img { width: 100%; height: 100%; object-fit: cover; }
.person-initials { font-family: var(--serif); font-size: 4rem; color: var(--sage); }
.person h3 { margin-bottom: .1rem; }
.person-role { color: var(--bronze-ink); margin-bottom: .9rem; font-size: .98rem; }
.person p { color: var(--muted); }
@media (max-width: 860px) { .team { grid-template-columns: 1fr; max-width: 420px; } }

/* ---------- Faith ---------- */
.faith { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px, 5vw, 64px); align-items: center; }
.faith-cross { width: 64px; color: var(--bronze); }
.faith p { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.3; margin: 0; color: var(--forest-deep); }
.faith small { display: block; font-family: var(--sans); font-size: 1rem; color: var(--muted); margin-top: .75rem; }
.faith-sprig { width: 110px; color: var(--sage); }
@media (max-width: 720px) { .faith { grid-template-columns: 1fr; } .faith-sprig { display: none; } }

/* ---------- Physician teaser / page ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split-rule { border-left: 1px solid rgba(220, 182, 131, .5); padding-left: clamp(24px, 4vw, 48px); }
.plain-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.plain-list li { padding-left: 1.4rem; position: relative; }
.plain-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 1px; background: var(--bronze); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split-rule { border-left: 0; padding-left: 0; } }

.page-hero { padding-block: clamp(56px, 9vw, 112px) clamp(48px, 7vw, 88px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); max-width: 18ch; }
.page-hero-forest { background: var(--forest); border-bottom: 0; }
.page-hero-forest h1 { color: var(--paper); }
.page-hero-forest .lede { color: #cdd3c8; }
.page-hero-forest .kicker { color: var(--bronze-light); }

.phases { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.phase { padding: 2rem 2rem 0 0; }
.phase + .phase { padding-left: 2rem; border-left: 1px solid var(--line); }
.phase-when { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--bronze-ink); margin: 0 0 .25rem; }
.phase p { color: var(--muted); }
@media (max-width: 860px) {
  .phases { grid-template-columns: 1fr; }
  .phase + .phase { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

.duty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
.duty h4 { margin-bottom: .3rem; }
.duty p { margin: 0; color: var(--muted); }
@media (max-width: 700px) { .duty-grid { grid-template-columns: 1fr; } }

/* ---------- Important + booking ---------- */
.book { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.important { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .9rem; }
.important li { display: grid; grid-template-columns: 20px 1fr; gap: .75rem; }
.important svg { width: 18px; height: 18px; color: var(--bronze); margin-top: 5px; }
.contact-lines { margin-top: 2rem; display: grid; gap: .4rem; }
.contact-lines a { text-decoration: none; font-size: 1.1rem; }
@media (max-width: 860px) { .book { grid-template-columns: 1fr; } }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); }
.form-card h3 { margin-bottom: .35rem; }
.form-intro { color: var(--muted); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.field { display: grid; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .92rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .75rem .85rem;
  background: var(--parchment);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--bronze); outline-offset: 0; border-color: var(--bronze); }
.field-hint { font-size: .85rem; color: var(--muted); }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { margin-top: .3rem; width: 16px; height: 16px; accent-color: var(--forest); }
.form-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-status { font-size: .95rem; padding: .8rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; }
.form-status.is-ok { background: var(--sage-pale); color: var(--forest-deep); }
.form-status.is-error { background: #f3dfd6; color: #7a2e16; }
.hp-field { position: absolute; left: -9999px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: #c9cfc4; padding-block: clamp(56px, 8vw, 88px) 2rem; font-size: .96rem; }
.site-footer a { color: #e9e4d8; text-decoration: none; }
.site-footer a:hover { color: var(--bronze-light); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand { color: var(--paper); }
.footer-brand .brand-mark { color: var(--bronze-light); }
.footer-brand .brand-sub { color: #aab3a6; }
.footer-brand p { margin-top: 1.25rem; max-width: 34ch; }
.site-footer h4 { color: var(--paper); font-size: 1.2rem; margin-bottom: .9rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(233, 228, 216, .14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #9fa99b;
}
.footer-disclaimer { max-width: 80ch; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Default page content ---------- */
.entry { padding-block: var(--section-y); }
.entry-content { max-width: 70ch; }
.entry-content h2 { margin-top: 1.5em; }
.entry-content img { height: auto; border-radius: var(--radius-sm); }
.alignwide { max-width: 1000px; }
.alignfull { max-width: none; }
