/* ============================================================
   WITHIN — Landing Page
   Design tokens sourced directly from WITHIN Brand Guide v3
   ============================================================ */

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

:root {
  --navy: #1F3552;
  --navy-deep: #172740;
  --stone-blue: #AFC4D6;
  --warm-stone: #F4F1EA;
  --gold: #E6C98A;
  --gold-dark: #B8973A;
  --cream: #FAF8F3;
  --earth: #CBBBA0;
  --charcoal: #2E2E2E;
  --sage: #A3B18A;
  --sand: #E8DFD1;
  --text-mid: #4a5568;
  --text-light: rgba(255,255,255,0.62);
  --border: rgba(31,53,82,0.12);

  --serif: 'Playfair Display', serif;
  --sans: 'Montserrat', sans-serif;
  --script: 'Cormorant Garamond', serif;

  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; }

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

.eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.eyebrow.on-dark { color: var(--gold); }

.gold-rule {
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}

.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 var(--border);
}
.nav-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
  transition: color 0.5s var(--ease);
}
.nav.scrolled .nav-mark { color: var(--navy); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.5s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--gold); border-color: var(--gold); }
.nav.scrolled .nav-links a:hover { color: var(--navy); border-color: var(--gold); }
.nav-cta {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  background: var(--gold);
  padding: 11px 22px;
  border-radius: 3px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: #f0d9a3; transform: translateY(-1px); }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: hero-settle 2.4s var(--ease) forwards;
}
@keyframes hero-settle { to { transform: scale(1); } }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,39,64,0.72) 0%, rgba(23,39,64,0.55) 38%, rgba(23,39,64,0.82) 100%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 45% at 50% 42%, rgba(230,201,138,0.16), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem 5rem;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fade-up 1s var(--ease) 0.3s forwards;
}
.hero-lockup {
  font-family: var(--serif);
  line-height: 1.18;
  margin-bottom: 1.7rem;
}
.hero-within {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(52px, 9vw, 96px);
  color: var(--stone-blue);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fade-up 1.1s var(--ease) 0.5s forwards;
}
.hero-desc {
  display: block;
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 34px);
  color: #fff;
  margin-top: 0.2em;
  opacity: 0;
  animation: fade-up 1.1s var(--ease) 0.7s forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  margin: 0 auto 1.7rem;
  opacity: 0;
  animation: fade-up 1s var(--ease) 0.9s forwards;
}
.hero-divider .line { flex: 1; height: 1px; background: var(--gold); opacity: 0.55; }
.hero-divider .diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.hero-pillars {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 2.6rem;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.05s forwards;
}
.hero-pillars span { font-size: 10.5px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-pillars .dot { color: var(--gold); opacity: 0.6; }
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.2s forwards;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.5s forwards;
}
.hero-scroll span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold), transparent); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, #fff, transparent);
  animation: scroll-run 2.2s ease-in-out infinite;
}
@keyframes scroll-run { to { top: 100%; } }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 3px;
  display: inline-block;
  border: 1.5px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.25s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #f0d9a3; transform: translateY(-2px); }
.btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-line:hover { border-color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { padding: 7.5rem 0; }
.section-cream { background: var(--cream); }
.section-stone { background: var(--warm-stone); }
.section-navy { background: var(--navy); color: #fff; }

.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: var(--navy);
  margin-top: 0.7rem;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold-dark); }
.section-title.on-dark { color: #fff; }
.section-title.on-dark em { color: var(--gold); }
.section-body {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  margin-top: 1.1rem;
}
.section-body.on-dark { color: rgba(255,255,255,0.72); }

/* ============================================================
   POSITIONING / INTRO
   ============================================================ */
.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}
.intro-quote {
  font-family: var(--script);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--navy);
  line-height: 1.55;
}
.intro-quote span { color: var(--gold-dark); }
.intro-copy p { font-size: 15px; color: var(--text-mid); margin-bottom: 1.1rem; max-width: 480px; }
.intro-copy p:last-child { margin-bottom: 0; }

