/* Heal With Jonatan - v3, implemented from Claude Design handoff
   ("Angie Peacock Site.dc.html"), re-branded for Jonatan.
   Palette: deep petrol, warm gold, soft sage, eucalyptus, warm paper.
   Type: Prata (display serif), Jost (body, light), Mrs Saint Delafield (script). */

/* ---------- Self-hosted fonts (latin subset, woff2) ---------- */
@font-face {
  font-family: 'Prata'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/prata-v22-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 300; font-display: swap;
  src: url('../assets/fonts/jost-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../assets/fonts/jost-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost'; font-style: italic; font-weight: 300 400; font-display: swap;
  src: url('../assets/fonts/jost-v20-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Mrs Saint Delafield'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/mrs-saint-delafield-v14-latin-regular.woff2') format('woff2');
}

:root {
  --deep: #16404A;
  --deep-2: #0F2E36;
  --deep-3: #1E5361;
  --gold: #B99A67;
  --gold-light: #C9AC7C;
  --sage: #D5E1CC;
  --sage-pale: #CFE3D2;
  --band: #D9E8E2;
  --beige: #F1EFE8;
  --paper: #FAF9F6;
  --ink: #1B1B1B;
  --body-ink: #3D3D3D;
  --teal-label: #1D6355;
  --cream: #F4F1EA;
  --nav-muted: #E8E4DA;
  --script-tint: #B8DCCC;
  --serif: 'Prata', 'Georgia', serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
  --script: 'Mrs Saint Delafield', cursive;
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; max-width: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--body-ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-light); outline-offset: 3px;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: 13px; letter-spacing: 5px; font-weight: 500;
  color: var(--teal-label); margin-bottom: 26px; text-transform: uppercase;
}
.eyebrow.gold { color: var(--gold); }
h1, h2 { font-family: var(--serif); font-weight: 400; color: var(--ink); line-height: 1.2; }
.lead-copy { font-size: 16.5px; line-height: 1.9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 14px; letter-spacing: .12em;
  font-weight: 500; text-decoration: none; text-transform: uppercase;
  padding: 17px 38px; border-radius: 0; cursor: pointer; border: 0;
  transition: filter .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(15, 46, 54, .18); }
.btn:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(15, 46, 54, .14); }
.btn-sage { background: var(--sage); color: var(--deep-2); }
.btn-sage:hover { filter: brightness(.96); }
.btn-deep { background: var(--deep); color: var(--cream); }
.btn-deep:hover { filter: brightness(1.15); }
.btn-gold { background: var(--gold); color: var(--deep-2); }
.btn-gold:hover { filter: brightness(1.06); }

/* ---------- Header ---------- */
.site-header {
  background: var(--deep); display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 12px 40px; position: sticky; top: 0; z-index: 50;
  box-shadow: 0 12px 40px rgba(15, 46, 54, .22);
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.mark-enso { width: 34px; height: 34px; flex: none; display: block; }
.wordmark { color: var(--cream); font-family: var(--serif); line-height: .95; }
.wordmark .line1 { font-size: 17px; letter-spacing: 3px; text-transform: uppercase; }
.wordmark .line2 { font-size: 32px; }
.site-nav {
  display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; row-gap: 10px;
  column-gap: clamp(16px, 2vw, 32px); font-size: 14px; letter-spacing: .12em; min-width: 0;
}
.site-nav a {
  color: var(--nav-muted); text-decoration: none; font-weight: 400;
  padding-bottom: 5px;
  background-image: linear-gradient(var(--gold-light), var(--gold-light));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: color .25s ease, background-size .35s cubic-bezier(.16, 1, .3, 1);
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--gold-light); background-size: 100% 1px;
}
.brand { transition: opacity .25s ease; }
.brand:hover { opacity: .85; }

/* ---------- Hero photo ----------
   The slogan lives in normal document flow; the photo and scrim are
   background layers. The section can only grow, never clip the text. */
