/* QUIET EARTH DESIGN SYSTEM (" Sentido Somático & Trust") */

:root {
  /* Palette: Guided by User Request */
  /* --bg-paper: #F4F1EA; */
  /* Alabaster/Parchment */
  --bg-paper: #f5dfd0;
  --bg-card: #FFFFFF;

  --primary-sage: #724A73;
  /* Deep Purple - Primary */
  --accent-clay: #E07F7E;
  /* Coral - Accents */
  --accent-sand: #EDA575;
  /* Orange - Soft Accents */
  --accent-stone: #A48CBC;
  /* Lavender */
  --accent-pink: #CF80A0;
  /* Rosy Pink */
  --accent-gold: #B88A44;
  /* Darkened Warm Gold for better legibility */
  /* Warm Gold */

  --text-main: #2C2C2C;
  /* Charcoal */
  --text-muted: #595959;
  /* Slate */

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  /* Organic/Human */
  --font-body: 'Montserrat', sans-serif;
  /* Clean/Legible */

  /* Shapes */
  --radius-sm: 8px;
  --radius-md: 20px;
  /* Less rounded than before, more "hewn" */
  --radius-organic: 40% 60% 70% 30% / 40% 50% 60% 50%;
  /* Imperfect circle */

  /* Motion (The Exhale) */
  --ease-exhale: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-paper);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

.empty-note {
  border: 1px dashed rgba(114, 74, 115, 0.28);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.75);
}

.timezone-picker {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.timezone-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(114, 74, 115, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf7 0%, #f7ede7 100%);
  padding: 0.55rem 0.75rem;
  color: #4f3550;
  cursor: pointer;
}

.timezone-trigger-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6f8b;
}

.timezone-trigger-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: #583d59;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timezone-trigger-icon {
  font-size: 0.75rem;
  color: #724a73;
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.timezone-picker[data-open="true"] .timezone-trigger-icon {
  transform: rotate(180deg) translateY(1px);
}

.timezone-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1200;
  border: 1px solid rgba(114, 74, 115, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdfb 0%, #f5ebe5 100%);
  box-shadow: 0 16px 34px rgba(72, 38, 72, 0.2);
  padding: 0.55rem;
  display: none;
}

.timezone-picker[data-open="true"] .timezone-panel {
  display: block;
}

.timezone-search {
  width: 100%;
  border: 1px solid rgba(114, 74, 115, 0.3);
  border-radius: 10px;
  padding: 0.55rem 0.62rem;
  background: #fff;
  color: #4f3550;
  margin-bottom: 0.45rem;
}

.timezone-search:focus {
  outline: none;
  border-color: rgba(114, 74, 115, 0.58);
  box-shadow: 0 0 0 2px rgba(176, 136, 68, 0.22);
}

.timezone-list {
  max-height: 230px;
  overflow-y: auto;
  padding-right: 0.1rem;
}

.timezone-option {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  padding: 0.48rem 0.52rem;
  margin-bottom: 0.24rem;
  cursor: pointer;
}

.timezone-option-main {
  display: block;
  color: #4d3350;
  font-weight: 600;
  font-size: 0.86rem;
}

.timezone-option-sub {
  display: block;
  color: #7f6581;
  font-size: 0.74rem;
}

.timezone-option:hover,
.timezone-option[data-active="true"] {
  background: rgba(114, 74, 115, 0.14);
}

.timezone-empty {
  display: none;
  color: #7c667d;
  font-size: 0.84rem;
  padding: 0.5rem 0.25rem;
}

/* Custom Offer Bar Overlay Styles */
.promo-offer-bar {
  background: var(--primary-sage);
  color: white;
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, opacity 0.4s ease, height 0.4s ease;
  overflow: hidden;
}

.promo-offer-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  pointer-events: none;
}

.promo-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-sand);
}

.promo-icon {
  width: 30px;
  height: 30px;
}

.promo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.promo-pre-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: -0.2rem;
  font-family: var(--font-body);
}

.promo-main-title {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: var(--font-heading);
  font-style: italic;
}

.promo-badge {
  background-color: var(--bg-paper);
  color: var(--primary-sage);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 0.5rem;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1px;
}

.promo-timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-label {
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.timer-boxes {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(5px);
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 30px;
}

.time-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.time-unit {
  font-size: 0.55rem;
  text-transform: lowercase;
  opacity: 0.8;
  margin-top: 1px;
}

.timer-colon {
  font-weight: 400;
  margin: 0 0.3rem;
  padding-bottom: 8px;
}

.close-promo-btn {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-promo-btn:hover {
  color: white;
  transform: translateY(-50%) rotate(90deg);
}

/* Promo Bar Responsiveness */
@media (max-width: 992px) {
  .promo-offer-bar {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }

  .promo-badge {
    width: 60px;
    height: 60px;
  }

  .badge-number {
    font-size: 1.4rem;
  }

  .badge-text {
    font-size: 0.6rem;
  }

  .promo-main-title {
    font-size: 1.1rem;
  }

  .promo-icon-wrap {
    display: none;
  }
}

@media (max-width: 600px) {
  .promo-offer-bar {
    flex-direction: column;
    text-align: center;
    padding-top: 2.5rem;
  }

  .promo-text-wrap {
    align-items: center;
  }

  .promo-badge {
    margin: 0.5rem 0;
  }

  .close-promo-btn {
    top: 1rem;
    right: 1rem;
    transform: none;
  }

  .close-promo-btn:hover {
    transform: rotate(90deg);
  }
}

/* Texture Overlay (Grain) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--primary-sage);
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-style: italic;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--accent-clay);
  font-family: var(--font-body);
  /* Modern stylistic choice */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 65ch;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease-exhale);
}

/* Utilities */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 6rem 0;
}

/* Buttons (Grounded) */
.btn-earth {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--primary-sage);
  cursor: pointer;
  transition: var(--ease-exhale);
}

.btn-earth:hover {
  background-color: transparent;
  color: var(--primary-sage);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--accent-clay);
  color: var(--accent-clay);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--ease-exhale);
}

