/* =====================================================================
   Camelia Wellness Center — Redesign prototype
   Direction: warm & earthy, elevated. Editorial "quiet luxury" spa.
   Display: Cormorant (serif) · Body: Mulish. Greek-first.
   Standalone stylesheet for index-redesigned.html — does not touch
   the existing Webflow bundle.
   ===================================================================== */

:root {
  /* Warm earthy palette, elevated from the current taupe/olive */
  --cream:      #faf5ef;
  --sand:       #efe6db;
  --sand-2:     #e7dace;
  --taupe:      #d8cac0;   /* current site body colour, kept as a tone */
  --clay:       #b0835e;   /* warm accent */
  --clay-deep:  #98693f;
  --olive:      #61481c;   /* current brand button colour, now the deep ink */
  --olive-2:    #4a3a1c;
  --ink:        #2c2213;   /* warm near-black for text */
  --ink-soft:   #6f6151;
  --gold:       #c6a25f;   /* metallic hairline / stars */
  --line:       rgba(97, 72, 28, 0.16);
  --line-soft:  rgba(97, 72, 28, 0.09);
  --white:      #fffdfa;

  --shadow-sm:  0 1px 2px rgba(44, 34, 19, 0.05), 0 2px 8px rgba(44, 34, 19, 0.05);
  --shadow-md:  0 6px 20px rgba(44, 34, 19, 0.09), 0 2px 6px rgba(44, 34, 19, 0.06);
  --shadow-lg:  0 24px 60px rgba(44, 34, 19, 0.18), 0 8px 20px rgba(44, 34, 19, 0.08);

  --font-serif: "Cormorant", Georgia, "Times New Roman", serif;
  --font-body:  "Mulish", "Century Gothic", system-ui, sans-serif;

  --container: 1220px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Subtle paper grain layered over the whole page for warmth/depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: none; /* Greek caps written manually to avoid tonos on caps */
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.is-centered::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  margin-top: 1rem;
  max-width: 18ch;
}
.section-lead {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 1.1rem 0 0;
  font-size: 1.06rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; z-index: 2; }
