/* ============================================
   SHEN BALANCE SPA — Design tokens
   ============================================ */
:root {
  --cream: #F7F2E9;
  --cream-deep: #EFE6D6;
  --paper: #FBF8F2;
  --sage: #8FA692;
  --sage-deep: #56705B;
  --sage-dark: #33452F;
  --blush: #E8C6BE;
  --sky: #C6D3D9;
  --sand: #D8C4A0;
  --gold: #B99A5B;
  --ink: #2B2A24;
  --ink-soft: #5C5A4E;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
  --font-label: "Work Sans", sans-serif;

  --container: 1180px;
  --ring-slow: 40s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--sage-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 480; }
h2 em, h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.btn-primary {
  background: var(--sage-dark);
  color: var(--paper);
  box-shadow: 0 10px 30px -12px rgba(51,69,47,.55);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(185,154,91,.55); }
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: rgba(51,69,47,.35);
}
.btn-outline:hover { border-color: var(--sage-dark); background: var(--sage-dark); color: var(--paper); }
.btn-ghost {
  background: rgba(255,255,255,.14);
  color: var(--paper);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--paper); color: var(--sage-dark); }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }
.reveal-delay-5 { transition-delay: .6s; }
.reveal-delay-6 { transition-delay: .72s; }

/* ============ Shen ring signature motif ============ */
.shen-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(185,154,91,.35);
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.06); opacity: .9; }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247,242,233,.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: rgba(51,69,47,.08);
  box-shadow: 0 8px 30px -20px rgba(0,0,0,.25);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  padding: 4px;
  background: radial-gradient(circle, rgba(251,248,242,.96) 58%, rgba(251,248,242,.55) 100%);
  box-shadow: 0 4px 16px -4px rgba(43,42,36,.25);
  transition: box-shadow .4s ease, background .4s ease, transform .4s ease;
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name .en { font-size: 1.28rem; letter-spacing: .01em; color: inherit; }
.brand-name .es { font-family: var(--font-label); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.site-header, .site-header .brand-name .en { color: var(--sage-dark); }
.site-header:not(.scrolled) { color: var(--paper); }
.site-header:not(.scrolled) .brand-name .en,
.site-header:not(.scrolled) .nav-links a,
.site-header:not(.scrolled) .lang { color: var(--paper); }
.site-header:not(.scrolled) .brand-mark {
  background: radial-gradient(circle, rgba(251,248,242,.92) 58%, rgba(251,248,242,.4) 100%);
  box-shadow: 0 6px 20px -2px rgba(0,0,0,.4);
}

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-dark);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right .35s ease;
}
.nav-links a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-cta {
  white-space: nowrap;
  font-weight: 600; letter-spacing: .1em; font-size: 12px;
  padding: 13px 26px 13px 20px;
  border: 1px solid rgba(185,154,91,.55);
  box-shadow: 0 10px 26px -14px rgba(51,69,47,.55), inset 0 0 0 1px rgba(251,248,242,.06);
}
.header-cta svg { flex-shrink: 0; transition: transform .4s cubic-bezier(.34,1.4,.5,1); }
.header-cta:hover { border-color: var(--gold); }
.header-cta:hover svg { transform: rotate(-10deg) scale(1.1); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 1px; background: currentColor; transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--sage-dark);
  color: var(--paper);
}
.hero-media {
  position: absolute; inset: 0; bottom: 96px;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 22s ease-in-out infinite alternate;
}
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,42,36,.3) 0%, rgba(43,42,36,0) 32%, rgba(43,42,36,.6) 80%, rgba(43,42,36,.9) 100%);
}

.hero-rings { position: absolute; right: -180px; top: 42%; transform: translateY(-50%); width: 620px; height: 620px; z-index: 1; opacity: .5; }
.hero-rings .shen-ring:nth-child(1) { inset: 0; animation: breathe 9s ease-in-out infinite; }
.hero-rings .shen-ring:nth-child(2) { inset: 60px; animation: breathe 9s ease-in-out infinite 1.2s; }
.hero-rings .shen-ring:nth-child(3) { inset: 120px; animation: breathe 9s ease-in-out infinite 2.4s; }