.btn-outline:hover {
  border-color: var(--primary-sage);
  color: var(--primary-sage);
}

/* Navigation ( Sentido Somático) */
.navbar {
  padding: 0 0;
  position: absolute;
  /* Start absolute for transparency */
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  box-shadow: none;
  transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
}

/* Offset navbar when promo bar is visible */
body.has-promo-bar .navbar {
  top: var(--promo-height, 0px);
}

body.has-promo-bar .navbar.scrolled {
  top: 0;
  /* Reset when scrolled so it sticks to tight top */
}

/* Paint splash pseudo-element */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F3F0E9;
  /* Requested specific paint color */
  z-index: -1;
  /* Circle starts tiny, perfectly centered vertically and positioned over the logo horizontally */
  clip-path: circle(0% at 15% 50%);
  transition: clip-path 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled State for Sticky Navbar */
.navbar.scrolled {
  position: fixed;
  /* Stick to top when scrolling */
  padding: 0 0;
  background-color: transparent;
  /* Color is now handled by ::before */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled::before {
  /* Expand large enough to cover the whole header */
  clip-path: circle(150% at 15% 50%);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  border-bottom: none;
  /* Removing the bottom subtle sage line since the navbar now has a bg and shadow */
  padding-bottom: 0;
  /* Resetting padding bottom */
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.72rem 0.95rem 0.72rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(24, 18, 21, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled .nav-menu-wrapper {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(114, 74, 115, 0.12);
  box-shadow: 0 16px 36px rgba(24, 18, 21, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: auto;
  width: 150px;
  transition: opacity 0.3s ease;
}

.logo .logo-solid {
  display: none;
}

.navbar.scrolled .logo .logo-transparent {
  display: none;
}

.navbar.scrolled .logo .logo-solid {
  display: block;
}

.logo:hover img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.navbar.scrolled .nav-action {
  border-left-color: rgba(114, 74, 115, 0.12);
}

.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  /* White for transparency over image */
  font-weight: 600;
  /* Bolded as requested */
  position: relative;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--primary-sage);
  /* Darker text on cream bg */
}

/* Nav Action Button */
.btn-nav {
  display: inline-block;
  background-color: transparent;
  color: #FFFFFF;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--ease-exhale);
}

.btn-nav:hover {
  background-color: #FFFFFF;
  color: var(--primary-sage);
}

.navbar.scrolled .btn-nav {
  border-color: var(--primary-sage);
  color: var(--primary-sage);
}

.navbar.scrolled .btn-nav:hover {
  background-color: var(--primary-sage);
  color: #FFFFFF;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .lang-switch {
  border-color: rgba(114, 74, 115, 0.24);
  background: rgba(114, 74, 115, 0.06);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: 0.25s ease;
}

.lang-switch a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
}

.lang-switch a.active {
  background: #fff;
  color: var(--primary-sage);
}

.navbar.scrolled .lang-switch a {
  color: var(--primary-sage);
}

.navbar.scrolled .lang-switch a:hover {
  background: rgba(114, 74, 115, 0.1);
}

.navbar.scrolled .lang-switch a.active {
  background: var(--primary-sage);
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-clay);
  transition: var(--ease-exhale);
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a[href*="#about"] {
  display: none !important;
}

/* Hero: " Sentido Somático" */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 6rem;
  color: #F4F1EA;
  /* Using the parchment variable base color directly */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Image Background */
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Dark overlay for text contrast */
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  padding: 0;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-content h3 {
  color: var(--accent-gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: #F4F1EA;
  font-size: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Page Hero for Secondary Pages */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 5rem;
  color: #FFFFFF;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  color: #F4F1EA;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero h2 {
  color: var(--accent-gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .btn-earth {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  border-color: var(--accent-gold);
  font-weight: 600;
}

.hero .btn-earth:hover {
  background-color: transparent;
  color: var(--accent-gold);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.portrait-frame {
  position: relative;
}

.portrait-img {
  width: 100%;
  border-radius: 200px 200px 0 0;
  /* Arch shape */
  filter: sepia(10%) contrast(90%);
  box-shadow: 20px 20px 0 rgba(158, 126, 107, 0.15);
  /* Soft clay shadow */
}

/* Services Cards (Grounded) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 3.5rem 2.5rem;
  border: 1px solid rgba(114, 74, 115, 0.1);
  transition: var(--ease-exhale);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease-exhale);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-clay);
  box-shadow: 0 20px 40px rgba(114, 74, 115, 0.05);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-sage);
  display: block;
  margin: 1rem 0;
}

/* Pricing Table / Retreat Formats Layout */
.pricing-section-container {
  background: #f8f9fa;
  /* Very light cool grey to make the white cards pop */
  padding: 5rem 0;
  border-radius: 40px;
}

.pricing-table-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
  padding: 0 1rem;
}

.pricing-card {
  background: white;
  border-radius: 30px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  position: relative;
  text-align: center;
  border: 1px solid transparent;
  overflow: hidden;
  z-index: 1;
  /* For banner positioning */
}

/* On hover, all cards take on the featured pink look */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  background: #fbf5f4;
  /* The soft clay/pink tint from the image */
  border: none;
}

/* Featured Card is now just the default state of the card, but we keep the class for the HTML structure 
   It will look like the others until hovered. If you want one to always be pink, you can restore these.
   Based on instructions "Every card must be same when not hover when hovered give it look like this", 
   I am removing the permanent pink state. */
.pricing-card.featured {
  background: white;
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  background: #fbf5f4;
  transform: scale(1.03) translateY(-8px);
}

/* The Top Banner (Most Intensive) - hidden by default, shown on hover */
.pricing-card-banner {
  background: #dd7c7a;
  /* Exact coral/pink from the user's reference image */
  color: white;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.2rem;
  margin: -3rem -2rem 2rem -2rem;
  /* Pull up into the padding area */
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

/* Show banner on hover */
.pricing-card:hover .pricing-card-banner {
  opacity: 1;
  height: auto;
  padding: 1.2rem;
}

.pricing-card-header {
  margin-bottom: 2rem;
  transition: margin-top 0.3s ease;
}

/* Adjust header spacing when banner appears */
.pricing-card:hover .pricing-card-header {
  margin-top: 1rem;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* Increased spacing to match image */
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  height: 50px;
}

.pricing-card-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-main);
  margin: 1.5rem 0 2.5rem 0;
  font-weight: 400;
  /* Lighter weight like the image */
}

.pricing-card-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  display: block;
  font-weight: 400;
  margin-top: 0.2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  /* Greyscale text like image */
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-features li::before {
  content: "✓";
  /* Using a lighter checkmark character */
  position: absolute;
  left: 0;
  color: #dd7c7a;
  /* The exact red/pink accent color from the image */
  font-size: 1.1rem;
  font-weight: 700;
  top: -2px;
  /* Slight optical adjustment */
}

/* Pill buttons for the pricing cards */
.pricing-card .btn-outline,
.pricing-card .btn-earth {
  width: 100%;
  border-radius: 50px;
  /* highly rounded pill shape */
  font-weight: 600;
  padding: 1rem;
  text-transform: none;
  /* Sentence case or title case, not all caps */
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

/* Default button state (Off-hover) - can be an outline or solid based on preference, let's use the red/pink */
.pricing-card .btn-earth,
.pricing-card .btn-outline {
  background: white;
  border: 2px solid #dd7c7a;
  color: #dd7c7a;
}

/* On card hover, button fills in */
.pricing-card:hover .btn-earth,
.pricing-card:hover .btn-outline {
  background: #dd7c7a;
  border-color: #dd7c7a;
  color: white;
}

/* Hovering the button itself while the card is hovered */
.pricing-card:hover .btn-earth:hover,
.pricing-card:hover .btn-outline:hover {
  background: #c56563;
  /* slightly darker pink */
  border-color: #c56563;
  color: white;
}

/* Detailed Comparison Table below cards */
.comparison-table-wrap {
  margin-top: 5rem;
  overflow-x: auto;
  padding: 0 1rem;
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  font-family: var(--font-heading);
  color: var(--accent-clay);
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-clay);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-main);
  width: 25%;
}

.comparison-table td {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check-icon {
  color: var(--accent-clay);
  font-weight: bold;
  font-size: 1.2rem;
}

.cross-icon {
  color: #ccc;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .pricing-table-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .pricing-table-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-table-grid {
    grid-template-columns: 1fr;
  }
}

/* Safety Section */
.safety-box {
  border-left: 3px solid var(--accent-clay);
  padding: 0 0 0 3rem;
  margin: 4rem auto;
  max-width: 800px;
  text-align: left;
}

/* Testimonials (Clean) */
.testimonial-card {
  background: transparent;
  padding: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-main);
  font-style: italic;
}