/* ============================================================
   ARRIVAL — split photo section
   ============================================================ */
.arrival {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 640px;
}
.arrival-photo {
  position: relative;
  overflow: hidden;
}
.arrival-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.arrival-photo:hover img { transform: scale(1.045); }
.arrival-text {
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
}
.arrival-text .eyebrow { margin-bottom: 1.2rem; }
.arrival-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.arrival-text p { font-size: 14.5px; color: rgba(255,255,255,0.68); max-width: 380px; margin-bottom: 1rem; }
.arrival-text p:last-of-type { margin-bottom: 0; }

/* ============================================================
   SIGNATURE MOMENT — the fireplace / egg room
   ============================================================ */
.signature {
  position: relative;
  padding: 0;
  background: var(--navy-deep);
}
.signature-frame {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 6.5rem 2rem;
  text-align: center;
}
.signature-eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.signature-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 48px);
  color: #fff;
  max-width: 780px;
  margin: 0 auto 2.8rem;
  line-height: 1.22;
}
.signature-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.signature-image-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}
.signature-image-wrap::before {
  content: '';
  position: absolute; inset: -2px;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(230,201,138,0.35);
  pointer-events: none;
}
.signature-image-wrap img {
  width: 100%;
  display: block;
  filter: saturate(1.03);
}
.signature-glow {
  position: absolute; inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 60% at 55% 45%, rgba(230,201,138,0.14), transparent 70%);
  pointer-events: none;
}
.signature-caption {
  font-family: var(--script);
  font-style: italic;
  font-size: 18px;
  color: var(--stone-blue);
  margin-top: 2.2rem;
}

/* ============================================================
   MODALITIES
   ============================================================ */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.modality-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.4rem 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.modality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -22px rgba(31,53,82,0.28);
  border-color: transparent;
}
.modality-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.modality-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.modality-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

.modality-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.modality-featured-photo { position: relative; min-height: 340px; }
.modality-featured-photo img { width: 100%; height: 100%; object-fit: cover; }
.modality-featured-copy { padding: 3.2rem 3.4rem; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.modality-featured-copy .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.modality-featured-copy h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 1.1rem;
}
.modality-featured-copy p { font-size: 14.5px; color: rgba(255,255,255,0.72); max-width: 420px; margin-bottom: 1.6rem; }
.modality-featured-copy .link-gold {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(230,201,138,0.4);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.3s var(--ease);
}
.modality-featured-copy .link-gold:hover { border-color: var(--gold); }

.no-longer-note {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-light);
  color: #8a95a3;
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
}
.statement-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 20%, rgba(230,201,138,0.13), transparent 55%);
}
.statement-label { position: relative; z-index: 1; }
.statement-quote {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 30px);
  color: #fff;
  line-height: 1.55;
  max-width: 720px;
  margin-top: 1.5rem;
}
.statement-divider { position: relative; z-index: 1; width: 44px; height: 1px; background: var(--gold); opacity: 0.5; margin: 2.2rem 0 1.1rem; }
.statement-pillars { position: relative; z-index: 1; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ============================================================
   BOOK / CTA
   ============================================================ */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.book-copy h2 { margin-bottom: 1.3rem; }
.book-copy p { font-size: 15px; color: var(--text-mid); max-width: 440px; margin-bottom: 1.8rem; }
.book-facts { list-style: none; margin-top: 2.2rem; }
.book-facts li {
  display: flex;
  gap: 1rem;
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}
.book-facts li:last-child { border-bottom: 1px solid var(--border); }
.book-facts strong { color: var(--navy); font-weight: 600; min-width: 108px; flex-shrink: 0; }

.booking-embed {
  background: var(--warm-stone);
  border: 1px dashed var(--earth);
  border-radius: 8px;
  padding: 3rem 2.2rem;
  text-align: center;
}
.booking-embed .eyebrow { margin-bottom: 0.9rem; }
.booking-embed h4 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 0.8rem; }
.booking-embed p { font-size: 13px; color: var(--text-mid); max-width: 360px; margin: 0 auto 1.6rem; }
.booking-embed code {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font-size: 11px;
  color: var(--text-mid);
  text-align: left;
  overflow-x: auto;
  margin-top: 1.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 2.2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: #fff;
  margin-bottom: 0.7rem;
}
.footer-pillars { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-top p { font-size: 13px; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,0.55); }
.footer-col h5 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.4rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); background: rgba(230,201,138,0.08); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .arrival { grid-template-columns: 1fr; }
  .arrival-photo { min-height: 340px; }
  .arrival-text { padding: 3.5rem 2.2rem; }
  .modalities-grid { grid-template-columns: repeat(2, 1fr); }
  .modality-featured { grid-column: span 2; grid-template-columns: 1fr; }
  .modality-featured-photo { min-height: 260px; }
  .modality-featured-copy { padding: 2.6rem 2.2rem; }
  .book-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.4rem; }
}