.section--sand { background: var(--sand); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.is-centered { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head.is-centered .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--olive);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.22s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
}
.btn:active {
  transform: translateY(0) scale(0.985);
  box-shadow: var(--shadow-sm);
  transition-duration: 0.08s;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--clay-deep), var(--shadow-sm);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--light {
  --btn-bg: var(--cream);
  --btn-fg: var(--ink);
}
.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: rgba(255, 253, 250, 0.5);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover { border-color: var(--olive); background: var(--olive); color: var(--cream); }
  .btn--outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--clay-deep);
}
.text-link svg { transition: transform 0.4s var(--ease); }
.text-link:hover svg { transform: translateX(6px); }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem var(--gutter);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease),
    padding 0.5s var(--ease), color 0.5s var(--ease);
  color: var(--cream);
}
.site-header.is-solid {
  background: rgba(250, 245, 239, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
  color: var(--ink);
  padding-block: 0.9rem;
}
.brand {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  opacity: 0.75;
  margin-top: 4px;
}
.brand--logo {
  position: relative;
  width: clamp(4rem, 5.5vw, 4.8rem);
  aspect-ratio: 1192 / 1153;
  flex: 0 0 auto;
}
.brand__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s var(--ease);
}
.brand__logo--dark { opacity: 0; }
.site-header.is-solid .brand__logo--light { opacity: 0; }
.site-header.is-solid .brand__logo--dark { opacity: 1; }
.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  padding-block: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px;
  opacity: 0.85;
}
.lang-toggle button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 3px 9px;
  border-radius: 999px;
  line-height: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s var(--ease), transform 0.14s var(--ease),
    box-shadow 0.2s var(--ease);
}
.lang-toggle button.is-active { background: currentColor; }
.lang-toggle button.is-active span { color: var(--cream); mix-blend-mode: difference; }
.lang-toggle button:active { transform: scale(0.93); }
.lang-toggle button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .lang-toggle button:not(.is-active):hover { background: rgba(198, 162, 95, 0.2); }
}
.header-actions .btn { padding: 0.7rem 1.4rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.16s var(--ease), box-shadow 0.2s var(--ease);
}
.menu-toggle span { width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.menu-toggle:active { transform: scale(0.92); }
.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(152, 105, 63, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .menu-toggle:hover { transform: scale(1.04); }
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  isolation: isolate;
  padding-top: 6rem;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 15, 8, 0.82) 0%, rgba(20, 15, 8, 0.5) 34%, rgba(20, 15, 8, 0.12) 62%, transparent 100%),
    linear-gradient(180deg, rgba(28, 21, 11, 0.4) 0%, transparent 30%, rgba(28, 21, 11, 0.3) 70%, rgba(28, 21, 11, 0.72) 100%);
}
.hero__inner { max-width: 46rem; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.14;
  margin: 1.4rem 0 0;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-shadow: 0 2px 34px rgba(15, 10, 4, 0.58);
}
.hero__title em { font-style: italic; color: #f0dcbf; }
.hero__sub {
  margin: 1.6rem 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  max-width: 40ch;
  color: rgba(255, 253, 250, 0.9);
  font-weight: 400;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__meta {
  margin-top: 3.2rem;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 253, 250, 0.82);
}
.hero__meta span { display: flex; align-items: center; gap: 0.55rem; }
.hero__meta svg { flex: none; opacity: 0.8; }

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 1.8rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: rgba(255, 253, 250, 0.7);
}
.hero__scroll i {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  display: block;
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Staggered hero entrance */
.hero .reveal-up { opacity: 0; transform: translateY(26px); animation: heroUp 1s var(--ease) forwards; }
.hero .reveal-up:nth-child(1) { animation-delay: 0.15s; }
.hero .reveal-up:nth-child(2) { animation-delay: 0.32s; }
.hero .reveal-up:nth-child(3) { animation-delay: 0.48s; }
.hero .reveal-up:nth-child(4) { animation-delay: 0.64s; }
.hero .reveal-up:nth-child(5) { animation-delay: 0.8s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* =====================================================================
   Page hero (inner pages)
   ===================================================================== */
.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
  padding: 9rem 0 clamp(2.5rem, 5vw, 4rem);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease) forwards;
}
.page-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 15, 8, 0.35) 0%, transparent 34%, rgba(20, 15, 8, 0.4) 62%, rgba(20, 15, 8, 0.82) 100%),
    linear-gradient(90deg, rgba(20, 15, 8, 0.6) 0%, transparent 60%);
}
.crumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 253, 250, 0.82);
  margin-bottom: 1.1rem;
}
.crumb a { color: var(--gold); }
.crumb a:hover { text-decoration: underline; }
.crumb span { opacity: 0.55; }
.page-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  max-width: 20ch;
  color: var(--cream);
  text-shadow: 0 2px 34px rgba(15, 10, 4, 0.5);
}
.page-hero__lead {
  margin: 1.3rem 0 0;
  max-width: 56ch;
  color: rgba(255, 253, 250, 0.92);
  font-size: 1.05rem;
  text-shadow: 0 1px 20px rgba(15, 10, 4, 0.45);
}
.crumb { text-shadow: 0 1px 16px rgba(15, 10, 4, 0.5); }

/* =====================================================================
   Treatment menu + booking aside
   ===================================================================== */
.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.menu-group + .menu-group { margin-top: 3.2rem; }
.menu-group__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--clay-deep);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.4rem;
}
.menu { list-style: none; margin: 0; padding: 0; }
.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1rem 1.5rem 0.2rem;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.menu-item:hover { background: var(--sand); padding-left: 1.1rem; border-radius: var(--radius-sm); }
.menu-item__info { flex: 1; min-width: 0; }
.menu-item__info h3 {
  font-size: 1.55rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.menu-item__info h3 .pop {
  font-family: var(--font-body);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--olive-2); background: var(--gold);
  padding: 0.25rem 0.55rem; border-radius: 999px;
}
.menu-item__info p { color: var(--ink-soft); font-size: 0.96rem; margin: 0.4rem 0 0; max-width: 54ch; }
.menu-item__meta { text-align: right; flex: none; }
.menu-item__price {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 600; color: var(--olive);
  line-height: 1.1; white-space: nowrap;
}
.menu-item__dur { display: block; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-soft); margin-top: 2px; white-space: nowrap; }
.menu-item__meta .tier + .tier { margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px dashed var(--line); }

