/* ══════════════════════════════════════════════
   LOTUS & BAMBOO — Premium Spa CSS
   Color System:
   --forest:    #1a3a2a  (dark green bg)
   --sage:      #2d5a3d  (mid green)
   --moss:      #4a7c59  (bamboo)
   --teal:      #3d7a8a  (lotus blue)
   --light-teal:#5ba3b8
   --gold:      #c9a84c  (accent)
   --gold-lt:   #e2c97a
   --cream:     #f5f0e8  (text on dark)
   --ivory:     #faf7f2  (section bg)
   --charcoal:  #1c1c1e  (deep bg)
══════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:     #1a3a2a;
  --sage:       #2d5a3d;
  --moss:       #4a7c59;
  --teal:       #3d7a8a;
  --teal-lt:    #5ba3b8;
  --gold:       #c9a84c;
  --gold-lt:    #e2c97a;
  --gold-dk:    #a07a28;
  --cream:      #f5f0e8;
  --ivory:      #faf7f2;
  --charcoal:   #111614;
  --text-dark:  #1a2420;
  --text-muted: #6b7c74;
  --radius:     12px;
  --radius-lg:  24px;
  --transition: .4s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }
button { border: none; cursor: pointer; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-title em {
  color: var(--moss);
  font-style: italic;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(74,124,89,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,124,89,.5);
  background: linear-gradient(135deg, #5c9b6e 0%, var(--sage) 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.btn-outline {
  background: transparent;
  color: var(--moss);
  border: 1.5px solid var(--moss);
}

.btn-outline:hover {
  background: var(--moss);
  color: var(--cream);
}

.btn-full { width: 100%; justify-content: center; }

.hidden { display: none !important; }

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  z-index: 9999;
  transition: width .1s linear;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(26,58,42,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .8rem 3rem;
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.logo-mark svg { width: 44px; height: 44px; }
.logo-mark-sm svg { width: 36px; height: 36px; }

.logo-mark img { width: 56px; height: 56px; object-fit: contain; display: block; }
.logo-mark-sm img { width: 50px; height: 50px; object-fit: contain; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .03em;
}

.logo-main em { color: var(--gold); }

.logo-sub {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,240,232,.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,.85);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -.3rem;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--charcoal) !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-weight: 500;
  white-space: nowrap;
  transition: box-shadow var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(201,168,76,.5);
  transform: translateY(-1px);
  color: var(--charcoal) !important;
}

/* ─── LANG SWITCH ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  padding: .2rem .35rem;
  transition: var(--transition);
}

.lang-switch:hover {
  border-color: rgba(201,168,76,.35);
}

.lang-opt {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(245,240,232,.45);
  padding: .28rem .55rem;
  border-radius: 50px;
  transition: all .25s ease;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lang-opt:hover { color: rgba(245,240,232,.85); }

.lang-opt.active {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--charcoal);
}

.lang-divider {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* ─── NAV TOGGLE ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--charcoal) 0%, #0d2318 40%, #0a1e14 70%, #0d2318 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--moss), transparent);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal), transparent);
  bottom: -50px; right: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold), transparent);
  top: 50%; right: 25%;
  opacity: .12;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-15px,25px) scale(.97); }
}

/* Bamboo decorations (realistic segmented SVG) */
.bamboo {
  position: absolute;
  bottom: 0;
  height: 92vh;
  max-height: 860px;
  width: clamp(120px, 14vw, 200px);
  pointer-events: none;
  z-index: 1;
}

.bamboo svg { width: 100%; height: 100%; overflow: visible; }

.bamboo-left  { left: -1%;  opacity: .9; }
.bamboo-right { right: -1%; opacity: .9; }

/* whole stalk sways gently from its base */
.bamboo-culm {
  transform-origin: 50% 100%;
  animation: culmSway 9s ease-in-out infinite;
  animation-delay: var(--cdelay, 0s);
}

.culm-back { opacity: .55; }

