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

:root {
  --lavender:       #a07db5;
  --lavender-light: #cbb8e0;
  --lavender-deep:  #5e3d73;
  --lavender-pale:  #e4d6f5;
  --sage:           #8a9e7e;
  --sage-light:     #edf2e8;
  --cream:          #faf7f2;
  --warm-white:     #f5f0ea;
  --warm-mid:       #ede8e0;
  --text:           #2c2522;
  --text-light:     #6b6360;
  --matcha:         #6b7c52;
  --gold:           #c9a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  overflow-x: hidden;
}



/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--lavender); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 5rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 5rem;
  box-shadow: 0 1px 0 rgba(184,158,196,0.2);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--lavender-deep);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { font-style: italic; }
.nav-links { display: flex; gap: 2.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--lavender-deep);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--lavender-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--lavender-deep); }
.nav-cta {
  background: var(--lavender-deep) !important;
  color: white !important;
  padding: 0.6rem 1.4rem !important;
  letter-spacing: 0.12em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--lavender) !important; color: white !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--lavender-deep);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--lavender-deep); }
.mobile-menu a.mobile-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--lavender-deep);
  color: white !important;
  padding: 0.9rem 2.5rem;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 5rem 7rem 6rem;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,158,196,0.3) 30%, rgba(184,158,196,0.3) 70%, transparent);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--lavender-deep);
}
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender-deep);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--lavender-deep);
  display: block;
}
.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 400px;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary {
  display: inline-block;
  background: var(--lavender-deep);
  color: #fff;
  padding: 1rem 2.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--lavender); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--lavender-deep); }
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover svg { transform: translateX(3px); }

.hero-right {
  position: relative;
  background: var(--lavender-light);
  overflow: hidden;
  opacity: 0; animation: fadeIn 1.4s 0.4s forwards;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(122,92,138,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 85%, rgba(107,124,82,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.08) 0%, transparent 40%);
}
/* Decorative rings */
.hero-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(122,92,138,0.15);
  animation: expandRing 6s ease-in-out infinite;
}
.ring-1 { width: 420px; height: 420px; animation-delay: 0s; }
.ring-2 { width: 320px; height: 320px; animation-delay: 1.5s; }
.ring-3 { width: 220px; height: 220px; animation-delay: 3s; border-color: rgba(122,92,138,0.25); }
.hero-center-illustration {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
}
.hero-center-illustration svg { width: 100px; height: 100px; filter: drop-shadow(0 8px 24px rgba(122,92,138,0.3)); }
.hero-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--lavender-deep);
  opacity: 0.75;
  letter-spacing: 0.05em;
}
/* Floating badges */
.hero-badge {
  position: absolute;
  background: rgba(250,247,242,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184,158,196,0.3);
  padding: 0.8rem 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
  animation: float 5s ease-in-out infinite;
}
.hero-badge-icon { font-size: 1.2rem; }
.hero-badge-text { font-size: 0.75rem; letter-spacing: 0.06em; color: var(--text); font-weight: 400; }
.badge-honey { bottom: 22%; left: 8%; animation-delay: 0s; }
.badge-matcha { top: 22%; right: 8%; animation-delay: 1.5s; }
.badge-meditation { bottom: 10%; right: 12%; animation-delay: 3s; font-size: 0.65rem; }

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--lavender-deep), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--lavender-deep);
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 2.5rem;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* ─── ABOUT ─── */
#about {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about-story {
  padding: 8rem 5rem 8rem 6rem;
}
.about-story p {
  color: var(--text-light);
  line-height: 2;
  font-size: 0.97rem;
  margin-bottom: 1.4rem;
}
.about-story .pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--lavender-deep);
  line-height: 1.6;
  border-left: 2px solid var(--lavender);
  padding-left: 1.8rem;
  margin: 2.5rem 0;
}
.about-values {
  padding: 8rem 6rem 8rem 5rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-content: center;
}
.value-card {
  background: var(--warm-white);
  padding: 2rem 1.8rem;
  border-left: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: var(--lavender);
  transform: scaleY(0);
  transition: transform 0.4s;
  transform-origin: bottom;
}
.value-card:hover::before { transform: scaleY(1); }
.value-card:hover { transform: translateY(-3px); }
.value-icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--lavender-deep);
}
.value-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── SECTION SHARED ─── */
.section-label {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--lavender-deep);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.divider {
  width: 50px; height: 1px;
  background: var(--lavender);
  margin: 1.4rem 0;
}
.divider.centered { margin: 1.4rem auto; }

