:root {
  --cream: #faf6f1;
  --cream-dark: #f0e8df;
  --sage: #4a5d52;
  --sage-dark: #3a4a42;
  --terracotta: #b86b52;
  --terracotta-light: #d4896f;
  --blush: #f3e4dc;
  --ink: #2a2826;
  --muted: #6b6560;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(42, 40, 38, 0.08);
  --shadow-sm: 0 8px 24px rgba(42, 40, 38, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --header-h: 78px;
  --font-serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--sage-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sage-dark); }

.container { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 93, 82, 0.08);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand-text span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--sage);
  color: white;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--blush);
  color: var(--sage-dark);
}
.nav-cta a {
  background: var(--sage);
  color: white !important;
}
.nav-cta a:hover { background: var(--sage-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42,40,38,0.72) 0%, rgba(74,93,82,0.45) 45%, rgba(184,107,82,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 4.5rem;
  color: white;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 500;
}
.hero p {
  font-size: 1.12rem;
  margin: 0 0 1.75rem;
  opacity: 0.95;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: white; }
.btn-primary:hover { background: var(--terracotta-light); color: white; }
.btn-secondary { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.35); }
.btn-secondary:hover { background: white; color: var(--sage-dark); }
.btn-outline { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage); color: white; }
.btn-call {
  background: white;
  color: var(--sage-dark);
  border-color: white;
}
.btn-call:hover { background: var(--cream); color: var(--sage-dark); }
.btn-call-dark {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}
.btn-call-dark:hover { background: var(--sage-dark); color: white; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1rem 1.25rem;
  background: var(--sage-dark);
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.mobile-call-bar:hover { background: var(--sage); color: white; }
@media (max-width: 768px) {
  .mobile-call-bar { display: block; }
  body:has(.mobile-call-bar) { padding-bottom: 3.75rem; }
}

/* Sections */
section { padding: 5rem 0; }
.section-head { max-width: 700px; margin-bottom: 2.5rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0 0 0.75rem;
  color: var(--sage-dark);
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.rounded-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rounded-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--terracotta);
}
.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--sage-dark);
}
.quote-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--terracotta);
}
.stat span { font-size: 0.85rem; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card h2,
.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  color: var(--sage-dark);
}
.card .price {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.bg-blush { background: var(--blush); }
.bg-white { background: var(--white); }

.page-hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, var(--blush), var(--cream));
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 0.75rem;
  color: var(--sage-dark);
}
.page-hero p { margin: 0; max-width: 680px; color: var(--muted); font-size: 1.08rem; }

.prose { max-width: 760px; }
.prose h2, .prose h3 {
  font-family: var(--font-serif);
  color: var(--sage-dark);
}
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.45rem; }

.faq details {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--sage-dark);
}
.faq p { margin: 0.75rem 0 0; color: var(--muted); }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-item strong { display: block; color: var(--sage-dark); margin-bottom: 0.25rem; }

.booking-form-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  overflow: hidden;
}
.booking-form-section h2 {
  font-family: var(--font-serif);
  color: var(--sage-dark);
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
.booking-form-section > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}
.booking-form-frame {
  width: 100%;
  min-height: 1400px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.booking-fallback {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.booking-fallback a { font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--sage-dark);
  color: rgba(255,255,255,0.88);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  font-family: var(--font-serif);
  color: white;
  margin-top: 0;
}
.site-footer a { color: #f3d5c8; text-decoration: none; }
.site-footer a:hover { color: white; }
.social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
}
.social img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer-connect {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-connect a { color: #f3d5c8; white-space: nowrap; }
.quote-links {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}
.quote-links a { font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom p { margin: 0; }
.footer-credit {
  margin-top: 0.5rem !important;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.footer-credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-credit a:hover { color: rgba(255,255,255,0.8); text-decoration: underline; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .split, .contact-panel, .footer-grid, .stats { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: none;
    padding: 1rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { display: block; }
}
