:root {
  --cream: #fbf8f1;
  --warm-white: #fffdf8;
  --sage: #8d9d7e;
  --deep-sage: #4f614d;
  --clay: #b8876d;
  --charcoal: #2d312c;
  --mist: #e9efe7;
  --water: #d9e8e6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background:
    radial-gradient(circle at top left, rgba(217,232,230,0.9), transparent 34rem),
    linear-gradient(135deg, var(--cream), var(--warm-white) 55%, var(--mist));
  color: var(--charcoal);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(79, 97, 77, 0.12);
}

.logo {
  color: var(--deep-sage);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav { display: flex; gap: 1rem; flex-wrap: wrap; }
nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
}
nav a:hover { color: var(--deep-sage); }

main { overflow: hidden; }

.hero-image-home {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 72px);
  padding: 0;
  background: #172313;
  overflow: hidden;
}
.hero-image-home img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-booking-link {
  position: absolute;
  left: 7.2%;
  top: 55%;
  width: 28.5%;
  height: 4.8%;
  border-radius: 0.4rem;
}
.hero-booking-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem); }
.intro-panel {
  margin: 0 clamp(1rem, 5vw, 5rem);
  border-radius: 2rem;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 20px 60px rgba(45,49,44,0.08);
}
.intro-panel p { max-width: 52rem; font-size: 1.15rem; }
.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.split-section p, .services p, .process li, .contact-section p { font-size: 1.08rem; }
.cards-section { background: rgba(233,239,231,0.55); }
.cards, .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.cards article, .service-list div {
  background: rgba(255,255,255,0.78);
  padding: 1.5rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(79,97,77,0.12);
}
.process ol {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
  max-width: 54rem;
}
.process li {
  background: rgba(255,255,255,0.72);
  padding: 1rem 1.2rem;
  border-radius: 1rem;
}
.process span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.booking-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255,255,255,0.68);
}
.booking-section p { font-size: 1.08rem; max-width: 54rem; }
.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.button.primary { background: var(--deep-sage); color: white; }
.button.secondary { background: var(--mist); color: var(--deep-sage); }
.disabled-booking {
  opacity: 0.78;
  cursor: not-allowed;
}


.pricing-section {
  background: linear-gradient(135deg, rgba(217,232,230,0.55), rgba(255,255,255,0.66));
}
.pricing-intro {
  max-width: 58rem;
  font-size: 1.08rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.price-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(79,97,77,0.14);
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 14px 36px rgba(45,49,44,0.06);
}
.price-card.featured {
  border: 2px solid rgba(79,97,77,0.42);
}
.duration {
  margin: 0.35rem 0 0;
  color: var(--deep-sage);
  font-family: Arial, sans-serif;
  font-weight: 700;
}
.price {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--deep-sage);
}
.package-card {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(79,97,77,0.10);
  border-radius: 1.3rem;
}
.package-card h3, .package-card p { margin-top: 0; }
.package-card p:last-child { margin-bottom: 0; }
.package-price {
  flex-shrink: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--deep-sage);
  line-height: 1;
}
.pricing-note {
  max-width: 58rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  background: var(--deep-sage);
  color: white;
}
.contact-section h2, .contact-section .eyebrow { color: white; }
.contact-section .button { background: white; color: var(--deep-sage); flex-shrink: 0; }
footer { padding: 2rem; text-align: center; color: rgba(45,49,44,0.68); }

@media (max-width: 850px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .hero, .split-section, .cards, .service-list, .pricing-grid, .booking-section { grid-template-columns: 1fr; }
  h1 { max-width: none; }
  
.booking-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255,255,255,0.68);
}
.booking-section p { font-size: 1.08rem; max-width: 54rem; }
.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.button.primary { background: var(--deep-sage); color: white; }
.button.secondary { background: var(--mist); color: var(--deep-sage); }
.disabled-booking {
  opacity: 0.78;
  cursor: not-allowed;
}


.pricing-section {
  background: linear-gradient(135deg, rgba(217,232,230,0.55), rgba(255,255,255,0.66));
}
.pricing-intro {
  max-width: 58rem;
  font-size: 1.08rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.price-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(79,97,77,0.14);
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 14px 36px rgba(45,49,44,0.06);
}
.price-card.featured {
  border: 2px solid rgba(79,97,77,0.42);
}
.duration {
  margin: 0.35rem 0 0;
  color: var(--deep-sage);
  font-family: Arial, sans-serif;
  font-weight: 700;
}
.price {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--deep-sage);
}
.package-card {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(79,97,77,0.10);
  border-radius: 1.3rem;
}
.package-card h3, .package-card p { margin-top: 0; }
.package-card p:last-child { margin-bottom: 0; }
.package-price {
  flex-shrink: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--deep-sage);
  line-height: 1;
}
.pricing-note {
  max-width: 58rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.package-card { flex-direction: column; align-items: flex-start; }
.contact-section { flex-direction: column; align-items: flex-start; }
}
