:root {
  --bg: #faf8f5;
  --bg-warm: #f5f0ea;
  --fg: #2d2a26;
  --fg-muted: #6b6560;
  --accent: #7a9e7e;
  --accent-light: #e8f0e9;
  --accent-dark: #4a7a4f;
  --warm: #c4a882;
  --warm-light: #f0e8dc;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-width: 1100px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(160deg, var(--bg) 0%, var(--warm-light) 50%, var(--accent-light) 100%);
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: var(--space-md);
  color: var(--fg);
}

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

.hero-lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--accent-light) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 1;
}

/* Philosophy */
.philosophy {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

.philosophy-inner {
  max-width: 640px;
  margin: 0 auto;
}

.philosophy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-md);
  color: var(--fg);
}

.philosophy p {
  margin-bottom: var(--space-sm);
  color: var(--fg-muted);
  font-size: 1.1rem;
}

.philosophy p strong {
  color: var(--fg);
  font-weight: 600;
}

.philosophy p em {
  font-style: italic;
}

/* Services */
.services {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg-warm);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--bg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.service-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card--link:hover h3 {
  color: var(--accent-dark);
  transition: color 0.2s ease;
}

.service-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  font-weight: 400;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Promise */
.promise {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

.promise-inner {
  max-width: 700px;
  margin: 0 auto;
}

.promise h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.promise-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.promise-marker {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent);
  min-width: 48px;
  line-height: 1;
  padding-top: 4px;
}

.promise-item h4 {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--fg);
}

.promise-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* Closing */
.closing {
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--bg) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ===========================
   Navigation
   =========================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--fg);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ↓';
  font-size: 0.75rem;
  opacity: 0.5;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -var(--space-sm);
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: var(--space-xs) 0;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px var(--space-sm);
  color: var(--fg-muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  color: var(--fg);
  background: var(--bg-warm);
}

/* CTA button in nav */
.nav-cta {
  background: var(--accent-dark) !important;
  color: var(--bg) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  transition: background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: opacity 0.2s;
}

/* ===========================
   Shared page styles
   =========================== */
.page-main {
  min-height: 80vh;
}

/* Page hero — used by booking, about */
.page-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  background: linear-gradient(160deg, var(--bg) 0%, var(--warm-light) 50%, var(--accent-light) 100%);
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

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

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ===========================
   Shared button
   =========================== */
.btn-primary {
  display: inline-block;
  background: var(--accent-dark);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: var(--sans);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===========================
   Booking form
   =========================== */
.form-container {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.form-error-banner {
  background: #fdf0f0;
  border: 1px solid #e8b4b4;
  color: #8b3a3a;
  padding: var(--space-sm) var(--space-md);
  border-radius: 8px;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-section-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: var(--space-xs);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

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

.form-group--half {
  max-width: 50%;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
}

.required {
  color: var(--accent-dark);
}

.optional {
  color: var(--fg-muted);
  font-weight: 300;
  font-size: 0.82rem;
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 300;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '↓';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--fg-muted);
  pointer-events: none;
}

.form-group select {
  appearance: none;
  background: var(--bg);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px 36px 12px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 300;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-hint {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: 2px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
}

.form-privacy {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* Success state */
.form-success {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.success-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.form-success h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

/* ===========================
   Service pages
   =========================== */
.service-page-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  background: linear-gradient(160deg, var(--bg) 0%, var(--warm-light) 50%, var(--accent-light) 100%);
  max-width: 720px;
  margin: 0 auto;
}

.service-page-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.service-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.service-page-desc {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.85;
  max-width: 580px;
}

.service-page-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.service-includes h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.6;
}

.includes-marker {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-best-for,
.service-note {
  background: var(--bg-warm);
  border-radius: 10px;
  padding: var(--space-md);
}

.service-best-for h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.service-best-for p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.service-note p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
}

/* Service nav at bottom of service pages */
.service-nav-links {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.07);
}

.service-nav-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
}

.service-nav-grid {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.service-nav-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-warm);
  border-radius: 8px;
  text-decoration: none;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.2s ease, transform 0.15s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.service-nav-card:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.service-nav-icon {
  color: var(--accent);
  font-size: 0.85rem;
}

/* ===========================
   About page
   =========================== */
.about-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  background: linear-gradient(160deg, var(--bg) 0%, var(--warm-light) 50%, var(--accent-light) 100%);
  max-width: 720px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

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

.about-body {
  max-width: 760px;
  margin: 0 auto;
}

.about-section {
  padding: var(--space-xl) var(--space-md);
}

.about-section--warm {
  background: var(--bg-warm);
}

.about-section--accent {
  background: var(--accent-light);
  text-align: center;
}

.about-section-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-section-inner--center {
  text-align: center;
}

.about-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.about-section p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.about-section p strong {
  color: var(--fg);
  font-weight: 600;
}

.about-section p em {
  font-style: italic;
  color: var(--fg);
}

.about-how-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-how-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.about-how-number {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent);
  min-width: 44px;
  line-height: 1;
  padding-top: 4px;
}

.about-how-item h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--fg);
}

.about-how-item p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  margin-bottom: 0;
}

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: var(--space-sm);
}

.about-quote-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-lg);
}

.about-contact {
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.contact-item h4 {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: var(--space-xs);
}

.contact-item p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===========================
   Landing page: add Book link to hero
   =========================== */
.hero-cta {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

.hero-link {
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   Footer: add nav links
   =========================== */
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.footer-nav {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--fg-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--fg);
}

/* ===========================
   Mobile
   =========================== */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-accent {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .promise-item {
    gap: var(--space-sm);
  }

  .promise-marker {
    min-width: 36px;
    font-size: 1.4rem;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: var(--space-sm) var(--space-md);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  .site-nav.open .nav-links {
    display: flex;
  }

  .site-nav {
    position: sticky;
  }

  .nav-dropdown > a::after {
    display: none;
  }

  .dropdown-menu {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0 var(--space-sm);
    flex-direction: column;
    gap: 4px;
  }

  .dropdown-menu li a {
    padding: 6px 0;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  /* Form mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group--half {
    max-width: 100%;
  }

  /* Service page mobile */
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .service-nav-grid {
    flex-direction: column;
  }

  /* About mobile */
  .about-how-item {
    gap: var(--space-sm);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Page heroes mobile */
  .page-hero,
  .service-page-hero,
  .about-hero {
    padding: var(--space-lg) var(--space-sm) var(--space-md);
  }
}