/* ============================================================
   Finding Solace — shared stylesheet
   Palette: deep pine green, sage, warm ivory, muted gold
   Type:    Fraunces (display) · Karla (body)
   ============================================================ */

:root {
  --pine-900: #142b23;
  --pine-700: #1e4034;
  --pine-500: #2f5d4a;
  --sage:     #a9c4b3;
  --mist:     #eaf0e9;
  --ivory:    #faf8f1;
  --gold:     #c7a455;
  --gold-soft:#e9dcb4;
  --ink:      #1d2723;
  --muted:    #5d6c64;
  --line:     #dce4db;
  --white:    #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(20, 43, 35, 0.08);
  --shadow-lift: 0 16px 40px rgba(20, 43, 35, 0.14);
  --wrap: 1120px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--pine-500); }
a:hover { color: var(--pine-700); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.15;
  color: var(--pine-900);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 62ch;
}

/* Centering: when a container is centered, any constrained child
   (lede, headings, paragraphs) is horizontally centered too — so
   nothing drifts left regardless of markup. */
.center { text-align: center; }
.center > * { margin-inline: auto; }
.center .lede,
.center p { margin-inline: auto; }

section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-mist { background: var(--mist); }
.section-pine { background: var(--pine-700); }
.section-pine h2, .section-pine h3 { color: var(--white); }
.section-pine p { color: var(--sage); }
.section-pine .eyebrow { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-pine { background: var(--pine-700); color: var(--white); }
.btn-pine:hover { background: var(--pine-900); color: var(--white); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--pine-900); }
.btn-gold:hover { background: #b8933f; color: var(--pine-900); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--pine-700); border-color: var(--pine-500); }
.btn-ghost:hover { background: var(--pine-700); color: var(--white); }
.section-pine .btn-ghost { color: var(--white); border-color: var(--sage); }
.section-pine .btn-ghost:hover { background: var(--white); color: var(--pine-900); }
.btn-whatsapp { background: #1fa855; color: var(--white); }
.btn-whatsapp:hover { background: #16813f; color: var(--white); box-shadow: var(--shadow); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 248, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark {
  line-height: 0;
  background: var(--pine-700);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { display: block; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--pine-900);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-nav { display: flex; gap: 26px; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--pine-500); }
.site-nav a[aria-current="page"] {
  color: var(--pine-700);
  border-bottom-color: var(--gold);
}
.nav-cta { padding: 11px 22px; font-size: 0.9rem; white-space: nowrap; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pine-900);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero (landing) ---------- */
.hero {
  padding: 72px 0 88px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-note { font-size: 0.9rem; color: var(--muted); margin-top: 18px; }

/* ---------- Breathing figure — the signature element ---------- */
.breath {
  position: relative;
  width: min(360px, 78vw);
  aspect-ratio: 560 / 620;
  margin: 0 auto;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.breath-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Everything breathes on the same slow 11s cycle, in unison. */
.breath-svg .aura,
.breath-svg .med-figure {
  transform-box: view-box;
}

/* Aura rings: gentle expand, centred on the figure body */
.breath-svg .aura {
  transform-origin: 399px 276px;
  animation: fig-aura 11s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
/* The whole figure swells softly on the inhale — like a real breath.
   Scaled from the base so the body lifts from the seat, not the floor. */
.breath-svg .med-figure {
  transform-origin: 399px 276px;
  animation: fig-body 11s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

/* Cue text in elegant serif italic, below the figure */
.breath-cue {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--pine-700);
  white-space: nowrap;
  animation: cue-fade 11s ease-in-out infinite;
}

/* Inhale 0–36%, hold 36–54%, exhale 54–100% */
@keyframes fig-body {
  0%   { transform: scale(1); }
  36%  { transform: scale(1.035); }
  54%  { transform: scale(1.035); }
  100% { transform: scale(1); }
}
@keyframes fig-aura {
  0%   { transform: scale(0.92); opacity: 0.7; }
  36%  { transform: scale(1.04); opacity: 1; }
  54%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(0.92); opacity: 0.7; }
}
/* Words melt in and out at the turns */
@keyframes cue-fade {
  0%, 100% { opacity: 0; }
  6%, 30%  { opacity: 1; }
  36%      { opacity: 0.85; }
  46%      { opacity: 0.85; }
  60%, 90% { opacity: 1; }
}

/* ---------- Credentials strip ---------- */
.cred-strip {
  background: var(--pine-900);
  padding: 22px 0;
}
.cred-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
}
.cred-item {
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Card grids ---------- */
.grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; margin: 0; }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mist);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 16px;
}
.quote-card blockquote {
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.quote-attr { font-size: 0.85rem; color: var(--muted); font-weight: 700; }
.placeholder-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a3652a;
  background: #f7ecd9;
  border-radius: 6px;
  padding: 3px 9px;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--pine-700);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 2.9rem); }
