/* ==========================================
   Headspa Israel - Premium Platform Stylesheet
   Netflix-inspired, light & luxurious
   ========================================== */

/* Design Tokens */
:root {
  /* Brand */
  --forest: #485649;
  --forest-rgb: 72, 86, 73;
  --ivory: #fafaf7;
  --accent-mist: #a8c4a0;
  --accent-warm: #c5a55a;

  /* Core palette */
  --primary: #485649;
  --primary-dark: #3a4538;
  --primary-light: #e8ede5;
  --primary-ghost: rgba(72, 86, 73, 0.06);

  /* Neutrals */
  --dark: #1a1f1a;
  --dark-secondary: #2c3329;
  --cream: #fafaf7;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f2;
  --gray-200: #e2e5e3;
  --gray-300: #cdd1ce;
  --gray-400: #a8ada9;
  --gray-500: #7d837e;
  --gray-600: #5a605b;
  --gray-700: #3d423e;
  --text: #2c312d;
  --text-light: #5a605b;
  --text-muted: #8a908b;

  /* Accents */
  --gold: #c5a55a;
  --gold-light: #f5ecd7;
  --success: #34a853;
  --whatsapp: #25d366;

  /* Shadows - layered for depth */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.05);
  --shadow-2xl: 0 24px 64px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 40px rgba(72, 86, 73, 0.15);
  --shadow-card-hover: 0 12px 40px rgba(72, 86, 73, 0.12), 0 4px 12px rgba(0,0,0,0.06);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: blur(20px) saturate(180%);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease-out);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s var(--ease-out);

  /* Typography */
  --font-main: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1340px;
  --header-height: 76px;
  --section-gap: 100px;
  --bento-radius: 24px;
  --site-padding: 24px;
  --mobile-content-width: 92%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.06);
  transition: var(--transition);
  height: var(--header-height);
  box-sizing: border-box;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.92);
  height: 64px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: calc(24px + env(safe-area-inset-left, 0px));
  padding-right: calc(24px + env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  transition: var(--transition);
}

.site-header.scrolled .logo img {
  height: 36px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-arrow {
  font-size: 0.65rem;
  transition: var(--transition);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--gray-200);
}

.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(var(--forest-rgb), 0.3);
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(var(--forest-rgb), 0.4) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Hero Section - Auto Slider
   ========================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 60px;
  overflow: hidden;
  box-sizing: border-box;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--forest-rgb), 1) 0%, rgba(var(--forest-rgb), 0.87) 45%, rgba(250, 250, 247, 0.33) 100%);
  z-index: 1;
}

/* ── Bento Hero ── */
.bento-hero {
  padding: calc(var(--header-height) + 20px) 0 clamp(28px, 4vw, 40px);
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 248px;
  grid-template-rows: auto auto auto;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
}

/* Desktop: match left rail height to hero card; mobile: unwrap for grid placement */
.bento-side-stack {
  display: contents;
}

.bento-main {
  grid-row: 1 / 4;
  grid-column: 1;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 440px;
  max-height: none;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--forest-rgb), 0.08);
}

/* Hero Slider (inside bento) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-height: none;
  overflow: hidden;
  border-radius: inherit;
}

@media (min-width: 769px) {
  .bento-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }

  .bento-main {
    flex: 1;
    min-width: 0;
    align-self: stretch;
    min-height: 460px;
    max-height: none;
    grid-row: unset;
    grid-column: unset;
  }

  .bento-side-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 248px;
    flex-shrink: 0;
    min-height: 0;
  }

  .bento-side-stack .bento-card {
    flex: 1;
    min-height: 0;
  }

  .hero-slider {
    min-height: 460px;
    max-height: none;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 6vw, 72px) clamp(18px, 4vw, 48px) clamp(180px, 20vw, 220px);
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

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

.hero-slide .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-slide.active .hero-bg img {
  transform: scale(1.06);
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(26, 31, 26, 0.65) 0%,
    rgba(26, 31, 26, 0.35) 45%,
    rgba(18, 22, 18, 0.82) 100%
  );
  z-index: 1;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-slide h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-slide h1 span {
  color: var(--accent-mist);
}

.hero-slide p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .hero-slide:not(.active) .hero-buttons {
    visibility: hidden;
    pointer-events: none;
  }

  .hero-slide.active .hero-buttons {
    visibility: visible;
    pointer-events: auto;
  }

  .hero-slide .hero-buttons {
    position: relative;
    z-index: 5;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 24px;
    width: auto;
    max-width: min(360px, 100%);
  }

  .hero-slide .hero-buttons .btn-hero-cta {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-slide {
    justify-content: center;
    align-items: center;
    padding-top: clamp(52px, 6vw, 76px);
    padding-bottom: clamp(190px, 18vw, 220px);
  }

  .hero-slide h1 {
    margin-bottom: 12px;
  }

  .hero-slide p {
    margin-bottom: 0;
  }

  .hero-dots {
    bottom: 118px;
    left: 20px;
  }
}

/* Hero Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 118px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 12;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 4px;
}

/* Hero CTA gradient */
.btn-hero-cta {
  background: linear-gradient(145deg, #5a6e5f 0%, var(--primary) 45%, var(--primary-dark) 100%);
  background-size: 120% 120%;
  animation: hero-cta-shift 8s ease-in-out infinite, hero-cta-pulse-shadow 2.4s ease-in-out infinite;
  font-size: 0.95rem;
  padding: 14px 34px;
}

@keyframes hero-cta-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes hero-cta-pulse-shadow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(var(--forest-rgb), 0.35), 0 0 0 0 rgba(var(--forest-rgb), 0.35);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 10px 36px rgba(var(--forest-rgb), 0.42), 0 0 0 8px rgba(var(--forest-rgb), 0.06);
    transform: translateY(-2px);
  }
}

/* Bento side cards */
.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  box-shadow: none;
  border: none;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.bento-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
  color: var(--forest);
}

.bento-card-icon svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.bento-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.bento-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.bento-arrow {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(4px);
}

.bento-card:hover .bento-arrow {
  opacity: 0.6;
  transform: translateX(0);
}

.bento-card--book {
  background: var(--primary-light);
}

.bento-card--wa {
  background: #e8f5e9;
}

.bento-card--gift {
  background: var(--gold-light);
}

