/* ================================================
   JEENAMASTE YOGA — Hero Section
   Editorial luxury meets organic warmth
   ================================================ */

:root {
  --primary: #4A553F;
  --secondary: #DBC8C2;
  --surface: #F8F8F8;
  --surface-alt: #FFFFFF;
  --text: #333333;
  --text-secondary: #717171;
  --text-muted: #A0A0A0;
  --border: #E0E0E0;

  --font-heading: 'Cormorant', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --radius: 8px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 64px;

  --shadow-sm: 0px 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0px 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0px 10px 15px rgba(0,0,0,0.1);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}

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

.hidden {
  display: none !important;
}

/* ================================================
   SKIP NAVIGATION
   ================================================ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--surface-alt);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  background: rgba(248, 248, 248, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.logo:hover {
  background: var(--primary);
  color: var(--surface);
}

.nav-links {
  display: none;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--primary);
  transition: opacity var(--transition);
}

.nav-cta:hover {
  opacity: 0.6;
}

.nav-hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}

.nav-hamburger span:nth-child(2) {
  width: 65%;
  margin-left: auto;
}

/* Hamburger → X animation */
.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ================================================
   MOBILE NAV OVERLAY
   ================================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(248, 248, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vh, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

.nav-open .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

.nav-open .mobile-nav a:nth-child(1) { transition-delay: 0.08s; }
.nav-open .mobile-nav a:nth-child(2) { transition-delay: 0.13s; }
.nav-open .mobile-nav a:nth-child(3) { transition-delay: 0.18s; }
.nav-open .mobile-nav a:nth-child(4) { transition-delay: 0.23s; }
.nav-open .mobile-nav a:nth-child(5) { transition-delay: 0.28s; }
.nav-open .mobile-nav a:nth-child(6) { transition-delay: 0.33s; }

.mobile-nav a:hover {
  color: var(--primary);
}

/* Hide mobile nav on desktop */
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--surface);
  overflow: hidden;
}

/* --- Hero Image (right side) --- */
.hero-image {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.88) brightness(1.03);
  opacity: 0;
  animation: imageReveal 1.4s ease-out 0.2s forwards;
}

/* Soft gradient fade from background into image */
.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 35%;
  background: linear-gradient(to right, var(--surface) 0%, rgba(248,248,248,0.5) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* --- Hero Content (spans full width, overlaps image) --- */
.hero-content {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 60px;
  pointer-events: none;
}

/* --- THE TITLE --- */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 40px rgba(248, 248, 248, 0.85),
    0 0 80px rgba(248, 248, 248, 0.6),
    0 0 120px rgba(248, 248, 248, 0.35);
}

.title-line {
  display: block;
}

.title-line--top {
  font-size: clamp(1.05rem, 3.33vw, 4.2rem);
  opacity: 0;
  transform: translateY(35px);
  animation: revealUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.title-line--bottom {
  font-size: clamp(3.5rem, 11.5vw, 15rem);
  opacity: 0;
  transform: translateY(35px);
  animation: revealUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

/* --- Hero Meta --- */
.hero-meta {
  margin-top: clamp(1.5rem, 3vw, 3rem);
  pointer-events: all;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.hero-byline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0.9rem 2.2rem;
  border: 1.5px solid var(--primary);
  transition: all var(--transition);
}

.hero-btn:hover {
  background: var(--primary);
  color: var(--surface-alt);
}

.hero-btn svg {
  transition: transform var(--transition);
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

/* --- Botanical Decoration --- */
.hero-botanical {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: clamp(180px, 22vw, 300px);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.8s ease-out 1.1s forwards;
}

/* --- Subtle warm glow --- */
.hero-glow {
  position: absolute;
  top: 25%;
  left: 5%;
  width: 35%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(219, 200, 194, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- Bottom accent line --- */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5vw;
  right: 5vw;
  height: 1px;
  background: var(--border);
  opacity: 0.3;
  z-index: 5;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.75; }
}

/* Hummingbird gentle hover animation */
@keyframes hummingbirdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hummingbird {
  position: absolute;
  width: clamp(40px, 8vw, 75px);
  top: 5%;
  right: 5%;
  opacity: 0.55;
  pointer-events: none;
  animation: hummingbirdFloat 4s ease-in-out infinite;
}

.hummingbird--about {
  transform: scaleX(-1);
  top: 10%;
  right: 38%;
  left: auto;
}

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

/* Tablet+ */
@media (min-width: 768px) {
  .hero-botanical {
    bottom: -20px;
    left: -10px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .hero-image {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-image::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
      to top,
      var(--surface) 0%,
      rgba(248,248,248,0.88) 30%,
      rgba(248,248,248,0.25) 55%,
      transparent 100%
    );
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: clamp(32px, 6vw, 56px);
    align-items: center;
    text-align: center;
  }

  .title-line--top {
    font-size: clamp(0.77rem, 3.5vw, 1.12rem);
  }

  .title-line--bottom {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .hero-byline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .hero-botanical {
    width: 150px;
    bottom: -15px;
    left: -15px;
  }
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ================================================
   FEATURES STRIP
   ================================================ */
.features-strip {
  padding: var(--space-xl) 5vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-md);
  color: var(--primary);
  opacity: 0.6;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.feature p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto;
}

/* ================================================
   ABOUT / INSTRUCTOR
   ================================================ */
.about {
  padding: clamp(80px, 10vw, 150px) 5vw;
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 0 clamp(48px, 7vw, 110px);
  align-items: start;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Portrait — distinctive top-left rounded corner */
.about-portrait {
  position: relative;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 42% 0 0 0;
  filter: saturate(0.9) brightness(1.02);
}

/* Content */
.about-content {
  padding-top: clamp(12px, 2.5vw, 40px);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.about-role {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.about-bio {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 420px;
}

/* Social links */
.about-social {
  display: flex;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.about-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.about-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.about-social svg {
  width: 13px;
  height: 13px;
}

/* "View Team" link */
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  transition: color var(--transition);
}

.about-link:hover {
  color: var(--primary);
}

.about-link-arrow {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--text);
  position: relative;
  transition: width var(--transition), background var(--transition);
}

.about-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--text);
  border-right: 1px solid var(--text);
  transform: rotate(45deg);
  transition: border-color var(--transition);
}

.about-link:hover .about-link-arrow {
  width: 36px;
  background: var(--primary);
}

.about-link:hover .about-link-arrow::after {
  border-color: var(--primary);
}

/* Botanical decoration — upper right, mirrored */
.about-botanical {
  position: absolute;
  top: -50px;
  right: -40px;
  width: clamp(200px, 22vw, 320px);
  pointer-events: none;
  opacity: 0.55;
  transform: scaleX(-1);
}

/* ================================================
   ABOUT GALLERY (two offset images)
   ================================================ */
.about-gallery {
  display: grid;
  grid-template-columns: 42% 1fr 42%;
  padding-top: clamp(64px, 8vw, 120px);
}

.about-gallery-left {
  grid-column: 1;
  overflow: hidden;
}

.about-gallery-left img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.85) brightness(1.02);
  transition: transform 0.7s ease;
}

.about-gallery-left:hover img {
  transform: scale(1.03);
}

.about-gallery-right {
  grid-column: 3;
  margin-top: clamp(40px, 6vw, 90px);
  overflow: hidden;
}

.about-gallery-right img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.88) brightness(1.02);
  transition: transform 0.7s ease;
}

