/* ========================================
   LAGREE ONDA — Design System
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #1d4e5f;
  --navy-deep: #163d4b;
  --teal: #3d8e9e;
  --teal-light: #5ab0bf;
  --coral: #e07080;
  --coral-light: #e8909d;
  --gold: #f0b429;
  --gold-muted: #d4a843;
  --amber: #e8b43d;
  --cream: #FAF6F0;
  --cream-dark: #f0e8d8;
  --white: #fffdf9;
  --text-dark: #1a2a32;
  --text-body: #3a4a52;
  --text-light: #6a7a82;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 8px rgba(29,78,95,0.06);
  --shadow-md: 0 4px 20px rgba(29,78,95,0.1);
  --shadow-lg: 0 8px 40px rgba(29,78,95,0.14);
  --shadow-glow: 0 4px 30px rgba(224,112,128,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 500;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
p { margin-bottom: 1rem; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 50px; font-family: var(--font-sans);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  cursor: pointer; border: 2px solid transparent; transition: all var(--transition);
  text-transform: none; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--coral); color: var(--white); border-color: var(--coral);
}
.btn-primary:hover {
  background: #c9606f; border-color: #c9606f; transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent; color: var(--cream); border-color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream); color: var(--navy); transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold); color: var(--navy-deep); border-color: var(--gold);
}
.btn-gold:hover {
  background: #d9a020; transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(250,246,240,0.97); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm); padding: 0.75rem 0;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 36px; width: auto; transition: var(--transition); }
.navbar .nav-logo .logo-light { display: none; }
.navbar .nav-logo .logo-dark { display: block; }
.navbar.scrolled .nav-logo .logo-light { display: none; }
.navbar.scrolled .nav-logo .logo-dark { display: block; }

/* Dark navbar variant for interior pages */
.navbar-dark .nav-logo .logo-light { display: block !important; }
.navbar-dark .nav-logo .logo-dark { display: none !important; }
.navbar-dark .nav-links a { color: var(--cream); }
.navbar-dark .nav-hamburger span { background: var(--cream); }
.navbar-dark.scrolled .nav-logo .logo-light { display: none !important; }
.navbar-dark.scrolled .nav-logo .logo-dark { display: block !important; }
.navbar-dark.scrolled .nav-links a { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--navy);
  position: relative; letter-spacing: 0.01em;
}
.navbar.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--coral); transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { padding: 0.65rem 1.5rem; font-size: 0.85rem; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 1001;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--navy);
  transition: all var(--transition); display: block;
}
.navbar.scrolled .nav-hamburger span { background: var(--navy); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
  height: 100vh; background: var(--navy); padding: 6rem 2.5rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--cream);
  padding: 0.5rem 0; border-bottom: 1px solid rgba(250,246,240,0.1);
}
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  background: var(--cream);
}
.hero-photo {
  position: absolute; inset: -50px;
  background-image: url('../LagreeOnda_GroupClass1_By_Noe_Longoria_cropped.jpeg');
  background-size: cover; background-position: center 15%;
  background-repeat: no-repeat;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.7) 0%, rgba(250,246,240,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem; max-width: 800px;
  transform: translateY(-2rem);
}
.hero-logo { display: block; width: 340px; max-width: 80vw; margin: 0 auto; position: relative; top: -10px; }
.hero-dots {
  display: flex; justify-content: space-between;
  width: 260px; max-width: 80vw;
  margin: -40px auto 4.5rem;
  position: relative; top: -10px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  animation: sineWave 1.5s ease-in-out infinite;
}
.hero-dot-1 { background-color: var(--teal); animation-delay: 0s; }
.hero-dot-2 { background-color: var(--gold); animation-delay: 0.15s; }
.hero-dot-3 { background-color: var(--coral); animation-delay: 0.3s; }
.hero-dot-4 { background-color: var(--teal); animation-delay: 0.45s; }
.hero-dot-5 { background-color: var(--navy); animation-delay: 0.6s; }