.hero-photo {
  position: relative; min-height: clamp(480px, 78vh, 880px);
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-photo > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 58%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 46, 54, .16) 0%,
    rgba(15, 46, 54, .05) 28%,
    rgba(15, 46, 54, .14) 52%,
    rgba(15, 46, 54, .48) 100%);
}
.hero-slogan {
  position: relative; margin: 0; max-width: min(100%, 1000px);
  padding: clamp(160px, 26vh, 300px) 24px clamp(48px, 11vh, 110px);
  text-align: center; line-height: normal;
  animation: fadeUp 1.1s cubic-bezier(.16, 1, .3, 1) .15s both;
}
.hero-slogan .l1 {
  display: block; font-family: var(--serif);
  font-size: clamp(1.5rem, 1rem + 2.4vw, 3rem);
  color: #F7F4EC; letter-spacing: .025em; line-height: 1.3;
  text-shadow: 0 2px 34px rgba(10, 36, 44, .5);
}
.hero-slogan .l2 {
  display: block; font-family: var(--script);
  font-size: clamp(2.7rem, 1.7rem + 4.6vw, 5.9rem);
  color: #F2E2B8; line-height: 1.15; margin-top: 12px; padding-bottom: .12em;
  text-shadow: 0 2px 8px rgba(10, 36, 44, .7), 0 6px 42px rgba(10, 36, 44, .6);
}

/* ---------- Overlap intro card ---------- */
.intro-overlap {
  position: relative; display: flex; justify-content: center;
  padding: clamp(72px, 11vh, 140px) 24px;
}
.intro-overlap .bg { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.intro-overlap .tex { position: relative; overflow: hidden; }
.intro-overlap .tex img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.intro-overlap .flat { background: #E9EFEA; }
.overlap-card {
  position: relative; width: min(1040px, 100%); background: #FFFFFF;
  padding: clamp(56px, 8vw, 92px) clamp(28px, 7vw, 96px); text-align: center;
  box-shadow: 0 30px 80px rgba(15, 46, 54, .16);
  border: 1px solid rgba(185, 154, 103, .22);
}
.overlap-card h1 { font-size: clamp(34px, 3.5vw, 56px); line-height: 1.2; margin: 0 0 32px; }
.overlap-card .body-copy { font-size: 17px; line-height: 1.9; max-width: 620px; margin: 0 auto 38px; }
.overlap-card .pull { font-family: var(--serif); font-size: clamp(25px, 2.3vw, 36px); line-height: 1.4; color: var(--ink); margin: 0 0 44px; }

/* ---------- Editorial split sections ---------- */
.split {
  background: var(--beige); display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 7vw, 110px); align-items: center;
  padding: clamp(72px, 10vh, 120px) 8vw;
}
.split.on-paper { background: var(--paper); }
.split .txt { text-align: left; max-width: 560px; justify-self: center; }
.split .txt .eyebrow { margin-bottom: 22px; }
.split h2 { font-size: clamp(32px, 3vw, 48px); line-height: 1.28; letter-spacing: .004em; margin: 0 0 30px; }
.split .txt p { font-size: 17px; line-height: 1.95; margin: 0 0 24px; }
.split .txt p.last { margin-bottom: 42px; }
.split .photo img {
  width: 100%; aspect-ratio: 4 / 5; max-height: 680px; object-fit: cover;
  box-shadow: 0 32px 70px rgba(15, 46, 54, .14);
}

/* ---------- Photo testimonial bands ---------- */
.photo-band {
  position: relative; min-height: min(600px, 80vh); display: flex; align-items: center;
  justify-content: center; overflow: hidden; background-size: cover; background-position: center;
}
.photo-band .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17, 48, 56, .38) 0%, rgba(17, 48, 56, .5) 55%, rgba(17, 48, 56, .62) 100%);
}
.photo-band .inner {
  position: relative; text-align: center;
  padding: clamp(72px, 11vh, 120px) 8vw; max-width: 1080px;
}
.photo-band .script {
  font-family: var(--script); font-size: clamp(38px, 4vw, 66px);
  color: var(--script-tint); line-height: 1.15; margin-bottom: 30px;
  text-shadow: 0 2px 26px rgba(10, 36, 44, .45);
}
.photo-band .quote {
  font-family: var(--serif); font-size: clamp(24px, 2.6vw, 40px); line-height: 1.5;
  color: #FFFFFF; margin: 0 auto; max-width: 21em;
  text-shadow: 0 2px 28px rgba(12, 40, 48, .4);
}
.photo-band .attrib {
  margin-top: 40px; font-size: 12px; letter-spacing: 4px; color: #CFE2D8;
  text-transform: uppercase; font-weight: 400;
}
.photo-band .band-link {
  display: inline-block; margin-top: 36px; font-family: var(--sans);
  font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; padding: 12px 26px;
  border: 1px solid rgba(244, 241, 234, .45); transition: border-color .25s ease, background .25s ease;
}
.photo-band .band-link:hover { border-color: var(--gold-light); background: rgba(12, 40, 48, .35); }
.photo-band .attrib::before {
  content: ""; display: block; width: 44px; height: 1px;
  background: var(--gold-light); opacity: .85; margin: 0 auto 20px;
}