/* Bento responsive */
@media (max-width: 768px) {
  :root {
    --site-padding: 16px;
    --bento-radius: 18px;
  }

  .bento-hero {
    padding: calc(var(--header-height) + 12px) 0 clamp(22px, 5vw, 36px);
  }

  .bento-hero .container {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    padding: 0;
  }

  .bento-main {
    grid-row: 1;
    grid-column: 1 / -1;
    min-height: 430px;
    max-height: none;
  }

  .hero-slider {
    min-height: 430px;
    max-height: none;
  }

  .hero-slide {
    justify-content: center;
    padding: 36px 16px 150px;
  }

  .hero-slide h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-slide p {
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .hero-slide .hero-buttons {
    margin-top: 18px;
    margin-bottom: 0;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 14px;
    margin-bottom: 12px;
  }

  .btn-hero-cta {
    font-size: 0.85rem;
    padding: 11px 26px;
  }

  .hero-dots {
    display: none;
  }

  .search-section--hero {
    width: min(100%, calc(100% - 16px));
    padding: 0 8px 20px;
  }

  .search-section--hero .search-pills {
    margin-top: 8px;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .search-section--hero .search-pill {
    padding: 5px 12px;
    font-size: 0.72rem;
  }

  .bento-card {
    padding: 14px 14px;
    border-radius: var(--bento-radius);
    min-height: 0;
    z-index: 1;
    position: relative;
  }

  .bento-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .bento-card h3 {
    font-size: 0.82rem;
  }

  .bento-card p {
    font-size: 0.7rem;
    display: none;
  }

  .bento-arrow {
    display: none;
  }

  .bento-card--gift {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
  }

  .bento-card--gift .bento-card-icon {
    margin-bottom: 0;
  }

  .bento-card--gift h3 {
    margin-bottom: 0;
  }
}

/* Page Hero - inner pages */
.page-hero,
.hero-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px clamp(56px, 7vw, 80px);
  overflow: hidden;
  background-color: var(--forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
  margin-top: calc(var(--header-height) + 16px);
}

.page-hero .hero-overlay,
.hero-section .hero-overlay {
  background: linear-gradient(
    190deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.58) 100%
  );
}

.page-hero .container,
.hero-section .container,
.page-hero .hero-content,
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero .hero-content,
.hero-section .hero-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1,
.hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.page-hero .hero-subtitle,
.hero-section .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(250, 250, 247, 0.92);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.page-hero p:not(.hero-subtitle) {
  font-size: 1.05rem;
  color: rgba(250, 250, 247, 0.88);
  max-width: 550px;
  margin: 0 auto;
}

.page-hero .hero-buttons,
.hero-section .hero-buttons {
  margin-top: 8px;
}

.hero-branch-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

/* Inner heroes: breadcrumbs */
.page-hero .breadcrumbs,
.page-hero .breadcrumb,
.hero-section .breadcrumbs,
.hero-section .breadcrumb {
  padding: 0 0 20px;
  font-size: 0.86rem;
  color: rgba(250, 250, 247, 0.75);
  text-align: center;
}

.page-hero .breadcrumbs a,
.page-hero .breadcrumb a,
.hero-section .breadcrumbs a,
.hero-section .breadcrumb a {
  color: var(--accent-mist);
}

.page-hero .breadcrumbs a:hover,
.page-hero .breadcrumb a:hover,
.hero-section .breadcrumbs a:hover,
.hero-section .breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb ol,
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li,
.breadcrumbs ol li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.breadcrumb li:not(:last-child)::after,
.breadcrumbs ol li:not(:last-child)::after {
  content: '›';
  opacity: 0.5;
  font-size: 0.85rem;
  margin-right: 4px;
}

.breadcrumb li span,
.breadcrumbs ol li span {
  color: rgba(250, 250, 247, 0.95);
}

body > .breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

body > .breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

body > .breadcrumbs a {
  color: var(--forest);
  font-weight: 500;
}

body > .breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

body > .breadcrumbs span {
  margin: 0 6px;
  color: var(--gray-500);
}

/* Hero variants */
.hero.hero-page {
  min-height: 42vh;
  background: var(--forest);
  padding: calc(var(--header-height) + 44px) 24px 48px;
}

.hero.hero-page:not(:has(.hero-bg)) {
  background: var(--forest);
}

.hero.hero-page .hero-content {
  max-width: 720px;
}

.hero.hero-page h1 {
  color: var(--white);
}

.hero.hero-page .hero-subtitle {
  color: rgba(250, 250, 247, 0.9);
}

.hero > img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero.hero-page:has(img.hero-bg) > .hero-overlay {
  z-index: 1;
}

.hero.hero-article {
  min-height: 0;
  padding: calc(var(--header-height) + 40px) 24px 36px;
  background: var(--white);
  align-items: flex-start;
  text-align: center;
}

.hero.hero-article .hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero.hero-article h1 {
  color: var(--forest);
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
}

.hero.hero-article .hero-subtitle {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==========================================
   Smart Search
   ========================================== */
.search-section {
  position: relative;
}

/* Legacy offset (homepage search lives in hero via .search-section--hero) */
.search-section:not(.search-section--hero) {
  margin-top: -48px;
  z-index: 20;
  padding: 0 24px;
}

.search-section--hero {
  margin-top: 0;
  padding: 0 16px 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(560px, calc(100% - 36px));
  z-index: 28;
}

.search-section--hero .search-card {
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border-radius: var(--radius-lg);
}

.search-section--hero .search-pills {
  margin-top: 6px;
  justify-content: center;
}

.search-section--hero .search-pill {
  padding: 6px 16px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.search-section--hero .search-pill:hover,
.search-section--hero .search-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.search-card {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  border: 1px solid var(--gray-200);
}

.search-section--hero .search-results {
  max-width: none;
  width: 100%;
  left: 0;
  right: 0;
  transform: none;
}

.search-inner {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 4px 4px 4px 8px;
}

.search-inner svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gray-400);
  margin-right: 12px;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--text);
  outline: none;
  direction: rtl;
}

.search-input::placeholder {
  color: var(--gray-400);
}

.search-btn {
  flex-shrink: 0;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-dark);
}

/* Quick filter pills */
.search-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.search-pill {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.search-pill:hover,
.search-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Search results dropdown */
.search-results {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 16px);
  max-width: 724px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  margin-top: 8px;
  padding: 8px;
  display: none;
  z-index: 30;
  max-height: 380px;
  overflow-y: auto;
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}

.search-result-item:hover {
  background: var(--primary-light);
}

.search-result-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-ghost);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}

.search-result-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.search-result-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================
   Section Titles
   ========================================== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.section .section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 8px;
  line-height: 1.65;
}

.section-pricing h2,
.section-faq h2,
.section-benefits > .container > h2,
.section-about > .container > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}

.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--accent-mist));
  margin: 18px auto 0;
  border-radius: 3px;
  opacity: 0.9;
}

.section-header .section-divider {
  margin-top: 16px;
}

.section-content {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.section-content h2 {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin-bottom: 20px;
}

.section-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: right;
}

.content-block {
  max-width: 44rem;
  margin: 0 auto;
}

.content-block p,
.article-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
  color: var(--text);
}

.content-block .lead,
.about-text .lead,
.article-content .lead {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--dark);
  font-weight: 500;
}

.section-alt {
  background: var(--primary-light) !important;
}

.article-content {
  max-width: 48rem;
  margin: 0 auto;
}

/* ==========================================
   Branches Section - Netflix Cards
   ========================================== */
.branches-showcase {
  padding: 0;
}

.branches-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.branch-card-premium {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.branch-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(var(--forest-rgb), 0.15);
}

.branch-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.branch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.branch-card-premium:hover .branch-card-img img {
  transform: scale(1.08);
}

.branch-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}

.branch-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  z-index: 2;
}

.branch-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.branch-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark);
  margin: 0;
}

.branch-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.branch-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: var(--dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.branch-card-rating svg {
  width: 17px;
  height: 17px;
  color: #f4b400;
  fill: currentColor;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}

.branch-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.branch-card-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.branch-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.branch-card-actions {
  display: flex;
  gap: 10px;
}

.branch-card-actions .btn {
  flex: 1;
  font-size: 0.88rem;
  padding: 12px 16px;
}

/* ==========================================
   Services Section - Card Grid
   ========================================== */
.services-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-v2 {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all 0.35s var(--ease-out);
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--accent-mist));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
  transform-origin: center;
}

.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(var(--forest-rgb), 0.12);
}

.service-card-v2:hover::before {
  transform: scaleX(1);
}

.service-card-v2 .service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-ghost);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.35s var(--ease-out);
  color: var(--forest);
}

.service-card-v2:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(var(--forest-rgb), 0.2);
}

.service-card-v2 h3 {
  font-size: 1.08rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.service-card-v2 p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   Vouchers / Gift Cards (same .section-contained band as services)
   ========================================== */
.vouchers-section.section-contained {
  background: transparent;
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
}

.vouchers-section::before {
  display: none;
}

.vouchers-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}

.vouchers-tile {
  background: rgba(237, 244, 236, 0.55);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3.5vw, 44px);
  box-shadow: none;
  border: none;
  position: relative;
}

.vouchers-tile--visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 3vw, 36px);
}

.vouchers-tile--visual .voucher-visual {
  width: 100%;
  max-width: none;
}

.voucher-visual {
  position: relative;
}

