/* ===== SAGE WELLNESS — Main Stylesheet ===== */

:root {
  --bg:         hsl(24, 10%, 10%);
  --bg-card:    hsl(24, 10%, 12%);
  --bg-sec:     hsl(24, 10%, 15%);
  --fg:         hsl(40, 20%, 90%);
  --fg-muted:   hsl(40, 15%, 65%);
  --border:     hsl(24, 10%, 18%);
  --primary:    hsl(36, 60%, 50%);
  --primary-fg: hsl(24, 10%, 10%);
  --whatsapp:   #25D366;
  --whatsapp-h: #20bd5a;
  --font-sans:  'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius:     0.5rem;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container-lg { max-width: 64rem; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.text-muted { color: var(--fg-muted); }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.08em; }
.tracking-wider { letter-spacing: 0.12em; }
.tracking-widest { letter-spacing: 0.2em; }
.font-bold { font-weight: 700; }
.font-serif { font-family: var(--font-serif); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-h); }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { opacity: 0.9; }
.btn-lg { padding: 1rem 2rem; font-size: 0.9375rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1rem; border-radius: 0.75rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 50;
  text-transform: uppercase;
}
.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--primary-fg);
}
.announcement-bar a:hover { opacity: 0.8; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 2rem;
  left: 0; right: 0;
  z-index: 40;
  padding: 1.5rem 0;
  transition: all 0.3s;
}
.site-header.scrolled {
  top: 0;
  background: rgba(28,23,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 0;
}
.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; }
.logo-tagline { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); margin-top: 0.25rem; }

.nav-desktop { display: none; align-items: center; gap: 1.5rem; }
.nav-desktop a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.nav-desktop a:hover { color: var(--primary); }

.header-cta { display: none; align-items: center; gap: 1rem; }
.header-cta .btn-call { font-size: 0.875rem; font-weight: 700; color: #fff; }
.header-cta .btn-call:hover { color: var(--primary); }

.hamburger { color: #fff; padding: 0.5rem; }
.hamburger svg { width: 1.5rem; height: 1.5rem; display: block; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .hamburger { display: none; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(28,23,20,0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { align-self: flex-end; color: #fff; padding: 0.5rem; margin-top: 1rem; }
.mobile-menu-close svg { width: 2rem; height: 2rem; display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; text-align: center; }
.mobile-nav a { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-menu-btns { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu-btns a { text-align: center; padding: 1rem; border-radius: var(--radius); font-weight: 700; font-size: 1.125rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), rgba(28,23,20,0.8), rgba(28,23,20,0.2));
}
.hero-overlay-solid { position: absolute; inset: 0; background: rgba(28,23,20,0.4); }
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem 1rem 0;
  text-align: center;
}
.hero-eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  display: none;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 3rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.hero-stats .star-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-stats .star-icon { width: 0.75rem; height: 0.75rem; color: var(--primary); fill: var(--primary); }

@media (min-width: 768px) {
  .hero-desc { display: block; }
}

/* ===== SECTION HEADING ===== */
.section-heading { margin-bottom: 3rem; text-align: center; max-width: 48rem; margin-left: auto; margin-right: auto; padding: 0 1rem; }
.section-eyebrow { font-weight: 700; letter-spacing: 0.2em; font-size: 0.75rem; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 1rem; }
.section-heading h2 { font-size: clamp(1.875rem, 4vw, 3rem); color: var(--fg); }

/* ===== DISCOVERY PANEL ===== */
.discovery-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.discovery-desc { text-align: center; color: rgba(255,255,255,0.7); max-width: 40rem; margin: 0 auto 4rem; }
.therapy-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 4rem; }
.therapy-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.therapy-card:hover { border-color: rgba(204,140,46,0.5); }
.therapy-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 0.75rem; transition: color 0.2s; }
.therapy-card:hover h3 { color: var(--primary); }
.therapy-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; min-height: 2.5rem; }
.therapy-card a { font-size: 0.875rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 0.5rem; }
.therapy-card a:hover { opacity: 0.8; }
.therapy-card a svg { width: 1rem; height: 1rem; }
.section-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

@media (min-width: 768px) { .therapy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .therapy-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .therapy-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== MARQUEE ===== */
.marquee-section {
  background: rgba(204,140,46,0.1);
  border-bottom: 1px solid rgba(204,140,46,0.2);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; }
.marquee-item { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.8); text-transform: uppercase; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BRAND EXPERIENCE ===== */
.brand-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.brand-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.brand-img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.brand-img-wrap img { width: 100%; height: 30rem; object-fit: cover; }
.brand-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,23,20,0.5), transparent); }
.brand-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.brand-img-badge p:first-child { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.25rem; }
.brand-img-badge p:last-child { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.brand-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; display: block; margin-bottom: 1rem; }
.brand-text h2 { font-size: clamp(1.875rem, 4vw, 3rem); margin-bottom: 2rem; }
.brand-text p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; font-size: 1.125rem; line-height: 1.8; }
.brand-manifesto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.8);
  border-left: 2px solid rgba(204,140,46,0.4);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.brand-manifesto .highlight { color: var(--primary); }
