/* ============================================================
   ORA THAI SPA — STYLES
   Palette inspired by Indigo Spa reference:
   Warm cream (#F5EDE3), Earthy brown (#8B7355), Charcoal (#2C2C2C),
   White (#FFFFFF), Light bg (#FAF7F4), Gold accent (#C4A265)
   Font: DM Sans (Sans-serif)
   ============================================================ */

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

:root {
  --cream: #F5EDE3;
  --cream-light: #FAF7F4;
  --cream-dark: #EDE2D4;
  --brown: #8B7355;
  --brown-light: #A89278;
  --brown-dark: #6B5740;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --off-white: #FDFCFA;
  --gray-100: #F5F3F0;
  --gray-200: #E8E4DF;
  --gray-300: #D1CBC3;
  --gray-400: #A9A099;
  --gray-500: #7A7268;
  --gray-600: #5C5549;
  --green-wa: #25d366;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.1);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: .4s cubic-bezier(.4,0,.2,1);
  --transition-fast: .25s cubic-bezier(.4,0,.2,1);
  --max-width: 1180px;
}

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

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

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

/* ======================== PRELOADER ======================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Lotus animation */
.preloader-lotus {
  position: relative;
  width: 48px;
  height: 48px;
}

.preloader-lotus span {
  position: absolute;
  width: 12px;
  height: 24px;
  background: var(--brown);
  border-radius: 50% 50% 50% 50% / 100% 100% 0% 0%;
  bottom: 12px;
  left: 50%;
  transform-origin: bottom center;
  animation: lotus-bloom 2s ease-in-out infinite;
}

.preloader-lotus span:nth-child(1) { transform: translateX(-50%) rotate(-60deg); animation-delay: 0s; }
.preloader-lotus span:nth-child(2) { transform: translateX(-50%) rotate(-30deg); animation-delay: .1s; }
.preloader-lotus span:nth-child(3) { transform: translateX(-50%) rotate(0deg); animation-delay: .2s; }
.preloader-lotus span:nth-child(4) { transform: translateX(-50%) rotate(30deg); animation-delay: .3s; }
.preloader-lotus span:nth-child(5) { transform: translateX(-50%) rotate(60deg); animation-delay: .4s; }

@keyframes lotus-bloom {
  0%, 100% { opacity: .3; height: 18px; }
  50% { opacity: 1; height: 28px; }
}

.preloader-text {
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(30,22,14,.92);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 4px 24px rgba(0,0,0,.18), 0 1px 0 rgba(196,162,101,.12) inset;
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 5px;
  background: linear-gradient(135deg, var(--gold-light) 20%, #f5e4c3 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity var(--transition);
}

.navbar.scrolled .logo-name {
  opacity: .95;
}

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

.nav-link {
  position: relative;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition-fast);
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease, left .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.navbar.scrolled .nav-link {
  color: rgba(255,255,255,.55);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold-light);
}

.nav-cta-mobile {
  display: none;
}

.nav-cta {
  padding: 9px 22px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 12px rgba(196,162,101,.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,162,101,.35);
  filter: brightness(1.08);
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
}

.navbar.scrolled .nav-cta:hover {
  filter: brightness(1.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--gold-light);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,115,85,.2);
}

.hero .btn-primary {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.hero .btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.18);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(4px);
  transform: scale(1.05);
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7a6552 0%, #a89278 40%, #c4a265 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
}

.hero-bg-placeholder svg {
  width: 64px;
  height: 64px;
}

.hero-bg-placeholder small {
  font-size: .8rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20,18,15,.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 120px 24px 80px;
}