.voucher-card-display {
  background: linear-gradient(145deg, var(--forest) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.voucher-card-display::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.voucher-card-display::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.voucher-card-display .voucher-logo {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 20px;
}

.voucher-card-display .voucher-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.voucher-card-display .voucher-subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 28px;
}

.voucher-card-display .voucher-price {
  font-size: 2.2rem;
  font-weight: 800;
}

.voucher-card-display .voucher-price small {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}

.vouchers-tile--copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.vouchers-tile--copy > p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

.voucher-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.voucher-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.voucher-feature svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================
   Academy Section
   ========================================== */
.academy-section {
  background: transparent;
  position: relative;
  overflow: visible;
  max-width: calc(var(--max-width) - 2 * var(--site-padding));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  border-radius: 0;
}

.academy-section .container {
  position: relative;
  z-index: 1;
  background: linear-gradient(155deg, #141c16 0%, #1a2e1f 52%, var(--dark-secondary) 100%);
  border-radius: calc(var(--bento-radius) + 6px);
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.academy-section .container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
  background: radial-gradient(
    ellipse 90% 60% at 15% 20%,
    rgba(168, 196, 160, 0.08) 0%,
    transparent 55%
  );
}

.academy-section .container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.academy-bento {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 360px);
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.academy-tile {
  border-radius: var(--radius-xl);
  position: relative;
}

.academy-tile--copy {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(8px, 1.5vw, 14px) clamp(10px, 2vw, 24px) 0;
  color: var(--white);
}

.academy-tile--visual {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  display: flex;
}

.academy-tile--stats {
  grid-column: 1;
  grid-row: 2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(20px, 3vw, 28px) clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.academy-tile--visual .academy-visual-card {
  width: 100%;
  flex: 1;
  margin: 0;
  align-self: stretch;
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 48px rgba(0, 0, 0, 0.2);
}

.academy-cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.academy-label {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(197, 165, 90, 0.2);
  color: var(--gold);
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.academy-tile--copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.22;
}

.academy-tile--copy p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.78;
  margin-bottom: 0;
  max-width: 52ch;
}

.academy-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: 0;
  justify-content: flex-start;
  width: 100%;
}

.academy-stat {
  text-align: center;
}

.academy-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

.academy-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.academy-visual {
  position: relative;
}

.academy-visual-card {
  margin: auto 0;
  background: linear-gradient(165deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: inherit;
  padding: clamp(32px, 4vw, 52px);
  text-align: center;
  backdrop-filter: blur(12px);
}

.academy-visual-card svg {
  width: 120px;
  height: 120px;
  color: var(--gold);
  opacity: 0.6;
  margin: 0 auto 20px;
}

.academy-visual-card .visual-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.academy-visual-card .visual-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(var(--forest-rgb), 0.15);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--dark);
  transition: var(--transition);
  user-select: none;
  box-sizing: border-box;
}

button.faq-question {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

.faq-question > span:first-of-type {
  flex: 1 1 auto;
  text-align: right;
  line-height: 1.45;
  min-width: 0;
}

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

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary-ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--forest);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--forest);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: min(1200px, 85vh);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.85;
  text-align: right;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: right;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary-ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest);
}

.testimonial-info .name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.testimonial-info .branch {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================
   Stats Row
   ========================================== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(var(--forest-rgb), 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--forest-rgb), 0.35);
}

.btn.btn-primary.btn-hero-cta:hover {
  animation-play-state: paused;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, #5a6e5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--forest-rgb), 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .btn-hero-cta {
    animation: none;
  }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-ghost);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d4b66a);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(197,165,90,0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197,165,90,0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-main);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--forest);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

/* ==========================================
   Sections
   ========================================== */
.section {
  padding: 72px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.section-branches {
  padding-top: 30px;
}

.section-contained {
  max-width: calc(var(--max-width) - 2 * var(--site-padding));
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
  padding: 72px var(--site-padding);
  margin-bottom: 16px;
}

.section-contained > .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--gray-50);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-green {
  background: linear-gradient(135deg, var(--forest), var(--primary-dark));
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary-ghost);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(var(--forest-rgb), 0.08);
}

.section-dark .section-label {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.6);
}

/* ==========================================
   Cards (generic)
   ========================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
  border: 1px solid var(--gray-200);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-ghost);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* Old service card (used in inner pages) */
.service-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: all 0.35s var(--ease-out);
  border: 1px solid var(--gray-200);
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
  border-color: rgba(var(--forest-rgb), 0.12);
}

.service-card .icon {
  width: 64px;
  height: 64px;
  background: var(--primary-ghost);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: var(--transition);
  color: var(--forest);
}

.service-card:hover .icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================
   Grid Layouts
   ========================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 767.98px) {
  .grid-home-services {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .grid-home-services .service-card {
    padding: 20px 10px;
    min-width: 0;
  }

  .grid-home-services .service-card .icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .grid-home-services .service-card h3 {
    font-size: 0.95rem;
  }

  .grid-home-services .service-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

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

.grid-2-1 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* ==========================================
   Pricing
   ========================================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-grid--two .pricing-card.featured {
  transform: none;
  border-color: var(--forest);
  box-shadow: 0 8px 32px rgba(var(--forest-rgb), 0.15);
}

.pricing-card.featured::before {
  content: 'הכי פופולרי';
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.pricing-card .pricing-header h3 {
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-card ul {
  text-align: right;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* Pricing grid (inner pages) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.pricing-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .pricing-grid--two {
    grid-template-columns: 1fr;
  }
}

/* Branch / flagship pages - bento pricing & location */
.pricing-section--bento {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--gray-50) 100%);
}

.pricing-section--bento .pricing-grid {
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(28px, 4vw, 48px);
}

.pricing-section--bento .pricing-card {
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--forest-rgb), 0.07);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: right;
  background: var(--white);
  position: relative;
}

.pricing-section--bento .pricing-card.featured {
  transform: none;
  border-color: rgba(var(--forest-rgb), 0.14);
  box-shadow: var(--shadow-lg), 0 18px 48px rgba(0, 0, 0, 0.06);
}

.pricing-section--bento .pricing-card .pricing-header {
  margin: 0;
  padding: 22px 22px 18px;
  background: linear-gradient(165deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.92) 100%);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-direction: row-reverse;
  position: relative;
}

.pricing-section--bento .pricing-card.featured .pricing-header {
  background: linear-gradient(165deg, rgba(72, 86, 73, 0.12) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.pricing-section--bento .pricing-badge {
  position: absolute;
  top: 17px;
  right: 22px;
  left: auto;
  transform: none;
  margin: 0;
  z-index: 2;
  padding: 7px 18px;
}

.pricing-section--bento .pricing-card.featured .pricing-header h3 {
  padding-right: 132px;
}

.pricing-section--bento .pricing-body {
  padding: 22px 22px 26px;
}

.pricing-section--bento .pricing-card .price {
  margin: 8px 0 6px;
  font-size: clamp(2.1rem, 4vw, 2.65rem);
  color: var(--forest);
}

.pricing-section--bento .pricing-card .pricing-icon {
  font-size: 1.35rem;
  color: var(--forest);
  opacity: 0.85;
}

.pricing-section--bento .pricing-features {
  margin-bottom: 22px;
}

.pricing-section--bento .pricing-features li {
  border-bottom: none;
  padding: 10px 12px;
  margin-bottom: 6px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  font-size: 0.9rem;
}

.pricing-section--bento .pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-section--bento .pricing-features li::before {
  content: none;
  display: none;
}

.pricing-section--bento .pricing-features li i {
  color: var(--success);
}

.location-section--bento {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 55%);
}

.location-section--bento .location-content {
  margin-top: clamp(28px, 4vw, 48px);
}

.location-section--bento .location-panel {
  padding: clamp(12px, 1.5vw, 16px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--forest-rgb), 0.06);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.location-section--bento .location-detail {
  border-bottom: none;
  margin-bottom: 10px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
}

.location-section--bento .location-detail:last-child {
  margin-bottom: 0;
}

.location-section--bento .location-map .map-placeholder {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--forest-rgb), 0.06);
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

/* ==========================================
   Branch business page (bento profile layout)
   ========================================== */
.branch-business-page .branch-page {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--ivory) 35%);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.branch-page-container {
  padding-top: calc(var(--header-height) + 8px);
}

