/* ─────────────────────────────────────────────
   THE FINDING PLACE — shared styles
   ───────────────────────────────────────────── */
:root {
  --sage: #8aab8a;
  --sage-light: #b5ccb5;
  --sage-pale: #ddeedd;
  --sage-mist: #eef4ee;
  --leaf: #4a7c59;
  --leaf-deep: #3a6347;
  --cream: #faf7f2;
  --warm: #f3ede3;
  --bark: #7a6652;
  --gold: #c9a84c;
  --text: #3a3228;
  --text-soft: #6e6058;
  --text-faint: #a09080;
  --danger: #c0564a;
  --shadow: 0 2px 16px rgba(90,80,60,0.10);
  --shadow-lg: 0 8px 40px rgba(90,80,60,0.15);
  --radius: 14px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--leaf-deep); line-height: 1.25; }

a { color: var(--leaf); }

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

.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.nav {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sage-pale);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--leaf-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--sage-mist); color: var(--leaf); }
.nav-links a.active { background: var(--sage-mist); color: var(--leaf); }

.nav-cta {
  background: linear-gradient(135deg, var(--sage), var(--leaf)) !important;
  color: white !important;
  margin-left: 8px;
}
.nav-cta:hover { opacity: 0.9; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--leaf-deep);
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #e8f0e8 0%, #f3ede3 55%, #ddeedd 100%);
  padding: 84px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,171,138,0.20) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -90px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.13) 0%, transparent 70%);
}

.hero > * { position: relative; z-index: 1; }

.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 18px;
  letter-spacing: -0.5px;
}

.hero h1 em { font-style: italic; color: var(--leaf); }

.hero p.lede {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--sage), var(--leaf));
  color: white;
  box-shadow: 0 4px 20px rgba(74,124,89,0.28);
}

.btn-outline {
  background: white;
  color: var(--leaf);
  border: 1.5px solid var(--sage-light);
  margin-left: 10px;
}

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section.tinted { background: var(--sage-mist); }
.section.warm { background: var(--warm); }

.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.section p { color: var(--text-soft); margin-bottom: 16px; max-width: 70ch; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--sage-pale);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}

.card .card-icon { font-size: 30px; margin-bottom: 12px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14px; margin-bottom: 0; }

/* ── PROSE (SEO landing pages) ── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 40px; }
.prose h3 { font-size: 20px; margin: 28px 0 10px; }
.prose ul { margin: 0 0 16px 22px; color: var(--text-soft); }
.prose li { margin-bottom: 8px; }

.callout {
  background: var(--sage-mist);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-soft);
}

/* ── LEAD FORM ── */
.lead-form-wrap {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--sage-pale);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
  max-width: 560px;
  margin: 0 auto;
}

.lead-form-wrap h2 { text-align: center; font-size: 26px; margin-bottom: 6px; }
.lead-form-wrap .form-sub { text-align: center; font-size: 14px; color: var(--text-faint); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text-soft);
}

.form-group input, .form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--sage-pale);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  background: var(--sage-mist);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--sage); background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sage), var(--leaf));
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.92; }
.form-submit:disabled { opacity: 0.55; cursor: wait; }

.form-status { text-align: center; font-size: 14px; font-weight: 600; margin-top: 14px; display: none; }
.form-status.ok { display: block; color: var(--leaf); }
.form-status.err { display: block; color: var(--danger); }

/* ── FOOTER ── */
.footer {
  background: var(--leaf-deep);
  color: rgba(255,255,255,0.85);
  padding: 52px 24px 36px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: white;
  margin-bottom: 12px;
}

.footer p, .footer a { font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; }
.footer a:hover { color: white; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }

.footer-bottom {
  max-width: 1040px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: linear-gradient(160deg, #e8f0e8 0%, #f3ede3 60%, #ddeedd 100%);
  padding: 64px 24px 52px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  max-width: 780px;
  margin: 0 auto 14px;
  letter-spacing: -0.4px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 22px;
    border-bottom: 1px solid var(--sage-pale);
    box-shadow: var(--shadow);
    gap: 6px;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; text-align: center; }
  .nav-toggle { display: block; }
  .nav-cta { margin-left: 0; }

  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 52px 0; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
}

/* ── TOUR FLOW ── */
.tour-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--sage); margin-bottom: 10px;
}
.tour-h {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600;
  color: var(--leaf-deep); line-height: 1.25; margin-bottom: 8px;
}
.tour-sub { color: var(--text-soft); font-size: 15.5px; margin-bottom: 16px; }
.tour-note { color: var(--text-faint); font-size: 14px; margin-bottom: 14px; }