.hero-brand {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 10px;
  background: linear-gradient(135deg, var(--gold-light) 20%, #f5e4c3 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 2px;
  font-style: italic;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 6px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ======================== SECTIONS ======================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ======================== INTRO ======================== */
.intro {
  background: var(--white);
  padding: 80px 0;
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* ======================== SERVICES (Image Cards Row) ======================== */
.services {
  background: var(--white);
  padding: 40px 0 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  text-align: center;
  cursor: pointer;
}

.service-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.service-card:hover .service-image-wrap {
  transform: scale(1.02);
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
}

.service-img-placeholder svg {
  width: 48px;
  height: 48px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-name {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-underline {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
  transition: width var(--transition);
}

.service-card:hover .service-underline {
  width: 64px;
}

/* ======================== ABOUT ======================== */
.about {
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 85%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 50%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brown-light);
}

.about-img-placeholder svg {
  width: 32px;
  height: 32px;
}

.about-img-placeholder small {
  font-size: .75rem;
  opacity: .6;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: var(--charcoal);
  font-weight: 400;
}

.about-feature svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ======================== EXPERIENCE / WELLNESS MENU ======================== */
.experience {
  background: var(--white);
}

/* ── Category Tabs ── */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.menu-tab {
  background: var(--cream-light);
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.menu-tab:hover {
  color: var(--brown);
  border-color: var(--brown-light);
  background: var(--cream);
}

.menu-tab.active {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}

/* ── Panels ── */
.menu-panels {
  position: relative;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: panelIn .35s ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Tile Grid ── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Individual Tile ── */
.tile {
  background: var(--cream-light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cream-dark);
}

.tile-featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, var(--cream-light) 0%, #faf5ed 100%);
}

.tile-featured:hover {
  border-color: var(--gold-light);
}

/* ── Tile Header ── */
.tile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tile-name {
  font-size: .98rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .3px;
}

.tile-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.4;
}

/* ── Tile Description ── */
.tile-desc {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

/* ── Tile Pricing ── */
.tile-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.tile-price {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 6px 12px;
}

.tp-dur {
  font-size: .72rem;
  color: var(--gray-500);
  font-weight: 400;
}

.tp-amt {
  font-size: .84rem;
  color: var(--brown-dark);
  font-weight: 600;
  letter-spacing: .3px;
}

/* ── Tile Book Button ── */
.tile-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  border: 1px solid var(--brown-light);
  border-radius: 6px;
  padding: 10px 20px;
  transition: all var(--transition-fast);
  margin-top: auto;
  text-align: center;
}

.tile-book:hover {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}

/* ── Menu Note ── */
.menu-note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 32px;
  margin-bottom: 8px;
}

.treatments-cta {
  text-align: center;
  margin-top: 24px;
}

/* ======================== PARALLAX DIVIDER ======================== */
.parallax-divider {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b7355 0%, #c4a265 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.2);
}

.parallax-bg-placeholder svg {
  width: 48px;
  height: 48px;
}

.parallax-bg-placeholder small {
  font-size: .75rem;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,.5);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-quote {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ======================== WELLNESS CLUB ======================== */
.wellness-club {
  background: var(--cream-light);
}

.wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.wellness-images {
  position: relative;
  padding: 0 16px 84px 0;
}

.wellness-img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}

.wellness-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Wellness Membership Card (Vertical Luxury) ---------- */
.wc-card-wrap {
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 44%;
  perspective: 900px;
  z-index: 2;
}

.wc-card {
  position: relative;
  aspect-ratio: 2.8 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(155deg, #3d2c1a 0%, #2a1d10 40%, #1a120a 100%);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  box-shadow:
    0 24px 56px rgba(44, 30, 12, .45),
    0 0 0 1px rgba(196,162,101,.2) inset;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22,.68,0,1.2), box-shadow .55s ease;
}

.wc-card:hover {
  transform: rotateY(-6deg) rotateX(4deg) translateY(-6px);
  box-shadow:
    -18px 28px 56px rgba(44, 30, 12, .5),
    0 0 90px rgba(196,162,101,.08),
    0 0 0 1px rgba(196,162,101,.32) inset;
}

/* Decorative pattern overlay */
.wc-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 85%, rgba(196,162,101,.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 15%, rgba(255,255,255,.04) 0%, transparent 55%);
}

.wc-pattern::before {
  content: '';
  position: absolute;
  top: -45%;
  right: -35%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(196,162,101,.12);
  border-radius: 50%;
}

.wc-pattern::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -25%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

/* Shine sweep on hover */
.wc-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(196,162,101,.14) 40%,
    rgba(255,255,255,.10) 44%,
    transparent 60%
  );
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 4;
}