.branch-page-breadcrumbs {
  margin-bottom: 10px;
  font-size: 0.76rem;
  text-align: right;
  width: 100%;
  color: var(--text-light);
}

.branch-page-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-light);
  justify-content: flex-start;
}

.branch-page-breadcrumbs a,
.branch-page-breadcrumbs span,
.branch-page-breadcrumbs li,
.branch-page-breadcrumbs ol li span {
  color: var(--text-light) !important;
  font-weight: 600;
  text-decoration: none;
}

.branch-page-breadcrumbs ol li:not(:last-child)::after {
  color: var(--text-light) !important;
  opacity: 0.55;
}

.branch-page-breadcrumbs a:hover {
  text-decoration: underline;
}

.branch-gallery-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1.5vw, 14px);
  height: clamp(300px, 46vh, 480px);
  min-height: 0;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.branch-gallery-bento__stack {
  grid-column: 2;
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 14px);
}

.branch-gallery-cell {
  position: relative;
  border: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-200);
  box-shadow: var(--shadow-md);
  display: block;
  width: 100%;
  height: 100%;
  transition: box-shadow 0.25s var(--ease-out);
}

.branch-gallery-image-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  z-index: 0;
}

.branch-gallery-cell:focus-visible {
  outline: 3px solid var(--accent-mist);
  outline-offset: 3px;
}

.branch-gallery-cell:hover {
  box-shadow: var(--shadow-xl);
}

.branch-gallery-cell:hover img {
  transform: scale(1.04);
  transition: transform 0.4s var(--ease-out);
}

.branch-gallery-cell img,
.branch-gallery-image-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.branch-gallery-cell--lg {
  grid-column: 1;
  grid-row: 1 / -1;
  min-height: 0;
}

.branch-gallery-cell--lg::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(10, 12, 10, 0.86) 0%, rgba(10, 12, 10, 0.46) 52%, rgba(10, 12, 10, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.branch-gallery-cell--sm {
  flex: 1;
  min-height: 0;
}

.branch-gallery-viewall {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  z-index: 3;
}

.branch-gallery-viewall--story {
  cursor: pointer;
}

.branch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.branch-layout__main-top {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 26px);
}

.branch-layout__aside {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: calc(var(--header-height) + 16px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.branch-layout__main-bottom {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.branch-head-card {
  display: contents;
}

.branch-hero-profile {
  position: absolute;
  right: clamp(18px, 3vw, 32px);
  left: clamp(18px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.branch-title-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  flex-direction: row;
}

.branch-title-logo-wrap {
  width: clamp(62px, 8vw, 92px);
  height: clamp(62px, 8vw, 92px);
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg, #f5df7a, #cfe890, #7fbd70, #d9ed9f, #f1c95d, #9fcf78, #f5df7a);
  border: 0;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.branch-title-logo-wrap--story {
  cursor: pointer;
  position: relative;
  animation: branchStoryRing 4.8s linear infinite;
}

.branch-title-logo-wrap--story::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 2;
}

.branch-title-logo {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  padding: 3px;
  position: relative;
  z-index: 1;
}

@keyframes branchStoryRing {
  to {
    transform: rotate(360deg);
  }
}

.branch-title-logo-wrap--story .branch-title-logo {
  animation: branchStoryLogoStill 4.8s linear infinite;
}

@keyframes branchStoryLogoStill {
  to {
    transform: rotate(-360deg);
  }
}

.branch-title-copy {
  min-width: 0;
  text-align: right;
}

.branch-title-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.15;
}

.branch-subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.branch-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.branch-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.42);
  text-shadow: none;
}

.branch-meta-chip--muted {
  font-weight: 500;
  color: var(--gray-600);
}

.branch-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.branch-meta-rating {
  background: linear-gradient(135deg, #fff9e6 0%, var(--white) 100%);
  border-color: rgba(197, 165, 90, 0.35);
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
}

a.branch-meta-rating:hover {
  background: linear-gradient(135deg, #fff3cc 0%, #fffdf5 100%);
  border-color: rgba(197, 165, 90, 0.55);
}

.branch-rating-star {
  color: #f4b400;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
  flex-shrink: 0;
}

.branch-meta-rating small {
  font-weight: 500;
  opacity: 0.75;
}

.branch-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.branch-tag-pill {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.branch-tag-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.24);
}

.branch-about-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--forest-rgb), 0.06);
}

.branch-section-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 14px;
  color: var(--forest);
}

.branch-about-body p {
  margin: 0 0 14px;
  line-height: 1.85;
  color: var(--text-light);
  font-size: 0.98rem;
}

.branch-about-body p:last-child {
  margin-bottom: 0;
}

.branch-gallery-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--dark);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.branch-gallery-outline-btn:hover {
  border-color: var(--forest);
  background: var(--gray-50);
}

.branch-booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 28px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(var(--forest-rgb), 0.07);
}

.branch-booking-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.branch-booking-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 10px 0 8px;
  color: var(--dark);
  line-height: 1.35;
}

.branch-booking-lead {
  margin: 0 0 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.branch-booking-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.branch-faux-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.branch-faux-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 14px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  cursor: pointer;
  font-family: inherit;
  text-align: right;
  transition: border-color 0.2s, background 0.2s;
}

.branch-faux-field:hover {
  border-color: rgba(var(--forest-rgb), 0.25);
  background: var(--white);
}

.branch-faux-field--half {
  min-height: 100%;
}

.branch-faux-icon {
  color: var(--forest);
  opacity: 0.85;
}

.branch-faux-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.branch-faux-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
}

.branch-booking-submit {
  background: #2c2e2c !important;
  color: var(--white) !important;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.branch-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.branch-booking-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.branch-quick-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.25);
}

.branch-quick-link:hover {
  border-bottom-color: var(--forest);
}

.branch-quick-link--wa {
  color: var(--whatsapp);
  border-bottom-color: rgba(37, 211, 102, 0.35);
}

.branch-section-heading {
  text-align: right;
}

.branch-section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 8px 0 6px;
  color: var(--forest);
}

.branch-section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.branch-section-heading--tight h2 {
  margin-top: 4px;
}

.branch-section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.branch-treatment-bento {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(var(--forest-rgb), 0.06);
  box-shadow: var(--shadow-md);
}

.branch-mini-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.branch-mini-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.branch-mini-ico {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.branch-pricing-wrap.pricing-section--bento {
  background: transparent;
  padding: 0;
  margin: 0;
}

.branch-pricing-wrap .pricing-grid {
  margin-top: clamp(18px, 2.5vw, 28px);
}

.branch-info-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.branch-info-tile {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 2.5vw, 26px);
  border: 1px solid rgba(var(--forest-rgb), 0.06);
  box-shadow: var(--shadow-md);
}

.branch-info-tile-title {
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: var(--dark);
}

.branch-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.branch-hours-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--text-light);
}

.branch-hours-list li:last-child {
  border-bottom: none;
}

.branch-where-text {
  margin: 0 0 18px;
  line-height: 1.75;
  color: var(--text-light);
  font-size: 0.95rem;
}

.branch-nav-actions {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.branch-nav-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.branch-nav-btn:hover {
  border-color: var(--forest);
  background: var(--gray-50);
}

.branch-nav-iconbtn {
  width: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-size: 1.2rem;
  transition: opacity 0.2s;
}

.branch-nav-iconbtn:hover {
  opacity: 0.88;
}

.branch-map-bento {
  margin: 0;
}

.branch-map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(var(--forest-rgb), 0.06);
  line-height: 0;
  background: var(--gray-100);
}

.branch-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 380px;
}

.branch-contact-bento {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 2.5vw, 26px);
  border: 1px solid rgba(var(--forest-rgb), 0.06);
  box-shadow: var(--shadow-md);
}

.branch-contact-bento--aside {
  padding: 20px;
}

.branch-contact-title {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.branch-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.branch-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  color: var(--forest);
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  transition: background 0.2s;
}

.branch-contact-item:hover {
  background: var(--primary-light);
}

.branch-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.branch-contact-icon--wa {
  color: var(--whatsapp);
}