.hero-body { position: relative; z-index: 2; flex: 1; display: flex; align-items: flex-end; padding-bottom: 76px; }
.hero-inner { width: 100%; }
.hero-eyebrow { color: var(--sand); }
.hero-eyebrow::before { background: var(--sand); }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.7rem, 6.4vw, 5.3rem);
  line-height: 1.04;
  margin: 26px 0 26px;
  max-width: 15ch;
}
.hero-lede {
  max-width: 44ch;
  font-size: 1.02rem;
  color: rgba(251,248,242,.88);
  margin-top: 16px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.hero-ctas .btn {
  padding: 14px 26px; font-weight: 500; letter-spacing: .09em;
}
.hero-ctas .btn svg { flex-shrink: 0; transition: transform .4s cubic-bezier(.34,1.4,.5,1); }
.hero-ctas .btn-primary {
  border-color: rgba(185,154,91,.5);
  box-shadow: 0 14px 34px -16px rgba(0,0,0,.6), inset 0 0 0 1px rgba(251,248,242,.05);
}
.hero-ctas .btn-primary:hover svg { transform: scale(1.12); }
.hero-ctas .btn-ghost {
  background: rgba(251,248,242,.06);
  border-color: rgba(251,248,242,.4);
}
.hero-ctas .btn-ghost:hover { background: transparent; border-color: var(--gold); color: var(--sand); }
.hero-ctas .btn-ghost:hover svg { transform: translateX(3px); }

.hero-statbar { position: relative; z-index: 2; flex-shrink: 0; height: 96px; background: var(--sage-dark); border-top: 1px solid rgba(251,248,242,.14); display: flex; align-items: center; }
.hero-stats { display: flex; gap: 54px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--sand); }
.hero-stats .stat span { font-family: var(--font-label); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(251,248,242,.72); }

.scroll-cue {
  position: absolute; bottom: 116px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-label); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(251,248,242,.75);
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(rgba(251,248,242,.85), transparent); animation: scroll-cue 2.2s ease-in-out infinite; }
@keyframes scroll-cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================
   Marquee strip
   ============================================ */
.marquee {
  background: var(--sage-dark);
  color: var(--sand);
  overflow: hidden;
  border-top: 1px solid rgba(251,248,242,.14);
  border-bottom: 1px solid rgba(251,248,242,.14);
}
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  padding: 16px 40px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 40px;
}
.marquee-track span::after { content: "·"; color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   Section basics
   ============================================ */
section { position: relative; }
.section-pad { padding: 130px 0; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 { margin-top: 20px; }
.section-head p.lede { margin-top: 20px; font-size: 1.05rem; color: var(--ink-soft); max-width: 54ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; max-width: none; }

/* ============================================
   Nosotros
   ============================================ */
.about-clone { background: var(--paper); position: relative; overflow: hidden; padding-top: 45px; padding-bottom: 45px; }
.about-clone__shape {
  position: absolute; left: -12%; top: -10%; width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(232,198,190,.55), rgba(232,198,190,0) 70%);
  pointer-events: none;
}
.about-clone__grid { position: relative; display: grid; grid-template-columns: 1.1fr .95fr; gap: 70px; align-items: center; }

.about-clone__media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.about-clone__blob {
  position: absolute; inset: 2% 4% 2% 14%; background: var(--blush);
  border-radius: 62% 38% 55% 45% / 55% 45% 55% 45%;
  opacity: .85;
}
.about-clone__ring { position: absolute; top: 0; left: 8%; width: 34px; height: 34px; border-radius: 50%; border: 1.4px solid var(--sage); z-index: 2; }
.about-clone__photo {
  position: relative; z-index: 1; width: 84%; height: 92%; object-fit: cover;
  border-radius: 62% 38% 55% 45% / 55% 45% 55% 45%;
  box-shadow: 0 40px 70px -30px rgba(43,42,36,.35);
}

.about-clone__content h2 { margin-top: 18px; max-width: 16ch; }
.about-clone__text { margin-top: 20px; font-size: 1.02rem; color: var(--ink-soft); max-width: 50ch; }

.about-clone__row { margin-top: 34px; display: flex; align-items: flex-start; gap: 32px; flex-wrap: nowrap; }
.about-clone__list { display: flex; flex-direction: column; gap: 14px; padding-left: 24px; border-left: 1px solid var(--cream-deep); flex: 1 1 0; min-width: 0; }
.about-clone__list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink); font-weight: 500; }
.about-clone__list .check {
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: rgba(143,166,146,.16); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
}