@keyframes sineWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tagline {
  font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--navy); font-weight: 400; margin-bottom: 2.5rem;
  font-style: italic; text-shadow: 0 1px 8px rgba(255,255,255,0.6);
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.25rem; color: var(--navy-deep); margin-bottom: 2.5rem; font-weight: 500;
  max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.8;
  text-shadow: 0 1px 6px rgba(255,255,255,0.5);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-dark {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 50px; font-family: var(--font-sans);
  font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all var(--transition);
}
.btn-outline-dark:hover {
  background: var(--navy); color: var(--cream); transform: translateY(-2px);
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }
.scroll-indicator {
  position: absolute; bottom: 6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s ease infinite;
}
.scroll-indicator svg { width: 28px; height: 28px; stroke: var(--navy); opacity: 0.5; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   SECTION: INTRO
   ======================================== */
.section { padding: 6rem 0; }
.section-intro { background: var(--cream); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.intro-eyebrow {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--coral);
  margin-bottom: 0.75rem;
}
.intro-heading { margin-bottom: 1.5rem; }
.intro-text { color: var(--text-body); font-size: 1.05rem; margin-bottom: 2.5rem; }
.intro-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem; border-radius: 50px; font-size: 0.85rem;
  font-weight: 500; background: rgba(29,78,95,0.07); color: var(--navy);
  border: 1px solid rgba(29,78,95,0.12);
}
.pill-icon { font-size: 1rem; }
.intro-image-wrap { position: relative; }
.intro-image {
  border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
  object-fit: cover; width: 100%; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.intro-image-accent {
  position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px;
  background: var(--gold); border-radius: 50%; z-index: -1; opacity: 0.3;
}
.onda-quote {
  font-family: var(--font-serif); font-style: italic; font-size: 1.4rem;
  color: var(--teal); margin-top: 2rem; padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

/* ========================================
   WAVE DIVIDER
   ======================================== */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg, .hero-wave svg, .gallery-wave-top svg, .gallery-wave-bottom svg { 
  width: 200%; height: 68px; animation: panWave 6s linear infinite; 
}
@media (max-width: 768px) {
  .wave-divider svg, .hero-wave svg, .gallery-wave-top svg, .gallery-wave-bottom svg { 
    height: 34px !important;
  }
}
.wave-divider.flip { transform: rotate(180deg); }
.wave-divider.cream-to-navy svg path { fill: var(--navy); }
.wave-divider.navy-to-cream svg path { fill: var(--cream); }

@keyframes panWave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SECTION: WHY FOUNDERS
   ======================================== */
.section-why { background: var(--navy); padding: 5rem 0; }
.section-why h2 { color: var(--cream); text-align: center; margin-bottom: 3.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  background: rgba(250,246,240,0.06); border: 1px solid rgba(250,246,240,0.1);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.why-card:hover {
  background: rgba(250,246,240,0.1); transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.why-card-icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.why-card-icon.coral-bg { background: rgba(224,112,128,0.2); }
.why-card-icon.gold-bg { background: rgba(240,180,41,0.2); }
.why-card-icon.teal-bg { background: rgba(61,142,158,0.2); }
.why-card h3 { color: var(--gold); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.75rem; }
.why-card p { color: rgba(250,246,240,0.7); font-size: 0.95rem; }

/* ========================================
   SECTION: MEMBERSHIP TIERS
   ======================================== */
.section-memberships { padding: 6rem 0; background: var(--cream); }
.section-memberships h2 { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle {
  text-align: center; color: var(--text-light); font-size: 1.05rem;
  margin-bottom: 3.5rem;
}
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.membership-card {
  background: var(--white); border: 1px solid rgba(29,78,95,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.membership-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.membership-card-accent {
  height: 6px; background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
}
.membership-card-body { padding: 2.5rem 2rem; text-align: center; }
.membership-tier {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal);
  margin-bottom: 0.5rem;
}
.membership-name {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy);
  margin-bottom: 1.5rem;
}
.membership-price {
  font-family: var(--font-serif); font-size: 2.8rem; color: var(--navy);
  font-weight: 600; margin-bottom: 0.25rem;
}
.membership-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.membership-per { color: var(--text-light); font-size: 0.85rem; margin-bottom: 2rem; }
.membership-card .btn { width: 100%; }
.membership-card.featured { border-color: var(--coral); }
.membership-card.featured .membership-card-accent {
  height: 6px; background: var(--coral);
}
.membership-cta { text-align: center; }
/* Intro offer */
.intro-offer {
  max-width: 600px; margin: 4px auto 0; text-align: center;
}
.intro-offer h3 { color: var(--navy); font-size: 2.2rem; margin-bottom: 1rem; }
.intro-offer p { color: var(--text-body); margin-bottom: 2rem; font-size: 1.1rem; }
.intro-offer .btn { position: relative; }

/* ========================================
   SECTION: WHATS INCLUDED
   ======================================== */
.section-included { background: var(--cream); padding: 0 0 6rem; }
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.included-list { list-style: none; }
.included-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.75rem 0; font-size: 1.05rem; color: var(--text-dark);
}
.included-list li .check-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(61,142,158,0.15); display: flex; align-items: center;
  justify-content: center; color: var(--teal); font-size: 0.85rem; margin-top: 2px;
}
.included-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; padding: 0.6rem 1.2rem; border-radius: 50px;
  background: rgba(224,112,128,0.1); color: var(--coral);
  font-weight: 600; font-size: 0.9rem;
}
.included-image {
  border-radius: 50% 50% 45% 55% / 55% 40% 60% 45%; object-fit: cover;
  width: 100%; aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.included-image-wrap { position: relative; }
.included-accent-1 {
  position: absolute; bottom: -25px; left: -20px; width: 100px; height: 100px;
  background: var(--gold); border-radius: 50%; z-index: -1; opacity: 0.3;
}
.included-accent-2 {
  position: absolute; top: 10%; right: -30px; width: 60px; height: 60px;
  background: var(--teal); border-radius: 50%; z-index: -1; opacity: 0.2;
}

/* ========================================
   SECTION: GALLERY
   ======================================== */
.section-gallery {
  padding: 5rem 0; position: relative; overflow: hidden; background: var(--cream-dark);
}
.gallery-wave-top {
  position: absolute; top: 0; left: 0; width: 100%; z-index: 2; line-height: 0;
}
.gallery-wave-top svg { width: 100%; height: 80px; display: block; }
.gallery-wave-bottom {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2; line-height: 0;
}
.gallery-wave-bottom svg { width: 100%; height: 80px; display: block; }
.gallery-pattern-bg {
  position: absolute; inset: 0;
  background-image: url('../Onda_pattern/seamless (3).png');
  background-size: 700px; opacity: 0.15;
}
.gallery-heading {
  text-align: center; margin-bottom: 3rem; position: relative; z-index: 1;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  position: relative; z-index: 1;
}
.gallery-item {
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%; overflow: visible; /* changed from hidden so bubbles can overflow */
  aspect-ratio: 4/5; position: relative; z-index: 1; /* relative z-index context */
}
.gallery-item:nth-child(2) { border-radius: 55% 45% 40% 60% / 45% 60% 40% 55%; }
.gallery-item:nth-child(3) { border-radius: 45% 55% 60% 40% / 60% 40% 50% 50%; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: inherit; /* inherit the organic shape */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }

/* Gallery Accents */
.gallery-accent-1 {
  position: absolute; top: -20px; left: -20px; width: 80px; height: 80px;
  background: var(--gold); border-radius: 50%; z-index: -1; opacity: 0.3;
}
.gallery-accent-2 {
  position: absolute; bottom: 10%; right: -25px; width: 60px; height: 60px;
  background: var(--teal); border-radius: 50%; z-index: -1; opacity: 0.25;
}
.gallery-accent-3 {
  position: absolute; top: 15%; right: -30px; width: 90px; height: 90px;
  background: var(--gold); border-radius: 50%; z-index: -1; opacity: 0.2;
}
.gallery-accent-4 {
  position: absolute; bottom: -15px; left: 10%; width: 50px; height: 50px;
  background: var(--coral); border-radius: 50%; z-index: -1; opacity: 0.3;
}
.gallery-accent-5 {
  position: absolute; bottom: -20px; right: 10%; width: 65px; height: 65px;
  background: var(--teal); border-radius: 50%; z-index: -1; opacity: 0.2;
}
.gallery-accent-6 {
  position: absolute; top: -10px; left: -15px; width: 45px; height: 45px;
  background: var(--coral); border-radius: 50%; z-index: -1; opacity: 0.25;
}

/* Magnetic Interaction Class */
.magnetic-accent {
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: transform;
}
.gallery-tagline {
  text-align: center; margin-top: 3rem; position: relative; z-index: 1;
}
.gallery-tagline p {
  font-family: var(--font-serif); font-size: 1.6rem; font-style: italic;
  color: var(--navy);
}

/* ========================================
   SECTION: EMAIL SIGNUP
   ======================================== */
.section-signup {
  padding: 5rem 0; background: var(--cream); text-align: center;
}
.signup-heading { margin-bottom: 1rem; }
.signup-sub { color: var(--text-light); margin-bottom: 2rem; max-width: 480px; margin-inline: auto; }
.signup-form {
  display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto;
}
.signup-form input {
  flex: 1; padding: 0.875rem 1.25rem; border-radius: 50px; border: 1px solid rgba(29,78,95,0.15);
  background: var(--white); font-family: var(--font-sans); font-size: 0.95rem;
  outline: none; transition: border var(--transition);
}
.signup-form input:focus { border-color: var(--teal); }
.signup-form .btn { flex-shrink: 0; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--navy); padding: 5rem 0 2rem; color: var(--cream); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about-logo { height: 32px; margin-bottom: 1rem; }
.footer-about p { color: rgba(250,246,240,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a, .footer ul li span {
  color: rgba(250,246,240,0.65); font-size: 0.9rem; transition: color var(--transition);
}
.footer ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(250,246,240,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(250,246,240,0.4); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--cream); }

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .intro-grid, .included-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image-wrap { order: -1; max-width: 500px; margin: 0 auto; }
  .membership-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-logo { width: 260px; }
  .hero-tagline { font-size: 1.3rem; }
  .section { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .signup-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .intro-offer { padding: 2rem 1.5rem; }
}

/* ========================================
   INTERIOR HERO
   ======================================== */
.hero-interior {
  position: relative;
  min-height: 40vh;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--navy);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 2rem;
  text-align: center;
}
.hero-interior-content {
  position: relative; z-index: 2; padding: 2rem; max-width: 800px;
}
.hero-interior h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-family: var(--font-serif);
  margin-bottom: 1rem;
  color: var(--cream);
}
.hero-interior p {
  color: rgba(250, 246, 240, 0.8);
  font-size: 1.15rem;
}

/* ========================================
   INTERIOR CONTENT SECTIONS
   ======================================== */
.section-interior-content,
.guide-section-light {
  background-color: var(--cream);
  color: var(--navy);
}
.guide-section-warm {
  background-color: var(--cream-dark);
  color: var(--navy);
}
.guide-section-light,
.guide-section-warm {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .guide-section-light,
  .guide-section-warm {
    padding: 2rem 0;
  }
}

/* Wave dividers between cream tones */
.guide-wave-a { background: var(--cream); }
.guide-wave-a svg path { fill: var(--cream-dark); }
.guide-wave-b { background: var(--cream-dark); }
.guide-wave-b svg path { fill: var(--cream); }
.container-narrow {
  max-width: 1060px;
  margin: 0 auto;
}
.guide-intro {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.guide-block {
  margin-bottom: 0;
  flex: 1;
}
.section > .container > .guide-block,
.section > .container-narrow > .guide-block {
  margin-bottom: 2.5rem;
}

/* Guide Row — text + blob image side by side */
.guide-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 0;
}
.guide-row-reverse {
  flex-direction: row-reverse;
}
.guide-blob {
  flex-shrink: 0;
  width: 230px; height: 250px;
  overflow: hidden;
}
.guide-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 8 unique organic blob shapes */
.blob-1 { border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; width: 320px; height: 340px; }
.blob-2 { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
.blob-3 { border-radius: 50% 50% 45% 55% / 40% 60% 50% 50%; width: 220px; height: 240px; }
.blob-4 { border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%; width: 240px; height: 230px; }
.blob-5 { border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%; }
.blob-6 { border-radius: 50% 50% 40% 60% / 45% 55% 60% 40%; width: 225px; height: 245px; }
.blob-7 { border-radius: 55% 45% 50% 50% / 50% 40% 60% 50%; width: 235px; height: 235px; }
.blob-8 { border-radius: 45% 55% 55% 45% / 60% 50% 50% 40%; }

@media (max-width: 768px) {
  .guide-row,
  .guide-row-reverse {
    flex-direction: column;
  }
  .guide-blob {
    width: 170px; height: 190px;
    align-self: center;
  }
}

.guide-block h2 {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 1rem;
}
.guide-block p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.guide-block ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}
.guide-block ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-body);
  line-height: 1.7;
}
.guide-block ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--coral);
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-featured {
  background: var(--navy);
  color: var(--cream);
}
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.pricing-card-featured h3 { color: var(--cream); }
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
}
.pricing-card-featured .pricing-amount { color: var(--cream); }
.pricing-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.pricing-card-featured p { color: rgba(250,246,240,0.6); }
.pricing-card .btn { width: 100%; }

/* Fine print */
.guide-fine-print ul {
  list-style: none;
  padding: 0;
}
.guide-fine-print ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  position: relative;
}
.guide-fine-print ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ========================================
   POLICY ITEMS (icon + text)
   ======================================== */
.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.policy-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.policy-text h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.policy-text p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .policy-icon {
    width: 44px;
    height: 44px;
  }
  .policy-icon svg {
    width: 20px;
    height: 20px;
  }
}