.branch-faq-section .faq-list {
  margin-top: 12px;
}

.branch-faq-section .faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}

.branch-faq-section .faq-question {
  width: 100%;
  padding: 16px 18px;
  gap: 12px;
}

.branch-faq-section .faq-chevron {
  transition: transform 0.3s var(--ease-out);
  opacity: 0.55;
}

.branch-faq-section .faq-item.active .faq-chevron {
  transform: rotate(-180deg);
}

.branch-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(22px, 3vw, 34px);
}

.branch-review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 22px;
  border: 1px solid rgba(var(--forest-rgb), 0.06);
  box-shadow: var(--shadow-sm);
}

.branch-review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.branch-review-title {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--dark);
}

.branch-review-text {
  margin: 0 0 14px;
  line-height: 1.75;
  color: var(--text-light);
  font-size: 0.94rem;
}

.branch-review-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.branch-review-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .branch-business-page {
    --mobile-content-width: 90%;
  }

  .branch-business-page .branch-page-container {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    padding-left: 0;
    padding-right: 0;
  }

  .branch-gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 10px;
  }

  .branch-gallery-bento__stack {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    order: 2;
  }

  .branch-gallery-cell--lg {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    height: clamp(220px, 42vh, 330px);
    aspect-ratio: auto;
  }

  .branch-gallery-cell--sm {
    flex: 1;
    height: clamp(88px, 18vw, 128px);
    min-height: 0;
  }

  .branch-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .branch-layout__main-top {
    order: 2;
    width: 100%;
  }

  .branch-layout__aside {
    position: relative;
    top: auto;
    grid-column: unset;
    grid-row: unset;
    order: 1;
    width: 100%;
  }

  .branch-layout__main-bottom {
    order: 3;
    grid-column: unset;
    grid-row: unset;
    width: 100%;
  }

  .branch-info-duo {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .branch-about-card,
  .branch-booking-card,
  .branch-treatment-bento,
  .branch-pricing-wrap,
  .branch-pricing-wrap .pricing-grid,
  .branch-pricing-wrap .pricing-card,
  .branch-info-tile,
  .branch-map-bento,
  .branch-map-frame,
  .branch-contact-bento,
  .branch-faq-section,
  .branch-reviews-section,
  .branch-reviews-grid {
    width: 100%;
    max-width: 100%;
  }

  .branch-business-page .cta-section {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    margin-left: auto;
    margin-right: auto;
  }

  .branch-gallery-viewall {
    top: 12px;
    left: 12px;
    font-size: 0.78rem;
    padding: 8px 12px;
  }
}

@media (max-width: 520px) {
  .branch-business-page {
    --mobile-content-width: 92%;
  }

  .branch-gallery-bento__stack {
    display: none;
  }

  .branch-page-container {
    padding-top: calc(var(--header-height) + 2px);
  }

  .branch-page-breadcrumbs {
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .branch-gallery-bento {
    gap: 8px;
    margin-bottom: 16px;
  }

  .branch-gallery-cell--lg {
    height: 220px;
  }

  .branch-gallery-cell--sm {
    height: 82px;
  }

  .branch-hero-profile {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .branch-faux-row {
    grid-template-columns: 1fr 1fr;
  }

  .branch-title-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .branch-title-logo-wrap {
    width: 56px;
    height: 56px;
    padding: 3px;
  }

  .branch-title-logo {
    padding: 3px;
  }

  .branch-title-copy h1 {
    font-size: 1.18rem;
    margin-bottom: 3px;
  }

  .branch-subtitle {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .branch-meta-row {
    margin-top: 10px;
    gap: 6px;
  }

  .branch-meta-chip {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .branch-tags-row {
    display: none;
  }

  .branch-mini-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .branch-mini-feature {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 104px;
    padding: 12px 8px;
    text-align: center;
    font-size: 0.78rem;
  }

  .branch-mini-ico {
    width: 42px;
    height: 42px;
  }

  .branch-map-frame iframe {
    min-height: 300px;
  }

  .branch-gallery-viewall {
    top: 10px;
    left: 10px;
    font-size: 0.72rem;
    padding: 7px 10px;
  }
}

.branch-story-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.branch-story-modal.active {
  display: flex;
}

.branch-story-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.branch-story-frame {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  height: min(760px, 86vh);
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.branch-story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.branch-story-close,
.branch-story-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.36);
  cursor: pointer;
}

.branch-story-close {
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

.branch-story-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 56px;
  font-size: 2rem;
  border-radius: var(--radius-full);
}

.branch-story-nav--prev {
  right: 12px;
}

.branch-story-nav--next {
  left: 12px;
}

.branch-story-progress {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
}

.branch-story-progress span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  flex: 1;
}

.branch-story-progress span.active {
  background: var(--white);
}

.branch-business-page .cta-section {
  margin-top: clamp(34px, 5vw, 58px);
}

.pricing-card.featured:has(.pricing-badge)::before {
  display: none;
}

.pricing-badge {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  align-self: center;
  margin: 0 auto 16px;
  display: block;
  width: fit-content;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-align: center;
  z-index: 1;
}

.pricing-section--bento .pricing-badge {
  position: absolute;
  top: 17px;
  right: 22px;
  left: auto;
  transform: none;
  align-self: auto;
  margin: 0;
  z-index: 2;
  padding: 7px 18px;
}

.pricing-section--bento .pricing-card.featured .pricing-header h3 {
  padding-right: 132px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-header h3 {
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.pricing-amount {
  text-align: center;
  margin: 16px 0 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--forest);
  margin: 0;
}

.pricing-amount .currency {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-light);
}

.pricing-weekend-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  margin: 4px 0 22px;
  padding: 12px 16px;
  background: var(--primary-ghost);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--forest-rgb), 0.08);
  line-height: 1.55;
}

.pricing-weekend-note .pricing-weekend-price {
  color: var(--forest);
  font-weight: 800;
}

.pricing-weekend-note .pricing-weekend-plus {
  color: var(--text-light);
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: right;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--text-light);
  position: relative;
  padding-right: 22px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--forest);
  font-weight: 700;
}

.coming-soon-card {
  opacity: 0.92;
  border-style: dashed;
}

.coming-soon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gray-700);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================
   Benefits / Features (inner pages)
   ========================================== */
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(-4px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-ghost);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.benefit-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* About / beds split layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  margin-top: 28px;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.9;
  color: var(--text);
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

/* Who grid cards */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.who-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.who-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--forest-rgb), 0.15);
  transform: translateY(-3px);
}

.who-card h3 {
  font-size: 1.12rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.who-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

.who-grid--center-cards .who-card {
  text-align: center;
}

.who-grid--center-cards .who-card p {
  text-align: center;
}

.who-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  background: var(--primary-ghost);
  color: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-grid--center-cards .who-icon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.who-icon svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Why section */
.why-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-card {
  background: var(--white);
  padding: 28px 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--accent-mist));
  opacity: 0;
  transition: opacity 0.2s;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--forest-rgb), 0.14);
  transform: translateY(-3px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--primary-ghost);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1.08rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.why-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

/* Location section */
.location-section {
  background: var(--cream);
}

.location-content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.35fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  margin-top: 36px;
}

.location-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px 8px 4px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
  text-align: right;
}

.location-detail:last-child {
  border-bottom: none;
}

.location-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-ghost);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-detail-icon svg {
  width: 22px;
  height: 22px;
}

.location-detail-icon--whatsapp {
  color: var(--whatsapp);
  background: rgba(37, 211, 102, 0.1);
}

.location-detail h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.location-detail p {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
  font-size: 0.95rem;
}

.location-detail a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--forest-rgb), 0.25);
  transition: border-color 0.2s, color 0.2s;
}

.location-detail a:hover {
  border-bottom-color: var(--forest);
}

.location-map .map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  line-height: 0;
  background: var(--white);
  min-height: 380px;
}

.location-map iframe {
  display: block;
  width: 100%;
  min-height: 380px;
}

@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }
}

/* Branch about card */
.about-section--branch {
  background: var(--cream);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
}