@keyframes culmSway {
  0%, 100% { transform: rotate(-1.1deg); }
  50%      { transform: rotate(1.4deg); }
}

/* leaf branches sway a touch more, out of phase */
.bamboo-branch {
  transform-origin: 0% 50%;
  animation: branchSway 6s ease-in-out infinite;
  animation-delay: var(--bdelay, 0s);
}

@keyframes branchSway {
  0%, 100% { transform: rotate(-2.5deg); }
  50%      { transform: rotate(3deg); }
}

/* subtle film grain over the hero for depth */
.hero-grain {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Ripple rings */
.ripple-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.1);
  transform: translate(-50%,-50%);
  animation: rippleExpand 8s ease-out infinite;
  pointer-events: none;
}

.r1 { width: 300px; height: 300px; animation-delay: 0s; }
.r2 { width: 500px; height: 500px; animation-delay: -2.5s; }
.r3 { width: 700px; height: 700px; animation-delay: -5s; }

@keyframes rippleExpand {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.6); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.3); }
}

/* Hero content */
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(245,240,232,.4);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(245,240,232,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.lotus-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 22vw, 300px);
  opacity: .18;
  animation: lotusFloat 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes lotusFloat {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50% { transform: translateY(calc(-50% - 15px)) rotate(3deg); }
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-fade { transform: translateY(20px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .3s !important; }
.delay-3 { transition-delay: .45s !important; }

/* ══════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 3rem;
  flex: 1;
  min-width: 140px;
}

.stat-figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-left: .1rem;
}

.stat-label {
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,240,232,.65);
  margin-top: .3rem;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(245,240,232,.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: 8rem 0;
  background: var(--ivory);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
}

.about-img-bg {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--forest) 0%, var(--sage) 40%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}

.about-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 50 C20 42, 10 30, 16 20 C20 12, 28 15, 30 25 C32 15, 40 12, 44 20 C50 30, 40 42, 30 50Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  background-size: 80px;
}

.about-img-bg::after {
  content: '🪷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  opacity: .15;
  filter: blur(2px);
}

.about-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  animation: rotateBadge 20s linear infinite;
}

@keyframes rotateBadge {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.about-card-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: 14px;
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.card-float-icon { font-size: 1.6rem; }

.about-card-float strong {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-card-float small {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 300;
}

.about-text { padding-left: 2rem; }

.about-desc {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.about-desc strong { color: var(--moss); font-weight: 500; }

.about-pillars {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.about-pillars li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-dark);
}

.pillar-icon { color: var(--gold); font-size: 1rem; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: 8rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.services-header .section-title { color: var(--cream); }
.services-header .section-title em { color: var(--gold); }

.services-intro {
  color: rgba(245,240,232,.55);
  max-width: 500px;
  margin: 1rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
  transition-delay: var(--delay, 0s);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(74,124,89,.06) 0%, transparent 60%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(74,124,89,.15);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74,124,89,.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .card-glow { opacity: 1; }

.card-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  opacity: .85;
}

.card-icon-wrap svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .8rem;
}

.service-card p {
  font-size: .88rem;
  color: rgba(245,240,232,.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.card-meta span {
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(245,240,232,.35);
  text-transform: uppercase;
}

.card-price {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  letter-spacing: .02em !important;
  color: var(--gold) !important;
  text-transform: none !important;
}

.card-meta > span:nth-child(2) { position: relative; padding-left: .7rem; }
.card-meta > span:nth-child(2)::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 11px;
  background: rgba(245,240,232,.2);
}

.card-link { margin-left: auto; }

.card-link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gold);
  transition: letter-spacing var(--transition), color var(--transition);
  text-transform: uppercase;
}

.card-link:hover { letter-spacing: .15em; color: var(--gold-lt); }

/* "Explore all" feature card */
.service-card-all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background: linear-gradient(160deg, rgba(74,124,89,.16), rgba(61,122,138,.1));
  border-color: rgba(201,168,76,.25);
}

.service-card-all .card-icon-wrap { margin: 0 auto 1.5rem; }
.service-card-all h3 { color: var(--cream); }
.service-card-all p { margin-bottom: 1.2rem; }

.card-all-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing var(--transition), color var(--transition);
}

