/* ========================================
   SENSUAL MIND – Professional Design
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Warm earthy palette */
  --color-bg: #FAF7F2;
  --color-bg-alt: #F3EDE4;
  --color-text: #2D2A26;
  --color-text-light: #6B6560;
  --color-accent: #8B7355;
  --color-accent-dark: #6B5740;
  --color-accent-light: #C4A882;
  --color-sage: #7A8B6F;
  --color-sage-light: #A8B89E;
  --color-cream: #F5F0E8;
  --color-white: #FFFFFF;
  --color-dark: #1A1815;
  --color-overlay: rgba(26, 24, 21, 0.55);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1280px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}


/* --- Progress Bar --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-accent));
  z-index: 10000;
  transition: width 0.1s linear;
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-white);
  transition: color 0.5s;
}

.nav.scrolled .nav-logo {
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav.scrolled .nav-links a {
  color: var(--color-text-light);
}

.nav.scrolled .nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(10px);
  padding: 10px 24px !important;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.25) !important;
}

.nav-cta::after { display: none !important; }

.nav.scrolled .nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-color: var(--color-accent) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--color-accent-dark) !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled .nav-toggle span {
  background: var(--color-text);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
  background: var(--color-text);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  background: var(--color-text);
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.2);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 0.9rem;
}


/* --- Section Utilities --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1.5px;
  background: var(--color-sage);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}


/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s linear;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 24, 21, 0.4) 0%,
    rgba(26, 24, 21, 0.25) 40%,
    rgba(26, 24, 21, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(4rem, 12vw, 9rem);
  overflow: hidden;
}

.hero-title-line:nth-child(2) {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  animation: scrollDown 1.8s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}


/* ========================================
   OFFERS
   ======================================== */
.offers {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.offer-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out);
}

.offer-card:hover {
  transform: translateY(-8px);
}

.offer-card-img {
  position: absolute;
  inset: 0;
}

.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.offer-card:hover .offer-card-img img {
  transform: scale(1.06);
}

.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,24,21,0.75) 0%, rgba(26,24,21,0.1) 50%);
}

.offer-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: var(--color-white);
  width: 100%;
}

.offer-card-number {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  opacity: 0.6;
  display: block;
  margin-bottom: 8px;
}

.offer-card-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 8px;
}

.offer-card-content p {
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 12px;
}

.offer-card-arrow {
  font-size: 1.4rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s var(--ease-out);
}

.offer-card:hover .offer-card-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ========================================
   OFFER WORLDS / PRICE OVERVIEW
   ======================================== */
.offer-worlds {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(circle at top left, rgba(196, 168, 130, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(243, 237, 228, 0.7), rgba(250, 247, 242, 0.98));
}

.offer-worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offer-world-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 87, 64, 0.09);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(45, 42, 38, 0.08);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.offer-world-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 80px rgba(45, 42, 38, 0.12);
  border-color: rgba(139, 115, 85, 0.2);
}

.offer-world-media {
  position: relative;
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.9), rgba(243, 237, 228, 0.5));
  padding: 18px 18px 0;
}

.offer-world-media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  border: 1px solid rgba(107, 87, 64, 0.08);
  box-shadow: 0 14px 34px rgba(45, 42, 38, 0.1);
}

.offer-world-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.offer-world-kicker {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 14px;
}

.offer-world-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 14px;
}

.offer-world-content p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.offer-world-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.offer-world-highlights li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  font-size: 0.95rem;
}

.offer-world-highlights li::before {
  content: '';
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent-light);
}

.offer-world-actions {
  margin-top: auto;
}


/* ========================================
   FEATURES
   ======================================== */
.features {
  padding: 0 0 var(--section-pad);
  background: var(--color-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--color-sage);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}


/* ========================================
   SPLIT SECTIONS (Yoga & Massage)
   ======================================== */
.yoga-section,
.massage-section {
  padding: var(--section-pad) 0;
}

.yoga-section { background: var(--color-bg-alt); }
.massage-section { background: var(--color-bg); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-accent);
  margin: 24px 0;
  padding-left: 20px;
  border-left: 2px solid var(--color-accent-light);
}

.split-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.split-content .btn {
  margin-top: 16px;
}

/* Yoga Types */
.yoga-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.type-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(122, 139, 111, 0.1);
  color: var(--color-sage);
  border: 1px solid rgba(122, 139, 111, 0.2);
}

/* Massage Types */
.massage-types {
  margin-top: 24px;
}

.massage-type {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.massage-type:last-child { border-bottom: none; }

.massage-type h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text);
}

.massage-type p {
  font-size: 0.9rem;
  margin-bottom: 0;
}


/* ========================================
   OFFER DETAIL PAGES
   ======================================== */