.brand-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (min-width: 1024px) {
  .brand-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .brand-img-wrap img { height: 35rem; }
}

/* ===== TRUST GRID ===== */
.trust-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 4rem; }
.trust-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  text-align: center;
}
.trust-card p { font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.8); }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== SPA OFFERS ===== */
.offers-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.offers-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.offers-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 2.5rem; }
.offer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}
.offer-item .check-icon { width: 1rem; height: 1rem; color: var(--primary); fill: none; stroke: var(--primary); flex-shrink: 0; }
.offer-item span { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.offers-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-style: italic; margin-bottom: 2rem; }
.offers-img-wrap { position: relative; border-radius: 1rem; overflow: hidden; }
.offers-img-wrap img { width: 100%; height: 30rem; object-fit: cover; }
.offers-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,23,20,0.7), transparent); }
.offers-img-card {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(204,140,46,0.2);
}
.offers-img-card .eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.5rem; }
.offers-img-card .title { font-family: var(--font-serif); font-size: 1.125rem; color: #fff; margin-bottom: 0.75rem; }

@media (min-width: 640px) { .offers-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .offers-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ===== EXPERIENCE CARDS ===== */
.experience-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.experience-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 4rem; }
.experience-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.experience-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 1rem; }
.experience-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.experience-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.experience-btns a { text-align: center; }
@media (min-width: 768px) { .experience-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .experience-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== AMENITIES STRIP ===== */
.amenities-section { padding: 4rem 0; }
.amenities-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; text-align: center; margin-bottom: 2.5rem; }
.amenities-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.amenity-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}
.amenity-tag svg { width: 1rem; height: 1rem; color: var(--primary); stroke: var(--primary); fill: none; flex-shrink: 0; }

