@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=EB+Garamond:wght@500;600&display=swap');

:root {
  --forest: #123f32;
  --forest-2: #1d5a46;
  --moss: #748a68;
  --sage: #a8b493;
  --sage-soft: #dfe5d4;
  --stone: #d8c9ae;
  --sand: #eee3cf;
  --cream: #faf6ed;
  --paper: #fffdf8;
  --ink: #24352e;
  --muted: #66736d;
  --line: rgba(18,63,50,.16);
  --shadow: 0 24px 60px rgba(22,62,49,.10);
  --soft-shadow: 0 14px 34px rgba(22,62,49,.07);
  --radius-lg: 38px;
  --radius-md: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.7 "Cabin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-2); text-underline-offset: .18em; }
a:hover { color: var(--forest); }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  padding: .8rem 1rem; border-radius: 999px; background: var(--forest); color: white;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-sm { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.cream-bg { background: var(--cream); }
.green-bg { background: var(--forest); color: white; }
.green-bg h2, .green-bg h3 { color: white; }

h1, h2, h3, .display {
  font-family: "EB Garamond", Georgia, serif;
  color: var(--forest);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3.5rem, 8vw, 7.1rem); margin: 0 0 1.35rem; max-width: 10.7ch; }
h2 { font-size: clamp(2.55rem, 5vw, 4.7rem); margin: 0 0 1.2rem; }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); margin: 0 0 .65rem; line-height: 1.05; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.16rem, 2vw, 1.42rem); line-height: 1.55; color: var(--muted); max-width: 700px; }
.eyebrow { margin: 0 0 .75rem; color: var(--forest-2); text-transform: uppercase; letter-spacing: .15em; font-size: .76rem; font-weight: 700; }
.green-bg .eyebrow { color: #dfe8d6; }
.small { color: var(--muted); font-size: .92rem; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,248,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(calc(100% - 2rem), 1280px); margin-inline: auto;
  min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 255px; max-height: 72px; object-fit: contain; object-position: left center; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .15rem; }
.nav-links a { display: inline-flex; padding: .72rem .72rem; color: var(--ink); text-decoration: none; font-weight: 600; border-radius: 999px; font-size: .92rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--cream); color: var(--forest); }
.nav-links .nav-cta { background: var(--forest); color: white; padding-inline: 1rem; }
.nav-links .nav-cta:hover { background: var(--forest-2); color: white; }
.menu-button { display: none; border: 1px solid var(--line); background: var(--cream); color: var(--forest); border-radius: 999px; padding: .72rem 1rem; font-weight: 700; }

.hero {
  position: relative; overflow: hidden; min-height: 790px;
  background:
    radial-gradient(circle at 85% 12%, rgba(168,180,147,.28), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #f9f2e6 100%);
}
.hero::before {
  content: ""; position: absolute; left: -12%; bottom: -44%; width: 60%; aspect-ratio: 1;
  border-radius: 50%; background: rgba(216,201,174,.28);
}
.hero-grid { min-height: 790px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 2.6rem; padding: 4rem 0 5rem; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lead { max-width: 640px; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-visual .disc {
  position: absolute; width: min(540px, 95%); aspect-ratio: 1; border-radius: 50%;
  background: rgba(255,253,248,.68); border: 1px solid var(--line); box-shadow: var(--soft-shadow);
}
.hero-logo { position: relative; z-index: 2; width: min(500px, 96%); }
.hero-caption {
  position: absolute; z-index: 3; right: 0; bottom: 6%; width: min(285px, 76%);
  background: rgba(255,253,248,.96); border: 1px solid var(--line); border-radius: 22px;
  padding: 1.1rem 1.2rem; color: var(--forest); font-weight: 600; box-shadow: var(--shadow);
}
.hero-caption span { display: block; color: var(--muted); font-size: .87rem; font-weight: 500; margin-top: .25rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .78rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--forest);
  color: var(--forest); background: transparent; text-decoration: none; font-weight: 700;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: white; }
.btn-primary:hover { background: var(--forest-2); color: white; }
.btn-light { background: white; color: var(--forest); border-color: white; }
.btn-soft { background: var(--cream); border-color: var(--line); }

.credential-ribbon { position: relative; z-index: 3; margin-top: -2rem; }
.credential-inner {
  background: var(--paper); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--soft-shadow);
  display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden;
}
.credential { padding: 1.35rem 1rem; text-align: center; color: var(--forest); font-weight: 700; border-right: 1px solid var(--line); }
.credential:last-child { border-right: 0; }
.credential small { display: block; font-weight: 400; color: var(--muted); margin-top: .15rem; }

.intro-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.intro-sticky { position: sticky; top: 130px; }
.promise-list { display: grid; gap: 1.2rem; }
.promise {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1.5rem 0; border-top: 1px solid var(--line);
}
.promise:last-child { border-bottom: 1px solid var(--line); }
.promise-number { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-soft); color: var(--forest); font-family: "EB Garamond", serif; font-size: 1.35rem; font-weight: 600; }
.promise p { color: var(--muted); margin: 0; }