.about-section--branch .about-text {
  background: var(--white);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.about-section--branch .about-image img {
  aspect-ratio: 4/3;
  min-height: 260px;
  object-fit: cover;
}

/* Feature grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.features-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.features-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
  text-align: right;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--forest-rgb), 0.12);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 1.08rem;
  color: var(--forest);
  margin: 12px 0 10px;
}

.feature-card p {
  font-size: 0.94rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.benefit-card {
  background: var(--white);
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
  text-align: right;
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin: 12px 0 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.benefit-icon {
  font-size: 2rem;
  line-height: 1;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.branch-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  text-align: right;
  transition: var(--transition);
}

.branch-card:hover {
  box-shadow: var(--shadow-md);
}

.branch-card h3 {
  color: var(--forest);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.branch-card p {
  color: var(--text-light);
  font-size: 0.94rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

/* Benefits list */
.benefits-list {
  max-width: 48rem;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list .benefit-item {
  display: block;
  padding: 26px 28px;
}

.benefits-list .benefit-item h3 {
  font-size: 1.08rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.benefits-list .benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Massage prices bento page */
.massage-prices-page {
  background: var(--white);
}

.massage-prices-shell {
  padding-top: calc(var(--header-height) + 24px);
}

.massage-prices-breadcrumbs {
  margin-bottom: 18px;
}

.massage-prices-hero,
.massage-prices-bento,
.massage-prices-grid-section,
.massage-benefits-bento {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.massage-prices-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.massage-prices-hero__copy,
.massage-prices-hero__summary,
.massage-bento-card,
.massage-prices-grid-section,
.massage-benefits-bento {
  border-radius: var(--bento-radius);
  border: 1px solid rgba(var(--forest-rgb), 0.08);
  box-shadow: var(--shadow-xs);
}

.massage-prices-hero__copy {
  min-height: 330px;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(72, 86, 73, 0.9), rgba(58, 69, 56, 0.78)),
    url('/img/gallery/R6_22402.jpg') center/cover;
  color: var(--white);
  overflow: hidden;
}

.massage-prices-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--accent-warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.massage-prices-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 14px;
}

.massage-prices-hero__copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  margin-bottom: 26px;
}

.massage-prices-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.massage-prices-hero__summary {
  padding: clamp(26px, 4vw, 40px);
  background: var(--primary-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.massage-prices-hero__summary span {
  color: var(--text-light);
  font-weight: 700;
}

.massage-prices-hero__summary strong,
.massage-price-range {
  display: block;
  color: var(--forest);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin: 10px 0 14px;
}

.massage-prices-hero__summary p,
.massage-bento-card p,
.massage-mini-card p,
.massage-benefit-list p {
  color: var(--text-light);
  margin: 0;
}

.massage-prices-bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  margin-bottom: 18px;
}

.massage-bento-card {
  background: var(--white);
  padding: clamp(26px, 3.5vw, 42px);
}

.massage-bento-card--intro {
  background: var(--gray-50);
}

.massage-bento-card--soon {
  background: var(--gold-light);
}

.massage-bento-card--wide {
  grid-column: 1 / -1;
}

.massage-section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.massage-section-heading h2,
.massage-bento-card h2 {
  color: var(--dark);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  margin-bottom: 10px;
}

.massage-prices-grid-section,
.massage-benefits-bento {
  background: var(--gray-50);
  padding: clamp(28px, 4vw, 46px);
  margin-bottom: 18px;
}

.massage-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.massage-mini-card,
.massage-benefit-list article {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-xs);
}

.massage-mini-card i {
  color: var(--forest);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.massage-mini-card h3,
.massage-benefit-list h3 {
  color: var(--forest);
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.massage-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.massage-prices-faq,
.massage-prices-cta {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
  border-radius: var(--bento-radius);
}

.faq-section.massage-prices-faq {
  background: var(--primary-light);
  margin-bottom: 18px;
}

.massage-prices-faq .massage-prices-shell {
  padding-top: 0;
}

/* Section rhythm */
.about-section { background: var(--white); }
.included-section {
  background: var(--cream);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
}
.who-section, .section-benefits { background: var(--cream); }
.section-about { background: var(--white); }
.section-benefits { border-block: 1px solid var(--gray-100); }
.section-faq, .faq-section {
  background: var(--gray-50);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
}
.section-pricing {
  background: var(--cream);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
}
.section-preparation { background: var(--white); }

.section-preparation > .container > h2,
.section-target > .container > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}

/* Steps (copper, birthday) */
.steps-list {
  max-width: 52rem;
  margin: 32px auto 0;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border-right: 4px solid var(--forest);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.step-content h3,
.step-content h4 {
  color: var(--forest);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.step-content p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Preparation grid */
.preparation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.prep-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}

.prep-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(var(--forest-rgb), 0.14);
}

.prep-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--gray-50);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
}

.prep-icon svg {
  width: 28px;
  height: 28px;
}

.prep-item .prep-number {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.prep-item h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin: 0 0 10px;
}

.prep-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

.section-target { background: var(--cream); }

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.target-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
}

.target-card:hover {
  border-color: rgba(var(--forest-rgb), 0.18);
  box-shadow: var(--shadow-sm);
}

.target-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--primary-ghost);
  color: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.target-card p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
}

.section-target .target-footer {
  max-width: 42rem;
  margin: 28px auto 0;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}

/* CTA sections */
.section-cta {
  background: var(--cream);
  padding: 72px var(--site-padding);
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
  margin-bottom: 16px;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  width: min(46vw, 380px);
  height: min(46vw, 380px);
  transform: translate(-40%, -50%);
  background: radial-gradient(circle, rgba(var(--forest-rgb), 0.06) 0%, transparent 68%);
  pointer-events: none;
}

.section-cta > .container {
  position: relative;
  z-index: 1;
}

.section-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--forest);
  margin-bottom: 12px;
}

.section-cta .lead-line {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.section-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.section-cta .btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid rgba(var(--forest-rgb), 0.3);
}

.section-cta .btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* Recruitment */
.recruitment-section { background: var(--cream); }

.recruitment-split {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.recruitment-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruitment-visual-card {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--white) 0%, var(--primary-light) 100%);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.recruitment-visual-card svg {
  width: min(52%, 130px);
  height: auto;
  color: var(--forest);
}

.recruitment-content {
  text-align: right;
}

.recruitment-content > .recruitment-icon { display: none; }

.recruitment-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--forest);
  margin-bottom: 14px;
}

.recruitment-content .lead {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.recruitment-content p:not(.lead) {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.recruitment-buttons { margin-top: 8px; }

@media (max-width: 768px) {
  .recruitment-split { grid-template-columns: 1fr; }
  .recruitment-visual { order: -1; margin-bottom: 12px; }
  .recruitment-content { text-align: center; }
  .recruitment-buttons { justify-content: center; display: flex; }
}

/* ==========================================
   CTA Section (bottom)
   ========================================== */
.cta-section {
  background: linear-gradient(160deg, var(--forest) 0%, #2e3a2f 55%, var(--dark-secondary) 100%);
  padding: 72px var(--site-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: calc(var(--max-width) - 2 * var(--site-padding));
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--bento-radius);
  margin-bottom: 20px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197,165,90,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

/* ==========================================
   Gallery
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-grid--treatment .gallery-item {
  aspect-ratio: 4/3;
}

.gallery-grid .gallery-item {
  cursor: zoom-in;
}

.gallery-grid .gallery-item:focus-within {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(15, 18, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--forest);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.gallery-lightbox-close:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 64px var(--site-padding) 0;
  max-width: calc(var(--max-width) - 2 * var(--site-padding));
  margin: 16px auto 0;
  border-radius: var(--bento-radius) var(--bento-radius) 0 0;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-about .logo {
  margin-bottom: 16px;
}

.footer-about .logo img {
  height: 38px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-mist);
  padding-right: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact .icon {
  color: var(--accent-mist);
  font-size: 1rem;
  min-width: 20px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-bottom-copy {
  margin: 0;
}

.footer-bottom-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
}

.footer-bottom-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  white-space: nowrap;
}

.footer-bottom-legal a:hover {
  color: var(--accent-mist);
}

/* ==========================================
   WhatsApp Float
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: calc(24px + env(safe-area-inset-left, 0px));
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* ==========================================
   Content Styles
   ========================================== */
.content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.content-area h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin: 40px 0 16px;
}

.content-area h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin: 30px 0 12px;
}

.content-area p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text);
}

