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

:root {
  --cream: #fdf8f0;
  --warm-white: #fffdf9;
  --sage: #8faa8b;
  --sage-light: #c8dac5;
  --sage-dark: #5d7a59;
  --peach: #f2c9a8;
  --peach-dark: #e8a87c;
  --terra: #c97d5a;
  --gold: #d4a96a;
  --brown: #7a5c44;
  --text-dark: #3a2e25;
  --text-mid: #6b5a4e;
  --text-light: #9c8878;
  --gutter: 80px; /* shared left/right edge for nav, sections and footer */
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* keeps anchored sections clear of the fixed nav */
}

body {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

/* <picture> is alleen een wrapper: laat de <img> zich gedragen als direct
   kind van de oorspronkelijke ouder, zodat bestaande sizing/positionering
   (hero, about, experience) ongewijzigd blijft. */
picture {
  display: contents;
}

/* Line icons scale with the parent font-size */
.icon {
  width: 1em;
  height: 1em;
  display: block;
}

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(143, 170, 139, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  will-change: transform;
}
/* Hide on scroll down, reveal on scroll up */
nav.nav-hidden {
  transform: translateY(-100%);
}
nav.nav-scrolled {
  box-shadow: 0 6px 24px rgba(58, 46, 37, 0.08);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
  color: var(--sage-dark);
  letter-spacing: 0.03em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--terra);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--terra);
}
.nav-cta {
  background: var(--sage-dark);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.78rem !important;
  transition: background 0.3s !important;
}
.nav-cta:hover {
  background: var(--terra) !important;
  color: #fff !important;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--sage-dark);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Backdrop behind the mobile menu */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(40, 30, 22, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
}

/* ===== Hero ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  background-color: var(--cream);
  background-image:
    radial-gradient(
      circle at 18% 22%,
      rgba(143, 170, 139, 0.16),
      transparent 42%
    ),
    radial-gradient(
      circle at 8% 80%,
      rgba(242, 201, 168, 0.2),
      transparent 38%
    ),
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238faa8b' fill-opacity='0.07'%3E%3Ccircle cx='22' cy='22' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  overflow: hidden;
}
/* Soft decorative blob behind the hero text */
.hero-left::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -6%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 169, 106, 0.16),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-left > * {
  position: relative;
  z-index: 1;
}
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 5vw, 70px) 80px var(--gutter);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage-dark);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--terra);
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--terra);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--peach-dark);
  padding-bottom: 2px;
  transition: color 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--terra);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--sage-light);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* De therapeute staat links in beeld; iets naar links uitsnijden houdt haar
     netjes in frame op de smalle desktop-kolom. */
  object-position: 32% center;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 24px;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(58, 46, 37, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: floatUp 3s ease-in-out infinite alternate;
}
@keyframes floatUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}
.badge-icon {
  font-size: 1.9rem;
  color: var(--sage-dark);
}
.badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.badge-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== Section base ===== */
section {
  padding: 100px var(--gutter);
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: var(--sage-dark);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-title em {
  color: var(--terra);
  font-style: italic;
}

/* ===== About ===== */
#about {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(58, 46, 37, 0.12);
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 55%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(58, 46, 37, 0.14);
  border: 4px solid var(--warm-white);
}
.about-leaf {
  position: absolute;
  top: -18px;
  right: 24px;
  font-size: 2.6rem;
  color: var(--sage);
  opacity: 0.55;
  z-index: 2;
}
.about-content {
  padding-right: 20px;
}
.about-content p {
  margin-top: 24px;
  line-height: 1.9;
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 300;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--sage-light);
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--terra);
}
.stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== Services ===== */
#services {
  background: var(--cream);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--warm-white);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(58, 46, 37, 0.12);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-body {
  padding: 28px;
}
.service-icon {
  font-size: 2rem;
  color: var(--terra);
  margin-bottom: 16px;
}
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ===== Prices ===== */
#prices {
  background: linear-gradient(135deg, #e8f0e6 0%, #fdf8f0 50%, #f5e6d8 100%);
}
.prices-header {
  text-align: center;
  margin-bottom: 64px;
}
.prices-header .section-label {
  justify-content: center;
}
.prices-header .section-label::after {
  display: none;
}
.prices-header .section-label::before {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: var(--sage-dark);
}
.price-menu {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}
.price-menu-col {
  position: relative;
  background: var(--warm-white);
  border-radius: 26px;
  padding: 40px 44px;
  box-shadow: 0 18px 50px rgba(58, 46, 37, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-menu-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--sage-light);
}
.price-menu-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
}
.price-menu-icon .icon {
  width: 22px;
  height: 22px;
}
.price-menu-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text-dark);
}
.price-list {
  list-style: none;
  margin: 0;
}
.price-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 14px;
  margin: 0 -14px;
  border: none;
  border-bottom: 1px dashed rgba(93, 122, 89, 0.28);
  border-radius: 14px;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease;
}
.price-row:last-child {
  border-bottom: none;
}
.price-row:hover {
  background: rgba(93, 122, 89, 0.07);
}
.price-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 auto;
  min-width: 0;
}
.price-item-name {
  font-size: 1.05rem;
  color: var(--text-dark);
}
.price-item-meta {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--terra);
  white-space: nowrap;
  flex: 0 0 auto;
  line-height: 1.2;
}