@media (max-width: 700px) {
  .nav-links, .nav-toggle-links { display: none; }
  section { padding: 5rem 0; }
  .wrap { padding: 0 1.3rem; }
  .modalities-grid { grid-template-columns: 1fr; }
  .modality-featured { grid-column: span 1; }
  .statement-box { padding: 2.6rem 1.8rem; }
  .signature-frame { padding: 4.5rem 1.3rem; }
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 10.5rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(230,201,138,0.14), transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 2rem; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.68); margin-top: 1.3rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.4rem 2.1rem;
  display: flex;
  flex-direction: column;
}
.testimonial-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.testimonial-quote {
  font-family: var(--script);
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 1.6rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.testimonial-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.testimonial-source {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--warm-stone);
  padding: 5px 10px;
  border-radius: 100px;
}
.testimonial-stars { color: var(--gold-dark); font-size: 12px; letter-spacing: 2px; margin-bottom: 0.5rem; }

.testimonial-card.placeholder {
  background: var(--warm-stone);
  border-style: dashed;
  border-color: var(--earth);
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-mid);
}
.testimonial-card.placeholder .testimonial-mark { color: var(--earth); }
.testimonial-card.placeholder p.hint { font-size: 12.5px; margin-top: 0.6rem; max-width: 220px; }

.testimonial-featured {
  grid-column: span 3;
  background: var(--navy);
  border-radius: 6px;
  padding: 3.4rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.testimonial-featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(230,201,138,0.12), transparent 60%);
}
.testimonial-featured > * { position: relative; z-index: 1; }
.testimonial-featured .testimonial-mark { color: var(--gold); font-size: 56px; }
.testimonial-featured .testimonial-quote {
  color: #fff;
  font-size: clamp(20px, 2.4vw, 25px);
  max-width: 680px;
  margin: 0 auto 1.8rem;
}
.testimonial-featured .testimonial-name { color: var(--gold); font-size: 13px; letter-spacing: 0.08em; }
.testimonial-featured .testimonial-source { background: rgba(230,201,138,0.14); color: var(--gold); }
.testimonial-featured .testimonial-meta { border-top-color: rgba(255,255,255,0.14); justify-content: center; gap: 1rem; }

.cta-strip {
  text-align: center;
  padding: 6rem 0;
}
.cta-strip h2 { margin-bottom: 1.4rem; }
.cta-strip .section-body { margin: 0 auto 2rem; }

@media (max-width: 980px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-featured { grid-column: span 2; padding: 2.6rem 2rem; }
}
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { grid-column: span 1; }
  .page-hero { padding: 8.5rem 0 4rem; }
}

/* ============================================================
   JOURNALS
   ============================================================ */