/* ---------- Who this work is for ---------- */
.for-who .closing-note {
  margin: 44px auto 0; max-width: 560px;
  font-family: var(--serif); font-size: 19px; line-height: 1.6; color: var(--ink);
}

/* ---------- Twin split (1:1 / Groups) ---------- */
.twin {
  position: relative; padding: clamp(72px, 10vh, 120px) 8vw;
  background: linear-gradient(160deg, #EFF6F2 0%, #E0EDE6 50%, #D6E7DF 100%);
}
.twin .cols { display: grid; grid-template-columns: 1fr 140px 1fr; align-items: stretch; gap: 24px; }
.twin .col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.twin .col .eyebrow { margin-bottom: 20px; }
.twin h2 { font-size: clamp(28px, 2.7vw, 44px); line-height: 1.3; margin: 0 0 28px; max-width: 15em; }
.twin .col p { font-size: 16.5px; line-height: 1.9; max-width: 460px; margin: 0 0 40px; }
.twin .col .btn { margin-top: auto; }
.twin .divider { align-self: center; }
.twin .divider { display: flex; justify-content: center; }
.mark-enso.big { width: 64px; height: 64px; }

/* ---------- Meet section (edge texture + overlap photo) ---------- */
.meet { position: relative; display: grid; grid-template-columns: 24vw 1fr; background: var(--beige); }
.meet .edge { position: relative; overflow: hidden; }
.meet .edge img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.meet .content {
  display: grid; grid-template-columns: minmax(320px, 480px) 1fr; gap: clamp(56px, 6vw, 96px);
  align-items: center; padding: clamp(96px, 13vh, 150px) 7vw clamp(96px, 13vh, 150px) 0;
}
.meet .content > img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; margin-left: -80px;
  position: relative; z-index: 2; box-shadow: 0 32px 70px rgba(15, 46, 54, .18);
}
.meet .txt { text-align: left; max-width: 560px; }
.meet h2 { font-size: clamp(30px, 3vw, 46px); line-height: 1.3; margin: 0 0 30px; }
.meet .txt p { font-size: 17px; line-height: 1.95; margin: 0 0 24px; }
.meet .txt p.last { margin-bottom: 42px; }