.booking-aside { position: sticky; top: 5.5rem; }
.booking-aside__card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.booking-aside__media { aspect-ratio: 4 / 3; overflow: hidden; }
.booking-aside__media img { width: 100%; height: 100%; object-fit: cover; }
.booking-aside__body { padding: 1.6rem 1.5rem 1.7rem; }
.booking-aside__body h3 { font-size: 1.55rem; margin-bottom: 0.5rem; }
.booking-aside__body p { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 1.3rem; }
.booking-aside .btn { width: 100%; }
.booking-aside .btn + .btn { margin-top: 0.7rem; }
.aside-phone {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft);
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--olive);
}

/* =====================================================================
   Moto band
   ===================================================================== */
.moto {
  background: var(--olive);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.moto::before,
.moto::after {
  content: "\201C";
  font-family: var(--font-serif);
  position: absolute;
  font-size: 16rem;
  line-height: 1;
  color: rgba(255, 253, 250, 0.06);
}
.moto::before { top: -2rem; left: 2rem; }
.moto::after { content: "\201D"; bottom: -7rem; right: 2rem; }
.moto p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  line-height: 1.32;
  max-width: 24ch;
  margin: 0 auto;
}
.moto .eyebrow { color: var(--gold); margin-bottom: 1.4rem; }
.moto .eyebrow::before, .moto .eyebrow.is-centered::after { background: var(--gold); }