.wc-card:hover .wc-shine {
  animation: shine-sweep .8s ease forwards;
}

@keyframes shine-sweep {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

/* Card header */
.wc-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-logo {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(196,162,101,.15);
  border: 1px solid rgba(196,162,101,.35);
}

.wc-badge {
  font-size: .6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(196,162,101,.15);
  border: 1px solid rgba(196,162,101,.35);
  color: var(--gold-light);
}

/* Card body */
.wc-card-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 16px 0;
}

.wc-label {
  display: block;
  font-size: .62rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  opacity: .55;
  margin-bottom: 8px;
}

.wc-tier {
  display: block;
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--gold-light) 20%, #f5e4c3 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card footer */
.wc-card-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(196,162,101,.18);
  padding-top: 14px;
  text-align: center;
}

.wc-footer-text {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--white);
}

.wellness-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brown-light);
}

.wellness-img-placeholder svg {
  width: 32px;
  height: 32px;
}

.wellness-img-placeholder small {
  font-size: .75rem;
  opacity: .6;
}

.wellness-content .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.wellness-content .section-title {
  margin-bottom: 20px;
}

.wellness-text {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 28px;
}

.wellness-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.wellness-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.perk-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(196,162,101,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.perk-icon svg {
  width: 18px;
  height: 18px;
}

.wellness-perk h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.wellness-perk p {
  font-size: .82rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ======================== OUR UNIQUENESS ======================== */
.uniqueness {
  background: var(--white);
}

.uniqueness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.uniqueness-card {
  position: relative;
  text-align: center;
  padding: 40px 24px 36px;
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  overflow: hidden;
}

.uniqueness-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition), width var(--transition);
}

.uniqueness-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,162,101,.2);
}

.uniqueness-card:hover::before {
  opacity: 1;
  width: 64px;
}

.uniqueness-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,162,101,.1);
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}

.uniqueness-card:hover .uniqueness-icon {
  background: var(--gold);
  color: var(--white);
}

.uniqueness-icon svg {
  width: 24px;
  height: 24px;
}

