/* ========================================================================
   Reverie — shared styles
   Placeholder imagery: every `.photo` element uses a CSS gradient stand-in
   (via data-photo attribute) until real photography is dropped into
   /images and swapped in via `background-image`.
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..600&family=Inter:wght@400;500&display=swap');

:root{
  --cream: #e7e3d9;
  --cream-deep: #ded9cc;
  --ink: #3d4a43;
  --ink-soft: #5c6a62;
  --coral: #d99a74;
  --coral-deep: #c8814f;
  --coral-ink: #7a4a2c;
  --night-1: #0a0f1c;
  --night-2: #1c2c4d;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}
img, .photo{ display:block; }
a{ color: inherit; text-decoration: none; }
h1, h2, h3{ font-family: var(--font-serif); font-weight: 500; color: var(--ink); margin: 0; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 48px; }

/* ---------- header ---------- */
.site-header{
  background: var(--cream);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.logo{
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.3px;
  color: var(--ink);
}
.main-nav{
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
.nav-item-dropdown{ position: relative; }
.nav-services-toggle{
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav-services-toggle:hover{ border-bottom-color: var(--ink-soft); }
.nav-services-toggle .caret{
  font-size: 11px;
  color: var(--ink-soft);
  transition: transform 0.2s ease;
}
.nav-item-dropdown.open .nav-services-toggle .caret{ transform: rotate(180deg); }
.nav-dropdown{
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 14px;
  background: var(--cream);
  min-width: 280px;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10,15,28,0.14);
  z-index: 60;
}
.nav-item-dropdown.open .nav-dropdown{ display: block; }
.nav-dropdown a{
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: none;
}
.nav-dropdown a:hover{ background: var(--cream-deep); }
.nav-dropdown a.active{ color: var(--coral-deep); }
.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span{
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.main-nav a{
  font-size: 15px;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover{ border-bottom-color: var(--ink-soft); }
.main-nav a.active{ border-bottom-color: var(--ink); }

/* ---------- placeholder photography ---------- */
.photo{
  width: 100%;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo[data-photo="night-sky"]{ background-image: url('images/night-sky.jpg'); background-color: var(--night-1); }
.photo[data-photo="sailboat"]{ background-image: url('images/sailboat.jpg'); background-color: var(--night-2); }
.photo[data-photo="cabin"]{ background-image: url('images/cabin.jpg'); background-color: var(--coral); }
.photo[data-photo="roses"]{ background-image: url('images/roses.jpg'); background-color: #6b6a63; }
.photo[data-photo="prayer"]{ background-image: url('images/prayer.jpg'); background-color: #a98a6f; }
.photo[data-photo="mugs"]{ background-image: url('images/mugs.jpg'); background-color: #b7a488; }
.photo[data-photo="coastline"]{ background-image: url('images/coastline.jpg'); background-color: #7f9a9c; }
.photo[data-photo="labyrinth"]{ background-image: url('images/labyrinth.jpg'); background-color: #a89574; }
.photo[data-photo="embrace"]{ background-image: url('images/embrace.jpg'); background-color: #b98a5a; }
.photo[data-photo="feet-rock"]{ background-image: url('images/feet-rock.jpg'); background-color: #7d8880; }
.photo[data-photo="herbs"]{ background-image: url('images/herbs.jpg'); background-color: #4f5c46; }
.photo[data-photo="tincture"]{ background-image: url('images/tincture.jpg'); background-color: #c9c3b2; }
.photo[data-photo="comfort"]{ background-image: url('images/comfort.jpg'); background-color: #536357; }
.photo[data-photo="writing"]{ background-image: url('images/writing.jpg'); background-color: #c2a97c; }
.photo[data-photo="counselling"]{ background-image: url('images/counselling.jpg'); background-color: #a4967d; }
.photo[data-photo="moon"]{ background-image: url('images/moon.jpg'); background-color: #362f26; }
.photo[data-photo="workshop"]{ background-image: url('images/workshop.jpg'); background-color: #8b9877; }
.photo[data-photo="community"]{ background-image: url('images/community.jpg'); background-color: #576f45; }
.photo[data-photo="healing"]{ background-image: url('images/healing.jpg'); background-color: #3b3a2c; }
.photo[data-photo="linkedin-about"]{ background-image: url('images/linkedin-about.jpeg'); background-color: #7d8880; }

.hero-photo{
  min-height: 145vh;
  position: relative;
  overflow: hidden;
}
.hero-photo::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,12,24,0.5) 0%, rgba(8,12,24,0.2) 55%, rgba(8,12,24,0.05) 100%);
}
.hero-top{
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 0 24px;
}
.hero-top .hero-title{
  font-size: 96px;
  color: #f3ede1;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-top .hero-subtitle{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: #f3ede1;
  margin-top: 18px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}
.hero-top .hero-eyebrow{
  font-family: var(--font-sans);
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}
.hero-quote{
  position: absolute;
  bottom: 8%;
  left: 50%;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-quote.is-visible{
  opacity: 1;
  transform: translate(-50%, 0);
}
.hero-quote-text{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: #f3ede1;
  white-space: nowrap;
  margin: 0;
}
.sparkle{
  position: absolute;
  color: #f3ede1;
  pointer-events: none;
  animation: twinkle 2.6s ease-in-out infinite;
}
.sparkle-1{ top: -34px; left: -30px; font-size: 20px; color: var(--coral); animation-delay: 0s; animation-duration: 2.2s; }
.sparkle-2{ top: -18px; right: -28px; font-size: 15px; animation-delay: 0.6s; animation-duration: 2.8s; }
.sparkle-3{ bottom: -16px; left: 18%; font-size: 14px; animation-delay: 1.1s; animation-duration: 2.4s; }
.sparkle-4{ top: 45%; left: -40px; font-size: 17px; color: var(--coral); animation-delay: 1.6s; animation-duration: 3s; }
.sparkle-5{ bottom: -20px; right: 12%; font-size: 18px; animation-delay: 0.3s; animation-duration: 2.6s; }
@keyframes twinkle{
  0%, 100%{ opacity: 0.15; transform: scale(0.7); }
  50%{ opacity: 1; transform: scale(1.2); }
}

/* ---------- buttons ---------- */
.btn{
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.2px;
  border-radius: 30px;
  padding: 12px 30px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-solid{
  background: var(--coral);
  color: #fff;
}
.btn-solid:hover{ background: var(--coral-deep); }
.btn-outline{
  background: transparent;
  border-color: var(--ink-soft);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--ink); background: rgba(61,74,67,0.05); }
.btn-white{
  background: #fff;
  color: var(--coral-deep);
  border: none;
}
.btn-white:hover{ background: #f6f1e9; }

/* ---------- page hero (About / Support / Reconciliation / Integration) ---------- */
.page-hero{
  padding: 70px 0 30px;
}
.page-hero h1{ font-size: 46px; margin-bottom: 24px; }
.page-hero .muted, .page-hero .pull-quote{ max-width: 640px; }

/* ---------- unified pull-quote (used for every quote+attribution across the site) ---------- */
.pull-quote{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 16px;
}
.pull-quote cite{
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* single feature image + copy (About page) */
.feature-split{
  padding: 20px 0 90px;
}
.feature-split .wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.feature-split p{ font-size: 15px; color: var(--ink-soft); margin: 0 0 16px; }
.feature-split .photo{ aspect-ratio: 1/1; }

/* ---------- 3-card grids (Support / Reconciliation / Integration) ---------- */
.cards{
  padding: 40px 0 90px;
}
.cards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.cards-grid > div{ display: flex; flex-direction: column; }
.cards-grid .btn{ margin-top: auto; align-self: flex-start; }
.cards-grid .photo{ aspect-ratio: 1/1; margin-bottom: 24px; }
.cards-grid h3{ font-size: 24px; line-height: 1.3; min-height: 2.6em; margin-bottom: 14px; }
.cards-grid p{ font-size: 14px; color: var(--ink-soft); margin: 0 0 26px; min-height: 0; }

/* ---------- homepage-specific ---------- */
.hero-simple{
  padding: 110px 0 70px;
  text-align: center;
}
.hero-simple .hero-title{
  font-size: 68px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-simple .hero-subtitle{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  margin-top: 18px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
}
@keyframes fadeInUp{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: translateY(0); }
}
.intro-split{
  padding: 80px 0 60px;
}
.intro-split .wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-split h2{ font-size: 34px; margin-bottom: 20px; max-width: 420px; }
.intro-split p{ font-size: 15px; color: var(--ink-soft); max-width: 440px; }
.intro-split .pull-quote{ margin-top: 40px; max-width: 440px; }
.intro-split .photo{ aspect-ratio: 4/3; }
.photo-figure{ margin: 0; }
.photo-figure figcaption{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
  margin-top: 8px;
}

.are-you{ padding: 40px 0 90px; }
.are-you h2{ font-size: 36px; margin-bottom: 40px; }

.ethos-split{ padding: 20px 0 90px; }
.ethos-split .wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ethos-split .photo{ aspect-ratio: 4/5; }
.ethos-split h2{ font-size: 34px; margin-bottom: 18px; }
.ethos-split p{ font-size: 15px; color: var(--ink-soft); margin-bottom: 26px; max-width: 420px; }

/* ---------- generic utilities ---------- */
.muted{ font-size: 15px; color: var(--ink-soft); margin: 0 0 16px; }
.lede-quote{ font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink); margin: 0 0 16px; }
.attribution{ font-size: 14px; color: var(--ink-soft); margin: 0 0 30px; }
.eyebrow-heading{ font-family: var(--font-serif); font-size: 26px; color: var(--coral); margin-bottom: 18px; }
.contact-photo{ width: 220px; aspect-ratio: 1/1; margin-bottom: 26px; }
.centered-hero{ padding: 90px 0 20px; text-align: center; }
.centered-hero h1{ font-size: 42px; line-height: 1.3; margin-bottom: 26px; }
.centered-hero h2{ font-size: 30px; margin: 70px 0 10px; }
.coming-soon{ font-family: var(--font-serif); font-style: italic; color: var(--coral-deep); font-size: 15px; }
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 90px 0; align-items: start; }
.left-hero{ padding: 90px 0 20px; }
.left-hero h1{ font-size: 42px; margin-bottom: 26px; max-width: 500px; }
.external-events{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 40px 0 100px; }
.plain-page{ padding-bottom: 100px; }

/* ---------- contact CTA (shared on every page) ---------- */
.contact-cta{
  background: var(--coral);
  color: #fff;
  padding: 90px 0;
}
.contact-cta .wrap{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-cta h2{ color: #fff; font-size: 40px; margin-bottom: 18px; }
.contact-cta > .wrap > div:first-child p{ font-size: 15px; color: #f9ede2; max-width: 320px; }
.contact-form label{
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #fff;
}
.contact-form .req{ font-size: 11px; opacity: 0.75; font-weight: 400; }
.contact-form .row{ display: flex; gap: 16px; margin-bottom: 20px; }
.contact-form .row > div{ flex: 1; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: rgba(255,255,255,0.55); }
.contact-form textarea{ min-height: 110px; resize: vertical; margin-bottom: 24px; }
.contact-form .field{ margin-bottom: 20px; }
.contact-form .checkbox-row{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 24px;
}
.contact-form .checkbox-row input{ width: 16px; height: 16px; }

/* ---------- footer ---------- */
.site-footer{
  background: var(--cream-deep);
  padding: 50px 0 40px;
}
.site-footer .wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.site-footer .logo{ margin-bottom: 14px; }
.site-footer .copyright{ font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.site-footer .privacy{ font-size: 13px; color: var(--coral-deep); text-decoration: underline; }
.footer-cols{ display: flex; gap: 70px; }
.footer-cols h4{ font-family: var(--font-serif); font-weight: 500; font-size: 17px; margin-bottom: 10px; }
.footer-cols p{ font-size: 14px; color: var(--ink-soft); margin: 0 0 4px; }

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .page-hero .wrap,
  .feature-split .wrap,
  .intro-split .wrap,
  .ethos-split .wrap,
  .contact-cta .wrap,
  .external-events{
    grid-template-columns: 1fr;
  }
  .external-events{ gap: 40px; }
  .cards-grid{ grid-template-columns: 1fr; gap: 40px; }
  .cards-grid h3{ min-height: 0; }
  .hero-top .hero-title{ font-size: 60px; }
  .hero-top .hero-subtitle{ font-size: 22px; }
  .hero-top .hero-eyebrow{ font-size: 14px; }
  .hero-quote{ text-align: center; width: 85%; }
  .hero-quote-text{ white-space: normal; font-size: 22px; }
  .page-hero h1{ font-size: 36px; }
  .wrap{ padding: 0 24px; }
  .contact-form .row{ flex-direction: column; gap: 0; }
  .site-footer .wrap{ flex-direction: column; gap: 24px; }
  .footer-cols{ gap: 40px; }

  .nav-toggle{ display: flex; }
  .main-nav{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 14px;
  }
  .main-nav.open{ display: flex; }
  .main-nav a{
    padding: 12px 0;
    border-bottom: 1px solid rgba(61,74,67,0.1);
  }
  .nav-item-dropdown{
    position: static;
    align-items: stretch;
  }
  .nav-services-toggle{
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(61,74,67,0.1);
  }
  .nav-dropdown{
    display: none;
    position: static;
    min-width: 0;
    padding: 0 0 0 16px;
    margin-top: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .nav-item-dropdown.open .nav-dropdown{ display: block; }
  .nav-dropdown a{
    padding: 12px 0;
    border-bottom: 1px solid rgba(61,74,67,0.08);
  }
}

.site-header .logo{ display: flex; align-items: center; gap: 10px; }
.logo-mark{ height: 36px; width: 36px; display: block; }
.site-footer .footer-logo{ display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.logo-mark-lg{ height: 84px; width: 84px; }
.text-link{ color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover{ color: var(--ink); }
.btn-disabled{ opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* pricing */
.pricing{ padding: 10px 0 90px; }
.price-row{ display: flex; align-items: center; gap: 24px; background: rgba(255,255,255,0.45); border-radius: 10px; padding: 22px 26px; margin-bottom: 16px; }
.price-icon{ flex: 0 0 64px; height: 64px; border-radius: 50%; background: #1E2235; color: var(--coral); display: flex; align-items: center; justify-content: center; }
.price-icon svg{ width: 30px; height: 30px; }
.price-body{ flex: 1; }
.price-body h3{ font-size: 21px; margin-bottom: 6px; }
.price-body p{ font-size: 14px; color: var(--ink-soft); margin: 0; max-width: 560px; }
.price-amount{ text-align: right; }
.price-amount .price{ display: block; font-family: var(--font-serif); font-size: 28px; color: var(--ink); }
.price-amount .hrs{ font-size: 13px; color: var(--ink-soft); }
.price-note{ font-size: 13px; color: var(--ink-soft); font-style: italic; margin-top: 18px; }
@media (max-width: 700px){
  .price-row{ flex-wrap: wrap; padding: 18px; gap: 16px; }
  .price-body{ flex: 1 1 60%; }
  .price-amount{ flex: 1 1 100%; text-align: left; display: flex; align-items: baseline; gap: 10px; }
}
.hp{ position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-status{ margin-top: 16px; font-size: 14px; color: #fff; }
.btn-white:disabled{ opacity: 0.6; cursor: wait; }
.pricing-title{ font-size: 26px; margin: 0 0 22px; }
.pricing{ padding-top: 0; }
.price-body .price-best{ font-size: 13px; font-weight: 500; color: var(--coral-deep); margin: 0 0 6px; }
.price-body p{ max-width: 620px; }
.price-body h3{ margin-bottom: 8px; }

/* services-at-a-glance pillars */
.svc-intro{ padding: 70px 0 10px; }
.svc-intro h1{ font-size: 46px; margin-bottom: 20px; }
.svc-intro .muted{ max-width: 640px; }
.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .pillars{ grid-template-columns:1fr; } }
.pillars-section{ padding: 30px 0 80px; }
.pillar{ background:var(--cream-deep); border-radius:16px; padding:28px 24px 24px; display:flex; flex-direction:column; }
.pillar-icon{ width:52px; height:52px; border-radius:50%; background:#1e2235; color:var(--coral); display:flex; align-items:center; justify-content:center; margin-bottom:18px; flex:none; }
.pillar-icon svg{ width:25px; height:25px; }
.pillar h2{ font-family:var(--font-serif); font-size:21px; font-weight:500; margin:0 0 8px; }
.pillar .for{ font-size:13px; color:var(--ink-soft); margin:0 0 20px; line-height:1.5; }
.pillar .offer{ display:flex; justify-content:space-between; align-items:baseline; gap:12px; padding:13px 0; border-top:1px solid rgba(61,74,67,0.14); }
.pillar .offer-name{ font-size:14px; font-weight:500; }
.pillar .offer-name small{ display:block; font-weight:400; color:var(--ink-soft); font-size:12px; margin-top:2px; line-height:1.4; }
.pillar .offer-price{ font-family:var(--font-serif); font-size:17px; white-space:nowrap; font-variant-numeric:tabular-nums; }
.pillar .offer-price .unit{ font-family:var(--font-sans); font-size:11px; color:var(--ink-soft); }
.pillar .offer-price.soon{ font-family:var(--font-sans); font-size:11px; letter-spacing:0.4px; text-transform:uppercase; color:var(--ink-soft); background:rgba(61,74,67,0.09); padding:4px 9px; border-radius:20px; }
.pillar .btn{ margin-top: 18px; align-self: flex-start; }

/* dying-away-from-home maze */
.maze{ padding: 30px 0 10px; }
.maze h2{ font-size: 28px; margin-bottom: 14px; }
.maze .muted{ max-width: 700px; }
.maze-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:26px; }
@media (max-width:900px){ .maze-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .maze-grid{ grid-template-columns:1fr; } }
.maze-item{ background:var(--cream-deep); border-radius:12px; padding:18px 18px 20px; }
.maze-item h4{ font-family:var(--font-serif); font-weight:500; font-size:16px; margin:0 0 6px; color:var(--coral-deep); }
.maze-item p{ font-size:13px; color:var(--ink-soft); margin:0; line-height:1.55; }
.maze-note{ margin-top:24px; font-style:italic; }

/* booking widget */
.book{ padding: 20px 0 90px; }
.book h2{ font-size: 30px; margin-bottom: 10px; }
.book .muted{ max-width: 600px; margin-bottom: 28px; }
.book-frame{ background: var(--cream-deep); border-radius: 16px; overflow: hidden; }
.book-frame iframe{ width: 100%; height: 720px; border: 0; display: block; }
@media (max-width: 600px){ .book-frame iframe{ height: 900px; } }
.book-link{ display: inline-block; margin-top: 14px; }