.content-area ul, .content-area ol {
  margin: 16px 0;
  padding-right: 24px;
}

.content-area ul li { list-style: disc; margin-bottom: 8px; color: var(--text); }
.content-area ol li { list-style: decimal; margin-bottom: 8px; color: var(--text); }

.content-area img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.content-area blockquote {
  border-right: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-light);
}

/* Image box */
.img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  position: relative;
  counter-increment: step;
  border: 1px solid var(--gray-200);
}

.step-card::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-card h4 {
  font-size: 1.05rem;
  margin: 12px 0 8px;
  color: var(--dark);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================
   Back to top
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  font-size: 1.2rem;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ==========================================
   Components Section (inner pages)
   ========================================== */
.section-components { background: var(--cream); }

.section-components > .container > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.component-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.component-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(var(--forest-rgb), 0.18);
}

.component-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(var(--forest-rgb), 0.1);
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.component-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 10px;
}

.component-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Popular / Why Section */
.section-popular { background: var(--white); }

.section-popular > .container > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 20px;
}

.section-popular .section-content { max-width: 100%; }

.section-popular .section-content > p {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 52rem;
  margin: 0 auto 36px;
}

.popular-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.reason-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: var(--transition);
}

.reason-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(var(--forest-rgb), 0.2);
}

.reason-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 10px;
}

.reason-item p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Guide Section */
.section-guide { background: var(--cream); }

.section-guide > .container > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--forest);
  text-align: center;
  margin-bottom: 12px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.guide-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.guide-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(var(--forest-rgb), 0.18);
}

.guide-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.guide-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 10px;
}

.guide-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Target items */
.target-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.target-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(var(--forest-rgb), 0.18);
}

.target-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 10px;
}

.target-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   Booking Modal
   ========================================== */
.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bk-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bk-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-spring);
  direction: rtl;
  font-family: var(--font-main);
}

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

.bk-modal--iframe {
  max-width: min(960px, 96vw);
  width: 100%;
  padding: 28px 20px 22px;
  text-align: right;
}

.bk-modal--iframe .bk-title {
  margin-bottom: 6px;
}

.bk-modal--iframe .bk-iframe-sub {
  margin-bottom: 14px;
}

.bk-iframe-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  line-height: 0;
  min-height: min(68vh, 620px);
}

.bk-iframe-wrap iframe {
  width: 100%;
  height: min(68vh, 620px);
  border: none;
  display: block;
}

.bk-iframe-hint {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .bk-modal--iframe {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    height: 85vh;
    max-height: 85vh;
    padding: 0;
    overflow: hidden;
    text-align: right;
  }

  .bk-modal--iframe .bk-title,
  .bk-modal--iframe .bk-iframe-sub {
    display: none;
  }

  .bk-modal--iframe #bk-state-iframe:not([hidden]) {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .bk-modal--iframe .bk-iframe-wrap {
    flex: 1;
    min-height: 0;
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .bk-modal--iframe .bk-iframe-wrap iframe {
    min-height: 0;
    height: 100%;
  }
}

.bk-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.bk-close:hover {
  background: var(--gray-200);
  color: var(--dark);
}

.bk-exit-confirm {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 20, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bk-exit-confirm.active {
  opacity: 1;
  visibility: visible;
}

.bk-exit-confirm-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px 24px;
  max-width: 340px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  direction: rtl;
}

.bk-exit-confirm-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.5;
}

.bk-exit-confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.bk-exit-stay {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.bk-exit-stay:hover {
  background: var(--primary-dark);
}

.bk-exit-leave {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-300);
  background: transparent;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.bk-exit-leave:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

.bk-icon-wrap { margin-bottom: 16px; }
.bk-icon { width: 64px; height: 64px; margin: 0 auto; }

.bk-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.bk-subtitle {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.bk-field {
  margin-bottom: 14px;
  text-align: right;
}

.bk-field input {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
}

.bk-field input[dir="ltr"] {
  direction: ltr;
  text-align: right;
}

.bk-field input::placeholder {
  color: var(--gray-400);
}

.bk-field input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(var(--forest-rgb), 0.1);
  background: #fff;
}

.bk-error {
  color: #e53935;
  font-size: 0.85rem;
  margin: -6px 0 10px;
  min-height: 20px;
  text-align: right;
}

.bk-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--forest), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 22px rgba(var(--forest-rgb), 0.3);
  margin-top: 4px;
}

.bk-submit:hover:not(:disabled) {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(var(--forest-rgb), 0.35);
}

.bk-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.bk-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bk-spinner svg {
  width: 22px;
  height: 22px;
  display: block;
}

.bk-after-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}

.bk-success-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-ghost);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--forest);
  font-weight: 700;
}

.bk-countdown {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bk-countdown .bk-countdown-wa {
  display: inline-flex;
  color: var(--whatsapp);
}

.bk-countdown .bk-countdown-wa svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 480px) {
  .bk-modal {
    padding: 32px 24px 28px;
    border-radius: var(--radius-lg);
  }
  .bk-modal--iframe {
    padding: 0;
    border-radius: var(--radius-xl);
  }
  .bk-title { font-size: 1.25rem; }
}