/* ===== TREATMENT CARDS ===== */
.treatment-section { padding: 6rem 0; background: #0f0f0f; border-bottom: 1px solid rgba(255,255,255,0.05); }
.treatment-heading { text-align: center; margin-bottom: 3.5rem; }
.treatment-heading .eyebrow { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.12em; color: var(--primary); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.treatment-heading h2 { font-size: clamp(2rem, 5vw, 3.75rem); color: #fff; margin-bottom: 1rem; line-height: 1.15; }
.treatment-heading p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 36rem; margin: 0 auto; }
.treatment-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3.5rem; }
.treatment-card {
  background: #1a1a1a;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}
.treatment-card:hover { border-color: rgba(204,140,46,0.3); }
.tc-img {
  position: relative;
  height: 13rem;
  overflow: hidden;
  flex-shrink: 0;
}
.tc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.treatment-card:hover .tc-img img { transform: scale(1.05); }
.tc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #1a1a1a, rgba(0,0,0,0.2), rgba(0,0,0,0.1)); }
.tc-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-size: 0.6875rem; font-weight: 700; padding: 0.25rem 0.625rem;
  border-radius: 9999px; letter-spacing: 0.05em;
}
.tc-duration {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  display: flex; align-items: center; gap: 0.375rem;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  padding: 0.25rem 0.5rem; border-radius: 0.25rem;
  color: #fff; font-size: 0.75rem; font-weight: 600;
}
.tc-duration svg { width: 0.75rem; height: 0.75rem; color: var(--primary); stroke: var(--primary); fill: none; }
.tc-offer-link {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  font-size: 0.6875rem; font-weight: 700; color: var(--primary);
  letter-spacing: 0.05em;
}
.tc-offer-link:hover { opacity: 0.8; }
.tc-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.tc-body h3 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; font-family: var(--font-sans); transition: color 0.2s; }
.treatment-card:hover .tc-body h3 { color: var(--primary); }
.tc-body p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; line-height: 1.6; }
.tc-features { display: flex; flex-wrap: wrap; gap: 0.375rem 1rem; margin-bottom: 1rem; }
.tc-feature { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.tc-feature svg { width: 0.75rem; height: 0.75rem; color: var(--whatsapp); stroke: var(--whatsapp); fill: none; flex-shrink: 0; }
.tc-availability { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; margin-top: auto; }
.tc-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; flex-shrink: 0; }
.tc-availability span { font-size: 0.75rem; font-weight: 600; }
.tc-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; background: var(--whatsapp); color: #fff;
  font-weight: 700; font-size: 0.875rem; padding: 0.75rem;
  border-radius: 0.5rem; transition: background 0.2s; margin-bottom: 0.75rem;
  text-decoration: none;
}
.tc-cta-primary:hover { background: var(--whatsapp-h); }
.tc-cta-primary svg { width: 1rem; height: 1rem; fill: currentColor; flex-shrink: 0; }
.tc-secondary-btns { display: flex; gap: 0.75rem; }
.tc-secondary-btns a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.375rem; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem; border-radius: 0.5rem; transition: all 0.2s;
}
.tc-secondary-btns a:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.tc-secondary-btns a svg { width: 0.75rem; height: 0.75rem; stroke: currentColor; fill: none; }
@media (min-width: 640px) { .treatment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .treatment-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== THERAPY SELECTOR ===== */
.selector-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.selector-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
.selector-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s;
  text-decoration: none;
}
.selector-card:hover { border-color: rgba(204,140,46,0.4); }
.selector-card .cue { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.selector-card .answer { font-family: var(--font-serif); font-size: 1rem; color: #fff; transition: color 0.2s; }
.selector-card:hover .answer { color: var(--primary); }
.selector-card .arrow { width: 1.25rem; height: 1.25rem; color: rgba(255,255,255,0.3); stroke: currentColor; fill: none; flex-shrink: 0; margin-top: 0.25rem; transition: color 0.2s; }
.selector-card:hover .arrow { color: var(--primary); }
@media (min-width: 768px) { .selector-grid { grid-template-columns: 1fr 1fr; } }

/* ===== MID-PAGE BANNER ===== */
.mid-banner { position: relative; padding: 7rem 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mid-banner-bg { position: absolute; inset: 0; z-index: 0; }
.mid-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.mid-banner-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg), rgba(28,23,20,0.9), rgba(28,23,20,0.6)); }
.mid-banner-content { position: relative; z-index: 10; max-width: 48rem; }
.mid-banner-content .eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.mid-banner-content h2 { font-size: clamp(2rem, 5vw, 3.75rem); color: #fff; margin-bottom: 1.5rem; line-height: 1.2; }
.mid-banner-content p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1.125rem; max-width: 36rem; }
.mid-banner-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.mid-banner-stats { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.mid-banner-stats .star-stat { display: flex; align-items: center; gap: 0.375rem; }
.mid-banner-stats svg { width: 0.75rem; height: 0.75rem; fill: var(--primary); color: var(--primary); }

/* ===== PILLARS ===== */
.pillars-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.pillars-list { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
.pillar-item { display: flex; gap: 0.75rem; }
.pillar-item svg { width: 1rem; height: 1rem; color: var(--primary); stroke: var(--primary); fill: none; flex-shrink: 0; margin-top: 0.125rem; }
.pillar-item .pillar-title { font-size: 0.875rem; font-weight: 700; color: #fff; }
.pillar-item .pillar-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.125rem; }
.pillars-img { position: relative; border-radius: 1rem; overflow: hidden; }
.pillars-img img { width: 100%; height: 37.5rem; object-fit: cover; }
.pillars-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,23,20,0.6), transparent); }
.pillars-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border-radius: 0.75rem; padding: 1rem; border: 1px solid rgba(255,255,255,0.1);
}
.pillars-img-badge .eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.25rem; }
.pillars-img-badge .name { font-family: var(--font-serif); font-size: 0.875rem; color: #fff; }
@media (min-width: 640px) { .pillars-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ===== HYGIENE ===== */
.hygiene-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.hygiene-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hygiene-img { position: relative; border-radius: 1rem; overflow: hidden; }
.hygiene-img img { width: 100%; height: 26rem; object-fit: cover; }
.hygiene-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,23,20,0.4), transparent); }
.hygiene-checks { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.hygiene-check { display: flex; gap: 0.75rem; align-items: flex-start; }
.hygiene-check svg { width: 1rem; height: 1rem; color: var(--whatsapp); stroke: var(--whatsapp); fill: none; flex-shrink: 0; margin-top: 0.25rem; }
.hygiene-check .check-title { font-size: 0.875rem; font-weight: 700; color: #fff; }
.hygiene-check .check-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-left: 0.5rem; }
@media (min-width: 1024px) { .hygiene-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ===== COUPLE SPA ===== */
.couple-section { position: relative; padding: 7rem 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.couple-bg { position: absolute; inset: 0; z-index: 0; }
.couple-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.couple-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,23,20,0.8), rgba(28,23,20,0.6), rgba(28,23,20,0.9)); }
.couple-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center; }
.couple-content .eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.couple-content h2 { font-size: clamp(2.25rem, 6vw, 3.75rem); color: #fff; margin-bottom: 2rem; }
.couple-manifesto { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem); color: rgba(255,255,255,0.7); display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.couple-manifesto .highlight { color: #fff; }
.couple-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.couple-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; backdrop-filter: blur(4px); }
.couple-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.reviews-bg { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; z-index: 0; display: none; }
.reviews-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.1; }
.reviews-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg), transparent); }
.reviews-inner { position: relative; z-index: 10; max-width: 48rem; }
.reviews-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.reviews-score { display: flex; align-items: flex-end; gap: 1rem; margin-bottom: 0.5rem; }
.reviews-score h2 { font-size: clamp(3rem, 8vw, 4.5rem); color: #fff; line-height: 1; }
.stars { display: flex; gap: 0.25rem; }
.star { width: 1.25rem; height: 1.25rem; fill: var(--primary); color: var(--primary); }
.star-sm { width: 0.875rem; height: 0.875rem; fill: var(--primary); color: var(--primary); }
.reviews-count { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.reviews-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 3rem; display: block; }
.review-cards { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(204,140,46,0.2); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-avatar {
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  background: rgba(204,140,46,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 700; color: #fff; }
.review-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.review-star-row { display: flex; gap: 0.125rem; margin-left: auto; }
.review-text { font-size: 0.875rem; color: rgba(255,255,255,0.7); font-style: italic; line-height: 1.6; }
.reviews-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (min-width: 1024px) { .reviews-bg { display: block; } }

/* ===== REVIEW CONVERSION ===== */
.review-cta-section { padding: 5rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
.review-cta-section h2 { font-size: clamp(1.875rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.review-cta-section p { color: rgba(255,255,255,0.6); max-width: 40rem; margin: 0 auto 2.5rem; }
.review-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ===== STATS STRIP ===== */
.stats-section { padding: 4rem 0; background: rgba(204,140,46,0.05); border-top: 1px solid rgba(204,140,46,0.1); border-bottom: 1px solid rgba(204,140,46,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); color: var(--primary); margin-bottom: 0.5rem; }
.stat-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(6, 1fr); } }

/* ===== BENEFITS ===== */
.benefits-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.benefits-sticky .eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.benefits-sticky h2 { font-size: clamp(1.875rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.benefits-sticky p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; line-height: 1.8; }
.benefits-img { position: relative; border-radius: 1rem; overflow: hidden; margin-bottom: 2rem; }
.benefits-img img { width: 100%; height: 16rem; object-fit: cover; }
.benefits-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,23,20,0.6), transparent); }
.benefits-img-badge { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border-radius: 0.75rem; padding: 1rem; border: 1px solid rgba(255,255,255,0.1); }
.benefits-img-badge .eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.25rem; }
.benefits-img-badge p { font-family: var(--font-serif); font-size: 0.875rem; color: #fff; margin: 0; }
.benefits-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.benefit-card { background: var(--bg); border: 1px solid rgba(255,255,255,0.05); border-radius: 0.75rem; padding: 1.25rem; transition: border-color 0.2s; }
.benefit-card:hover { border-color: rgba(204,140,46,0.2); }
.benefit-card-title { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.benefit-card-title svg { width: 1rem; height: 1rem; color: var(--primary); stroke: var(--primary); fill: none; flex-shrink: 0; }
.benefit-card-title h3 { font-size: 0.875rem; font-weight: 700; color: #fff; font-family: var(--font-sans); }
.benefit-card p { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ===== COMPARISON TABLE ===== */
.comparison-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.table-wrap { overflow-x: auto; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.comparison-table { width: 100%; min-width: 700px; font-size: 0.875rem; border-collapse: collapse; }
.comparison-table thead tr { background: rgba(204,140,46,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.comparison-table th { padding: 1rem 1.25rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; text-align: left; }
.comparison-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.2s; }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:nth-child(odd) { background: var(--bg-card); }
.comparison-table tbody tr:nth-child(even) { background: var(--bg); }
.comparison-table tbody tr:hover { background: rgba(204,140,46,0.05); }
.comparison-table td { padding: 1rem 1.25rem; color: rgba(255,255,255,0.7); }
.comparison-table td:first-child { font-weight: 700; color: #fff; white-space: nowrap; }
.table-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; font-style: italic; margin-bottom: 2rem; }

/* ===== GIFT VOUCHERS ===== */
.gift-section { position: relative; padding: 6rem 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.gift-bg { position: absolute; inset: 0; z-index: 0; }
.gift-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.gift-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,23,20,0.9), rgba(28,23,20,0.7), rgba(28,23,20,0.9)); }
.gift-inner { position: relative; z-index: 10; }
.occasion-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3.5rem; }
.occasion-card { background: rgba(33,29,26,0.8); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.05); border-radius: 1rem; padding: 1.5rem; transition: border-color 0.2s; }
.occasion-card:hover { border-color: rgba(204,140,46,0.3); }
.occasion-emoji { font-size: 1.875rem; display: block; margin-bottom: 1rem; }
.occasion-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; font-family: var(--font-sans); transition: color 0.2s; }
.occasion-card:hover h3 { color: var(--primary); }
.occasion-card p { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
@media (min-width: 640px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .occasion-grid { grid-template-columns: repeat(3, 1fr); } }
.gift-cta-box { background: var(--bg-card); border: 1px solid rgba(204,140,46,0.2); border-radius: 1rem; padding: 3rem; text-align: center; max-width: 40rem; margin: 0 auto; }
.gift-icon { width: 2.5rem; height: 2.5rem; color: var(--primary); stroke: var(--primary); fill: none; margin: 0 auto 1rem; }
.gift-cta-box h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.gift-cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.gift-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ===== CORPORATE ===== */
.corporate-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.corporate-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.corporate-checks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.corporate-check { display: flex; align-items: center; gap: 0.75rem; }
.corporate-check svg { width: 1rem; height: 1rem; color: var(--primary); stroke: var(--primary); fill: none; flex-shrink: 0; }
.corporate-check span { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.corporate-areas { background: var(--bg); border: 1px solid rgba(255,255,255,0.05); border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 2rem; }
.corporate-areas-label { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.75rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag { background: rgba(33,29,26,0.5); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; }
.corporate-img { position: relative; border-radius: 1rem; overflow: hidden; }
.corporate-img img { width: 100%; height: 31rem; object-fit: cover; }
.corporate-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,23,20,0.6), transparent); }
.corporate-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border-radius: 0.75rem; padding: 1.25rem; border: 1px solid rgba(204,140,46,0.2); }
.corporate-img-badge svg { width: 1.25rem; height: 1.25rem; color: var(--primary); stroke: var(--primary); fill: none; margin-bottom: 0.5rem; }
.corporate-img-badge p:first-of-type { font-family: var(--font-serif); font-size: 1rem; color: #fff; margin-bottom: 0.25rem; }
.corporate-img-badge p:last-of-type { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
@media (min-width: 1024px) { .corporate-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ===== FIRST TIMER ===== */
.first-timer-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.first-timer-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 4rem; }
.step-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 1rem; padding: 1.5rem; transition: border-color 0.2s; }
.step-card:hover { border-color: rgba(204,140,46,0.2); }
.step-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--primary); opacity: 0.4; margin-bottom: 1rem; display: block; }
.step-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; font-family: var(--font-sans); }
.step-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
@media (min-width: 768px) { .first-timer-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .first-timer-steps { grid-template-columns: repeat(3, 1fr); } }
.first-timer-bottom { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.ft-faq-title { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }
.ft-faq-box { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 1rem; padding: 1.5rem; }
.ft-faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.ft-faq-item:last-child { border-bottom: none; }
.ft-faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0; text-align: left; font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.8); cursor: pointer; background: none; border: none; font-family: var(--font-sans); transition: color 0.2s; }
.ft-faq-trigger:hover { color: #fff; }
.ft-faq-trigger svg { width: 1rem; height: 1rem; color: rgba(255,255,255,0.3); stroke: currentColor; fill: none; flex-shrink: 0; transition: all 0.2s; }
.ft-faq-trigger.open svg { color: var(--primary); transform: rotate(180deg); }
.ft-faq-body { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; padding-bottom: 1rem; display: none; }
.ft-faq-body.visible { display: block; }
.first-timer-cta { background: rgba(204,140,46,0.05); border: 1px solid rgba(204,140,46,0.15); border-radius: 1rem; padding: 2rem; }
.sparkle-icon { width: 2rem; height: 2rem; color: var(--primary); stroke: var(--primary); fill: none; margin-bottom: 1rem; }
.first-timer-cta h3 { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.first-timer-cta > p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; line-height: 1.7; }
.ft-cta-checks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.ft-cta-check { display: flex; align-items: center; gap: 0.625rem; }
.ft-cta-check svg { width: 1rem; height: 1rem; color: var(--primary); stroke: var(--primary); fill: none; flex-shrink: 0; }
.ft-cta-check span { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
@media (min-width: 1024px) { .first-timer-bottom { grid-template-columns: 1fr 1fr; } }

/* ===== GALLERY ===== */
.gallery-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 3rem; }
.gallery-grid img { width: 100%; height: 16rem; object-fit: cover; border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.05); }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== LOCATION ===== */
.location-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.location-card { background: var(--bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 2rem 3rem; }
.location-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }
.location-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.location-detail { display: flex; gap: 1rem; }
.location-detail svg { width: 1.5rem; height: 1.5rem; color: var(--primary); stroke: var(--primary); fill: none; flex-shrink: 0; }
.location-detail p { color: rgba(255,255,255,0.8); line-height: 1.6; }
.location-btns { display: flex; flex-direction: column; gap: 1rem; }
.location-btns a { text-align: center; padding: 1rem 1.5rem; }
.map-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.map-frame { height: 25rem; background: var(--bg); border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; opacity: 0.8; filter: brightness(90%) contrast(125%) sepia(20%) hue-rotate(15deg); }
.map-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-btn { background: rgba(204,140,46,0.2); color: var(--primary); border: 1px solid rgba(204,140,46,0.3); padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }
.map-btn:hover { background: rgba(204,140,46,0.3); }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }

/* ===== NEARBY ===== */
.nearby-section { padding: 4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
.nearby-section h2 { font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }
.nearby-section p { font-size: 0.875rem; color: rgba(255,255,255,0.6); max-width: 40rem; margin: 0 auto 2rem; line-height: 1.7; }

/* ===== BOOKING STEPS ===== */
.booking-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
.step-box { background: var(--bg); border: 1px solid rgba(255,255,255,0.05); border-radius: 0.5rem; padding: 2rem; }
.step-badge { background: var(--primary); color: var(--primary-fg); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 0.25rem; display: inline-block; margin-bottom: 1rem; }
.step-box h3 { font-family: var(--font-serif); font-size: 1.125rem; color: #fff; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== AVAILABILITY ===== */
.availability-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
.availability-section p { color: rgba(255,255,255,0.7); max-width: 40rem; margin: 0 auto 2rem; }
.availability-list { display: flex; justify-content: center; margin-bottom: 3rem; }
.availability-list ul { list-style: none; text-align: left; font-size: 0.875rem; color: rgba(255,255,255,0.5); display: flex; flex-direction: column; gap: 0.5rem; }

/* ===== FAQ ===== */
.faq-section { padding: 6rem 0; background: var(--bg-card); border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--fg);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--primary); }
.faq-trigger svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; flex-shrink: 0; color: rgba(255,255,255,0.3); transition: all 0.25s; }
.faq-trigger.open svg { transform: rotate(180deg); color: var(--primary); }
.faq-body { font-size: 0.9375rem; color: rgba(255,255,255,0.7); line-height: 1.8; padding-bottom: 1.25rem; display: none; }
.faq-body.visible { display: block; }