/* Grouped treatment (Thaise massage durations) */
.price-group {
  padding: 6px 0 18px;
  border-bottom: 1px dashed rgba(93, 122, 89, 0.28);
  margin-bottom: 4px;
}
.price-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.price-durations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.duration-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  width: 100%;
  padding: 14px 6px;
  border-radius: 16px;
  background: #f6f3ec;
  border: 1.5px solid transparent;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.duration-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(58, 46, 37, 0.1);
}
.duration-chip b {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
}
.duration-chip span {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.duration-chip em {
  margin-top: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--terra);
}

/* ---- Selected states ---- */
.selectable:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 2px;
}
.duration-chip.selected {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  box-shadow: 0 10px 24px rgba(93, 122, 89, 0.28);
}
.duration-chip.selected b {
  color: #fff;
}
.duration-chip.selected span {
  color: var(--sage-light);
}
.duration-chip.selected em {
  color: var(--peach);
}
.price-row.selected {
  background: rgba(93, 122, 89, 0.12);
}
.price-row.selected .price-item-name {
  font-weight: 500;
}
.price-row::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) scale(0.6);
  border-radius: 50%;
  background: var(--sage-dark)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 6'/%3E%3C/svg%3E")
    center / 12px no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.price-row.selected::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.price-row.selected .price-value {
  margin-right: 26px;
}

/* ---- Selection summary + booking ---- */
.price-book-hint {
  font-size: 0.84rem !important;
  font-style: normal !important;
  color: var(--text-light) !important;
  line-height: 1.5;
}
.price-selection {
  text-align: left;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f6f3ec;
  border: 1px solid var(--sage-light);
}
.price-selection-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.price-selection ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.price-selection li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.price-selection li strong {
  color: var(--terra);
  font-weight: 600;
}
.price-selection .price-selection-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--sage-light);
  font-weight: 500;
}
.price-clear {
  display: block;
  margin: 12px auto 0;
  padding: 4px 8px;
  border: none;
  background: none;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
}
.price-clear[hidden] {
  display: none;
}
.price-clear:hover {
  color: var(--terra);
}
.price-surcharge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.price-surcharge .icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--terra);
  margin-top: 2px;
}
.price-surcharge strong {
  color: var(--terra);
}
.price-book {
  margin-top: auto;
  padding-top: 28px;
  text-align: center;
}
.price-book p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--sage-dark);
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: var(--sage-dark);
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
}
.price-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.price-btn:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
  transform: translateY(-2px);
}
.price-btn-alt {
  background: transparent;
  color: var(--sage-dark);
}
.price-btn-alt:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}
.price-book-actions {
  display: grid;
  gap: 10px;
}

/* ---- Add-ons block ---- */
.price-addons {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--sage-light);
}
.price-addons-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.price-addon-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.addon-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 30px;
  border: 1.5px solid var(--sage-light);
  background: #f6f3ec;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}
.addon-chip em {
  font-style: normal;
  font-weight: 600;
  color: var(--terra);
}
.addon-chip:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--sage);
}
.addon-chip.selected {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}
.addon-chip.selected em {
  color: var(--peach);
}
.addon-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.price-addons-note {
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-light);
}