.journey-section { position: relative; overflow: hidden; background: var(--forest); color: white; }
.journey-section::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 34px 34px; }
.journey-wrap { position: relative; z-index: 2; }
.journey-head { max-width: 760px; }
.journey-head p { color: rgba(255,255,255,.76); }
.journey-track { position: relative; margin-top: 4rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.journey-track::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 42px; height: 2px;
  background: linear-gradient(90deg, var(--stone), var(--sage), #dfe8d6);
  transform: rotate(-1.5deg);
}
.journey-step { position: relative; z-index: 2; }
.step-stone { width: 86px; height: 58px; border-radius: 54% 46% 50% 48% / 55% 44% 56% 45%; display: grid; place-items: center; background: var(--paper); color: var(--forest); font-family: "EB Garamond", serif; font-size: 1.45rem; font-weight: 600; box-shadow: 0 8px 0 rgba(0,0,0,.08); }
.journey-step:nth-child(2) .step-stone { transform: translateY(12px) rotate(3deg); }
.journey-step:nth-child(3) .step-stone { transform: translateY(-6px) rotate(-3deg); }
.journey-step:nth-child(4) .step-stone { transform: translateY(10px) rotate(2deg); background: #dfe8d6; }
.journey-step h3 { color: white; margin-top: 1.5rem; }
.journey-step p { color: rgba(255,255,255,.72); }

.service-editorial { display: grid; gap: 1.4rem; margin-top: 3rem; }
.service-row {
  display: grid; grid-template-columns: .7fr 1.3fr auto; gap: 1.8rem; align-items: center;
  padding: 1.8rem 0; border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-index { font: 600 2rem/1 "EB Garamond", serif; color: var(--sage); }
.service-copy p { color: var(--muted); margin: 0; }
.service-row .arrow-link { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); text-decoration: none; font-size: 1.35rem; }
.service-row:hover .arrow-link { background: var(--forest); color: white; }

.about-band { background: var(--cream); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(2rem,6vw,5.5rem); align-items: center; }
.about-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.about-art::before { content: ""; position: absolute; width: min(480px,90%); aspect-ratio: 1; border-radius: 42% 58% 61% 39% / 50% 42% 58% 50%; background: #ebe4d2; transform: rotate(-5deg); }
.about-art img { position: relative; z-index: 2; width: min(420px, 90%); }
.quote-panel { margin: 1.6rem 0; padding: 1.35rem 0 1.35rem 1.3rem; border-left: 4px solid var(--sage); font-family: "EB Garamond", serif; font-size: 1.45rem; line-height: 1.35; color: var(--forest); }

.books-showcase { position: relative; overflow: hidden; }
.books-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: center; }
.book-stack { min-height: 440px; position: relative; }
.book {
  position: absolute; width: 235px; height: 320px; border-radius: 8px 20px 20px 8px; padding: 1.5rem;
  box-shadow: 0 25px 45px rgba(22,62,49,.13); display: flex; flex-direction: column; justify-content: space-between;
  border-left: 12px solid rgba(0,0,0,.08); color: var(--forest);
}
.book h3 { font-size: 2rem; }
.book small { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.book-one { left: 6%; top: 70px; background: #e4ead8; transform: rotate(-8deg); }
.book-two { left: 31%; top: 25px; background: #f0dfc9; transform: rotate(3deg); }
.book-three { left: 55%; top: 85px; background: #c9d8c0; transform: rotate(10deg); }

.pricing-preview { background: var(--cream); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.price-card { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 1.6rem; box-shadow: var(--soft-shadow); }
.price-card.featured { background: var(--forest); color: white; transform: translateY(-8px); }
.price-card.featured h3, .price-card.featured .price { color: white; }
.price-card.featured p { color: rgba(255,255,255,.75); }
.price { font: 600 2.7rem/1 "EB Garamond", serif; color: var(--forest); margin: .9rem 0 .35rem; }
.price span { font: 400 .95rem "Cabin", sans-serif; color: var(--muted); }
.price-card.featured .price span { color: rgba(255,255,255,.7); }
.price-card ul { padding-left: 1.15rem; color: var(--muted); }
.price-card.featured ul { color: rgba(255,255,255,.76); }

.cta-section { padding: 2rem 0 5.5rem; background: var(--cream); }
.cta-panel { position: relative; overflow: hidden; border-radius: 40px; padding: clamp(2rem,5vw,4.4rem); background: var(--forest); color: white; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-panel::after { content: ""; position: absolute; right: -90px; bottom: -140px; width: 340px; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-panel h2 { color: white; max-width: 12ch; }
.cta-panel p { color: rgba(255,255,255,.74); max-width: 640px; }
.cta-panel > * { position: relative; z-index: 2; }

.page-hero { position: relative; overflow: hidden; background: var(--cream); padding: clamp(4.5rem,8vw,7.5rem) 0 4.5rem; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; right: -120px; top: -170px; width: 430px; aspect-ratio: 1; border-radius: 50%; background: rgba(168,180,147,.24); }
.page-hero h1 { font-size: clamp(3.4rem,7vw,6.2rem); max-width: 13ch; }
.breadcrumbs { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: 28px; padding: 1.6rem; }
.info-card + .info-card { margin-top: 1rem; }
.feature-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.feature-list li { position: relative; padding-left: 1.6rem; margin: .6rem 0; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: .7rem; height: .45rem; border-left: 2px solid var(--forest); border-bottom: 2px solid var(--forest); transform: rotate(-45deg); }

.service-detail { padding: 2rem 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: .42fr 1.18fr; gap: 2rem; }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail .service-label { color: var(--forest); font-weight: 700; }

.price-table { display: grid; gap: 1rem; }
.price-row { display: grid; grid-template-columns: 1.3fr .55fr .55fr; gap: 1rem; align-items: center; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.price-row:last-child { border-bottom: 1px solid var(--line); }
.price-row strong { color: var(--forest); }
.price-row .amount { font: 600 1.65rem "EB Garamond", serif; color: var(--forest); }
.pill { display: inline-flex; width: fit-content; padding: .35rem .7rem; border-radius: 999px; background: var(--sage-soft); color: var(--forest); font-size: .78rem; font-weight: 700; }
.notice { padding: 1rem 1.2rem; border-radius: 18px; background: var(--cream); border-left: 4px solid var(--sage); }

form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin-bottom: .35rem; font-weight: 700; color: var(--forest); }
input, textarea, select { width: 100%; padding: .9rem 1rem; border: 1px solid rgba(18,63,50,.26); border-radius: 14px; background: white; color: var(--ink); }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(168,180,147,.33); border-color: var(--forest); }
textarea { min-height: 170px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.checkbox input { width: auto; margin-top: .4rem; }

.site-footer { background: #0e3329; color: rgba(255,255,255,.74); padding: 4.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr; gap: 2rem; }
.footer-brand img { width: 290px; filter: brightness(0) invert(1); opacity: .94; margin-bottom: 1rem; }
.footer-title { color: white; font-size: 1.35rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: .45rem 0; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: white; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.13); margin-top: 2.5rem; padding-top: 1.2rem; font-size: .88rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .menu-button { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .hero-grid, .about-grid, .books-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 3rem; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-visual { min-height: 470px; }
  .intro-layout { grid-template-columns: 1fr; }
  .intro-sticky { position: static; }
  .journey-track { grid-template-columns: 1fr 1fr; }
  .journey-track::before { display: none; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 720px) {
  .brand img { width: 205px; }
  .nav-wrap { min-height: 76px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; }
  .hero-visual { min-height: 360px; }
  .hero-caption { right: auto; left: 50%; transform: translateX(-50%); bottom: 0; }
  .credential-inner { grid-template-columns: 1fr 1fr; }
  .credential:nth-child(2) { border-right: 0; }
  .credential:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .journey-track, .price-grid, .two-col, .form-row { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: auto 1fr; }
  .service-row .arrow-link { grid-column: 2; }
  .book-stack { min-height: 340px; transform: scale(.78); transform-origin: left top; }
  .price-card.featured { transform: none; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .service-detail { grid-template-columns: 1fr; gap: .5rem; }
  .price-row { grid-template-columns: 1fr auto; }
  .price-row .format { grid-column: 1/-1; color: var(--muted); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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


/* Final-site additions */
:root { --focus: #f0c36a; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.top-note { background: var(--forest); color: rgba(255,255,255,.9); text-align:center; padding:.55rem 1rem; font-size:.9rem; }
.top-note a { color:#fff; font-weight:700; }
.hero .lead strong, .lead strong { color: var(--forest); }
.subtle { color: var(--muted); }
.microcopy { font-size:.9rem; color:var(--muted); }
.inline-list { display:flex; flex-wrap:wrap; gap:.55rem; padding:0; list-style:none; }
.inline-list li { padding:.38rem .72rem; border-radius:999px; background:var(--sage-soft); color:var(--forest); font-weight:700; font-size:.84rem; }
.section-heading { max-width:760px; }
.section-heading.center { text-align:center; margin-inline:auto; }
.card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:2.5rem; }
.soft-card { background:var(--cream); border:1px solid var(--line); border-radius:28px; padding:1.7rem; }
.soft-card h3 { font-size:1.8rem; }
.soft-card p:last-child { margin-bottom:0; }
.icon-disc { width:54px; height:54px; border-radius:50%; display:grid; place-items:center; background:var(--sage-soft); color:var(--forest); font-weight:700; margin-bottom:1rem; }
.booking-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:2rem; }
.booking-card { position:relative; display:flex; flex-direction:column; background:var(--paper); border:1px solid var(--line); border-radius:30px; padding:1.7rem; box-shadow:var(--soft-shadow); }
.booking-card.featured { background:var(--forest); color:white; transform:translateY(-8px); }
.booking-card.featured h3, .booking-card.featured .price { color:white; }
.booking-card.featured p, .booking-card.featured li { color:rgba(255,255,255,.78); }
.booking-card .button-row { margin-top:auto; padding-top:1rem; }
.booking-card ul { padding-left:1.2rem; color:var(--muted); }
.booking-card .price { margin:.75rem 0 .3rem; }
.status-chip { display:inline-flex; width:fit-content; padding:.3rem .65rem; border-radius:999px; background:var(--sage-soft); color:var(--forest); font-size:.76rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.booking-card.featured .status-chip { background:rgba(255,255,255,.14); color:white; }
.process-line { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:2rem; }
.process-item { border-top:1px solid var(--line); padding-top:1.2rem; }
.process-item strong { display:block; color:var(--forest); margin-bottom:.35rem; }
.form-card { background:var(--cream); border:1px solid var(--line); border-radius:30px; padding:clamp(1.4rem,4vw,2.2rem); }
.form-note { padding:1rem 1.2rem; background:var(--paper); border-radius:16px; border:1px solid var(--line); font-size:.92rem; color:var(--muted); }
.honeypot { position:absolute; left:-9999px; }
.faq-list { margin-top:2rem; border-top:1px solid var(--line); }
details { border-bottom:1px solid var(--line); padding:1.1rem 0; }
summary { cursor:pointer; color:var(--forest); font-weight:700; font-size:1.08rem; list-style:none; }
summary::-webkit-details-marker { display:none; }
summary::after { content:'+'; float:right; font:600 1.5rem/1 Georgia,serif; }
details[open] summary::after { content:'–'; }
details p { color:var(--muted); max-width:780px; }
.policy-layout { display:grid; grid-template-columns:260px minmax(0,1fr); gap:clamp(2rem,5vw,5rem); align-items:start; }
.policy-nav { position:sticky; top:120px; background:var(--cream); border:1px solid var(--line); border-radius:24px; padding:1.2rem; }
.policy-nav a { display:block; padding:.45rem .55rem; text-decoration:none; border-radius:10px; }
.policy-nav a:hover { background:var(--sage-soft); }
.policy-content h2 { font-size:clamp(2rem,4vw,3rem); margin-top:2.7rem; }
.policy-content h3 { font-size:1.55rem; margin-top:2rem; line-height:1.2; }
.policy-content table { width:100%; border-collapse:collapse; margin:1.2rem 0; }
.policy-content th, .policy-content td { text-align:left; vertical-align:top; padding:.85rem; border-bottom:1px solid var(--line); }
.policy-content th { color:var(--forest); }
.callout { background:var(--cream); border-left:5px solid var(--sage); border-radius:0 18px 18px 0; padding:1rem 1.2rem; margin:1.4rem 0; }
.emergency { background:#fff3ed; border-color:#b44c2f; }
.contact-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.contact-card { background:var(--cream); border:1px solid var(--line); border-radius:22px; padding:1.25rem; }
.contact-card strong { display:block; color:var(--forest); }
.resource-strip { display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.2rem; }
.resource-strip a { display:inline-flex; padding:.6rem .85rem; border:1px solid var(--line); border-radius:999px; text-decoration:none; background:var(--paper); }
.shop-panel { display:grid; grid-template-columns:1fr .9fr; gap:2rem; align-items:center; background:var(--forest); color:white; border-radius:36px; padding:clamp(2rem,5vw,4rem); }
.shop-panel h2 { color:white; }
.shop-panel p { color:rgba(255,255,255,.76); }
.book-placeholder { min-height:330px; display:grid; place-items:center; position:relative; }
.book-placeholder::before, .book-placeholder::after { content:''; position:absolute; width:185px; height:260px; border-radius:8px 18px 18px 8px; box-shadow:0 22px 40px rgba(0,0,0,.18); }
.book-placeholder::before { background:#dfe7d5; transform:rotate(-8deg) translate(-45px,10px); }
.book-placeholder::after { background:#ead7bc; transform:rotate(7deg) translate(45px,-5px); }
.book-placeholder span { position:relative; z-index:2; width:185px; height:260px; border-radius:8px 18px 18px 8px; display:grid; place-items:center; padding:1.2rem; text-align:center; background:#c5d4bc; color:var(--forest); font:600 1.7rem/1.05 Georgia,serif; box-shadow:0 22px 40px rgba(0,0,0,.18); }
.link-button[aria-disabled='true'] { opacity:.72; }
.notice-bar { display:none; padding:.8rem 1rem; background:var(--sand); color:var(--forest); text-align:center; border-bottom:1px solid var(--line); }
.js .notice-bar.active { display:block; }
.external-note { display:block; font-size:.82rem; margin-top:.45rem; color:var(--muted); }
.booking-card.featured .external-note { color:rgba(255,255,255,.68); }
.legal-small { font-size:.86rem; color:var(--muted); }
.footer-links .muted-link { color:rgba(255,255,255,.62); }
.error-page { min-height:60vh; display:grid; place-items:center; text-align:center; padding:5rem 1rem; }
.error-code { font:600 clamp(5rem,18vw,11rem)/.8 Georgia,serif; color:var(--sage); }
.launch-label { display:none; }

@media (max-width:1020px) {
  .card-grid, .booking-grid { grid-template-columns:1fr 1fr; }
  .policy-layout { grid-template-columns:1fr; }
  .policy-nav { position:static; }
  .shop-panel { grid-template-columns:1fr; }
}
@media (max-width:720px) {
  .card-grid, .booking-grid, .process-line, .contact-cards { grid-template-columns:1fr; }
  .booking-card.featured { transform:none; }
  .policy-content table, .policy-content thead, .policy-content tbody, .policy-content tr, .policy-content th, .policy-content td { display:block; }
  .policy-content th { padding-bottom:.2rem; border-bottom:0; }
  .policy-content td { padding-top:.2rem; }
}