.about-clone__opening { display: flex; gap: 14px; align-items: flex-start; flex: 1 1 0; min-width: 0; }
.about-clone__opening__icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--cream);
  color: var(--sage-deep); display: flex; align-items: center; justify-content: center;
}
.about-clone__opening__body h4 { margin: 0 0 10px; font-size: .95rem; color: var(--sage-dark); font-family: var(--font-display); font-weight: 500; }
.about-clone__opening__time { display: flex; flex-direction: column; gap: 6px; }
.about-clone__opening__time .txt { font-size: .8rem; color: var(--ink-soft); }
.about-clone__opening__time .val { display: block; font-size: .85rem; color: var(--sage-dark); font-weight: 600; margin-top: -2px; }

/* ============================================
   Qué ofrecemos — carrusel continuo
   ============================================ */
.cat-carousel { background: var(--paper); overflow: hidden; padding-top: 45px; padding-bottom: 45px; }
.cat-carousel__head { max-width: 640px; }
.cat-carousel__head h2 { margin-top: 16px; }
.cat-carousel__head .lede { margin-top: 12px; }

.cat-carousel__track-wrap { margin-top: 50px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.cat-carousel__track {
  display: flex; gap: 24px; width: max-content;
  animation: cat-marquee 32s linear infinite;
}
@keyframes cat-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cat-slide {
  position: relative; width: 320px; height: 400px; flex-shrink: 0; border-radius: 14px; overflow: hidden;
  color: var(--paper); isolation: isolate;
}
.cat-slide__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform .6s cubic-bezier(.16,.8,.24,1); z-index: -2;
}
.cat-slide::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(43,42,36,0) 42%, rgba(43,42,36,.82));
}
.cat-slide:hover .cat-slide__bg { transform: scale(1.1); }
.cat-slide__n { position: absolute; top: 20px; left: 22px; font-family: var(--font-display); font-style: italic; color: var(--sand); font-size: 1.15rem; }
.cat-slide__lbl { position: absolute; left: 24px; right: 24px; bottom: 24px; }
.cat-slide__lbl b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.cat-slide__lbl p { margin: 8px 0 0; font-size: .85rem; color: rgba(251,248,242,.82); line-height: 1.5; }

.about-pillars { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 34px; }
.pillar { display: flex; gap: 16px; }
.pillar-glyph {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep);
}
.pillar h4 { font-size: 1.02rem; font-weight: 600; font-family: var(--font-body); color: var(--sage-dark); }
.pillar p { margin-top: 6px; font-size: .92rem; color: var(--ink-soft); }

/* ============================================
   Services
   ============================================ */
.services { background: var(--cream); padding-top: 45px; padding-bottom: 45px; }
.filter-tabs {
  position: relative; display: flex; gap: 40px; flex-wrap: nowrap;
  border-bottom: 1px solid var(--cream-deep);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  font-family: var(--font-label);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 0 0 18px; border: none; border-radius: 0; flex-shrink: 0; white-space: nowrap;
  background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: color .35s ease;
}
.filter-tab:hover { color: var(--sage-dark); }
.filter-tab.active {
  color: var(--sage-dark);
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 15px; letter-spacing: .01em; text-transform: none;
}
.filter-indicator {
  position: absolute; bottom: -1px; left: 0; height: 2px; width: 0;
  background: var(--gold); transition: left .45s cubic-bezier(.4,0,.2,1), width .45s cubic-bezier(.4,0,.2,1);
}