/* ---------- Sunburst ---------- */
.sunburst { margin-top: 56px; display: flex; justify-content: center; }
.split .sunburst { justify-content: flex-start; margin-top: 48px; opacity: .85; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-2); padding: 90px 48px 64px; text-align: center; }
.site-footer .name { color: var(--cream); font-family: var(--serif); font-size: 32px; margin-bottom: 12px; }
.site-footer .tag { color: var(--gold-light); font-size: 12px; letter-spacing: 4.5px; margin-bottom: 44px; }
.footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 30px;
  font-size: 12px; letter-spacing: 3px; margin-bottom: 40px;
}
.footer-nav a {
  color: var(--nav-muted); text-decoration: none; padding-bottom: 4px;
  background-image: linear-gradient(var(--gold-light), var(--gold-light));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: color .25s ease, background-size .35s cubic-bezier(.16, 1, .3, 1);
}
.footer-nav a:hover { color: var(--gold-light); background-size: 100% 1px; }
.site-footer .mail { margin-bottom: 48px; font-size: 14px; letter-spacing: 1px; }
.site-footer .mail a { color: var(--script-tint); text-decoration: none; transition: color .25s ease; }
.site-footer .mail a:hover { color: #FFFFFF; }
.site-footer .disclaimer {
  color: #9DB4AC; font-size: 12.5px; line-height: 1.8; letter-spacing: .4px;
  max-width: 760px; margin: 0 auto 24px; padding-top: 40px; position: relative;
}
.site-footer .disclaimer::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 44px; height: 1px; background: var(--gold); opacity: .5;
}
.site-footer .legal { color: #7E97A0; font-size: 12px; letter-spacing: 1px; }

/* ---------- Subpage hero ---------- */
.page-hero { text-align: center; padding: 60px 8vw 52px; }
.page-hero .eyebrow { color: var(--teal-label); margin-bottom: 18px; }
.page-hero h1 { color: var(--ink); font-size: clamp(32px, 3.4vw, 50px); margin: 0 0 20px; }
.page-hero .sub { color: var(--ink-soft); font-size: 16.5px; line-height: 1.85; max-width: 640px; margin: 0 auto; }
.page-hero.on-dark { background: var(--deep); padding: 80px 8vw 90px; }
.page-hero.on-dark .eyebrow { color: var(--gold-light); }
.page-hero.on-dark h1 { color: var(--cream); }
.page-hero.on-dark .sub { color: var(--nav-muted); }

/* ---------- Generic centered section ---------- */
.center-sec { padding: 84px 8vw; text-align: center; }
.center-sec.beige { background: var(--beige); }
.center-sec h2 { font-size: clamp(30px, 3vw, 46px); margin: 0 0 34px; }
.center-sec .lead-copy { max-width: 680px; margin: 0 auto 26px; }

/* ---------- Booking embed ---------- */
.booking { padding: 44px 8vw 100px; background: var(--beige); }
.booking .frame {
  background: #FFFFFF; max-width: 1040px; margin: 0 auto;
  padding: 18px; box-shadow: 0 30px 80px rgba(15, 46, 54, .12);
}
.booking iframe { width: 100%; border: 0; display: block; }
.booking .note { text-align: center; font-size: 15px; line-height: 1.85; max-width: 620px; margin: 30px auto 0; }
.enroll-card {
  background: #FFFFFF; border: 1px solid rgba(185, 154, 103, .22);
  max-width: 720px; margin: 0 auto; padding: clamp(44px, 6vw, 64px) clamp(28px, 5vw, 56px);
  text-align: center; box-shadow: 0 24px 60px rgba(15, 46, 54, .1);
}
.enroll-card .eyebrow { margin-bottom: 18px; }
.enroll-card h2 { font-size: clamp(24px, 2.4vw, 34px); margin-bottom: 18px; }
.enroll-card p { font-size: 16px; line-height: 1.85; color: var(--body-ink); max-width: 52ch; margin: 0 auto 28px; }

/* ---------- Lists (groups page) ---------- */
.list-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; text-align: left; max-width: 1080px; margin: 0 auto; }
.list-cols h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; color: var(--ink); margin-bottom: 22px; text-align: left; }
.tick-list { list-style: none; }
.tick-list li { padding: 13px 0 13px 34px; position: relative; font-size: 16px; line-height: 1.7; border-bottom: 1px solid #E2DCCB; }
.tick-list li:last-child { border-bottom: none; }
.tick-list li::before { content: "\2713"; position: absolute; left: 4px; color: #8A683D; }

/* ---------- About page ---------- */
.list-cols.three { grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1240px; }
.list-cols.three h3 { font-size: 21px; min-height: 3em; display: flex; align-items: flex-start; justify-content: flex-start; }
.aside-note { color: #8B8B7E; font-size: 13.5px; }

.challenges { background: var(--deep); padding: clamp(72px, 10vh, 116px) 8vw; }
.challenges .inner { max-width: 880px; margin: 0 auto; text-align: center; }
.challenges h2 { color: var(--cream); font-size: clamp(28px, 2.8vw, 44px); margin-bottom: 18px; }
.challenges .lead-copy { color: var(--script-tint); font-family: var(--serif); font-size: clamp(18px, 1.8vw, 24px); line-height: 1.5; margin-bottom: 48px; }
.plain-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; text-align: left; }
.plain-list li {
  padding: 16px 4px; border-bottom: 1px solid rgba(244, 241, 234, .14);
  color: #D9DDD2; font-size: 15.5px; line-height: 1.7;
}

.matters { background: #E9EFEA; text-align: center; padding: clamp(72px, 10vh, 116px) 8vw; }
.matters .script-label {
  font-family: var(--sans); font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px; font-weight: 500;
}
.matters .pull {
  font-family: var(--serif); font-size: clamp(22px, 2.2vw, 32px); line-height: 1.55;
  color: var(--ink); max-width: 28em; margin: 0 auto 30px;
}
.matters .body-text { max-width: 660px; margin: 0 auto; font-size: 16.5px; line-height: 1.9; }

.closing-band { background: var(--deep); text-align: center; padding: clamp(64px, 9vh, 104px) 8vw; }
.closing-band h2 { color: var(--cream); font-size: clamp(28px, 2.8vw, 44px); margin-bottom: 20px; }
.closing-band p { color: #D9DDD2; font-size: 16.5px; line-height: 1.9; max-width: 560px; margin: 0 auto 44px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--deep); padding: 90px 8vw; }
.stats-band .grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 44px; text-align: center; max-width: 1080px; margin: 0 auto; }
.stats-band .num { font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); color: var(--gold-light); line-height: 1; }
.stats-band .lbl { color: var(--nav-muted); font-size: 14px; letter-spacing: 1px; line-height: 1.7; margin: 14px auto 0; max-width: 26ch; }

/* ---------- Voices grid ---------- */
.voices { padding: 84px 8vw; }
.voices.beige { background: var(--beige); }
.voices h2 { text-align: center; font-size: clamp(30px, 3vw, 46px); margin-bottom: 64px; }
.voices .more-voices { text-align: center; margin-top: 56px; }
.voices .grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 52px; max-width: 1240px; margin: 0 auto; }
.voices blockquote { font-size: 15.5px; line-height: 1.85; text-align: center; }
.voices blockquote::before {
  content: "\201C"; display: block; font-family: var(--serif); font-size: 54px;
  color: var(--gold-light); line-height: .6; margin-bottom: 18px;
}
.voices cite {
  display: block; margin-top: 20px; font-style: normal; font-size: 12px;
  letter-spacing: 3px; color: var(--teal-label); text-transform: uppercase; font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; padding: 90px 28px 110px; }
details.faq { border-bottom: 1px solid #E2DCCB; scroll-margin-top: 130px; }
.booking { scroll-margin-top: 110px; }
details.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: baseline; gap: 28px; padding: 30px 0;
  font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1.35;
}
details.faq summary { transition: color .25s ease; }
details.faq summary:hover { color: var(--teal-label); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 28px; color: var(--gold); flex-shrink: 0; }
details.faq[open] summary::after { content: "\2212"; }
details.faq .answer { padding: 0 0 32px; }
details.faq .answer p { font-size: 16px; line-height: 1.85; margin-bottom: 1.1em; }
details.faq .answer ul { margin: 0 0 1.1em 1.3em; font-size: 16px; line-height: 1.85; }
details.faq .answer a { color: var(--teal-label); }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 6fr 5fr; gap: 72px; max-width: 1160px; margin: 0 auto; padding: 90px 28px 110px; align-items: start; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-field { margin-bottom: 26px; text-align: left; }
.form-field label { display: block; font-size: 12px; letter-spacing: 3px; font-weight: 500; color: var(--teal-label); text-transform: uppercase; margin-bottom: 10px; }
.form-field input, .form-field textarea {
  width: 100%; font-family: var(--sans); font-weight: 300; font-size: 16px; color: var(--ink);
  background: #FFFFFF; border: 1px solid #D8D2C0; border-radius: 0; padding: 15px 16px;
}
.form-field input, .form-field textarea { transition: border-color .25s ease; }
.form-field input:hover, .form-field textarea:hover { border-color: var(--gold); }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--deep); outline-offset: 0; }
.cf-turnstile { margin-bottom: 26px; }
#form-status { margin-top: 22px; font-size: 15.5px; line-height: 1.7; text-align: left; }
#form-status.ok { color: var(--teal-label); }
#form-status.err { color: #8C3B2E; }
.contact-aside { background: var(--beige); padding: 46px 44px; text-align: left; }
.contact-aside h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; color: var(--ink); margin-bottom: 18px; }
.contact-aside p { font-size: 15.5px; line-height: 1.85; margin-bottom: 1.1em; }
.contact-aside a { color: var(--teal-label); }