/* =====================================================================
   Services grid
   ===================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.svc-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card__media { position: relative; aspect-ratio: 4 / 3.1; overflow: hidden; }
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(250, 245, 239, 0.92);
  color: var(--clay-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.svc-card__body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 1.6rem; }
.svc-card__body p { color: var(--ink-soft); font-size: 0.95rem; margin: 0.5rem 0 0; }
.svc-card__foot {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  margin-top: 1.3rem;
}
.svc-card__dur { font-size: 0.82rem; letter-spacing: 0.05em; color: var(--ink-soft); }
.svc-card__price { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: var(--olive); }
.svc-card__price small { font-size: 0.8rem; color: var(--ink-soft); font-family: var(--font-body); }
.services-more { text-align: center; margin-top: 3rem; }

/* =====================================================================
   About split
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.split__media .badge {
  position: absolute;
  bottom: -1.6rem; right: -1.2rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--line-soft);
}
.split__media .badge strong { font-family: var(--font-serif); font-size: 2.4rem; color: var(--olive); display: block; line-height: 1; }
.split__media .badge span { font-size: 0.68rem; letter-spacing: 0.18em; color: var(--ink-soft); font-weight: 600; }
.feature-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.6rem; }
.feature-list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.feature-list svg { flex: none; color: var(--clay); }
.about-cta { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* =====================================================================
   Packages
   ===================================================================== */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pkg-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--clay));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.is-featured { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.pkg-card.is-featured h3 { color: var(--cream); }
.pkg-card.is-featured .pkg-desc { color: rgba(255, 253, 250, 0.82); }
.pkg-card.is-featured .pkg-price { color: #f0dcbf; }
.pkg-flag {
  align-self: flex-start;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  background: var(--gold); color: var(--olive-2);
  padding: 0.35rem 0.7rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.pkg-card h3 { font-size: 1.85rem; margin-bottom: 0.8rem; }
.pkg-desc { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.pkg-price { font-family: var(--font-serif); font-size: 3rem; font-weight: 600; color: var(--olive); margin: 1.4rem 0 0.2rem; line-height: 1; }
.pkg-card .btn { margin-top: 1.6rem; width: 100%; }
.pkg-card.is-featured .btn { --btn-bg: var(--cream); --btn-fg: var(--olive); }

/* =====================================================================
   Reviews
   ===================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.stars { display: flex; gap: 3px; color: var(--gold); }
.review-card p { font-family: var(--font-serif); font-size: 1.28rem; line-height: 1.45; color: var(--ink); margin: 0; }
.review-card footer { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; padding-top: 0.6rem; }
.review-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--olive));
  color: var(--cream); display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
}
.review-card .who { font-weight: 700; font-size: 0.9rem; }
.review-card .who span { display: block; font-weight: 400; font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.reviews-foot { text-align: center; margin-top: 2.6rem; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.reviews-foot .rating-big { font-family: var(--font-serif); font-size: 1.4rem; }
.reviews-foot .rating-big b { color: var(--olive); }

.google-reviews-panel {
  margin-top: 2.6rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem 2rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.google-reviews-summary { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.google-reviews-brand {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}
.google-reviews-brand img { width: 26px; height: 26px; display: block; }
.google-reviews-score { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.25rem 0.5rem; }
.google-reviews-score strong { font-family: var(--font-serif); font-size: 2rem; line-height: 1; color: var(--ink); }
.google-reviews-score > span:not(.stars) { color: var(--ink-soft); font-size: 0.86rem; }
.google-reviews-score .stars { margin-left: 0.25rem; font-size: 0.95rem; letter-spacing: 0.04em; }
.google-reviews-summary p { margin: 0.3rem 0 0; color: var(--ink-soft); font-size: 0.9rem; }
.google-reviews-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.7rem; }
.google-reviews-actions .btn { padding: 0.85rem 1.25rem; }
.google-place-live {
  display: none;
  grid-column: 1 / -1;
  width: min(100%, 420px);
  min-width: 0;
  margin-inline: auto;
}
.google-reviews-panel.is-loading .google-place-live {
  display: block;
  min-height: 160px;
  border-radius: var(--radius-sm);
  background: linear-gradient(100deg, var(--sand) 30%, var(--cream) 50%, var(--sand) 70%);
  background-size: 220% 100%;
  animation: google-place-loading 1.4s ease-in-out infinite;
}
.google-reviews-panel.has-live-details .google-place-live { display: block; }
.google-place-details {
  display: block;
  width: 100%;
  max-width: 100%;
  color-scheme: light;
}
@keyframes google-place-loading {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

/* =====================================================================
   Visit / contact band
   ===================================================================== */
.visit { background: var(--olive); color: var(--cream); position: relative; overflow: hidden; }
.visit__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.visit h2 { color: var(--cream); font-size: clamp(2rem, 4.2vw, 3.2rem); }
.visit .eyebrow { color: var(--gold); }
.visit .eyebrow::before { background: var(--gold); }
.visit__lead { color: rgba(255, 253, 250, 0.82); margin: 1.1rem 0 2rem; max-width: 46ch; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  border: 1px solid rgba(255, 253, 250, 0.28);
  display: grid; place-items: center; color: var(--gold);
}
.info-list .lbl { font-size: 0.68rem; letter-spacing: 0.18em; color: rgba(255,253,250,0.6); font-weight: 600; }
.info-list .val { font-size: 1.1rem; font-weight: 500; overflow-wrap: anywhere; }
.info-list a.val:hover { color: var(--gold); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.visit__card {
  background: rgba(255, 253, 250, 0.06);
  border: 1px solid rgba(255, 253, 250, 0.16);
  border-radius: var(--radius);
  padding: 2.2rem;
  backdrop-filter: blur(4px);
}
.visit__card h3 { color: var(--cream); font-size: 1.7rem; margin-bottom: 1.2rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,253,250,0.12); font-size: 0.98rem; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row.closed { color: rgba(255,253,250,0.55); }
.hours-row b { font-weight: 600; }

/* =====================================================================
   Contact form + info
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 0.4rem; }
.form-card > p { color: var(--ink-soft); margin: 0 0 1.8rem; font-size: 0.98rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--clay-deep);
  margin-bottom: 0.5rem;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--sand);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-soft); opacity: 0.7; }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--clay);
}
.field textarea { resize: vertical; min-height: 140px; }
.field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-card .btn { width: 100%; margin-top: 0.4rem; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }
.form-status { border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-size: 0.95rem; margin-top: 1rem; }
.form-status.ok { background: #e7ecdf; color: #46552f; }
.form-status.err { background: #f3e0d7; color: #8a3f24; }
.form-status[hidden] { display: none; }

.info-panel { display: grid; gap: 1.5rem; }
.info-panel__card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.info-panel__card h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }
.info-panel .info-list .ic { border-color: var(--line); color: var(--clay-deep); }
.info-panel .info-list .lbl { color: var(--ink-soft); }
.info-panel .info-list .val { color: var(--ink); font-size: 1.02rem; }
.info-panel .info-list a.val:hover { color: var(--clay-deep); }
.hours-card .hours-row { border-color: var(--line-soft); }
.hours-card .hours-row.closed { color: var(--ink-soft); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; filter: saturate(0.9) contrast(0.96); }
.map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.map-actions .btn { min-width: 210px; }

/* =====================================================================
   About — values grid + stats
   ===================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .vic {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sand); color: var(--clay-deep);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.value-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.value-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-band .stat strong {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600; color: var(--gold); display: block; line-height: 1;
}
.stat-band .stat span { font-size: 0.72rem; letter-spacing: 0.18em; color: rgba(255,253,250,0.72); font-weight: 600; }

/* =====================================================================
   Instagram teaser
   ===================================================================== */
.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.7rem; margin-top: 2.6rem; }
.ig-strip a { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; }
.ig-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ig-strip a:hover img { transform: scale(1.08); }
.ig-strip a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(97, 72, 28, 0); transition: background 0.4s var(--ease);
}
.ig-strip a:hover::after { background: rgba(97, 72, 28, 0.28); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(255, 253, 250, 0.72); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; font-weight: 700; margin-bottom: 1.2rem; }
.site-footer .brand { color: var(--cream); margin-bottom: 1rem; }
.footer-brand-logo {
  display: block;
  width: clamp(7.5rem, 12vw, 9.5rem);
  margin-bottom: 1.25rem;
}
.footer-brand-logo img { display: block; width: 100%; height: auto; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,253,250,0.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,253,250,0.5);
}
.social-row { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,253,250,0.2);
  display: grid; place-items: center; color: var(--cream);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.social-row a:hover { background: var(--clay); transform: translateY(-3px); }

/* =====================================================================
   Mobile booking bar
   ===================================================================== */
.booking-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: 1px;
  background: var(--line);
  box-shadow: 0 -8px 24px rgba(44,34,19,0.14);
}
.booking-bar a {
  flex: 1;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: filter 0.18s var(--ease), transform 0.12s var(--ease), box-shadow 0.18s var(--ease);
}
.booking-bar .call { background: var(--cream); color: var(--ink); }
.booking-bar .book { background: var(--olive); color: var(--cream); }
.booking-bar a:active { filter: brightness(0.92); transform: scale(0.985); }
.booking-bar a:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--gold);
}

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* =====================================================================
   Mobile menu drawer
   ===================================================================== */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--cream); color: var(--ink);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  padding: 5rem var(--gutter) 2rem;
}
.mobile-drawer.is-open { transform: none; }
.mobile-drawer a { font-family: var(--font-serif); font-size: 2rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line-soft); }
.mobile-drawer .close { position: absolute; top: 1.5rem; right: var(--gutter); background: none; border: none; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--ink); }
.lang-toggle--drawer { display: inline-flex; align-self: flex-start; margin-top: 2rem; color: var(--olive); }
.lang-toggle--drawer button { padding: 6px 16px; font-size: 0.8rem; }