.service-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: 6px;
  padding: 40px 34px 34px;
  display: none;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  box-shadow: 0 20px 44px -38px rgba(43,42,36,.4);
  transition: transform .5s cubic-bezier(.16,.8,.24,1), box-shadow .5s ease, border-color .5s ease;
}
.service-card.show { display: flex; }
.service-card::before {
  content: ""; position: absolute; top: 0; left: 34px; right: 34px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 44px 70px -32px rgba(43,42,36,.32); border-color: var(--cream-deep); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .cat-tag {
  font-family: var(--font-label); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); font-weight: 700;
}
.service-card .row-top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--cream-deep);
}
.service-card h3 { font-size: 1.24rem; font-weight: 500; }
.service-card .dur {
  font-family: var(--font-label); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-deep);
  white-space: nowrap; border: 1px solid var(--cream-deep); border-radius: 999px; padding: 4px 11px; flex-shrink: 0;
}
.service-card p.desc { color: var(--ink-soft); font-size: .93rem; line-height: 1.65; flex-grow: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 4px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-dark);
  transition: color .3s ease, gap .35s ease;
}
.service-link .arrow {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--sage);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 13px; color: var(--sage-deep);
  transition: all .35s cubic-bezier(.34,1.4,.5,1);
}
.service-link:hover { color: var(--gold); gap: 16px; }
.service-link:hover .arrow { background: var(--gold); border-color: var(--gold); color: var(--paper); transform: rotate(-45deg); }

.services-cta { margin-top: 56px; display: flex; justify-content: center; }
.services-cta__btn {
  padding: 14px 28px; font-weight: 500; letter-spacing: .09em;
  border-color: rgba(51,69,47,.22); box-shadow: 0 10px 26px -18px rgba(43,42,36,.4);
}
.services-cta__btn svg { flex-shrink: 0; transition: transform .4s cubic-bezier(.34,1.4,.5,1); }
.services-cta__btn:hover { border-color: var(--gold); background: var(--paper); color: var(--sage-dark); }
.services-cta__btn:hover svg { transform: rotate(-8deg) scale(1.1); }

/* ============================================
   Por qué elegirnos
   ============================================ */
.why-us { background: var(--cream); position: relative; overflow: hidden; padding-top: 45px; padding-bottom: 45px; }
.why-us__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 56px; align-items: center; }
.why-us__content h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }

.why-us__media { position: relative; height: 400px; }
.why-us__ring {
  position: absolute; left: -6%; top: -4%; width: 110px; height: 110px; border-radius: 50%;
  border: 1px solid rgba(185,154,91,.35); z-index: 0; animation: breathe 8s ease-in-out infinite;
}
.why-us__ring--2 { left: 4%; top: 3%; width: 76px; height: 76px; animation-delay: 1.4s; border-color: rgba(143,166,146,.4); }
.why-us__photo { position: absolute; border-radius: 14px; overflow: hidden; z-index: 1; transition: transform .5s ease; }
.why-us__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.why-us__photo:hover img { transform: scale(1.06); }
.why-us__photo--a {
  width: 62%; height: 80%; left: 0; top: 6%; z-index: 2;
  box-shadow: 0 30px 55px -28px rgba(43,42,36,.4);
}
.why-us__photo--b {
  width: 54%; height: 58%; right: 0; bottom: 0; z-index: 1;
  border: 6px solid var(--cream); box-shadow: 0 24px 44px -24px rgba(43,42,36,.35);
}

.why-us__subtitle { margin-top: 10px; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--sage-deep); }
.why-us__text { margin-top: 10px; font-size: .92rem; color: var(--ink-soft); max-width: 52ch; padding-bottom: 16px; border-bottom: 1px solid var(--cream-deep); }

.why-us__list { margin-top: 14px; position: relative; }
.why-us__list::before {
  content: ""; position: absolute; left: 22px; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(var(--cream-deep), var(--cream-deep));
}
.why-us__item { position: relative; display: flex; gap: 16px; align-items: center; padding: 9px 0; }
.why-us__icon {
  position: relative; z-index: 1; width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--sage); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center; transition: all .35s cubic-bezier(.34,1.4,.5,1);
}
.why-us__icon svg { width: 18px; height: 18px; }
.why-us__item:hover .why-us__icon { background: var(--gold); border-color: var(--gold); color: var(--paper); transform: rotate(-6deg) scale(1.06); }
.why-us__item h4 { margin: 0 0 2px; font-family: var(--font-display); font-weight: 500; font-size: .98rem; color: var(--sage-dark); }
.why-us__item p { margin: 0; font-size: .82rem; line-height: 1.4; color: var(--ink-soft); max-width: 44ch; }

.why-us__cta { margin-top: 18px; }