/* ===== SEO SECTION ===== */
.seo-section { padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.seo-section h2 { font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; text-align: center; }
.seo-content { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.seo-content p { margin-bottom: 1rem; }
.seo-content a { color: var(--primary); }

/* ===== FINAL CONVERSION ===== */
.final-cta-section { padding: 8rem 0; position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.final-cta-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg), rgba(28,23,20,0.8), var(--bg)); }
.final-cta-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center; }
.final-cta-content .eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; margin-bottom: 2rem; display: block; }
.final-cta-content h2 { font-size: clamp(2rem, 6vw, 3.75rem); color: #fff; margin-bottom: 3rem; }
.final-manifesto { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem); color: rgba(255,255,255,0.7); display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 3rem; }
.final-manifesto .highlight { color: var(--primary); margin-top: 1rem; display: block; }
.final-cta-note { font-size: 0.875rem; color: rgba(255,255,255,0.5); max-width: 40rem; margin: 0 auto 4rem; }
.final-cta-title { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.2em; color: #fff; text-transform: uppercase; margin-bottom: 3rem; }
.final-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 4rem; }
.final-badge-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(204,140,46,0.8); text-transform: uppercase; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.1); padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .logo-name { font-size: 1.875rem; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 20rem; margin-bottom: 1.5rem; }
.footer-rating { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; }
.footer-rating svg { width: 0.75rem; height: 0.75rem; fill: var(--primary); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 1.5rem; font-family: var(--font-sans); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--primary); stroke: var(--primary); fill: none; flex-shrink: 0; margin-top: 0.25rem; }
.footer-contact-item p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-item a { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-links a:hover { color: rgba(255,255,255,0.6); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(1.75rem); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-2.5rem); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(2.5rem); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE HELPERS ===== */
@media (min-width: 640px) {
  .hero-btns { flex-wrap: nowrap; }
  .announcement-bar { flex-wrap: nowrap; }
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}
