:root {
  --cream: #fff9f3;
  --paper: #ffffff;
  --ink: #2d2725;
  --muted: #6c625e;
  --sage: #6f846b;
  --sage-dark: #435b45;
  --pink: #f4d4dc;
  --pink-strong: #dc8fa2;
  --cherry: #a81732;
  --line: #eadfd8;
  --shadow: 0 18px 50px rgba(79, 53, 43, .12);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: var(--sage-dark); text-underline-offset: 3px; }
a:hover { color: var(--cherry); }
.skip-link { position: absolute; left: -999px; top: 1rem; }
.skip-link:focus { left: 1rem; z-index: 100; background: #fff; padding: .7rem 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 243, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(168, 23, 50, .12));
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--cherry);
  font-size: 1.05rem;
}
.brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 1.1rem; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: .94rem; font-weight: 700; }
.nav-links a:hover { color: var(--cherry); }
.menu-button { display: none; border: 0; background: transparent; font: inherit; font-weight: 800; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--cherry);
  background: var(--cherry);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(168, 23, 50, .18);
}
.button:hover { background: #861127; color: white; }
.button.secondary { background: transparent; color: var(--cherry); box-shadow: none; }
.button.secondary:hover { background: #fff; }

.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 2rem)); margin: 0 auto; }
.eyebrow { margin: 0 0 .7rem; color: var(--cherry); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.1; letter-spacing: -.025em; }
h1 { margin: 0 0 1.15rem; font-size: clamp(2.7rem, 7vw, 5.6rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { margin: 0 0 .65rem; font-size: 1.35rem; }
p { margin: 0 0 1.2rem; }
.lede { max-width: 680px; color: var(--muted); font-size: 1.12rem; }

.hero { padding: clamp(3rem, 8vw, 7rem) 0 4rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .8fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.hero-copy { position: relative; }
.hero-copy::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  left: -140px;
  top: -100px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(2px);
  opacity: .6;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.7rem; }
.hero-image { position: relative; }
.hero-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 200px 200px 24px 24px; box-shadow: var(--shadow); }
.hero-note {
  position: absolute;
  left: -2rem;
  bottom: 1.5rem;
  max-width: 230px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  font-size: .9rem;
  font-weight: 800;
}

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section.soft { background: #f7ebe8; }
.section.sage { background: var(--sage-dark); color: white; }
.section.sage .lede, .section.sage p { color: #e6ede4; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem; }
.section-head p { max-width: 560px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(63, 44, 38, .06);
}
.card p { color: var(--muted); }
.card-link { font-weight: 800; }
.mini-number { display: block; margin-bottom: 1rem; color: var(--cherry); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.split { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.check-list { padding: 0; margin: 1.4rem 0 1.8rem; list-style: none; }
.check-list li { position: relative; padding: .45rem 0 .45rem 1.65rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--cherry); font-weight: 900; }

.page-hero { padding: 4.5rem 0 3rem; }
.page-hero h1 { max-width: 940px; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.breadcrumb { margin-bottom: 1rem; color: var(--muted); font-size: .88rem; }
.breadcrumb a { color: var(--muted); }
.article { padding-bottom: 5rem; }
.article h2 { margin-top: 3.2rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.article h3 { margin-top: 2rem; }
.article img { margin: 2rem 0; width: 100%; max-height: 620px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.article .caption { margin-top: -1.5rem; color: var(--muted); font-size: .85rem; }
.answer-box { padding: 1.5rem; margin: 1.5rem 0 2rem; border-left: 5px solid var(--cherry); border-radius: 0 18px 18px 0; background: #f9e6eb; }
.price-table { width: 100%; border-collapse: collapse; margin: 1.4rem 0 2rem; background: #fff; }
.price-table th, .price-table td { padding: .9rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table th { background: #f7ebe8; font-size: .9rem; }
.callout { padding: 1.5rem; margin: 2rem 0; border: 1px solid #cad6c6; border-radius: 18px; background: #edf3eb; }
.faq details { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq details p { margin: .8rem 0 0; color: var(--muted); }

.cta-band { padding: 2.5rem; border-radius: 28px; background: var(--pink); text-align: center; }
.cta-band h2 { max-width: 700px; margin-left: auto; margin-right: auto; }
.footer { padding: 3rem 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.footer h3 { font-size: 1rem; font-family: var(--sans); }
.footer a { display: block; margin: .35rem 0; color: var(--muted); }
.tiny { margin-top: 2rem; color: var(--muted); font-size: .82rem; }

.booking-hero { padding-bottom: 2rem; }
.booking-section { padding-top: 1.5rem; }
.booking-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.booking-summary { position: sticky; top: 105px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.booking-summary img { width: 100%; height: clamp(260px, 28vw, 340px); object-fit: cover; object-position: center 78%; }
.booking-summary-copy { padding: 1.6rem; }
.booking-summary-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.small-note, .form-help { color: var(--muted); font-size: .9rem; }
.form-wrap { scroll-margin-top: 100px; padding: clamp(1.4rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.form-wrap h2 { font-size: clamp(2rem, 4vw, 3rem); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.field { display: grid; gap: .4rem; font-size: .92rem; font-weight: 800; }
.field-full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .75rem .85rem;
  border: 1px solid #cfc1b9;
  border-radius: 12px;
  background: #fffdfb;
  color: var(--ink);
  font: inherit;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(220,143,162,.35); border-color: var(--cherry); }
.submit-button { border: 0; cursor: pointer; font: inherit; }
.submit-button[disabled] { cursor: wait; opacity: .65; }
.form-help { margin: .8rem 0 .2rem; }
.form-status { min-height: 1.6em; margin-top: .5rem; color: var(--cherry); font-weight: 700; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.success-panel { padding: 2rem 0; text-align: center; }
.success-mark { width: 64px; height: 64px; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 50%; background: var(--sage-dark); color: white; font-size: 2rem; font-weight: 900; }
.package-price { margin: .15rem 0 .7rem; color: var(--cherry) !important; font-family: var(--serif); font-size: 1.75rem; font-weight: 800; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.article-card { overflow: hidden; padding: 0; }
.article-card img { width: 100%; height: 260px; object-fit: cover; object-position: center 72%; }
.article-card-copy { padding: 1.5rem; }
.article-card time { display: block; margin-bottom: .6rem; color: var(--muted); font-size: .85rem; }
.article-card h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }

@media (max-width: 820px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 1rem; right: 1rem; top: 68px; padding: 1rem; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .footer-grid, .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .hero-image { max-width: 520px; margin: 0 auto; }
  .hero-note { left: .8rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .price-table { font-size: .9rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