/* Footer (Redesigned) */
.site-footer {
  background: var(--primary-sage);
  /* Dark solid background for clear separation */
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 5rem;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: auto;
  width: 180px;
  opacity: 1;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.6;
}

.footer-copyright a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--accent-gold);
  text-decoration-color: var(--accent-gold);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FFFFFF;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}



/* Custom Video Controls */
.custom-video-container {
  position: relative;
  overflow: hidden;
}

.custom-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2rem 1.5rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.custom-video-container:hover .custom-video-controls {
  opacity: 1;
}

.control-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 50%;
}

.control-btn:hover {
  transform: scale(1.1);
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.1);
}

.control-btn svg {
  fill: currentColor;
}

.progress-container {
  flex-grow: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.progress-container:hover {
  transform: scaleY(2);
}

.progress-filled {
  height: 100%;
  background: #ffffff;
  width: 0%;
  border-radius: 2px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.8rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .safety-box {
    padding: 2rem;
    border-left: none;
    border-top: 3px solid var(--accent-clay);
    text-align: center;
  }
}

/* Testimonial Header (Image + Title + Stars) */
.testim-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testim-img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(114, 74, 115, 0.2);
  /* Subtle sage border */
}

.testim-meta h3 {
  margin: 0 0 0.25rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--accent-clay);
  font-style: normal;
}

.testim-stars {
  display: flex;
  gap: 0.2rem;
  color: #e0ac5c;
  /* Soft warm gold */
}