.about-gallery-right:hover img {
  transform: scale(1.03);
}

/* ================================================
   RESPONSIVE — New sections
   ================================================ */
@media (max-width: 1023px) {
  .features-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-lg);
  }
}

@media (max-width: 767px) {
  .features-strip {
    padding: var(--space-lg) 5vw;
  }

  .features-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .feature p {
    display: none;
  }

  .about {
    padding: var(--space-2xl) 5vw;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-portrait {
    max-width: 320px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
  }

  .about-gallery-left,
  .about-gallery-right {
    grid-column: 1;
  }

  .about-gallery-right {
    margin-top: 0;
  }

  .about-botanical {
    display: none;
  }
}

/* ================================================
   PRICING
   ================================================ */
.pricing {
  padding: clamp(80px, 10vw, 150px) 0 0;
  background: var(--surface);
  position: relative;
  overflow: visible;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 0 clamp(48px, 7vw, 110px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* --- Left info column --- */
.pricing-info {
  padding-top: var(--space-sm);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.pricing-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 260px;
}

.pricing-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--primary);
  color: var(--surface-alt);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1.5px solid var(--primary);
  transition: all var(--transition);
}

.pricing-btn:hover {
  background: transparent;
  color: var(--primary);
}

/* --- Pricing grid (2x2 table) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pricing-card {
  background: var(--surface);
  padding: clamp(24px, 3vw, 44px) clamp(20px, 2.5vw, 36px);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.card-subtitle {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.card-price {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: auto;
  padding-bottom: var(--space-lg);
}

.card-purchase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  transition: color var(--transition);
}

.card-purchase:hover {
  color: var(--primary);
}

.card-arrow {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--transition);
}

.card-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2.5px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.card-purchase:hover .card-arrow {
  width: 30px;
}

/* --- Rotating badge (upper right) --- */
.pricing-badge {
  position: absolute;
  top: -35px;
  right: 5vw;
  width: 110px;
  height: 110px;
  animation: spin 25s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.pricing-badge text {
  font-family: var(--font-body);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  fill: var(--primary);
  opacity: 0.55;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Botanical (bottom-left, olive blobs) --- */
.pricing-botanical {
  position: absolute;
  bottom: 18%;
  left: -20px;
  width: clamp(220px, 26vw, 360px);
  pointer-events: none;
  z-index: 2;
}

/* --- Large bleeding headline --- */
.pricing-marquee {
  padding: clamp(80px, 10vw, 140px) 0 0 5vw;
  overflow: hidden;
}

.pricing-marquee-text {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9.8vw, 14rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 0.85;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.88;
}

/* --- Bottom bar --- */
.pricing-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 5vw;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.pricing-bar p {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
}

.pricing-bar-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  flex-shrink: 0;
}

.pricing-bar-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* --- Pricing responsive --- */
@media (max-width: 1023px) {
  .pricing-inner {
    grid-template-columns: 32% 1fr;
  }
}

@media (max-width: 767px) {
  .pricing {
    padding-top: var(--space-2xl);
  }

  .pricing-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-marquee-text {
    font-size: clamp(2.5rem, 12.6vw, 4.2rem);
    white-space: normal;
  }

  .pricing-bar {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .pricing-botanical {
    display: none;
  }

  .pricing-badge {
    width: 80px;
    height: 80px;
    top: -20px;
    right: 4vw;
  }
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-section {
  background: var(--surface);
  padding: clamp(80px, 10vw, 140px) 5vw;
  overflow: hidden;
}

.gallery-title-wrap {
  position: relative;
  z-index: 3;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(4.2rem, 10.5vw, 14rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 0.85;
  letter-spacing: -0.01em;
  opacity: 0.85;
  text-shadow:
    0 0 40px rgba(248, 248, 248, 0.85),
    0 0 80px rgba(248, 248, 248, 0.6),
    0 0 120px rgba(248, 248, 248, 0.35);
}

.gallery-images {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 24px);
  row-gap: clamp(24px, 3.5vw, 48px);
  margin-top: clamp(-70px, -8vw, -150px);
}

.gallery-img {
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.01);
  transition: transform 0.7s ease;
}

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

/* Single row, 4 images */
.gi-1 { grid-column: 1; }
.gi-2 { grid-column: 2; }
.gi-3 { grid-column: 3; }
.gi-4 { grid-column: 4; }

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  padding: clamp(80px, 10vw, 140px) 5vw;
  background: var(--surface-alt);
}

.contact-inner {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 0 clamp(48px, 7vw, 110px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left info */
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.contact-info > p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 260px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
}

.contact-detail-value a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-detail-value a:hover {
  color: var(--primary);
}

/* Form container — keylined like pricing grid */
.contact-form-wrap {
  border: 1px solid var(--border);
  padding: clamp(28px, 3.5vw, 52px);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) clamp(16px, 2vw, 28px);
}

.contact-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--primary);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.contact-field textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23A0A0A0' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

/* Full-width fields */
.contact-field--full {
  grid-column: 1 / -1;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 2.2rem;
  background: var(--primary);
  color: var(--surface-alt);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}

.contact-submit:hover {
  background: transparent;
  color: var(--primary);
}

.contact-submit svg {
  transition: transform var(--transition);
}

.contact-submit:hover svg {
  transform: translateX(3px);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: clamp(64px, 8vw, 120px) 5vw clamp(32px, 4vw, 48px);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* was 1.5fr + 3×1fr when newsletter was active */
  gap: clamp(32px, 4vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-newsletter h4,
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
}

.footer-newsletter > p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: rgba(255,255,255,0.85);
}

/* Newsletter input */
.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-top: var(--space-lg);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  padding: 0.7rem 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.22);
}