.uniqueness-card h3 {
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.uniqueness-card p {
  font-size: .82rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ======================== REVIEWS ======================== */
.reviews {
  background: var(--cream-light);
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.review-arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all var(--transition-fast);
}

.review-arrow:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.review-arrow svg {
  width: 18px;
  height: 18px;
}

.reviews-track-wrapper {
  flex: 1;
  overflow: hidden;
}

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

.review-card {
  min-width: 100%;
  text-align: center;
  padding: 12px 24px;
}

.review-highlight {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.review-text {
  font-size: .9rem;
  color: var(--gray-500);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-author {
  font-size: .82rem;
  color: var(--brown);
  font-weight: 500;
  letter-spacing: .5px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.review-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* ======================== GALLERY ======================== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brown-light);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-img-placeholder svg {
  width: 32px;
  height: 32px;
}

.gallery-img-placeholder small {
  font-size: .75rem;
  opacity: .6;
}

/* ======================== FAQ ======================== */
.faq {
  background: var(--cream-light);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(196,162,101,.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--brown);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--gray-400);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--gold);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ======================== CTA SECTION ======================== */
.cta-section {
  background: var(--white);
  padding: 60px 0 100px;
}

.cta-banner {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 4px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-banner p {
  font-size: .95rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================== CONTACT ======================== */
.contact {
  background: var(--cream-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(196,162,101,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-card h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.contact-info-card p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--gray-500);
}

.contact-info-card a:hover {
  color: var(--brown);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.btn-view-locations {
  margin-top: 8px;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: .88rem;
  color: var(--charcoal);
  background: var(--cream-light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,162,101,.12);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A7268' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(22,163,74,.08);
  color: #16a34a;
}

.form-status.error {
  display: block;
  background: rgba(220,38,38,.08);
  color: #dc2626;
}

/* ======================== MAP ======================== */
.map-section {
  height: auto;
}

.map-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.map-dual-item {
  height: 300px;
  position: relative;
}

.map-dual-item iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-dual-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(44,44,44,.85);
  color: #fff;
  font-size: .75rem;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--font);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-400);
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
}

.map-placeholder span {
  font-size: .85rem;
  font-weight: 400;
}

.map-placeholder small {
  font-size: .7rem;
  opacity: .5;
}

/* ======================== FOOTER ======================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-about p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}

.footer-col a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

.footer-credit a {
  color: var(--gold);
  font-weight: 500;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ======================== FLOATING BUTTONS ======================== */
.float-whatsapp,
.float-phone {
  position: fixed;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.float-whatsapp {
  bottom: 96px;
  right: 24px;
  background: var(--green-wa);
}

.float-phone {
  bottom: 36px;
  right: 24px;
  background: var(--charcoal);
}

.float-whatsapp:hover,
.float-phone:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.float-whatsapp svg,
.float-phone svg {
  width: 20px;
  height: 20px;
}

/* ======================== BACK TO TOP ======================== */
.back-to-top {
  position: fixed;
  bottom: 36px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ======================== ANIMATIONS ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== RESPONSIVE ======================== */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero-brand { font-size: 3rem; letter-spacing: 8px; }
  .hero-title { font-size: 2.6rem; letter-spacing: 4px; }
  .section-title { font-size: 1.9rem; }
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .uniqueness-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(30,22,14,.97);
    flex-direction: column;
    padding: 100px 28px 40px;
    gap: 4px;
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
    transition: right var(--transition);
    z-index: 1000;
    border-left: 1px solid rgba(196,162,101,.15);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    color: rgba(245,237,227,.7);
    font-size: .88rem;
    padding: 12px 14px;
    width: 100%;
    border-radius: 8px;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--gold);
    background: rgba(196,162,101,.08);
  }

  .nav-cta {
    display: none;
  }

  .nav-links .nav-cta {
    display: inline-flex;
  }

  .nav-cta-mobile {
    display: list-item;
    margin-top: 12px;
    padding: 0 14px;
  }

  .nav-cta-mobile .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .hero { min-height: 100svh; }
  .hero-brand { font-size: 2.4rem; letter-spacing: 6px; }
  .hero-title { font-size: 2rem; letter-spacing: 3px; }
  .hero-eyebrow { font-size: .78rem; }
  .hero-content { padding: 100px 16px 60px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .section-title { font-size: 1.6rem; letter-spacing: 3px; }

  .intro-text { font-size: 1.05rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    max-width: 420px;
    margin: 0 auto;
  }

  .menu-tabs { gap: 6px; margin-bottom: 32px; }
  .menu-tab { font-size: .72rem; padding: 8px 14px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tile { padding: 24px 20px 20px; }

  .wellness-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wellness-images {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 0 84px 0;
  }

  .wc-card-wrap {
    right: 8px;
    width: 48%;
  }

  .uniqueness-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .map-dual-grid { grid-template-columns: 1fr; }
  .map-dual-item { height: 240px; }

  .review-arrow { width: 40px; height: 40px; min-width: 40px; }
  .review-highlight { font-size: .95rem; }

  .cta-banner { padding: 48px 28px; }
  .cta-banner h2 { font-size: 1.6rem; letter-spacing: 3px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .parallax-quote { font-size: 1.1rem; }
  .parallax-divider { min-height: 280px; }
}

/* Mobile */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }

  .hero-brand { font-size: 1.8rem; letter-spacing: 4px; }
  .hero-title { font-size: 1.55rem; letter-spacing: 2px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.35rem; letter-spacing: 2px; }
  .section-header { margin-bottom: 36px; }

  .intro-text { font-size: .95rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-name { font-size: .88rem; }

  .uniqueness-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .uniqueness-card { padding: 24px 12px; }

  .menu-tabs { gap: 5px; margin-bottom: 24px; }
  .menu-tab { font-size: .68rem; padding: 7px 12px; letter-spacing: .5px; }
  .tile-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tile { padding: 20px 16px 18px; }
  .tile-name { font-size: .88rem; }
  .tile-desc { font-size: .76rem; margin-bottom: 12px; }
  .tile-prices { gap: 5px; margin-bottom: 14px; padding-top: 12px; }
  .tile-price { padding: 5px 8px; }
  .tp-dur { font-size: .68rem; }
  .tp-amt { font-size: .78rem; }
  .tile-book { font-size: .7rem; padding: 8px 14px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-wide { grid-column: span 1; }
  .gallery-tall { grid-row: span 1; }
  .gallery-img-placeholder { min-height: 200px; }

  .review-arrow { display: none; }
  .reviews-slider { gap: 0; }

  .cta-banner { padding: 36px 20px; }
  .cta-banner h2 { font-size: 1.3rem; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  .contact-form { padding: 24px 16px; }

  .parallax-divider { min-height: 240px; }
  .parallax-quote { font-size: .95rem; padding: 0 16px; }

  .wc-card-wrap {
    width: 54%;
    right: 0;
  }

  .wc-card {
    padding: 20px 16px;
  }

  .wc-tier { font-size: 1.15rem; }
  .wc-logo { font-size: .62rem; letter-spacing: 2px; }
  .wc-badge { font-size: .52rem; padding: 4px 8px; }
  .wc-val { font-size: .7rem; }

  .float-whatsapp { bottom: 88px; right: 16px; width: 46px; height: 46px; }
  .float-phone { bottom: 32px; right: 16px; width: 46px; height: 46px; }
  .back-to-top { left: 16px; bottom: 32px; width: 38px; height: 38px; }
}

/* Hover cleanup for touch */
@media (hover: none) {
  .service-card:hover .service-image-wrap,
  .uniqueness-card:hover,
  .gallery-item:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ======================== TOUCH TARGET & MOBILE POLISH ======================== */

/* Ensure minimum 44px touch targets (WCAG / Apple HIG) */
@media (pointer: coarse) {
  .btn {
    min-height: 44px;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .faq-question {
    min-height: 48px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .review-arrow {
    min-width: 44px;
    min-height: 44px;
  }

  .review-dots .dot {
    min-width: 12px;
    min-height: 12px;
  }
}

/* Safe area insets for notched devices (iPhone X+) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer-bottom {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .float-whatsapp {
    bottom: calc(96px + env(safe-area-inset-bottom));
    right: calc(24px + env(safe-area-inset-right));
  }

  .float-phone {
    bottom: calc(36px + env(safe-area-inset-bottom));
    right: calc(24px + env(safe-area-inset-right));
  }

  .back-to-top {
    bottom: calc(36px + env(safe-area-inset-bottom));
    left: calc(24px + env(safe-area-inset-left));
  }
}

/* Show nav CTA inside mobile menu */
@media (max-width: 768px) {
  .nav-cta-mobile .nav-cta {
    display: inline-flex;
    margin-top: 16px;
    align-self: flex-start;
    margin-left: 14px;
  }

  /* Gallery items get consistent aspect ratios on mobile */
  .gallery-item img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

/* ======================== BOOKING SUCCESS MODAL ======================== */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.booking-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow-lg);
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.booking-modal-close:hover {
  opacity: 1;
}

.booking-modal-icon {
  margin-bottom: 1rem;
}

.booking-modal-icon svg {
  width: 56px;
  height: 56px;
  color: #25D366;
}

.booking-modal h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.booking-modal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.booking-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-modal-actions .btn {
  justify-content: center;
}

/* WhatsApp button for pages without locations.css */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}
}