.testim-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Testimonials Read Full Stories Button */
.btn-testim {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  background-color: #c08e45;
  /* Solid gold-brown */
  color: white;
  border: 1px solid #724a73;
  /* Subtle sage/purple border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-testim:hover {
  background-color: #a87936;
  border-color: #5e3b5e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.booking-testimonials {
  margin: 3.25rem auto 0;
  max-width: 980px;
}

.sessions-hero {
  padding-bottom: 8rem;
}

.session-booking-band {
  position: relative;
  z-index: 2;
  margin-top: -4.5rem;
  padding-top: 3.5rem;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(248,243,238,0.98) 100%);
}

.session-booking-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.quote-slider {
  position: relative;
  padding: clamp(1.5rem, 2vw, 2.25rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(212, 170, 118, 0.2), transparent 34%),
    radial-gradient(circle at bottom left, rgba(114, 74, 115, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,245,239,0.96));
  border: 1px solid rgba(114, 74, 115, 0.12);
  box-shadow: 0 24px 50px rgba(80, 52, 60, 0.08);
}

.quote-slider-intro {
  max-width: 680px;
  margin: 0 auto 1.75rem;
}

.quote-slider-intro h3 {
  margin: 0.5rem 0 0.75rem;
  color: var(--primary-sage);
}

.quote-slider-intro p {
  margin: 0;
}

.quote-slider-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(114, 74, 115, 0.08);
  color: var(--primary-sage);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-slider-viewport {
  overflow: hidden;
}

.quote-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.quote-slide {
  min-width: 100%;
}

.quote-slide-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(114, 74, 115, 0.1);
}

.quote-slide-photo {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.95);
  box-shadow: 0 18px 30px rgba(80, 52, 60, 0.12);
}

.quote-slide-copy {
  position: relative;
  padding-top: 0.35rem;
}

.quote-slide-mark {
  position: absolute;
  top: -0.4rem;
  left: 0;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: rgba(114, 74, 115, 0.18);
}

.quote-slide-copy p {
  position: relative;
  margin: 0;
  padding-left: 1.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--primary-sage);
}

.quote-slide-person {
  margin-top: 1.2rem;
  padding-left: 1.75rem;
  display: grid;
  gap: 0.2rem;
}

.quote-slide-person strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-clay);
}

.quote-slide-person span {
  font-size: 0.92rem;
  color: var(--text-main);
}

.quote-slider-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.quote-slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(114, 74, 115, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-sage);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.quote-slider-arrow:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(114, 74, 115, 0.28);
}

.quote-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.quote-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(114, 74, 115, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.quote-slider-dot.active {
  background: var(--accent-clay);
  transform: scale(1.15);
}

.quote-slider-footer {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

/* Premium Card Layouts (Memberships & Sessions) */
.premium-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(114, 74, 115, 0.08);
  /* Faint sage border */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.premium-card.active-tier {
  background: var(--bg-paper);
  border: 2px solid var(--accent-clay);
  transform: scale(1.02);
}

.premium-card.active-tier:hover {
  transform: scale(1.02) translateY(-5px);
}

.premium-card h3 {
  color: var(--primary-sage);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.premium-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin: 1.5rem 0;
  line-height: 1;
}

.premium-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.premium-card .card-action {
  margin-top: auto;
  padding-top: 2rem;
}

/* Custom SVG Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23c08e45" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2M10,17L5,12L6.41,10.59L10,14.17L17.59,6.58L19,8L10,17Z" /></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Navbar Login Icon */
.nav-login-icon {
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.nav-login-icon:hover {
  color: var(--accent-clay);
  transform: scale(1.05);
}

.navbar .nav-login-icon {
  color: #FFFFFF !important;
}

.navbar.scrolled .nav-login-icon {
  color: var(--primary-sage) !important;
  background: rgba(114, 74, 115, 0.05);
  border-color: rgba(114, 74, 115, 0.14);
}

/* Responsive Fixes - Dashboards, Testimonials, Cards */
@media (max-width: 768px) {

  /* Testimonials Downscaling */
  .testim-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .testim-img {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
  }

  .testim-stars svg {
    width: 12px;
    height: 12px;
  }

  /* Premium Cards Downscaling */
  .premium-card {
    padding: 2rem 1.5rem;
  }

  .premium-price {
    font-size: 2rem;
  }

  .premium-card h3 {
    font-size: 1.3rem;
  }
}

/* Hamburger Menu & Off-Canvas Navigation */
.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 0.65rem;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(15, 10, 15, 0.16);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-sage);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Explicit color overrides for hamburger background spans */
.navbar .hamburger-btn span {
  background-color: #FFFFFF;
}

.navbar.transparent .hamburger-btn span {
  background-color: #FFFFFF;
}

.navbar.scrolled .hamburger-btn {
  background: rgba(114, 74, 115, 0.08);
  border-color: rgba(114, 74, 115, 0.16);
  box-shadow: 0 10px 24px rgba(52, 34, 53, 0.08);
}

.navbar.scrolled .hamburger-btn span {
  background-color: var(--primary-sage);
}

.hamburger-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.46);
}

.navbar.scrolled .hamburger-btn:hover {
  background: rgba(114, 74, 115, 0.12);
  border-color: rgba(114, 74, 115, 0.24);
}

/* Show hamburger on mobile */
@media (max-width: 900px) {
  .hamburger-btn {
    display: flex;
  }

  /* Wrap all nav links and actions inside an offcanvas menu */
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 88vw);
    max-width: none;
    height: 100vh;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.5rem;
    padding: 4.75rem 1.5rem 2rem;
    border-radius: 28px 0 0 28px;
    border: none;
    background: linear-gradient(180deg, rgba(251, 245, 238, 0.98) 0%, rgba(245, 234, 224, 0.98) 100%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu-wrapper.active {
    right: 0;
  }

  /* Show links vertically */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--text-main);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent-clay);
  }

  /* Re-align nav actions (user icon + connect button) */
  .nav-action {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 1rem !important;
    width: 100%;
    margin-top: auto;
    padding-left: 0;
    border-left: none;
  }

  .lang-switch {
    border-color: rgba(114, 74, 115, 0.18);
    background: rgba(114, 74, 115, 0.06);
  }

  .lang-switch a {
    color: var(--primary-sage);
  }

  .lang-switch a.active {
    background: var(--primary-sage);
    color: #fff;
  }

  .nav-login-icon {
    color: var(--text-main) !important;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
    background-color: var(--primary-sage) !important;
    color: #FFFFFF !important;
    border-color: var(--primary-sage) !important;
  }

  /* Hamburger Animation to X */
  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--text-main) !important;
  }

  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--text-main) !important;
  }
}

/* Drawer Logo & Main Logo Toggling */
.drawer-header {
  margin-bottom: 2rem;
  text-align: left;
}

.drawer-logo {
  width: 150px;
  height: auto;
}

@media (max-width: 900px) {
  .drawer-header {
    margin-bottom: 1rem;
    text-align: center;
  }

  .drawer-logo {
    width: 112px;
  }

  .nav-dropdown-head,
  .nav-dropdown-menu a,
  .nav-links > a {
    width: 100%;
  }

  .nav-dropdown-link,
  .nav-links > a {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-dropdown-menu {
    margin-top: 0.3rem;
  }

  .nav-dropdown-menu a {
    padding-left: 0;
  }

  /* Hide the main navbar logo when the drawer is active */
  /* This requires a slightly tricky selector since .nav-menu-wrapper is a sibling/child. Let's use JS to add a class to body */
  body.menu-open .navbar .logo {
    opacity: 0;
    pointer-events: none;
  }
}

/* --- DESKTOP NAVIGATION LAYOUT OVERRIDES --- */
@media (min-width: 901px) {

  /* Hide the drawer logo and header on desktop */
  .drawer-header {
    display: none !important;
  }

  /* Strip the wrapper on desktop so flex elements align correctly as siblings */
  .nav-menu-wrapper {
    display: contents;
  }
}

/* Checkout Modal (custom; replaces browser alert/prompt) */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 6000;
  padding: 1.2rem;
}