.service-card-all:hover .card-all-link { letter-spacing: .16em; color: var(--gold-lt); }

/* ══════════════════════════════════════════════
   EXPERIENCE STRIP
══════════════════════════════════════════════ */
.experience-strip {
  background: linear-gradient(135deg, #0d2318 0%, var(--forest) 50%, #0d2318 100%);
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
  padding: 6rem 10%;
  position: relative;
  overflow: hidden;
}

.experience-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(61,122,138,.15) 0%, transparent 70%);
}

.exp-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.exp-text h2 em { color: var(--gold); }

.exp-text p {
  color: rgba(245,240,232,.6);
  margin-bottom: 2rem;
  max-width: 420px;
}

.exp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.exp-feat {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}

.exp-feat span {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.exp-feat p {
  font-size: .88rem;
  color: rgba(245,240,232,.7);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  padding: 8rem 0;
  background: var(--ivory);
}

.testimonials .container { text-align: center; }

.testimonial-slider {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 10%;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: .2rem;
  margin-bottom: 1.5rem;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

blockquote::before { content: '\201C'; }
blockquote::after { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss), var(--teal));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.testimonial-author strong {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
}

.testimonial-author small {
  font-size: .72rem;
  color: var(--text-muted);
  text-align: left;
  display: block;
  letter-spacing: .05em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--moss);
  color: var(--moss);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  line-height: 1;
}

.slider-btn:hover {
  background: var(--moss);
  color: white;
}

.slider-dots {
  display: flex;
  gap: .5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74,124,89,.25);
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--moss);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════
   BOOKING
══════════════════════════════════════════════ */
.booking {
  padding: 8rem 0;
  background: linear-gradient(160deg, #0d2318 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.booking-bg { position: absolute; inset: 0; pointer-events: none; }

.booking-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .15;
}

.b1 {
  width: 600px; height: 600px;
  background: var(--moss);
  top: -200px; left: -200px;
}

.b2 {
  width: 400px; height: 400px;
  background: var(--teal);
  bottom: -100px; right: -100px;
}

.booking .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.booking-text .section-title { color: var(--cream); }
.booking-text .section-title em { color: var(--gold); }
.booking-text .section-eyebrow { margin-bottom: 1rem; }

.booking-text p {
  color: rgba(245,240,232,.6);
  margin: 1rem 0 2rem;
  line-height: 1.8;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .85rem;
  color: rgba(245,240,232,.75);
  transition: color var(--transition);
}

.contact-item:hover { color: var(--gold); }

.ci-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(74,124,89,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

/* Form */
.booking-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(74,124,89,.6);
  background: rgba(255,255,255,.1);
}

.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}

.form-group textarea { resize: vertical; min-height: 90px; }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.6);
  cursor: pointer;
}

/* Form submit */
.btn-full .btn-text,
.btn-full .btn-success { transition: var(--transition); }

/* Booking CTA panel (MassageBook redirect) */
.booking-cta {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bc-rating {
  display: inline-block;
  color: var(--gold);
  letter-spacing: .15em;
  font-size: .95rem;
  margin-bottom: 1.2rem;
}
.bc-rating em { color: var(--cream); font-style: normal; font-size: .8rem; letter-spacing: .05em; margin-left: .3rem; }

.booking-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .6rem;
}

.bc-lead {
  color: rgba(245,240,232,.65) !important;
  margin: 0 0 1.6rem !important;
  font-size: .92rem;
}

.bc-list {
  display: grid;
  gap: .8rem;
  margin-bottom: 2rem;
}

.bc-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: rgba(245,240,232,.85);
}

.bc-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(74,124,89,.25);
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
}

.bc-btn { font-size: .9rem; padding: 1rem 2rem; }

.bc-note {
  text-align: center;
  font-size: .72rem !important;
  color: rgba(245,240,232,.4) !important;
  margin: 1rem 0 0 !important;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-brand .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-top: .6rem;
}