/* ---------- Text page (primal trust) ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 90px 28px; }
.prose p { font-size: 16.5px; line-height: 1.9; margin-bottom: 1.4em; }
.prose .note { font-size: 15px; color: #6B6B60; font-style: italic; }
.prose .pt-pull {
  font-family: var(--serif); font-size: clamp(21px, 2vw, 27px); line-height: 1.5;
  color: var(--ink); padding: 8px 0 8px 28px; border-left: 2px solid var(--gold);
  margin: 2em 0;
}
.page-hero .pt-logo { width: min(230px, 56vw); height: auto; margin: 0 auto 34px; }
.offer-band .code {
  display: inline-block; background: var(--deep); color: var(--cream);
  font-weight: 400; letter-spacing: 3px; padding: 5px 16px; margin: 0 4px;
}

/* ---------- Gold offer band ---------- */
.offer-band { background: var(--band); text-align: center; padding: 90px 8vw; }
.offer-band h2 { font-size: clamp(30px, 3vw, 46px); margin-bottom: 20px; }
.offer-band p { max-width: 560px; margin: 0 auto 40px; font-size: 16.5px; line-height: 1.85; }
.offer-band .code { font-weight: 500; letter-spacing: 2px; color: var(--teal-label); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .intro-overlap { padding: 56px 20px; }
  .split, .split.on-paper { grid-template-columns: 1fr; gap: 44px; padding: 72px 24px; }
  .split .txt { max-width: 100%; }
  .split .photo img { aspect-ratio: auto; max-height: 540px; }
  .split .photo { order: -1; }
  .twin { padding: 72px 24px; }
  .twin .cols { grid-template-columns: 1fr; gap: 56px; }
  .twin .divider { order: 0; }
  .meet { grid-template-columns: 1fr; }
  .meet .edge { display: none; }
  .meet .content { grid-template-columns: 1fr; padding: 72px 24px; gap: 44px; }
  .meet .content > img { margin-left: 0; height: auto; max-height: 560px; }
  .hero-photo { min-height: clamp(400px, 58vh, 620px); }
  .hero-slogan { padding-top: clamp(120px, 20vh, 220px); }
  .list-cols, .list-cols.three { grid-template-columns: 1fr; gap: 48px; }
  .list-cols.three h3 { min-height: 0; }
  .plain-list { grid-template-columns: 1fr; }
  .stats-band .grid { grid-template-columns: 1fr; gap: 36px; }
  .voices .grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .center-sec, .booking { padding-left: 16px; padding-right: 16px; }
  .booking .frame { padding: 8px; }
  .page-hero .pt-logo { margin-bottom: 26px; }
  .page-hero { padding: 56px 24px 64px; }
}