.checkout-overlay.active {
  display: flex;
}

.checkout-modal {
  width: min(560px, 96vw);
  background: var(--bg-card);
  border: 1px solid rgba(114, 74, 115, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
  padding: 2rem;
  position: relative;
}

.checkout-title {
  color: var(--primary-sage);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.checkout-message {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.checkout-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(114, 74, 115, 0.35);
  background: white;
  border-radius: 50%;
  color: var(--primary-sage);
  font-size: 0.8rem;
  cursor: pointer;
}

.checkout-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-end;
}

.checkout-gateway-actions {
  justify-content: flex-start;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-gateway-actions .btn-outline {
  width: 100%;
  text-align: center;
  padding: 0.9rem 0.8rem;
}

.checkout-modal.is-error .checkout-title {
  color: #a03938;
}

.checkout-modal.is-success .checkout-title {
  color: #1e6a42;
}

.checkout-result-actions .btn-earth {
  min-width: 130px;
}

@media (max-width: 680px) {
  .checkout-modal {
    padding: 1.4rem;
  }

  .checkout-title {
    font-size: 1.5rem;
  }

  .checkout-gateway-actions {
    grid-template-columns: 1fr;
  }
}

/* Token Booking Calendar Modal */
.token-calendar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35, 35, 35, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 6100;
  padding: 1rem;
}

.token-calendar-overlay.active {
  display: flex;
}

.token-calendar-modal {
  width: min(820px, 98vw);
  background: #fff;
  border: 1px solid rgba(114, 74, 115, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
  padding: 1.4rem;
  position: relative;
}

.token-calendar-close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(114, 74, 115, 0.35);
  background: #fff;
  color: var(--primary-sage);
  font-size: 0.85rem;
  cursor: pointer;
}

.token-calendar-title {
  color: var(--primary-sage);
  font-style: italic;
  margin-bottom: 1rem;
}

.token-calendar-head {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.token-month-label {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.4rem;
}

.token-month-nav {
  border: 1px solid rgba(114, 74, 115, 0.25);
  background: #fff;
  color: var(--primary-sage);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.token-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.token-day {
  border: 1px solid rgba(114, 74, 115, 0.18);
  background: #fff;
  border-radius: 10px;
  min-height: 54px;
  padding: 0.35rem;
  cursor: pointer;
}

.token-day:disabled {
  cursor: not-allowed;
}

.token-day-head {
  border: none;
  background: transparent;
  min-height: auto;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.token-day-empty {
  border: none;
  background: transparent;
}

.token-day-num {
  display: block;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.token-day-meta {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.token-day.is-available {
  border-color: #8ab487;
  background: #f4fbf4;
}

.token-day.is-almost {
  border-color: #d8b85f;
  background: #fff9ea;
}

.token-day.is-full {
  border-color: #c96d6b;
  background: #fff2f1;
  opacity: 0.7;
}

.token-day.selected {
  box-shadow: 0 0 0 2px var(--primary-sage) inset;
}

.token-slot-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.9rem 0;
}

.token-slot-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.35rem;
}

.dot-green { background: #8ab487; }
.dot-yellow { background: #d8b85f; }
.dot-red { background: #c96d6b; }

.token-slot-list-wrap {
  border: 1px solid rgba(114, 74, 115, 0.15);
  border-radius: 12px;
  padding: 0.8rem;
}

.token-slot-list-title {
  font-size: 0.9rem;
  color: var(--primary-sage);
  margin-bottom: 0.6rem;
}

.token-slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.token-slot-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.token-slot-btn {
  border-radius: 20px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(114, 74, 115, 0.2);
  background: #fff;
  color: var(--text-main);
  cursor: pointer;
}

.token-slot-btn.is-available {
  border-color: #8ab487;
}

.token-slot-btn.is-almost {
  border-color: #d8b85f;
  background: #fff9ea;
}

.token-slot-btn.is-full {
  border-color: #c96d6b;
  background: #fff2f1;
  color: #7b4948;
}

.token-slot-btn.selected {
  box-shadow: 0 0 0 2px var(--primary-sage) inset;
}

.token-calendar-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.9rem;
}

@media (max-width: 820px) {
  .token-calendar-modal {
    padding: 1rem;
  }

  .token-calendar-head {
    grid-template-columns: 84px 1fr 84px;
  }
}

html {
  scroll-behavior: smooth;
}

.section-anchor {
  scroll-margin-top: 130px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
}

.nav-dropdown-head {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
}

.nav-dropdown-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-dropdown-link {
  text-decoration: none;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.navbar.scrolled .nav-dropdown-link,
.navbar.scrolled .nav-dropdown-toggle {
  color: var(--primary-sage);
}

.nav-dropdown-head::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-clay);
  transition: var(--ease-exhale);
}

.nav-dropdown-head:hover .nav-dropdown-link,
.nav-dropdown-head:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-link,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-link.active,
.nav-dropdown-toggle.active {
  opacity: 0.8;
}

.nav-dropdown.open .nav-dropdown-head::after,
.nav-dropdown-head:hover::after,
.nav-dropdown-head.active::after {
  width: 100%;
}

.nav-dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  font-size: 0;
  transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 220px;
  padding: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(114, 74, 115, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(44, 28, 40, 0.12);
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  color: var(--primary-sage);
  background: rgba(114, 74, 115, 0.05);
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  opacity: 1;
  background: rgba(221, 124, 122, 0.14);
  color: var(--primary-sage);
}

.inline-cta-row,
.quick-path-row,
.offer-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.inline-cta-row {
  margin-top: 2rem;
}

.quick-path-row {
  margin-top: 2rem;
}

.offer-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 2.5rem auto 0;
  max-width: 980px;
  align-items: stretch;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 74, 115, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-sage);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(44, 28, 40, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cta-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(44, 28, 40, 0.12);
  border-color: rgba(114, 74, 115, 0.28);
}

.cta-chip.is-primary {
  background: var(--primary-sage);
  color: #fff;
  border-color: transparent;
}

.quick-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 320px;
  padding: 2rem 2rem 1.9rem;
  border-radius: 34px;
  border: 1px solid rgba(114, 74, 115, 0.12);
  background:
    radial-gradient(circle at top right, rgba(220, 188, 163, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(249,244,240,0.98) 100%);
  box-shadow: 0 26px 60px rgba(44, 28, 40, 0.12);
  text-align: left;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.quick-path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(114, 74, 115, 0.06), transparent 44%);
  pointer-events: none;
}

.quick-path-card::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, rgba(114, 74, 115, 0.7), rgba(114, 74, 115, 0));
  pointer-events: none;
}

.quick-path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(114, 74, 115, 0.22);
  box-shadow: 0 30px 70px rgba(44, 28, 40, 0.16);
}