.price-terms {
  max-width: 1040px;
  margin: 32px auto 0;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  padding: 32px 40px;
}
.price-terms h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.price-terms ul {
  list-style: none;
  display: grid;
  gap: 14px;
}
.price-terms li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.price-terms li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.7rem;
}
.price-terms a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* ===== Experience ===== */
#experience {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exp-content .section-title {
  margin-bottom: 24px;
}
.exp-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 40px;
}
.perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: 14px;
}
.perk-icon {
  font-size: 1.5rem;
  color: var(--sage-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.perk strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.perk span {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}
.exp-image {
  border-radius: 24px;
  overflow: hidden;
  height: 560px;
  box-shadow: 0 20px 60px rgba(58, 46, 37, 0.1);
}
.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Testimonials ===== */
#testimonials {
  background: var(--cream);
  text-align: center;
}
.testimonials-header {
  margin-bottom: 60px;
}
.testimonials-header .section-label {
  justify-content: center;
}
.testimonials-header .section-label::after {
  display: none;
}
.testimonials-header .section-label::before {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: var(--sage-dark);
}
/* Google rating summary */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 9px 18px;
  border-radius: 30px;
  background: var(--warm-white);
  box-shadow: 0 6px 20px rgba(58, 46, 37, 0.08);
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.google-rating[hidden] {
  display: none;
}
.google-rating:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(58, 46, 37, 0.12);
}
.google-rating-score {
  font-weight: 500;
  font-size: 1rem;
}
.google-rating-stars {
  color: var(--gold);
  letter-spacing: 2px;
}
.google-rating-count {
  color: var(--text-light);
  font-size: 0.82rem;
}
.google-rating-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-left: 12px;
  margin-left: 2px;
  border-left: 1px solid var(--sage-light);
  color: var(--text-mid);
  font-size: 0.82rem;
}

/* Carousel */
.reviews-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 56px;
}
.carousel-viewport {
  overflow: hidden;
  padding: 12px 4px;
  margin: -12px -4px;
}
.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - 56px) / 3);
  background: var(--warm-white);
  border-radius: 20px;
  padding: 36px;
  text-align: left;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--sage-light);
  background: var(--warm-white);
  color: var(--sage-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(58, 46, 37, 0.1);
  transition: background 0.3s, color 0.3s, transform 0.3s, opacity 0.3s;
  z-index: 2;
}
.carousel-arrow svg {
  width: 22px;
  height: 22px;
}
.carousel-arrow:hover {
  background: var(--sage-dark);
  color: #fff;
}
.carousel-arrow.prev {
  left: 0;
}
.carousel-arrow.next {
  right: 0;
}
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 36px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--sage-light);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: var(--sage-dark);
  transform: scale(1.25);
}
.author-initials {
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
}
.review-date {
  font-size: 0.76rem;
  color: var(--text-light);
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage-light);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}
.author-role {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ===== Booking ===== */
#book {
  background: var(--sage-dark);
  text-align: center;
  padding: 100px var(--gutter);
  position: relative;
  overflow: hidden;
}
#book::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#book > * {
  position: relative;
  z-index: 1;
}
#book .section-label {
  color: var(--sage-light);
  justify-content: center;
}
#book .section-label::after {
  display: none;
}
#book .section-label::before {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: var(--sage-light);
}
#book .section-title {
  color: #fff;
  margin-bottom: 20px;
}
#book p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 1rem;
  font-weight: 300;
}
.book-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  padding: 8px 8px 8px 24px;
  backdrop-filter: blur(10px);
}
.book-form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
}
.book-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.book-form button {
  background: var(--terra);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.book-form button:hover {
  background: var(--peach-dark);
}
.book-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.book-note strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Footer ===== */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .nav-logo {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-social {
  margin-top: 24px;
  display: flex;
  gap: 14px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--peach);
  background: rgba(255, 255, 255, 0.06);
}
footer h4 {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color 0.3s;
}
footer ul a:hover {
  color: var(--peach);
}
.footer-bottom {
  background: var(--text-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== Homepage FAQ section ===== */
#faq {
  background: var(--warm-white);
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-header .section-label {
  justify-content: center;
}
.faq-header .section-label::after {
  display: none;
}
.faq-header .section-label::before {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: var(--sage-dark);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
#faq .faq-item {
  background: var(--cream);
}
.faq-more {
  text-align: center;
  margin-top: 36px;
}

/* ===== Sub-pages (FAQ, Terms, Privacy) ===== */
.subpage-hero {
  padding: 150px var(--gutter) 70px;
  background: linear-gradient(135deg, #e8f0e6 0%, #fdf8f0 55%, #f5e6d8 100%);
  text-align: center;
}
.subpage-hero .section-label {
  justify-content: center;
}
.subpage-hero .section-label::after {
  display: none;
}
.subpage-hero .section-label::before {
  content: "";
  flex: 0 0 28px;
  height: 1px;
  background: var(--sage-dark);
}
.subpage-hero p {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}
.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text-dark);
  margin: 40px 0 14px;
}
.page h2:first-child {
  margin-top: 0;
}
.page p,
.page li {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
}
.page p {
  margin-bottom: 16px;
}
.page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.page li {
  margin-bottom: 8px;
}
.page a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 125, 90, 0.35);
}
.page a:hover {
  color: var(--brown);
}
.page strong {
  color: var(--text-dark);
  font-weight: 500;
}
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--sage-dark);
  text-decoration: none;
  border: none;
}
.back-home:hover {
  color: var(--terra);
}