.tour-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.tour-option {
  display: flex; align-items: flex-start; gap: 14px; width: 100%; text-align: left;
  background: var(--sage-mist); border: 1.5px solid var(--sage-pale);
  border-radius: var(--radius); padding: 16px 18px;
  font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--text);
  cursor: pointer; transition: border-color 0.18s, background 0.18s;
}
.tour-option:hover { border-color: var(--sage); background: var(--sage-pale); }
.tour-option[aria-checked="true"] { border-color: var(--leaf); background: var(--sage-pale); }
.tour-option:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; }

.tour-option__icon { font-size: 22px; line-height: 1.3; }
.tour-option__text { display: flex; flex-direction: column; }
.tour-option__name { font-weight: 700; font-size: 16px; color: var(--leaf-deep); }
.tour-option__sub { font-size: 13.5px; color: var(--text-soft); margin-top: 2px; }

.tour-box {
  flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px;
  border: 2px solid var(--sage-light); border-radius: 5px;
  background: white; position: relative;
}
.tour-option[aria-checked="true"] .tour-box { border-color: var(--leaf); background: var(--leaf); }
.tour-option[aria-checked="true"] .tour-box::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px; border: solid white; border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.tour-weeklabel { font-weight: 700; font-size: 14px; color: var(--bark); margin-bottom: 12px; }

.tour-cal { display: flex; flex-direction: column; margin-bottom: 18px; }
/* Date sits at the left edge; the empty third track mirrors the first so the
   times land dead centre of the row regardless of how long the date reads. */
.tour-day {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px;
  align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--sage-pale);
}
.tour-day:last-child { border-bottom: none; }
.tour-day__label { font-size: 13.5px; font-weight: 700; color: var(--text-soft); text-align: left; }
.tour-day__slots { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tour-day__empty { font-size: 13px; color: var(--text-faint); font-style: italic; }

.tour-slot {
  background: white; border: 1.5px solid var(--sage-light); border-radius: 999px;
  padding: 8px 16px; font-family: 'Nunito', sans-serif; font-size: 14px;
  font-weight: 700; color: var(--leaf); cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.tour-slot:hover { background: var(--leaf); border-color: var(--leaf); color: white; }
.tour-slot:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; }

.tour-recap {
  background: var(--sage-mist); border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; margin-bottom: 18px; font-size: 14.5px; color: var(--text-soft);
}
.tour-recap strong { color: var(--leaf-deep); }

.tour-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tour-actions--center { justify-content: center; }
.tour-actions .btn { margin-left: 0; }
.tour-actions .btn:disabled { opacity: 0.45; cursor: not-allowed; }

.tour-success { text-align: center; }
.tour-check {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--sage-pale); color: var(--leaf); font-size: 30px;
  display: flex; align-items: center; justify-content: center;
}

/* modal shell */
.tour-modal { position: fixed; inset: 0; z-index: 200; }
.tour-modal[hidden] { display: none; }
.tour-backdrop { position: absolute; inset: 0; background: rgba(35,45,35,0.55); }
.tour-dialog {
  position: relative; z-index: 1; background: white;
  max-width: 620px; width: calc(100% - 32px);
  margin: 5vh auto; max-height: 90vh; overflow-y: auto;
  border-radius: 20px; box-shadow: var(--shadow-lg); padding: 36px 32px;
}
.tour-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  font-size: 30px; line-height: 1; color: var(--text-faint); cursor: pointer;
}
.tour-close:hover { color: var(--text); }
html.tour-open { overflow: hidden; }

@media (max-width: 620px) {
  .tour-day { grid-template-columns: 1fr; gap: 6px; }
  .tour-day__label { text-align: left; }
  .tour-day__slots { justify-content: center; }
  .tour-dialog { padding: 28px 20px; }
}

/* Portrait video kept at its natural shape rather than cropped into a banner. */
.video-portrait { max-width: 380px; margin: 30px auto; }
.video-portrait video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--sage-mist);
}
.video-portrait figcaption {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 10px;
}

.card-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  display: block;
}

.photo-ph {
  background: repeating-linear-gradient(45deg, var(--sage-mist), var(--sage-mist) 12px, #e6efe6 12px, #e6efe6 24px);
  border: 1.5px dashed var(--sage-light);
  border-radius: var(--radius-sm);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep, #4a7c59);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-align: center;
}