.quick-path-card h3 {
  position: relative;
  z-index: 1;
  color: var(--primary-sage);
  margin: 1.1rem 0 0.95rem;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-path-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-main);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.6;
  max-width: 15ch;
}

.quick-path-card .cta-chip {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
  min-width: 214px;
  padding-inline: 1.6rem;
  box-shadow: 0 18px 34px rgba(44, 28, 40, 0.12);
}

.quick-path-card:nth-child(1) .cta-chip.is-primary {
  background: linear-gradient(135deg, #6d476f 0%, #835b88 100%);
  box-shadow: 0 20px 34px rgba(109, 71, 111, 0.28);
}

.quick-path-card:nth-child(2) {
  background:
    radial-gradient(circle at top left, rgba(217, 176, 142, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(250,246,242,0.98) 100%);
}

.quick-path-card:nth-child(2) .cta-chip {
  border-color: rgba(198, 172, 152, 0.5);
  background: rgba(255, 255, 255, 0.92);
}

.membership-selector-section {
  background:
    radial-gradient(circle at top right, rgba(233, 198, 170, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,245,241,1) 100%);
}

.membership-selector-shell {
  max-width: 1140px;
  margin: 0 auto;
}

.membership-selector-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.membership-selector-panel,
.membership-selector-compare {
  border-radius: 32px;
  border: 1px solid rgba(114, 74, 115, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(44, 28, 40, 0.08);
}

.membership-selector-panel {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(221, 183, 150, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,241,236,0.94) 100%);
}

.membership-selector-compare {
  padding: 1.35rem;
}

.membership-selector-header {
  display: block;
  margin-bottom: 1.5rem;
}

.membership-selector-kicker,
.membership-plan-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(114, 74, 115, 0.08);
  color: var(--primary-sage);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
}

.membership-selector-copy {
  max-width: 720px;
}

.membership-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.membership-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(114, 74, 115, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(44, 28, 40, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: default;
}

.membership-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(44, 28, 40, 0.1);
}

.membership-plan-card.is-selected {
  background: linear-gradient(180deg, #3f3141 0%, #251f27 100%);
  border-color: transparent;
  box-shadow: 0 22px 42px rgba(24, 17, 23, 0.28);
}

.membership-plan-card.is-selected,
.membership-plan-card.is-selected h3,
.membership-plan-card.is-selected .membership-plan-card-kicker,
.membership-plan-card.is-selected .membership-plan-card-local,
.membership-plan-card.is-selected .membership-plan-card-desc,
.membership-plan-card.is-selected .membership-plan-card-strike,
.membership-plan-card.is-selected .membership-plan-card-price span {
  color: #fff;
}

.membership-plan-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.membership-plan-card-kicker {
  color: var(--primary-sage);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.membership-plan-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #b7ff12;
  color: #1a1a1a;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.membership-plan-card-local {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
}

.membership-plan-card-strike {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: line-through;
  min-height: 1.2rem;
  opacity: 0.7;
}

.membership-plan-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0.25rem 0 0.85rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.membership-plan-card-price strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.9;
  font-weight: 500;
}

.membership-plan-card-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.membership-plan-card-desc {
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  min-height: 4.2em;
}

.membership-plan-card .btn-earth,
.membership-plan-card .btn-outline {
  width: 100%;
  text-align: center;
  border-radius: 14px;
  margin-top: 0.75rem;
  min-height: 48px;
  font-size: 0.9rem;
}

.membership-plan-select {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  border-radius: 14px;
  border: 1px solid rgba(114, 74, 115, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-sage);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.membership-plan-select:hover {
  border-color: rgba(114, 74, 115, 0.34);
}

.membership-plan-card.is-selected .membership-plan-select {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.membership-plan-card.is-selected .btn-earth,
.membership-plan-card.is-selected .btn-outline {
  background: #b7ff12;
  color: #1a1a1a;
  border-color: transparent;
}

.membership-selector-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: left;
}

.membership-compare-title {
  margin-bottom: 1rem;
  color: var(--primary-sage);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  overflow: hidden;
  border-radius: 20px;
}

.membership-compare-table th,
.membership-compare-table td {
  padding: 0.8rem 0.65rem;
  text-align: center;
  border-bottom: 1px solid rgba(114, 74, 115, 0.08);
}

.membership-compare-table th:first-child,
.membership-compare-table td:first-child {
  text-align: left;
  width: 28%;
}

.membership-compare-table th.is-selected,
.membership-compare-table td.is-selected {
  background: rgba(114, 74, 115, 0.08);
}

.membership-compare-table thead th {
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.membership-compare-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-compare-status.is-on {
  background: rgba(138, 180, 135, 0.18);
  color: #38693f;
}

.membership-compare-status.is-off {
  background: rgba(201, 109, 107, 0.14);
  color: #8f4442;
}

.membership-plan-sources {
  display: none;
}

.membership-cta-panel {
  display: grid;
  gap: 1.8rem;
}

.membership-cta-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.membership-cta-card {
  border-radius: 24px;
  border: 1px solid rgba(114, 74, 115, 0.1);
  background: rgba(255, 255, 255, 0.88);
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(44, 28, 40, 0.05);
}

.membership-cta-card h3 {
  margin-bottom: 0.65rem;
  color: var(--primary-sage);
}

.membership-cta-card.is-accent {
  background:
    radial-gradient(circle at top right, rgba(233, 198, 170, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,245,241,0.98) 100%);
}

.membership-flow-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(226, 184, 137, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(31, 25, 33, 0.72) 0%, rgba(42, 32, 46, 0.78) 100%);
  backdrop-filter: blur(16px) saturate(1.1);
  z-index: 5000;
}

.membership-flow-overlay.is-open {
  display: flex;
}

.membership-flow-page-shell {
  max-width: 1140px;
  margin: 0 auto;
}

.membership-flow-modal {
  width: min(1120px, 100%);
  max-height: calc(100vh - 3rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  border: 1px solid rgba(123, 88, 82, 0.16);
  background:
    radial-gradient(circle at top right, rgba(222, 173, 116, 0.16), transparent 28%),
    radial-gradient(circle at top left, rgba(192, 152, 126, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,252,248,0.985) 0%, rgba(247,239,233,0.98) 100%);
  box-shadow:
    0 34px 80px rgba(28, 18, 30, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.membership-flow-modal-page {
  width: 100%;
  max-height: none;
}

.membership-flow-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(146, 112, 90, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0) 100%);
}

.membership-flow-head h2 {
  margin: 0.2rem 0 0.5rem;
  color: #5f4657;
}

.membership-flow-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(120, 83, 99, 0.1);
  color: #6a5063;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.membership-flow-close:hover {
  transform: translateY(-1px);
  background: rgba(120, 83, 99, 0.16);
  color: #513847;
}

.membership-flow-body {
  overflow: auto;
  padding: 0 1.5rem 0;
}

.membership-flow-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1.2rem;
  padding: 1.35rem 0 0.8rem;
}

.membership-flow-intro,
.membership-flow-recommended {
  border-radius: 24px;
  border: 1px solid rgba(147, 111, 100, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(252,248,244,0.88) 100%);
  padding: 1.35rem;
  box-shadow: 0 12px 30px rgba(74, 49, 42, 0.06);
}

.membership-flow-recommended {
  background:
    radial-gradient(circle at top right, rgba(236, 193, 108, 0.18), transparent 30%),
    linear-gradient(180deg, #60445a 0%, #3d2a39 100%);
  color: #fff;
  box-shadow: 0 20px 42px rgba(39, 25, 33, 0.24);
}

.membership-flow-recommended h3,
.membership-flow-recommended p {
  color: #fff;
}

.membership-flow-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.8rem 0 1rem;
}

.membership-flow-plan-grid .membership-plan-card {
  padding: 1.15rem;
  min-height: 100%;
  border: 1px solid rgba(149, 113, 101, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(251,247,243,0.96) 100%);
  box-shadow: 0 14px 28px rgba(74, 49, 42, 0.06);
}

.membership-flow-plan-grid .membership-plan-card.is-selected {
  background:
    radial-gradient(circle at top right, rgba(227, 187, 112, 0.14), transparent 28%),
    linear-gradient(180deg, #5b4256 0%, #352833 100%);
  border-color: rgba(255, 219, 157, 0.22);
  box-shadow: 0 24px 42px rgba(53, 40, 51, 0.26);
}

.membership-plan-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.membership-plan-card-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(132, 93, 110, 0.08);
  color: #6b5065;
  font-size: 0.76rem;
  font-weight: 600;
}

.membership-plan-card.is-selected .membership-plan-card-chip {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.membership-plan-card-points {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.membership-plan-card-points li {
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.45;
}

.membership-plan-card.is-selected .membership-plan-card-points li {
  color: rgba(255, 255, 255, 0.9);
}

.membership-plan-card-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: auto;
}

.membership-plan-selected-tag {
  display: none;
}

.membership-flow-more {
  border-top: 1px solid rgba(146, 112, 90, 0.12);
  margin-top: 0.8rem;
  padding-top: 1rem;
}

.membership-flow-toggle {
  border: none;
  background: transparent;
  color: var(--primary-sage);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
}

.membership-flow-toggle-panel {
  display: none;
  margin-top: 1rem;
}

.membership-flow-toggle-panel.is-open {
  display: block;
}

.membership-flow-auth {
  display: none;
  margin-top: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(147, 111, 100, 0.14);
  background:
    radial-gradient(circle at top left, rgba(234, 196, 162, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(251,247,243,0.92) 100%);
  padding: 1.25rem;
  box-shadow: 0 18px 32px rgba(74, 49, 42, 0.06);
}

.membership-flow-auth.is-open {
  display: block;
}

.membership-auth-tabs {
  display: inline-flex;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.membership-auth-tab {
  border: 1px solid rgba(132, 93, 110, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: #674c63;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.membership-auth-tab.is-active {
  background: linear-gradient(135deg, #6a4e64 0%, #8d6770 100%);
  color: #fff;
  border-color: transparent;
}

.membership-auth-panels {
  display: grid;
  gap: 1rem;
}

.membership-auth-panel {
  display: none;
}

.membership-auth-panel.is-active {
  display: block;
}

.membership-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.membership-auth-field {
  display: grid;
  gap: 0.45rem;
}

.membership-auth-field.is-full {
  grid-column: 1 / -1;
}

.membership-auth-field label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.membership-auth-field input:not([type="checkbox"]) {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(142, 111, 103, 0.16);
  background: rgba(255,255,255,0.96);
  padding: 0.9rem 1rem;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.membership-auth-field input:not([type="checkbox"]):focus {
  outline: none;
  border-color: rgba(106, 78, 100, 0.42);
  box-shadow: 0 0 0 4px rgba(128, 94, 115, 0.08);
}

.membership-auth-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.membership-auth-consent input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0.15rem 0 0;
  accent-color: #6a4e64;
  box-shadow: none;
}

.membership-flow-page-shell .membership-flow-auth,
.membership-flow-auth.membership-auth-floating {
  display: none;
}

.membership-auth-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(32, 25, 33, 0.38);
  z-index: 5900;
}

.membership-auth-backdrop.is-open {
  display: block;
}

.membership-flow-page-shell .membership-flow-auth.is-open,
.membership-flow-auth.membership-auth-floating.is-open {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  margin-top: 0;
  z-index: 6000;
  padding: 1.5rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(234, 196, 162, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(251,247,243,0.98) 100%);
  border: 1px solid rgba(147, 111, 100, 0.16);
  box-shadow: 0 32px 80px rgba(42, 32, 46, 0.32);
}

.membership-auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(120, 83, 99, 0.1);
  color: #6a5063;
  font-size: 1.1rem;
  cursor: pointer;
}

.membership-auth-close:hover {
  background: rgba(120, 83, 99, 0.16);
}

.membership-auth-consent a {
  color: var(--primary-sage);
  text-decoration: underline;
}

.membership-auth-submit {
  margin-top: 1rem;
}

.membership-auth-message {
  display: none;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
}

.membership-auth-message.is-visible {
  display: block;
}

.membership-auth-message.is-error {
  background: rgba(217, 83, 79, 0.12);
  color: #8f2d35;
}

.membership-auth-message.is-success {
  background: rgba(82, 168, 104, 0.12);
  color: #25653b;
}

.membership-auth-message.is-info {
  background: rgba(95, 133, 189, 0.12);
  color: #2f517d;
}

.membership-flow-sticky {
  position: sticky;
  bottom: 0;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.5rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(247,239,233,0.6) 0%, rgba(247,239,233,0.98) 36%),
    linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(249,243,239,0.98) 100%);
  border-top: 1px solid rgba(146, 112, 90, 0.12);
  box-shadow: 0 -12px 24px rgba(74, 49, 42, 0.04);
}

.membership-flow-sticky.is-visible {
  display: grid;
}

.membership-flow-sticky-plan {
  display: grid;
  gap: 0.15rem;
}

.membership-flow-sticky-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-flow-sticky-value {
  color: #5f4657;
  font-size: 1.05rem;
  font-weight: 700;
}

.membership-flow-sticky .btn-earth {
  min-width: 220px;
  box-shadow: 0 14px 28px rgba(97, 70, 91, 0.18);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.workshop-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(114, 74, 115, 0.12);
  background:
    radial-gradient(circle at top right, rgba(233, 198, 170, 0.28), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(252,249,247,1) 100%);
  box-shadow: 0 18px 42px rgba(89, 63, 83, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(89, 63, 83, 0.13);
}

.workshop-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f2ece8;
}

.workshop-card-body {
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.workshop-card-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workshop-card-price {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 2.3rem;
}

.workshop-card-price span {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workshop-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.workshop-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-main);
}

.workshop-card-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200, 145, 66, 0.14);
  color: #bd8731;
  font-size: 0.82rem;
  font-weight: 700;
}