/* FAQ accordion */
.faq-item {
  background: var(--warm-white);
  border-radius: 14px;
  border: 1px solid rgba(143, 170, 139, 0.18);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--terra);
}
.faq-item summary::after {
  content: "+";
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  color: var(--terra);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 24px 22px;
}
.faq-item .faq-answer p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.8;
}
.faq-item[open] .faq-answer {
  animation: faqReveal 0.32s ease;
}
@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Gift card tiers */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.gift-card {
  background: var(--sage-dark);
  color: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(93, 122, 89, 0.18);
}
.gift-card .gift-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--peach);
  line-height: 1;
}
.gift-card .gift-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: 10px;
}
.gift-card p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .subpage-hero {
    padding: 120px 32px 56px;
  }
  .gift-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 40px auto;
  }
}
@media (max-width: 560px) {
  .subpage-hero {
    padding: 104px 20px 48px;
  }
}

/* ===== Scroll reveal ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-badge {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===== Responsive ===== */

/* Laptops and smaller desktops */
@media (max-width: 1200px) {
  :root {
    --gutter: 52px;
  }
  section {
    padding: 90px var(--gutter);
  }
  #about,
  #experience {
    gap: 56px;
  }
  .hero-left {
    padding: 70px var(--gutter);
  }
}

/* Tablets and iPad (portrait/landscape) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-image {
    height: 480px;
  }
  .about-images {
    height: 460px;
  }
}

/* iPad portrait and large phones: stack the split layouts */
@media (max-width: 860px) {
  :root {
    --gutter: 32px;
  }
  nav {
    padding: 14px var(--gutter);
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 80px 36px;
    background: var(--warm-white);
    box-shadow: -10px 0 40px rgba(58, 46, 37, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 90;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 0.95rem;
  }
  .nav-cta {
    padding: 11px 26px;
  }

  section {
    padding: 70px var(--gutter);
  }
  #hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .hero-left {
    padding: 56px var(--gutter);
    order: 2;
    text-align: left;
  }
  .hero-left::before {
    display: none;
  }
  .hero-right {
    order: 1;
    height: 56vw;
    min-height: 280px;
  }
  .hero-desc {
    max-width: 560px;
  }

  #about,
  #experience {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content {
    padding-right: 0;
    order: 2;
  }
  .about-images {
    order: 1;
    height: 360px;
    max-width: 520px;
  }
  .exp-content {
    order: 1;
  }
  .exp-image {
    order: 2;
    height: 380px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }
  .price-menu {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 56px var(--gutter);
  }
  .footer-bottom {
    padding: 20px var(--gutter);
  }
}

/* Phones */
@media (max-width: 560px) {
  :root {
    --gutter: 22px;
  }
  section {
    padding: 56px var(--gutter);
  }
  .hero-left {
    padding: 44px var(--gutter);
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
  }

  .about-images {
    height: 300px;
  }
  .about-stats {
    gap: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 28px;
  }
  .reviews-carousel {
    padding: 0 14px;
  }
  .carousel-arrow {
    display: none;
  }

  .price-menu-col {
    padding: 34px 22px 30px;
  }
  .price-durations {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-terms {
    padding: 28px 24px;
  }

  .book-form {
    flex-direction: column;
    gap: 10px;
    border-radius: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.12);
  }
  .book-form input {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .book-form button {
    width: 100%;
    padding: 14px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--gutter);
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px var(--gutter);
  }
}