/* ---------- v4 additions ---------- */
.arrow {
  display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal-label);
  text-decoration: none; padding-bottom: 4px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: color .25s ease;
}
.arrow:hover { color: var(--deep); }
.wordmark-one {
  font-family: var(--serif); font-size: 21px; color: var(--cream);
  letter-spacing: .04em; white-space: nowrap;
}

.soc-row {
  display: inline-flex; gap: 14px; margin-left: 8px; padding-left: 18px;
  border-left: 1px solid rgba(244, 241, 234, .25); align-items: center;
}
.site-nav a.soc { background-image: none; padding-bottom: 0; display: inline-flex; color: var(--nav-muted); }
.site-nav a.soc:hover { color: var(--gold-light); }

.btn-primary { background: var(--deep); color: var(--cream); }
.btn-primary:hover { filter: brightness(1.15); }
.dark .btn-primary, .closing-band .btn-primary, .hero-photo .btn-primary,
.page-hero.on-dark .btn-primary { background: var(--gold); color: var(--deep-2); }
.dark .btn-primary:hover, .closing-band .btn-primary:hover,
.hero-photo .btn-primary:hover { filter: brightness(1.06); }
.btn-secondary { background: transparent; color: var(--deep); box-shadow: inset 0 0 0 1.5px var(--deep); }
.btn-secondary:hover { background: rgba(22, 64, 74, .07); }
.dark .btn-secondary, .closing-band .btn-secondary { color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(244, 241, 234, .65); }