.page-hero .lede { color: var(--sage); margin-inline: auto; }
.page-hero .eyebrow { color: var(--gold-soft); }

/* ---------- Pricing ---------- */
.price-grid { align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured { border: 2px solid var(--gold); }
.price-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--pine-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-region {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--pine-900);
  line-height: 1;
}
.price-per { font-size: 0.95rem; color: var(--muted); margin: 6px 0 20px; }
.price-list { list-style: none; padding: 0; margin: 0 0 26px; }
.price-list li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--ink);
  font-size: 0.97rem;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; text-align: center; }

/* ---------- Availability table ---------- */
.avail-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
}
.avail-table th, .avail-table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 0.96rem;
  border-bottom: 1px solid var(--line);
}
.avail-table th {
  background: var(--pine-700);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.avail-table tr:last-child td { border-bottom: none; }
.avail-table td:first-child { font-weight: 700; color: var(--pine-900); }
.tz-note { font-size: 0.88rem; color: var(--muted); margin-top: 14px; }

/* ---------- Payment badges ---------- */
.pay-grid { margin-top: 32px; }
.pay-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.pay-card h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.pay-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine-700);
  background: var(--mist);
  padding: 4px 10px;
  border-radius: 6px;
}
.pay-note {
  background: var(--mist);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ---------- Booking / Calendly ---------- */
.calendly-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 12px;
  margin-top: 32px;
  min-height: 320px;
}
.calendly-fallback {
  text-align: center;
  padding: 60px 28px;
}
.calendly-fallback h3 { margin-bottom: 10px; }
.calendly-fallback p { color: var(--muted); max-width: 46ch; margin: 0 auto 24px; }
.book-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 40px auto 0; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--pine-900);
  list-style: none;
  position: relative;
  padding-right: 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 0.97rem; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.portrait-card { position: sticky; top: 100px; }
.portrait {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--pine-500), var(--pine-900));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.portrait-initials {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold-soft);
}
.portrait-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(20, 43, 35, 0.6);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.portrait-meta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  margin-top: 18px;
  font-size: 0.93rem;
}
.portrait-meta dt {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}
.portrait-meta dt:first-child { margin-top: 0; }
.portrait-meta dd { margin: 3px 0 0; color: var(--ink); }

.timeline { list-style: none; padding: 0; margin: 28px 0 0; }
.timeline li {
  position: relative;
  padding: 0 0 26px 34px;
  border-left: 2px solid var(--line);
  margin-left: 8px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--ivory);
}
.timeline strong { display: block; color: var(--pine-900); font-size: 1.02rem; }
.timeline span { color: var(--muted); font-size: 0.94rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  margin-bottom: 18px;
}
.contact-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; }
.contact-card a.link-lg {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

form.styled-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 7px;
  color: var(--pine-900);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.form-hint { font-size: 0.83rem; color: var(--muted); margin-top: 6px; }
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.94rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--mist); color: var(--pine-700); }
.form-status.warn { background: #f7ecd9; color: #7a5218; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Policies page ---------- */
.policy-body { max-width: 780px; margin: 0 auto; }
.policy-body h2 {
  font-size: 1.45rem;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.policy-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-body p, .policy-body li { color: var(--ink); font-size: 0.99rem; }
.policy-body ul { padding-left: 22px; }
.policy-updated { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--pine-700), var(--pine-900));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--sage); max-width: 56ch; margin-inline: auto; }
.cta-band .btn { margin: 8px 6px 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-900);
  color: var(--sage);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(169, 196, 179, 0.2);
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.site-footer a { color: var(--sage); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: 0.95rem; }
.footer-about { font-size: 0.93rem; max-width: 40ch; }
.crisis-note {
  margin-top: 32px;
  background: rgba(199, 164, 85, 0.12);
  border: 1px solid rgba(199, 164, 85, 0.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--gold-soft);
}
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(169, 196, 179, 0.7);
}
.footer-base a { font-size: 0.82rem; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .breath-svg .aura,
  .breath-svg .med-figure,
  .breath-cue { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .breath { margin-top: 20px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait-card { position: static; max-width: 380px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  section { padding: 60px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 2px; border-bottom: 1px solid var(--line); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--gold); }
  .avail-table th, .avail-table td { padding: 12px 12px; font-size: 0.88rem; }
  .cta-band { padding: 44px 24px; }
}