.newsletter-form button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition);
}

.newsletter-form button:hover {
  color: rgba(255,255,255,0.8);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: clamp(24px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 80px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(180, 175, 148, 0.18);
  line-height: 0.85;
  letter-spacing: -0.01em;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.3);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.75);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
}

.footer-top-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: all var(--transition);
  flex-shrink: 0;
}

.footer-top-btn:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.75);
}

.footer-top-btn svg {
  width: 14px;
  height: 14px;
}

.footer-credit {
  text-align: center;
  padding-top: var(--space-lg);
}

.footer-credit a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: rgba(255,255,255,0.5);
}

/* ================================================
   RESPONSIVE — Gallery, Contact, Footer
   ================================================ */
@media (max-width: 1023px) {
  .gallery-images {
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(-50px, -6vw, -100px);
  }

  .gi-1, .gi-2, .gi-3, .gi-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) clamp(32px, 4vw, 48px);
  }
}

@media (max-width: 767px) {
  .gallery-title {
    font-size: clamp(2.8rem, 14vw, 4.9rem);
  }

  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    margin-top: clamp(-30px, -5vw, -60px);
  }

  .contact-section {
    padding: var(--space-2xl) 5vw;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-field--full {
    grid-column: 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .footer-meta {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .footer-copy {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
  padding: var(--space-xl) 5vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: left;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
}

.testimonial-footer .video-trigger {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.4rem 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

/* ================================================
   VIDEO LIGHTBOX
   ================================================ */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.video-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
}

.video-lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 540px;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.35s ease;
}

.video-lightbox.active .video-lightbox-content {
  transform: scale(1);
}

.video-lightbox-content video {
  width: 100%;
  border-radius: 4px;
  background: #000;
  max-height: 85vh;
}

.video-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.video-lightbox-close:hover {
  color: #fff;
}

.video-trigger:hover {
  background: var(--primary) !important;
  color: var(--surface-alt) !important;
}

/* ================================================
   FOOTER LEGAL
   ================================================ */
.footer-legal {
  text-align: center;
  padding-top: var(--space-md);
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.5);
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