.hero-slogan::before {
  content: ""; position: absolute; z-index: -1;
  inset: -8% -14%;
  background: radial-gradient(ellipse 62% 55% at center 42%,
    rgba(11, 38, 46, .44) 0%,
    rgba(11, 38, 46, .26) 48%,
    rgba(11, 38, 46, 0) 74%);
  pointer-events: none;
}
.hero-slogan { z-index: 1; }
.hero-slogan .slogan-lines { margin: 0; }
.hero-slogan .l3 {
  font-family: var(--sans); font-size: 17px; font-weight: 400; color: #EFEEE5;
  line-height: 1.7; max-width: 560px; margin: 20px auto 30px;
  text-shadow: 0 1px 18px rgba(10, 36, 44, .55);
}

.quote-strip { background: var(--beige); text-align: center; padding: 76px 8vw; }
.quote-strip blockquote {
  font-family: var(--serif); font-size: clamp(21px, 2.2vw, 30px); line-height: 1.55;
  color: var(--ink); max-width: 30em; margin: 0 auto;
}
.quote-strip cite {
  display: block; margin-top: 22px; font-family: var(--sans); font-style: normal;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-label);
}
.quote-strip .more { margin-top: 34px; }

.for-who .list-cols { max-width: 720px; gap: 40px 64px; }
.portrait-split .photo { display: flex; justify-content: center; }
.portrait-split .photo img { width: min(100%, 420px); aspect-ratio: auto; }

@media (max-width: 1020px) {
  .hero-slogan .l3 { font-size: 15.5px; }
  .hero-photo > img { object-position: center 72%; }
}
@media (max-width: 760px) {
  .site-header { flex-direction: column; gap: 12px; padding: 14px 20px; }
  .site-nav { justify-content: center; }
}

/* Socials: navbar on desktop, hero on true mobile widths */
.hero-socials { display: none; }
@media (max-width: 760px) {
  .site-header .soc-row { display: none; }
  .hero-socials { display: flex; justify-content: center; gap: 26px; margin-top: 28px; }
  .hero-socials a {
    display: inline-flex; color: #EFEEE5; padding: 8px;
    filter: drop-shadow(0 1px 10px rgba(10, 36, 44, .5));
    transition: color .25s ease;
  }
  .hero-socials a:hover { color: var(--gold-light); }
}