.journals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.journal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.journal-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -22px rgba(31,53,82,0.28); }
.journal-card-media { position: relative; aspect-ratio: 4/3; background: var(--warm-stone); overflow: hidden; }
.journal-card-media img { width: 100%; height: 100%; object-fit: cover; }
.journal-card-media.no-image {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}
.journal-card-media.no-image span {
  font-family: var(--serif); font-style: italic; color: var(--stone-blue); font-size: 22px;
}
.journal-card-body { padding: 1.7rem 1.6rem 1.9rem; display: flex; flex-direction: column; flex-grow: 1; }
.journal-card-date { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.7rem; }
.journal-card h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--navy); line-height: 1.3; margin-bottom: 0.7rem; }
.journal-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; flex-grow: 1; }
.journal-card-more { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-top: 1.1rem; }
.journals-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px dashed var(--earth);
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 14px;
}

/* Single journal post */
.journal-post-hero { background: var(--navy); color: #fff; padding: 10rem 0 4rem; text-align: center; }
.journal-post-hero .eyebrow { margin-bottom: 1rem; }
.journal-post-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4.5vw, 46px); max-width: 760px; margin: 0 auto; line-height: 1.2; }
.journal-post-date { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 1.1rem; letter-spacing: 0.04em; }
.journal-post-media { max-width: 900px; margin: -2.6rem auto 0; padding: 0 2rem; position: relative; z-index: 2; }
.journal-post-media img { width: 100%; border-radius: 6px; box-shadow: 0 30px 60px -30px rgba(23,39,64,0.4); }
.journal-post-body { max-width: 700px; margin: 0 auto; padding: 4rem 2rem 2rem; font-size: 15.5px; color: var(--charcoal); line-height: 1.85; }
.journal-post-body h2 { font-family: var(--serif); font-weight: 500; color: var(--navy); font-size: 26px; margin: 2.2rem 0 1rem; }
.journal-post-body h3 { font-family: var(--serif); font-weight: 500; color: var(--navy); font-size: 20px; margin: 1.8rem 0 0.8rem; }
.journal-post-body p { margin-bottom: 1.3rem; }
.journal-post-body ul, .journal-post-body ol { margin: 0 0 1.3rem 1.3rem; }
.journal-post-body li { margin-bottom: 0.5rem; }
.journal-post-body blockquote {
  font-family: var(--script); font-style: italic; font-size: 20px; color: var(--navy);
  border-left: 2px solid var(--gold); padding-left: 1.4rem; margin: 1.8rem 0;
}
.journal-post-body a { color: var(--gold-dark); text-decoration: underline; }
.journal-post-footer {
  max-width: 700px; margin: 0 auto; padding: 2rem 2rem 5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.journal-post-footer a.back-link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}

/* ============================================================
   SUBSCRIBE FORM (Netlify Forms)
   ============================================================ */
.subscribe-block { padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 3rem; }
.subscribe-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.subscribe-copy h4 { font-family: var(--serif); font-weight: 500; font-size: 22px; color: #fff; margin-bottom: 0.4rem; }
.subscribe-copy p { font-size: 13.5px; color: rgba(255,255,255,0.6); max-width: 360px; }
.subscribe-form { display: flex; gap: 0.7rem; flex-wrap: wrap; flex-shrink: 0; }
.subscribe-form input[type="email"] {
  font-family: var(--sans);
  font-size: 13.5px;
  padding: 13px 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  min-width: 240px;
}
.subscribe-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.subscribe-form input[type="email"]:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
.subscribe-form button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 3px;
  padding: 13px 24px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.subscribe-form button:hover { background: #f0d9a3; }
.subscribe-note { font-size: 11px; color: rgba(255,255,255,0.4); width: 100%; margin-top: 0.6rem; }
/* honeypot field, hidden from real people */
.subscribe-form .hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

@media (max-width: 700px) {
  .journals-grid { grid-template-columns: 1fr; }
  .subscribe-inner { flex-direction: column; align-items: flex-start; }
  .subscribe-form { width: 100%; }
  .subscribe-form input[type="email"] { flex: 1; min-width: 0; }
}
@media (max-width: 980px) {
  .journals-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- keyboard focus ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}