.offer-detail-page {
  background:
    radial-gradient(circle at top right, rgba(196, 168, 130, 0.14), transparent 34%),
    linear-gradient(180deg, var(--color-bg), #f8f4ed 100%);
}

.offer-detail-page .nav {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.offer-detail-page .nav-logo,
.offer-detail-page .nav-links a {
  color: var(--color-text);
}

.offer-detail-page .nav-toggle span {
  background: var(--color-text);
}

.offer-detail-page .nav-links a {
  color: var(--color-text-light);
}

.offer-detail-page .nav-links a:hover {
  color: var(--color-text);
}

.offer-detail-page .nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-color: var(--color-accent) !important;
}

.subpage-hero {
  padding: clamp(140px, 18vw, 200px) 0 72px;
}

.subpage-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.subpage-copy .section-tag {
  margin-bottom: 20px;
}

.subpage-copy .section-title {
  margin-bottom: 18px;
}

.subpage-lead {
  max-width: 58ch;
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.subpage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.subpage-meta span {
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(122, 139, 111, 0.1);
  border: 1px solid rgba(122, 139, 111, 0.18);
  color: var(--color-sage);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.back-link:hover {
  color: var(--color-accent);
}

.subpage-preview {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(107, 87, 64, 0.08);
  box-shadow: 0 24px 70px rgba(45, 42, 38, 0.11);
}

.subpage-preview::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(196, 168, 130, 0.24);
  pointer-events: none;
}

.subpage-preview img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.price-overview {
  padding: 0 0 var(--section-pad);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: start;
}

.price-grid {
  display: grid;
  gap: 22px;
}

.price-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(107, 87, 64, 0.08);
  box-shadow: 0 16px 50px rgba(45, 42, 38, 0.08);
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.price-card p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.price-list {
  display: grid;
  gap: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(107, 87, 64, 0.08);
}

.price-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.price-label {
  color: var(--color-text);
}

.price-value {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-accent);
}

.price-sidecard {
  position: sticky;
  top: 110px;
  background: rgba(243, 237, 228, 0.86);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(107, 87, 64, 0.08);
}

.price-sidecard h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.price-sidecard p {
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.sidecard-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.sidecard-list li {
  position: relative;
  padding-left: 18px;
}

.sidecard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-sage);
}

.price-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text-light);
  font-size: 0.92rem;
}


/* ========================================
   PARALLAX QUOTE / BENEFITS
   ======================================== */
.parallax-quote {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 21, 0.7);
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  color: var(--color-white);
}

.benefit-item {
  text-align: center;
}

.benefit-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: 16px;
}

.benefit-item h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
}


/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}


/* ========================================
   WORKSHOPS
   ======================================== */
.workshops-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.workshops-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.workshops-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.offer-worlds-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.workshop-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.workshop-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.workshop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.workshop-card:hover .workshop-card-img img {
  transform: scale(1.05);
}

.workshop-card-content {
  padding: 32px;
}

.workshop-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
}

.workshop-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 8px 0 14px;
}

.workshop-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.workshop-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.workshop-topics span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--color-cream);
  color: var(--color-accent);
}


/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  position: relative;
  padding: var(--section-pad) 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 21, 0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================================
   BEE LOCAL
   ======================================== */
.beelocal {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--color-bg);
}

.beelocal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px 56px;
  gap: 40px;
  border: 1px solid rgba(0,0,0,0.04);
}

.beelocal-text {
  flex: 1;
}

.beelocal-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.beelocal-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
}

.bee-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* ========================================
   LOCATIONS
   ======================================== */
.locations {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.location-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.location-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.location-card:hover .location-card-img img {
  transform: scale(1.04);
}

.location-card-content {
  padding: 28px 32px 32px;
}

.location-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.location-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-sage);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.location-card-content address {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.location-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.location-link:hover {
  color: var(--color-accent-dark);
}


/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 32px 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-light);
  margin-bottom: -10px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.testimonial-author span {
  font-weight: 500;
  font-size: 0.95rem;
}


/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  display: inline-block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links-group h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links-group li {
  margin-bottom: 10px;
}

.footer-links-group a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-links-group a:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .offer-worlds-grid,
  .offer-worlds-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshops-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-shell,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .price-sidecard {
    position: static;
  }

  .offer-card { aspect-ratio: 2/3; }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--color-text) !important;
  }

  .nav-cta {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    border-color: var(--color-accent) !important;
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .split-image img { min-height: 350px; }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .offer-worlds-grid,
  .offer-worlds-grid--4 {
    max-width: 560px;
    margin: 0 auto;
  }

  .offer-card { aspect-ratio: 4/3; }

  .offer-world-content,
  .price-card,
  .price-sidecard,
  .subpage-preview {
    padding: 24px;
  }

  .subpage-hero {
    padding-top: 132px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .workshops-grid,
  .workshops-grid--3,
  .offer-worlds-grid--4 { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .beelocal-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .hero-title-line {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .offer-world-content h3,
  .price-card h3,
  .price-sidecard h3 {
    font-size: 1.55rem;
  }

  .subpage-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-value {
    font-size: 1.2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-social { justify-content: center; }
}