/* ─── SERVICES ─── */
#services {
  background: var(--cream);
  padding: 8rem 6rem;
}
.services-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  padding: 2.8rem 2.2rem;
  border-top: 2px solid transparent;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,158,196,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  border-color: var(--lavender);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(122,92,138,0.1);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
  color: var(--lavender-deep);
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.85;
}
.service-tags {
  margin-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  background: var(--lavender-light);
  color: var(--lavender-deep);
  border-radius: 20px;
}
.tag.sage { background: var(--sage-light); color: var(--matcha); }

/* ─── MEDITATION BANNER ─── */
#meditation {
  background: var(--lavender-deep);
  color: white;
  padding: 6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#meditation::before {
  content: '';
  position: absolute; top: -60%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
#meditation::after {
  content: '';
  position: absolute; bottom: -40%; left: 5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.med-content { position: relative; z-index: 1; }
.meditation-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.meditation-label::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: rgba(255,255,255,0.5);
}
.meditation-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.meditation-title em { font-style: italic; color: rgba(255,255,255,0.7); }
.meditation-desc {
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 480px;
}
.meditation-card {
  position: relative; z-index: 1;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3rem 3.5rem;
  backdrop-filter: blur(10px);
  min-width: 220px;
}
.meditation-card .day-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.4rem;
}
.meditation-card .time-text {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
  margin-bottom: 2rem;
}
.btn-white {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  background: none;
  cursor: pointer;
}
.btn-white:hover { background: white; color: var(--lavender-deep); }

/* ─── MEMBERSHIP / PRICING ─── */
#membership {
  background: var(--warm-white);
  padding: 8rem 6rem;
}
.pricing-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 5rem;
}
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--cream);
  padding: 3rem 2.4rem;
  text-align: center;
  border: 1px solid rgba(184,158,196,0.2);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}
.pricing-card.featured {
  background: var(--lavender-deep);
  color: white;
  border-color: transparent;
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}
.pricing-card:not(.featured):hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(122,92,138,0.12); }
.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 0.4rem;
}
.pricing-card .pricing-desc {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.pricing-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300;
  line-height: 1;
  margin: 1.5rem 0 0.2rem;
}
.pricing-card .price sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.5rem; }
.pricing-card .period {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.55;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 2.5rem; }
.pricing-card ul li {
  font-size: 0.87rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(184,158,196,0.15);
  color: var(--text-light);
  display: flex; align-items: flex-start; gap: 0.7rem;
}
.pricing-card.featured ul li { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.1); }
.pricing-card ul li::before { content: '–'; color: var(--lavender); flex-shrink: 0; }
.pricing-card.featured ul li::before { color: rgba(255,255,255,0.5); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--lavender-deep);
  color: var(--lavender-deep);
  padding: 0.85rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer; background: none;
}
.btn-outline:hover { background: var(--lavender-deep); color: white; }