/* Lock background scroll while the mobile drawer is open */
html.nav-open { overflow: hidden; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 991px) {
  .services-grid, .pkg-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .visit__grid { grid-template-columns: minmax(0, 1fr); }
  .menu-layout { grid-template-columns: minmax(0, 1fr); }
  .booking-aside { position: static; order: -1; max-width: 460px; }
  .booking-aside__media { aspect-ratio: 16 / 7; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .split__media { max-width: 480px; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  body { font-size: 16px; }
  .nav, .header-actions .btn, .header-actions .lang-toggle { display: none; }
  .menu-toggle { display: flex; }
  .services-grid, .pkg-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
  .booking-bar { display: flex; }
  body { padding-bottom: 3.6rem; }
  .hero { min-height: 92svh; }
  .hero__scroll { display: none; }
  .footer-bottom { flex-direction: column; }
  .menu-item { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .menu-item__meta {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.2rem;
  }
  .menu-item__meta .tier { display: flex; align-items: baseline; gap: 0.5rem; }
  .menu-item__meta .tier + .tier { margin-top: 0; padding-top: 0; border-top: none; }
  .menu-item__price { font-size: 1.5rem; }
  .menu-item__dur { display: inline; margin-top: 0; white-space: normal; }
  .menu-item__action { margin: 0 0 0 auto; }
  .page-hero { min-height: 56svh; }
  .value-grid { grid-template-columns: 1fr; }
  .map-embed iframe { height: 320px; }
  .google-reviews-panel { grid-template-columns: 1fr; align-items: stretch; }
  .google-reviews-actions { justify-content: stretch; }
  .google-reviews-actions .btn { flex: 1 1 220px; }
}
@media (max-width: 479px) {
  .ig-strip { grid-template-columns: repeat(2, 1fr); }
  .hero__meta { gap: 1.2rem; }
  .split__media .badge { right: 0; }
  .google-reviews-summary { align-items: flex-start; }
  .google-reviews-actions, .map-actions { flex-direction: column; }
  .google-reviews-actions .btn, .map-actions .btn { flex: 0 0 auto; width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero__media img { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