/* ============================================
   Packages
   ============================================ */
.packages { background: var(--sage-dark); color: var(--paper); overflow: hidden; padding-top: 45px; padding-bottom: 45px; }
.packages .shen-ring { top: -220px; left: -220px; width: 520px; height: 520px; border-color: rgba(216,196,160,.18); }
.packages .eyebrow { color: var(--sand); }
.packages .eyebrow::before { background: var(--sand); }
.packages h2 { color: var(--paper); }
.packages .section-head p.lede { color: rgba(251,248,242,.78); }
.package-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  position: relative; display: block; height: 440px; border-radius: 18px; overflow: hidden;
  isolation: isolate; color: var(--paper);
}
.package-card__bg {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform .7s cubic-bezier(.16,.8,.24,1);
}
.package-card:hover .package-card__bg { transform: scale(1.16); }
.package-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(43,42,36,.92), rgba(43,42,36,.15) 55%);
}
.package-card__top { position: absolute; top: 22px; left: 22px; right: 22px; }
.package-card .tag {
  font-family: var(--font-label); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: var(--sand); background: rgba(43,42,36,.4); backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 999px;
}
.package-card.featured .tag { background: var(--gold); color: var(--sage-dark); }
.package-card__bottom { position: absolute; left: 22px; right: 22px; bottom: 22px; }
.package-card h3 { font-size: 1.4rem; margin: 0 0 6px; color: var(--paper); }
.package-card .price-row { display: flex; align-items: baseline; gap: 8px; }
.package-card .price-row b { font-family: var(--font-display); font-size: 3rem; font-style: italic; color: var(--gold); line-height: 1; }
.package-card .price-row span { font-size: .8rem; color: rgba(251,248,242,.7); }

/* ============================================
   Gallery
   ============================================ */
.gallery { background: var(--paper); padding-top: 45px; padding-bottom: 45px; }
.masonry {
  margin-top: 50px;
  column-count: 3; column-gap: 18px;
}
.m-item {
  margin: 0 0 18px; break-inside: avoid; border-radius: 12px; overflow: hidden; position: relative; cursor: zoom-in;
}
.m-item img { width: 100%; display: block; transition: transform .7s ease; }
.m-item:hover img { transform: scale(1.06); }
.m-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(43,42,36,.6)); opacity: 0; transition: opacity .4s ease; }
.m-item:hover::after { opacity: 1; }
.m-item figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  color: var(--paper); font-family: var(--font-label); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all .4s ease;
}
.m-item:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery-lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(20,20,16,.92);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility 0s linear .35s;
}
.gallery-lightbox.open { opacity: 1; visibility: visible; transition: opacity .35s ease; }
.gallery-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; opacity: 0; transform: scale(.97); transition: opacity .35s ease .1s, transform .35s ease .1s; }
.gallery-lightbox.open img { opacity: 1; transform: scale(1); }
.gallery-lightbox__close {
  position: absolute; top: 26px; right: 30px; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(251,248,242,.1); border: 1px solid rgba(251,248,242,.4); color: var(--paper);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .3s ease;
}
.gallery-lightbox__close:hover { background: var(--gold); border-color: var(--gold); }

/* ============================================
   Testimonials
   ============================================ */
.testimonials { background: var(--cream); padding-top: 45px; padding-bottom: 45px; }
.testi-track-wrap { margin-top: 56px; overflow: hidden; }
.testi-track { display: flex; gap: 24px; }
.testi-card {
  flex: 0 0 min(420px, 88vw);
  background: var(--paper);
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 34px;
}
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; }
.testi-card p.quote { margin-top: 18px; font-family: var(--font-display); font-style: italic; font-size: 1.14rem; line-height: 1.55; color: var(--sage-dark); }
.testi-who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sage); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; }
.testi-who b { display: block; font-size: .92rem; color: var(--ink); }
.testi-who span { font-size: .78rem; color: var(--ink-soft); }
.testi-controls { display: flex; gap: 12px; margin-top: 36px; }
.testi-controls button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(51,69,47,.3);
  background: transparent; color: var(--sage-dark); cursor: pointer; transition: all .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.testi-controls button:hover { background: var(--sage-dark); color: var(--paper); }