/* ─── CONTACT ─── */
#contact {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact-left {
  padding: 8rem 5rem 8rem 6rem;
}
.contact-left > p {
  color: var(--text-light);
  line-height: 1.95;
  margin-bottom: 3rem;
  font-size: 0.97rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 3rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1.2rem;
}
.detail-icon {
  width: 40px; height: 40px;
  background: var(--lavender-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail div { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.contact-detail strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-detail a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.contact-detail a:hover { color: var(--lavender-deep); }

.contact-right {
  padding: 8rem 6rem 8rem 5rem;
  background: var(--warm-white);
}
form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
form input, form textarea, form select {
  background: var(--cream);
  border: 1px solid rgba(184,158,196,0.25);
  border-bottom: 1px solid rgba(184,158,196,0.5);
  padding: 1rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
form input:focus, form textarea:focus, form select:focus {
  border-color: var(--lavender-deep);
  background: white;
}
form textarea { height: 130px; resize: none; }
form input::placeholder, form textarea::placeholder { color: var(--text-light); opacity: 0.5; }
.form-success {
  display: none;
  background: var(--sage-light);
  border: 1px solid rgba(107,124,82,0.2);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.form-success p { font-size: 0.88rem; color: var(--matcha); }

/* ─── INSTAGRAM SECTION ─── */
#instagram {
  background: var(--cream);
  padding: 7rem 6rem;
}
.ig-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.ig-handle-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  text-decoration: none;
  border: 1px solid var(--lavender-light);
  padding: 0.7rem 1.8rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-top: 1.5rem;
  display: inline-flex;
}
.ig-handle-link:hover {
  background: var(--lavender-deep);
  color: white;
  border-color: var(--lavender-deep);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.ig-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ig-tile:hover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(62,36,85,0.15); z-index: 1; }
.ig-tile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.2rem;
  text-align: center;
  width: 100%;
  height: 100%;
}
.ig-tile-icon { font-size: 2rem; line-height: 1; }
.ig-tile-label {
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 400;
}
.ig-tile--honey    { background: #f7e8c0; }
.ig-tile--honey .ig-tile-label { color: #8a6220; }
.ig-tile--matcha   { background: var(--sage-light); }
.ig-tile--matcha .ig-tile-label { color: var(--matcha); }
.ig-tile--teas     { background: var(--lavender-pale); }
.ig-tile--teas .ig-tile-label { color: var(--lavender-deep); }
.ig-tile--meditation { background: var(--lavender-deep); }
.ig-tile--meditation .ig-tile-label { color: rgba(255,255,255,0.85); }
.ig-tile--supplements { background: var(--warm-mid); }
.ig-tile--supplements .ig-tile-label { color: var(--text); }
.ig-tile--organic  { background: #dceee0; }
.ig-tile--organic .ig-tile-label { color: var(--sage); }
.ig-cta { text-align: center; margin-top: 3.5rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.4);
  padding: 4rem 6rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: white;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo span { font-style: italic; }
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.8;
  max-width: 240px;
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--lavender); color: var(--lavender); }
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.76rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes expandRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes scrollPulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
  100% { opacity: 1; transform: scaleY(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── REVEAL ─── */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.js-loaded .reveal.visible { opacity: 1; transform: none; }
.js-loaded .reveal-delay-1 { transition-delay: 0.1s; }
.js-loaded .reveal-delay-2 { transition-delay: 0.2s; }
.js-loaded .reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav { padding: 1.2rem 3rem; }
  nav.scrolled { padding: 0.9rem 3rem; }
  #hero { grid-template-columns: 1fr; }
  .hero-right { height: 360px; }
  .hero-left { padding: 8rem 3rem 5rem; }
  .hero-left::after { display: none; }
  #about { grid-template-columns: 1fr; }
  .about-story { padding: 6rem 3rem; }
  .about-values { padding: 0 3rem 6rem; grid-template-columns: 1fr 1fr; }
  #services { padding: 6rem 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  #meditation { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 3rem; }
  #membership { padding: 6rem 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: none; }
  #contact { grid-template-columns: 1fr; }
  .contact-left { padding: 6rem 3rem 3rem; }
  .contact-right { padding: 3rem 3rem 6rem; }
  footer { padding: 4rem 3rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  #instagram { padding: 5rem 3rem; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-left { padding: 7rem 1.5rem 4rem; }
  .hero-right { height: 300px; }
  .hero-badge { display: none; }
  .about-story { padding: 5rem 1.5rem; }
  .about-values { padding: 0 1.5rem 5rem; grid-template-columns: 1fr; }
  #services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  #meditation { padding: 4rem 1.5rem; }
  #membership { padding: 5rem 1.5rem; }
  #contact, .contact-left, .contact-right { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  #instagram { padding: 4rem 1.5rem; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-tile-icon { font-size: 1.5rem; }
}

/* ─── PRODUCTS GALLERY ─── */
#order {
  background: var(--warm-white);
  padding: 8rem 6rem;
}
.order-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.order-header .section-label { justify-content: center; }
.order-header .section-label::before { display: none; }
.order-header p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-top: 1rem;
}
.products-contact-box {
  background: var(--cream);
  border: 1px solid rgba(184,158,196,0.2);
  padding: 2.5rem;
  text-align: center;
  max-width: 650px;
  margin: 4rem auto 4rem;
}
.products-contact-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--lavender-deep);
  margin-bottom: 1.2rem;
}
.products-contact-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.products-contact-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--lavender-deep);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-link:hover { color: var(--lavender); }
.contact-link span { font-size: 1.3rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--cream);
  border: 1px solid rgba(184,158,196,0.2);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(160,125,181,0.15);
}
.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.product-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--lavender-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-info-card {
  padding: 1.5rem;
  text-align: center;
}
.product-name-card {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.product-note-card {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.supplements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: white;
}
.supplement-item {
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(184,158,196,0.15);
  transition: transform 0.2s, border-color 0.2s;
}
.supplement-item:hover {
  transform: translateY(-2px);
  border-color: var(--lavender);
}
.supplement-item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  background: white;
}
@media (max-width: 1100px) {
  #order { padding: 6rem 3rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
}
@media (max-width: 768px) {
  #order { padding: 4rem 1.5rem; }
  .products-contact-box { padding: 2rem 1.5rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.2rem; }
  .product-image, .product-placeholder { height: 220px; }
}
@media (max-width: 700px) {
  #order { padding: 5rem 1.5rem; }
}