.footer-brand .logo-sub {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,240,232,.4);
}

.footer-tagline {
  font-size: .82rem;
  color: rgba(245,240,232,.45);
  line-height: 1.7;
  margin-top: .8rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.footer-links h4, .footer-contact h4, .footer-hours h4 {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links ul li {
  margin-bottom: .6rem;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(245,240,232,.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: .83rem;
  color: rgba(245,240,232,.5);
  line-height: 1.8;
  margin-bottom: .4rem;
}

.footer-hours {
  margin-top: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: .72rem;
  color: rgba(245,240,232,.3);
  letter-spacing: .06em;
}

.footer-bottom p em { color: rgba(245,240,232,.5); font-style: normal; }

/* ══════════════════════════════════════════════
   GALLERY / OUR SPACE
══════════════════════════════════════════════ */
.gallery {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--ivory) 0%, #f0ebe1 100%);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
}

.gallery-intro {
  color: var(--text-muted);
  max-width: 520px;
  margin: 1rem auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1.2rem;
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(26,58,42,.1);
}

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.tile-art {
  position: absolute;
  inset: 0;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.tile-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cpath d='M35 58 C24 50, 12 36, 19 24 C24 15, 32 19, 35 30 C38 19, 46 15, 51 24 C58 36, 46 50, 35 58Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
  background-size: 90px;
}

.gallery-tile:hover .tile-art { transform: scale(1.08); }

/* real-photo tiles */
.tile-photo {
  background-size: cover;
  background-position: center;
}
.tile-photo::after {
  background: linear-gradient(160deg, transparent 50%, rgba(10,18,14,.25));
  background-size: auto;
}

/* CSS-art backgrounds — always look intentional, never broken */
.art-reception { background: linear-gradient(150deg, #1a3a2a 0%, #2d5a3d 50%, #3d7a8a 100%); }
.art-massage   { background: linear-gradient(150deg, #3d7a8a 0%, #2c6478 100%); }
.art-stones    { background: linear-gradient(150deg, #4a4036 0%, #2a2420 100%); }
.art-garden    { background: linear-gradient(150deg, #2d5a3d 0%, #4a7c59 60%, #5ba3b8 100%); }
.art-oils      { background: linear-gradient(150deg, #a07a28 0%, #c9a84c 100%); }

.gallery-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.4rem 1.2rem;
  background: linear-gradient(0deg, rgba(10,18,14,.85) 0%, transparent 100%);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: .02em;
  transform: translateY(8px);
  opacity: .85;
  transition: transform var(--transition), opacity var(--transition);
}

.gallery-tile figcaption::before {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: var(--gold);
  margin-bottom: .6rem;
  transition: width var(--transition);
}

.gallery-tile:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-tile:hover figcaption::before { width: 50px; }

/* ── Featured experience cards (Our Space) ── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: 0 12px 40px rgba(26,58,42,.14);
  display: block;
}

.exp-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.exp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,18,14,.85) 0%, rgba(10,18,14,.15) 45%, transparent 75%);
  transition: background var(--transition);
}

.exp-card:hover .exp-card-img { transform: scale(1.07); }
.exp-card:hover::after { background: linear-gradient(0deg, rgba(10,18,14,.9) 0%, rgba(26,58,42,.35) 55%, rgba(26,58,42,.1) 100%); }

.exp-card-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 2rem 1.8rem 1.8rem;
  color: var(--cream);
}

.exp-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.exp-card-body h3::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
  margin-bottom: .8rem;
  transition: width var(--transition);
}

.exp-card:hover .exp-card-body h3::before { width: 60px; }

.exp-card-link {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: .85;
  transition: opacity var(--transition), letter-spacing var(--transition);
}

.exp-card:hover .exp-card-link { opacity: 1; letter-spacing: .16em; }

/* ── Experience detail pages ── */
.exp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  background-size: cover;
  background-position: center;
}

.exp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,18,14,.92) 0%, rgba(10,18,14,.5) 50%, rgba(10,18,14,.55) 100%);
}

.exp-hero .container { position: relative; z-index: 1; }
.exp-hero .section-title { color: var(--cream); font-size: clamp(2.6rem, 6vw, 4.5rem); }
.exp-hero .section-title em { color: var(--gold); }

.exp-hero-lead {
  color: rgba(245,240,232,.82);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 1rem;
}

.exp-detail { padding: 5rem 2rem 5rem; max-width: 1100px; }

.exp-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.exp-intro p { color: var(--text-dark); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.2rem; }

.exp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
}

.exp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.exp-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(26,58,42,.12);
  transition: transform var(--transition);
}
.exp-gallery img:hover { transform: translateY(-5px) scale(1.01); }

@media (max-width: 860px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { height: 320px; }
  .exp-gallery { grid-template-columns: 1fr 1fr; }
  .exp-gallery img { height: 200px; }
}
@media (max-width: 480px) {
  .exp-gallery { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   JOURNAL / BLOG
══════════════════════════════════════════════ */
.journal {
  padding: 8rem 0;
  background: var(--ivory);
}

.journal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.journal-all {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moss);
  white-space: nowrap;
  transition: color var(--transition), letter-spacing var(--transition);
}

.journal-all:hover { color: var(--gold); letter-spacing: .12em; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.journal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26,58,42,.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(26,58,42,.16);
}

.journal-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.journal-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  /* subtle bottom gradient for depth over the photo */
  background: linear-gradient(180deg, transparent 55%, rgba(10,18,14,.25));
}

.thumb-1 { background: linear-gradient(140deg, #2d5a3d, #3d7a8a); }
.thumb-2 { background: linear-gradient(140deg, #1a3a2a, #4a7c59); }
.thumb-3 { background: linear-gradient(140deg, #a07a28, #c9a84c); }

.journal-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: rgba(255,255,255,.9);
  color: var(--forest);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
}

.journal-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }

.journal-date {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: .7rem;
}

.journal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: .7rem;
}

.journal-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}

.journal-card .card-link { color: var(--moss); }
.journal-card .card-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f0ebe1 0%, var(--ivory) 100%);
}

.faq-container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.faq-intro { position: sticky; top: 100px; }
.faq-intro p { color: var(--text-muted); margin: 1rem 0 2rem; max-width: 340px; }

.faq-item {
  border-bottom: 1px solid rgba(26,58,42,.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--moss); }

.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transition: transform var(--transition);
}

.faq-icon::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }

.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}

.faq-a p {
  padding: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
  max-width: 90%;
}

/* ══════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════ */
.newsletter {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 60%, var(--teal) 130%);
  padding: 4.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 66 C28 56, 14 40, 22 26 C28 16, 38 21, 40 34 C42 21, 52 16, 58 26 C66 40, 52 56, 40 66Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
  background-size: 110px;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.newsletter-text h2 em { color: var(--gold-lt); }
.newsletter-text p { color: rgba(245,240,232,.7); max-width: 440px; font-size: .92rem; }

.newsletter-form {
  display: flex;
  gap: .7rem;
  flex: 1;
  min-width: 290px;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .85rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.newsletter-form input::placeholder { color: rgba(245,240,232,.5); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,.18); }
.newsletter-form .btn { white-space: nowrap; }

/* ══════════════════════════════════════════════
   FOOTER SOCIAL + MAP + BACK TO TOP
══════════════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,240,232,.2);
  color: rgba(245,240,232,.6);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  border-color: transparent;
  transform: translateY(-3px);
}

.booking-map {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  height: 200px;
  position: relative;
}

.booking-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.4) brightness(.85) contrast(1.05);
  transition: filter var(--transition);
}

.booking-map:hover iframe { filter: grayscale(0) brightness(1) contrast(1); }

.to-top {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss), var(--forest));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(26,58,42,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 900;
}

.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: linear-gradient(135deg, #5c9b6e, var(--sage)); transform: translateY(-3px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
/* ── Navbar compression for the 1025–1100 desktop range ── */
@media (max-width: 1100px) {
  .navbar       { padding: 1.1rem 1.8rem; }
  .navbar.scrolled { padding: .75rem 1.8rem; }
  .nav-links    { gap: 1.4rem; }
  .nav-link     { font-size: .7rem; letter-spacing: .07em; }
  .logo-mark svg { width: 38px; height: 38px; }
  .logo-main    { font-size: 1.1rem; }
}

/* ── Tablet / mobile nav: hamburger overlay kicks in ── */
@media (max-width: 1024px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: .8rem 1.5rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    /* full-viewport overlay via inset (iOS-safe, no 100vh chrome cut) */
    background: rgba(17,22,20,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    /* above all page stacking contexts (animations, transforms, filters) */
    z-index: 9500;
    overflow-y: auto;
  }

  /* while the menu is open, the navbar must NOT have backdrop-filter/transform,
     or it becomes the containing block for the fixed overlay (shrinking it to
     the navbar). This keeps the overlay anchored to the full viewport. */
  .navbar.nav-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
  }

  .nav-links.open {
    display: flex;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .nav-link { font-size: 1.05rem; letter-spacing: .12em; }
  .nav-cta  { font-size: .9rem; padding: .7rem 2rem; }

  .nav-toggle { display: flex; z-index: 9600; position: relative; }
  .lang-switch { z-index: 9600; position: relative; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* layout */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about .container { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: flex; justify-content: center; }
  .about-text { padding-left: 0; }
  .experience-strip { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .g-tall { grid-row: auto; }
  .g-wide { grid-column: span 2; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid .journal-card:last-child { grid-column: 1 / -1; }
  .faq-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-intro { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── Phones ── */
@media (max-width: 760px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero-title { font-size: 2.8rem; }
  .lotus-float { display: none; }
  .bamboo { opacity: .35; width: 90px; }
  .br-d { display: none; }

  .stats-strip { gap: 0; padding: 2rem 1rem; }
  .stat-item { padding: 1rem 1.2rem; min-width: 45%; }
  .stat-divider { display: none; }

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

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-tall { grid-row: span 1; }

  .journal-grid { grid-template-columns: 1fr; }
  .journal-grid .journal-card:last-child { grid-column: auto; }
  .journal-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .booking .container { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .newsletter-form { max-width: 100%; width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .about-pillars { grid-template-columns: 1fr; }
  .testimonial-card { padding: 0 5%; }
  .exp-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about-img-wrap { max-width: 300px; }
  .booking-form { padding: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-wide { grid-column: auto; }
  .stat-item { min-width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 2rem; }
}

/* ══════════════════════════════════════════════
   ANIMATION POLISH
══════════════════════════════════════════════ */
/* gold shimmer sweep across the hero eyebrow & gold em */
.hero-title em {
  background: linear-gradient(100deg, var(--gold) 20%, var(--gold-lt) 40%, #fff4d6 50%, var(--gold-lt) 60%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
  to { background-position: 200% center; }
}

/* card icon gently breathes when its card is hovered */
.service-card:hover .card-icon-wrap {
  animation: iconPulse 1.6s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: .85; }
  50%      { transform: translateY(-3px) scale(1.06); opacity: 1; }
}

/* accessibility: honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .reveal-left, .reveal-right, .reveal-fade { opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════════
   SUBPAGES (services · journal · staff)
══════════════════════════════════════════════ */
.subpage { background: var(--ivory); }

/* keep the navbar readable over light pages from the start */
.navbar-solid {
  background: rgba(26,58,42,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}

.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

/* page header */
.page-head {
  position: relative;
  padding: 10rem 0 4rem;
  background: linear-gradient(160deg, var(--charcoal) 0%, #0d2318 55%, #0a1e14 100%);
  overflow: hidden;
}

.page-head-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(74,124,89,.25), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(61,122,138,.22), transparent 45%);
  pointer-events: none;
}

.page-head .container { position: relative; z-index: 1; }
.page-head .section-title { color: var(--cream); }
.page-head .section-title em { color: var(--gold); }

.page-back {
  display: inline-block;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.6);
  margin-bottom: 1.4rem;
  transition: color var(--transition);
}
.page-back:hover { color: var(--gold); }

.page-head-intro {
  color: rgba(245,240,232,.65);
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.8;
}

/* catalog */
.svc-page { padding: 5rem 2rem 6rem; }

.svc-cat { margin-bottom: 4.5rem; }

.svc-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.svc-cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,.4), transparent);
}

.svc-cat-note {
  color: var(--text-muted);
  font-size: .9rem;
  margin: -1rem 0 2rem;
}

.svc-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(26,58,42,.07);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 28px rgba(26,58,42,.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.svc-row:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(26,58,42,.14); }

.svc-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(140deg, var(--sage), var(--teal));
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(26,58,42,.18));
  pointer-events: none;
}

.svc-row:hover .svc-img img { transform: scale(1.06); }

.svc-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .5rem;
}

.svc-info p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 640px;
}

.svc-options { display: flex; flex-wrap: wrap; gap: .7rem; }

.svc-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: .6rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--moss), var(--forest));
  color: var(--cream);
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(74,124,89,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.svc-opt strong { font-size: .9rem; font-weight: 500; }
.svc-opt span { font-size: .76rem; opacity: .8; }

.svc-opt:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(74,124,89,.45);
}