/* ==========================================
   Mobile nav overlay
   ========================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   Animations
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 992px) {
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-card.featured { transform: scale(1); }
  .stats-row { gap: 30px; }
  .branches-grid-home { grid-template-columns: 1fr 1fr; }
  .services-scroll { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .academy-bento {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .academy-tile--copy {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
    text-align: center;
    align-self: stretch;
  }

  .academy-tile--copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .academy-tile--copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .academy-tile--visual {
    grid-column: 1;
    grid-row: 2;
  }

  .academy-tile--stats {
    grid-column: 1;
    grid-row: 3;
    align-items: center;
    text-align: center;
  }

  .academy-tile--stats .academy-stats {
    justify-content: center;
  }
  .vouchers-bento {
    grid-template-columns: 1fr;
  }

  .vouchers-tile--visual {
    order: -1;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 0;
  }

  .header-inner {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: max(env(safe-area-inset-left, 0px), 0px);
    padding-right: max(env(safe-area-inset-right, 0px), 0px);
  }

  .section {
    padding: 48px 0;
  }

  .section-branches {
    padding-top: 6px;
  }

  .section-contained {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    padding: 48px clamp(14px, 3vw, 20px);
    border-radius: var(--bento-radius);
    margin-left: auto;
    margin-right: auto;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .container {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  /* Avoid stacking 95% inside 95% (testimonials band, vouchers, academy card) */
  .section-contained > .container,
  .academy-section > .container,
  .vouchers-section > .container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    gap: 0;
    box-shadow: var(--shadow-2xl);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), visibility 0.4s;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav:not(.active) {
    pointer-events: none;
  }

  .main-nav > li > a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 16px;
    display: none;
  }

  .main-nav > li.dropdown-open .dropdown {
    display: block;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .hero {
    min-height: 60vh;
    padding: calc(var(--header-height) + 24px) 16px 40px;
  }

  .page-hero,
  .hero-section {
    min-height: 260px;
    padding: 36px 16px 40px;
    margin-top: calc(var(--header-height) + 10px);
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--bento-radius);
  }

  .page-hero h1,
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .page-hero .hero-subtitle,
  .hero-section .hero-subtitle {
    font-size: 0.9rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

  .grid-3:not(.grid-home-services) {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .branches-grid-home {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .branch-card-premium {
    border-radius: var(--bento-radius);
  }

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

  .service-card-v2 {
    padding: 20px 14px;
    border-radius: var(--bento-radius);
  }

  .service-card-v2 .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .service-card-v2 h3 {
    font-size: 0.9rem;
  }

  .service-card-v2 p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px 20px;
    border-radius: var(--bento-radius);
  }

  .search-section:not(.search-section--hero) {
    margin-top: -28px;
    padding: 0 var(--site-padding);
  }

  .search-section--hero .search-card {
    border-radius: var(--radius-md);
  }

  .search-card {
    border-radius: var(--bento-radius);
  }

  .vouchers-bento {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vouchers-tile--visual {
    order: -1;
    max-width: 100%;
  }

  .voucher-card-display {
    padding: 28px 24px;
    border-radius: var(--bento-radius);
  }

  .academy-section {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 16px;
    border-radius: 0;
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
  }

  .academy-section .container {
    padding: clamp(24px, 5vw, 36px) clamp(16px, 3.5vw, 22px);
  }

  .academy-tile--copy h2 {
    font-size: 1.5rem;
  }

  .academy-stats {
    gap: 20px;
    justify-content: center;
  }

  .academy-visual-card {
    padding: 28px;
    border-radius: var(--bento-radius);
  }

  .section-cta {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--bento-radius);
    padding: 48px 20px;
  }

  /* vouchers use .section-contained - width matches services band */

  .included-section,
  .about-section--branch,
  .section-pricing,
  .faq-section,
  .section-faq,
  .cta-section {
    width: var(--mobile-content-width);
    max-width: var(--mobile-content-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--bento-radius);
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 20px 14px;
  }

  .pricing-grid--two {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .massage-prices-shell {
    padding-top: calc(var(--header-height) + 16px);
  }

  .massage-prices-hero,
  .massage-prices-bento,
  .massage-feature-grid,
  .massage-benefit-list {
    grid-template-columns: 1fr;
  }

  .massage-prices-hero {
    gap: 12px;
  }

  .massage-prices-hero__copy {
    min-height: 360px;
    padding: 30px 22px;
  }

  .massage-prices-hero__copy p {
    font-size: 0.95rem;
  }

  .massage-prices-actions {
    flex-direction: column;
  }

  .massage-prices-actions .btn {
    width: 100%;
  }

  .massage-prices-grid-section,
  .massage-benefits-bento {
    padding: 24px 16px;
  }

  .massage-prices-faq,
  .massage-prices-cta {
    width: var(--mobile-content-width);
  }

  .massage-prices-faq .massage-prices-shell {
    padding-top: 0;
  }

  .stats-row {
    gap: 24px;
    padding: 24px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item {
    border-radius: var(--radius-sm);
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 18px 16px;
    font-size: 0.88rem;
  }

  /* Footer mobile */
  .site-footer .container { text-align: center; }
  .site-footer .footer-col { text-align: center; }
  .site-footer .footer-about .logo { margin-left: auto; margin-right: auto; justify-content: center; }
  .site-footer .footer-social { justify-content: center; }

  .site-footer .footer-col .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 10px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .site-footer .footer-col .footer-links li { margin-bottom: 0; }

  .site-footer .footer-contact {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer .footer-contact li {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .site-footer .footer-bottom { text-align: center; }

  .components-grid,
  .popular-reasons,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 480px) {
  .hero-slide h1 { font-size: 1.3rem; }
  .section-header h2 { font-size: 1.3rem; }
  .stat-number { font-size: 1.8rem; }

  .bento-main {
    min-height: 430px;
    max-height: none;
  }

  .hero-slider {
    min-height: 430px;
    max-height: none;
  }

  .hero-slide {
    padding: 34px 14px 148px;
  }

  .hero-dots {
    display: none;
  }

  .hero-slide p {
    display: block;
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }

  .services-scroll {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .branch-card-body {
    padding: 18px 16px 20px;
  }

  .branch-card-body h3 {
    font-size: 1.05rem;
  }

  .branch-card-actions {
    flex-direction: column;
    gap: 8px;
  }

  .components-grid,
  .popular-reasons,
  .guide-grid,
  .target-grid {
    grid-template-columns: 1fr;
  }

  .academy-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .academy-stat .number {
    font-size: 1.6rem;
  }

  .section-cta h2 {
    font-size: 1.2rem;
  }

  .search-card {
    padding: 6px;
  }

  .search-btn {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .search-input {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .search-pills {
    gap: 6px;
  }

  .search-pill {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

/* ==========================================
   Page: Academy (contained bento shell)
   ========================================== */
.page-academy {
  padding-top: calc(var(--header-height) + 12px);
  padding-bottom: 40px;
  box-sizing: border-box;
}

.page-academy-shell {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-academy-shell > .academy-hero,
.page-academy-shell > .trust-strip,
.page-academy-shell > .section,
.page-academy-shell > .modules-section,
.page-academy-shell > .dates-section,
.page-academy-shell > .testimonials-section,
.page-academy-shell > .final-cta {
  border-radius: var(--bento-radius);
  overflow: hidden;
  margin-bottom: 0;
}

.page-academy-shell > .academy-hero {
  min-height: clamp(360px, 52vh, 580px);
  padding-top: 0;
}

.page-academy-shell .academy-hero .container {
  max-width: 100%;
}

@media (max-width: 768px) {
  .page-academy-shell {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .page-academy-shell > .academy-hero {
    min-height: auto;
  }
}

/* ── Cookie Consent Banner ─────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0 16px 16px;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-consent.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent.hiding {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.cookie-consent-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(72, 86, 73, .12);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .12), 0 1px 3px rgba(0, 0, 0, .06);
}

.cookie-consent-text {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.cookie-consent-icon {
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 2px;
}
.cookie-consent-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text);
}
.cookie-consent-text p {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}
.cookie-copy-mobile {
  display: none;
}
.cookie-consent-text a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .92rem;
  border-radius: 10px;
  padding: 12px 28px;
  transition: background .2s, color .2s, box-shadow .2s;
  line-height: 1.2;
}
.cookie-btn-accept {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  box-shadow: 0 2px 10px rgba(72, 86, 73, .25);
}
.cookie-btn-accept:hover {
  background: #3a473b;
  box-shadow: 0 4px 16px rgba(72, 86, 73, .35);
}
.cookie-btn-secondary {
  background: rgba(72, 86, 73, .1);
  color: var(--forest);
  font-weight: 500;
}
.cookie-btn-secondary:hover {
  background: rgba(72, 86, 73, .18);
}
.cookie-btn-link {
  background: none;
  color: var(--text-light);
  font-weight: 500;
  padding: 12px 16px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-btn-link:hover {
  color: var(--forest);
}

.cookie-settings {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(72, 86, 73, .1);
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 42px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s;
}
.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cookie-toggle input[type="checkbox"]:checked {
  background: var(--forest);
}
.cookie-toggle input[type="checkbox"]:checked::after {
  transform: translateX(-18px);
}
.cookie-toggle input[type="checkbox"]:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.cookie-toggle-label {
  font-size: .9rem;
  color: var(--text);
}
.cookie-toggle-label small {
  display: block;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 600px) {
  .cookie-consent {
    padding: 0 8px 8px;
  }
  .cookie-consent-inner {
    background: rgba(255, 255, 255, .76);
    padding: 18px 18px;
    border-radius: 14px;
  }
  .cookie-consent-text {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-consent-icon {
    display: none;
  }
  .cookie-consent-text strong {
    font-size: 1rem;
  }
  .cookie-consent-text p {
    font-size: calc(.88rem - 2px);
    line-height: 1.45;
  }
  .cookie-copy-desktop {
    display: none;
  }
  .cookie-copy-mobile {
    display: block;
  }
  .cookie-consent-actions {
    flex-direction: row;
    align-items: stretch;
  }
  .cookie-btn {
    text-align: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cookie-btn-accept {
    order: -1;
  }
  .cookie-btn-secondary,
  .cookie-btn-link {
    width: calc(50% - 5px);
    padding-left: 8px;
    padding-right: 8px;
  }
  .cookie-btn-link {
    background: rgba(72, 86, 73, .08);
    color: var(--forest);
    text-decoration: none;
  }
}

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