/* ============================================
   Contact
   ============================================ */
.contact { background: var(--paper); padding-top: 45px; padding-bottom: 45px; }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info .about-pillars { grid-template-columns: 1fr; margin-top: 20px; gap: 12px; }
.contact-info .lede { margin-top: 10px !important; }
.hours-table { margin-top: 16px; border-top: 1px solid var(--cream-deep); }
.hours-table div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--cream-deep); font-size: .88rem; }
.hours-table span:first-child { color: var(--ink-soft); }
.hours-table span:last-child { font-family: var(--font-display); font-style: italic; color: var(--sage-deep); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(51,69,47,.28);
  display: flex; align-items: center; justify-content: center; color: var(--sage-dark);
  transition: all .3s ease;
}
.social-row a:hover { background: var(--sage-dark); color: var(--paper); border-color: var(--sage-dark); }

.booking-card {
  background: var(--sage-dark);
  color: var(--paper);
  border-radius: 22px;
  padding: 32px 34px;
  position: relative;
  overflow: hidden;
}
.booking-card .shen-ring { right: -160px; bottom: -160px; width: 380px; height: 380px; border-color: rgba(216,196,160,.2); }
.booking-card h3 { color: var(--paper); font-size: 1.3rem; position: relative; }
.booking-card p { color: rgba(251,248,242,.78); margin-top: 8px; font-size: .88rem; position: relative; }
.booking-form { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-label); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); }
.field input, .field select, .field textarea {
  background: rgba(251,248,242,.08);
  border: 1px solid rgba(251,248,242,.28);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(251,248,242,.45); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(251,248,242,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form textarea { min-height: 0; }
.booking-form .btn { margin-top: 2px; width: 100%; justify-content: center; }
.form-note { font-size: .78rem; color: rgba(251,248,242,.55); margin-top: 4px; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--ink); color: rgba(251,248,242,.72); padding: 90px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(251,248,242,.12); }
.footer-brand .brand-name .en, .footer-brand .brand-mark { color: var(--paper); }
.footer-brand p { margin-top: 18px; font-size: .9rem; max-width: 30ch; color: rgba(251,248,242,.6); }
.footer-col h4 { font-family: var(--font-label); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .92rem; transition: color .3s ease; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(251,248,242,.5); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sage-deep); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px -12px rgba(51,69,47,.6);
  transition: transform .3s ease, background .3s ease;
}
.wa-float:hover { background: var(--gold); transform: translateY(-3px) scale(1.05); }
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(86,112,91,.5); animation: breathe 3s ease-in-out infinite;
}

/* ============================================
   Mobile menu
   ============================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--sage-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.16,.8,.24,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: var(--paper); font-family: var(--font-display); font-size: 1.8rem; font-style: italic; }
.mobile-menu .btn { margin-top: 10px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .contact .container { grid-template-columns: 1fr; }
  .service-grid, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: 1fr; gap: 32px; }
  .why-us__media { width: 100%; height: 380px; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .nav-links, .header-actions .header-cta, .header-actions .lang { display: none; }
  .nav-toggle { display: block; }
  .section-pad { padding: 92px 0; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
  .about-pillars { grid-template-columns: 1fr; }
  .service-grid, .package-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 30px; }
  .about-clone__grid { grid-template-columns: 1fr; gap: 30px; }
  .about-clone__media { min-height: 300px; order: -1; }
  .about-clone__shape { width: 90%; left: -20%; }
  .about-clone__content h2 { max-width: none; }
  .cat-slide { width: 260px; height: 340px; }
  .why-us__media { height: 320px; }

  /* Section-to-section rhythm: the blanket .section-pad rule above would
     otherwise reset every section back to a uniform 92px, wiping out the
     tighter spacing set for each section on desktop. Keep it compact here too. */
  .about-clone,
  .cat-carousel,
  .services,
  .why-us,
  .contact,
  .packages,
  .gallery,
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
  .booking-card { padding: 34px 24px; }
  .about-clone__row { flex-wrap: wrap; }
  .about-clone__opening { flex-basis: 100%; }
  .about-clone__list { flex-basis: 100%; padding-left: 0; padding-top: 22px; border-left: none; border-top: 1px solid var(--cream-deep); width: 100%; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