.workshop-card-action {
  margin-top: 0.6rem;
}

.workshop-card-action .btn-outline {
  width: 100%;
  text-align: center;
}

.workshop-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(114, 74, 115, 0.2);
  color: var(--text-muted);
}

.workshop-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35, 35, 35, 0.56);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 6200;
  padding: 1rem;
}

.workshop-modal-overlay.active {
  display: flex;
}

.workshop-modal {
  width: min(920px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 30px;
  border: 1px solid rgba(114, 74, 115, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  position: relative;
}

.workshop-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(114, 74, 115, 0.24);
  background: rgba(255,255,255,0.92);
  color: var(--primary-sage);
  cursor: pointer;
  z-index: 2;
}

.workshop-modal-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  background: #f2ece8;
}

.workshop-modal-body {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.workshop-modal-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.workshop-modal-title {
  margin: 0;
  color: var(--primary-sage);
}

.workshop-modal-price {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--text-dark);
}

.workshop-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.workshop-modal-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(114, 74, 115, 0.08);
  color: var(--primary-sage);
  font-size: 0.82rem;
}

.workshop-modal-description {
  color: var(--text-main);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-head {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-link {
    flex: 1 1 auto;
  }

  .nav-dropdown-toggle {
    width: auto;
    min-width: 2.2rem;
    justify-content: flex-end;
    text-align: right;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.8rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.25s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 240px;
  }

  .nav-dropdown-menu a {
    width: 100%;
  }

  .membership-selector-layout {
    grid-template-columns: 1fr;
  }

  .membership-plan-grid,
  .membership-flow-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-cta-layout,
  .membership-flow-summary,
  .membership-auth-grid,
  .membership-flow-sticky {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .inline-cta-row,
  .quick-path-row,
  .offer-switcher {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-switcher {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-chip,
  .quick-path-card {
    width: 100%;
    max-width: none;
  }

  .membership-selector-panel,
  .membership-selector-compare {
    padding: 1.2rem;
  }

  .membership-plan-grid,
  .membership-flow-plan-grid {
    grid-template-columns: 1fr;
  }

  .membership-flow-overlay {
    padding: 0.75rem;
  }

  .membership-flow-modal {
    max-height: calc(100vh - 1.5rem);
    border-radius: 24px;
  }

  .membership-flow-head,
  .membership-flow-body,
  .membership-flow-sticky {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .membership-compare-table {
    font-size: 0.82rem;
  }

  .membership-compare-table th,
  .membership-compare-table td {
    padding: 0.65rem 0.45rem;
  }

  .workshop-card-title {
    font-size: 1.5rem;
  }

  .workshop-modal-body {
    padding: 1.1rem;
  }

  .quote-slide-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .session-booking-band {
    margin-top: -2.25rem;
    padding-top: 2rem;
    border-radius: 24px 24px 0 0;
  }

  .session-booking-panel {
    padding: 0;
  }

  .quote-slide-photo {
    margin: 0 auto;
  }

  .quote-slide-copy p,
  .quote-slide-person {
    padding-left: 0;
  }

  .quote-slide-mark {
    left: 50%;
    transform: translateX(-50%);
  }

  .quote-slider-controls {
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
  }
}