.svc-opt-inquire {
  flex-direction: row;
  background: transparent;
  color: var(--moss);
  border: 1.5px solid var(--moss);
  box-shadow: none;
  font-size: .8rem;
  letter-spacing: .05em;
  padding: .7rem 1.4rem;
}

.svc-opt-inquire:hover { background: var(--moss); color: var(--cream); box-shadow: 0 8px 22px rgba(74,124,89,.35); }

@media (max-width: 680px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-img { aspect-ratio: 16/9; }
  .page-head { padding: 8rem 0 3rem; }
}

/* ── Journal page ── */
.journal-page { max-width: 760px; padding: 4rem 2rem 5rem; }

.article { margin-bottom: 4rem; scroll-margin-top: 100px; }

.article-hero {
  height: 240px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,18,14,.15), transparent 40%, rgba(10,18,14,.25));
}

.article-hero .journal-tag { top: 1.2rem; left: 1.2rem; }

.article .journal-date { display: block; margin-bottom: .5rem; }

.article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.article p {
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage);
  margin: 2rem 0 .7rem;
  line-height: 1.25;
}

.article-lead {
  font-size: 1.18rem !important;
  line-height: 1.8 !important;
  color: var(--charcoal) !important;
  font-weight: 400;
}

.article-lead::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 600;
  float: left;
  line-height: .8;
  padding: .4rem .55rem 0 0;
  color: var(--moss);
}

.article-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(26,58,42,.1);
}

/* ── Staff page ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 2.2rem;
  padding: 4rem 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.staff-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26,58,42,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.staff-card:hover { transform: translateY(-8px); box-shadow: 0 22px 55px rgba(26,58,42,.16); }

.staff-photo {
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.staff-ph-1 { background: linear-gradient(140deg, #2d5a3d, #3d7a8a); }
.staff-ph-2 { background: linear-gradient(140deg, #a07a28, #c9a84c); }

.staff-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .05em;
}

.staff-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.staff-body { padding: 1.8rem 1.6rem 2rem; text-align: center; }
.staff-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--charcoal); }
.staff-role { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk); margin: .35rem 0 .4rem; }
.staff-license {
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(26,58,42,.1);
}
.staff-body p { color: var(--text-muted); font-size: .9rem; line-height: 1.75; }
.staff-body p[data-i18n*="bio"] { text-align: left; margin-bottom: .9rem; }

@media (max-width: 720px) { .staff-grid { grid-template-columns: minmax(0, 420px); } }
