/* ============================================================
   HOME OF GAIA — Design System
   Morjim, Goa · Community · Events · Wellness
   ============================================================ */

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

:root {
  --black:       #060606;
  --dark:        #111111;
  --surface:     #1a1a1a;
  --green-dark:  #0d2b21;
  --green:       #1b4a38;
  --green-mid:   #2a6b50;
  --gold:        #c49a3c;
  --gold-light:  #e8b84b;
  --cream:       #f5edd8;
  --cream-fade:  rgba(245, 237, 216, 0.6);
  --cream-faint: rgba(245, 237, 216, 0.1);
  --white:       #faf6ef;
  --orange:      #d4572b;
  --border:      rgba(245, 237, 216, 0.1);
  --border-gold: rgba(196, 154, 60, 0.25);

  --serif: 'DM Serif Text', Georgia, serif;
  --sans:  'Libre Franklin', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.1; font-weight: 400; }

/* ----- Utilities ----- */
.container { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 2rem; }

.label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border-radius: 1px;
}
.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,154,60,0.3); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,237,216,0.32); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,237,216,0.06); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; display: flex; }

.link-arrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.2s var(--ease);
}
.link-arrow:hover { letter-spacing: 0.18em; }

/* ----- Scroll Animations ----- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s;
}
#nav.scrolled {
  background: rgba(6,6,6,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1260px;
  margin: 0 auto;
}
.nav-links { display: flex; align-items: center; gap: 2.25rem; flex: 1; }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-links a {
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.72);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-logo { flex-shrink: 0; line-height: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.48rem 1.1rem !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  border-radius: 1px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s; }

/* Hidden on desktop; becomes the mobile slide-in panel */
.nav-drawer { display: none; }

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 1rem 1.25rem; }
  .nav-logo img { height: 34px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-main {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-main-bg { position: absolute; inset: 0; z-index: 0; }
.hero-main-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-main-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(6,6,6,0.85) 0%, rgba(6,6,6,0.48) 55%, rgba(6,6,6,0.78) 100%);
}
.hero-main-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-main-content h1 {
  font-size: clamp(4.5rem, 16vw, 15rem);
  line-height: 0.87;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-tagline-main {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.65);
  margin-bottom: 1.5rem;
}
.hero-sub-main {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(245,237,216,0.62);
  line-height: 1.65;
  margin: 0 auto 2.75rem;
  max-width: 580px;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(245,237,216,0.4);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.t-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-fade);
  padding: 0.2rem 1.5rem;
  white-space: nowrap;
}
.t-sep { color: var(--border); font-size: 0.85rem; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--green-dark);
  padding: 8rem 0;
  overflow: hidden;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.manifesto-text blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.38;
  color: var(--cream);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
  margin: 1.25rem 0 2rem;
}
.manifesto-text p { font-size: 1.03rem; color: var(--cream-fade); margin-bottom: 1.1rem; line-height: 1.72; }
.manifesto-text strong { color: var(--gold); }
.manifesto-text em { color: var(--cream); }

.manifesto-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.manifesto-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,33,0.65), transparent 55%);
  pointer-events: none;
}
.manifesto-img-wrap img {
  width: 100%; height: 640px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}
.manifesto-img-wrap:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto-img-wrap img { height: 420px; }
}

/* ============================================================
   SPACES GRID
   ============================================================ */
.spaces-section { background: var(--black); padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2.5rem, 6vw, 5.5rem); color: var(--cream); margin-top: 0.5rem; }
.section-header .sh-sub { font-size: 1.05rem; color: var(--cream-fade); max-width: 480px; margin: 1.1rem auto 0; }

.spaces-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  background: var(--border);
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1100px) { .spaces-grid-v2 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .spaces-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .spaces-grid-v2 { grid-template-columns: 1fr; } }

.sc-v2 {
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease);
}
.sc-v2:hover { transform: scale(1.015); z-index: 2; }
.sc-v2 .sc-img { overflow: hidden; aspect-ratio: 3/4; }
.sc-v2 .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.sc-v2:hover .sc-img img { transform: scale(1.07); }
.sc-v2 .sc-body { padding: 1.25rem 1.25rem 1.6rem; flex: 1; }
.sc-v2 .sc-tag { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block; }
.sc-v2 h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 0.5rem; }
.sc-v2 p { font-size: 0.86rem; color: var(--cream-fade); line-height: 1.55; margin-bottom: 0.85rem; }

/* ============================================================
   PANTHEON BAR
   ============================================================ */
.pantheon-section { background: var(--dark); padding: 8rem 0; overflow: hidden; }
.pantheon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pantheon-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.p-main { grid-column: span 2; overflow: hidden; border-radius: 2px; }
.p-main img { width: 100%; height: 360px; object-fit: cover; transition: transform 0.6s var(--ease); }
.p-main:hover img { transform: scale(1.03); }
.p-side { overflow: hidden; border-radius: 2px; }
.p-side img { width: 100%; height: 230px; object-fit: cover; object-position: center 20%; transition: transform 0.6s var(--ease); }
.p-side:hover img { transform: scale(1.04); }

.pantheon-text h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--cream); margin: 0.75rem 0 1.25rem; }
.pantheon-text .lead { font-size: 1.12rem; color: var(--cream); line-height: 1.62; margin-bottom: 1.1rem; }
.pantheon-text p { font-size: 0.97rem; color: var(--cream-fade); line-height: 1.72; margin-bottom: 1.75rem; }
.pantheon-text strong { color: var(--gold); }
.event-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.85rem; }
.event-chips span {
  background: var(--cream-faint);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 0.38rem 0.85rem;
  font-size: 0.73rem;
  font-weight: 600;
  border-radius: 2rem;
  letter-spacing: 0.04em;
}
.event-freq { font-size: 0.83rem; color: var(--cream-fade); font-style: italic; margin-bottom: 2rem; }

@media (max-width: 900px) { .pantheon-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ============================================================
   GAIA FIT LAB
   ============================================================ */
.fitlab-section { background: var(--green-dark); padding: 8rem 0; }
.fitlab-header { text-align: center; margin-bottom: 4rem; }
.fitlab-header h2 { font-size: clamp(2.5rem, 6vw, 5.5rem); color: var(--cream); }
.fitlab-header .sub { font-size: 1.05rem; color: var(--cream-fade); max-width: 540px; margin: 1rem auto 0; }

.fitlab-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.8fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.fl-main { grid-row: span 2; overflow: hidden; border-radius: 2px; }
.fl-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.fl-main:hover img { transform: scale(1.03); }
.fl-secondary { overflow: hidden; border-radius: 2px; }
.fl-secondary img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.fl-secondary:hover img { transform: scale(1.04); }
.fl-info {
  background: var(--green);
  padding: 1.75rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.disciplines { display: flex; flex-direction: column; gap: 0.85rem; }
.disc { border-bottom: 1px solid rgba(245,237,216,0.08); padding-bottom: 0.75rem; }
.disc:last-child { border-bottom: none; padding-bottom: 0; }
.disc strong { display: block; font-family: var(--serif); font-size: 0.98rem; color: var(--cream); margin-bottom: 0.18rem; }
.disc span { font-size: 0.82rem; color: var(--cream-fade); }

@media (max-width: 960px) {
  .fitlab-layout { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fl-main { grid-row: 1; grid-column: span 2; height: 380px; }
  .fl-main img { height: 100%; }
  .fl-secondary { height: 260px; }
  .fl-secondary img { height: 100%; }
  .fl-info { min-height: 200px; }
}
@media (max-width: 580px) {
  .fitlab-layout { grid-template-columns: 1fr; }
  .fl-main { grid-column: 1; height: 300px; }
  .fl-secondary { height: 250px; }
}

/* ============================================================
   COMMUNITY GALLERY
   ============================================================ */
.community-section { background: var(--black); padding: 8rem 0; }
.community-header { text-align: center; margin-bottom: 4rem; }
.community-header h2 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--cream); }
.community-header .sub { font-size: 1.05rem; color: var(--cream-fade); max-width: 520px; margin: 1rem auto 0; }

.community-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 460px;
  gap: 4px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.g-img { overflow: hidden; border-radius: 2px; }
.g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.g-img:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .community-gallery { grid-template-columns: 1fr 1fr; height: auto; }
  .g-img { height: 250px; }
  .g-img.g-wide { grid-column: span 2; height: 300px; }
}
@media (max-width: 480px) {
  .community-gallery { grid-template-columns: 1fr; }
  .g-img { height: 260px; }
  .g-img.g-wide { grid-column: 1; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--surface); padding: 8rem 0; }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header h2 { font-size: clamp(2rem, 5vw, 4.5rem); color: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  max-width: 1260px;
  margin-left: auto; margin-right: auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 2rem 2rem 1.75rem;
  border-radius: 2px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem; left: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.16;
}
.review-card p { font-size: 0.98rem; color: var(--cream); line-height: 1.72; font-style: italic; margin-bottom: 1.5rem; }
.review-card footer { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

.ratings-row { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; padding: 0 2rem; }
.rating-badge {
  text-align: center;
  border: 1px solid var(--border);
  padding: 2rem 3.5rem;
  border-radius: 2px;
  min-width: 200px;
}
.rating-badge strong { display: block; font-family: var(--serif); font-size: 3.5rem; line-height: 1; color: var(--gold); margin-bottom: 0.5rem; }
.rating-badge span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-fade); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-section { background: var(--black); padding: 8rem 0; overflow: hidden; }
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.founder-text h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--cream); margin: 0.75rem 0 1.25rem; }
.founder-text .lead { font-size: 1.18rem; color: var(--cream); line-height: 1.55; margin-bottom: 1.25rem; }
.founder-text p { font-size: 0.97rem; color: var(--cream-fade); line-height: 1.72; margin-bottom: 1rem; }
.founder-text em { color: var(--cream); }
.founder-text strong { color: var(--gold); }
.founder-img-wrap { overflow: hidden; border-radius: 2px; }
.founder-img-wrap img { width: 100%; height: 620px; object-fit: cover; transition: transform 0.7s var(--ease); }
.founder-img-wrap:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder-img-wrap img { height: 420px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--dark); padding: 8rem 0; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-header h2 { font-size: clamp(2.5rem, 6vw, 5.5rem); color: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-map-wrap {
  border-radius: 2px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.contact-map-wrap iframe {
  display: block; width: 100%; height: 460px;
  border: none;
  filter: grayscale(0.15) brightness(0.88);
}
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.ci { display: flex; flex-direction: column; gap: 0.4rem; }
.ci-label { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.ci a, .ci p { font-size: 0.98rem; color: var(--cream); line-height: 1.5; transition: color 0.2s; }
.ci a:hover { color: var(--gold); }
.contact-cta-stack { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap iframe { height: 300px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 3rem;
}
.footer-main-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.f-logo { height: 46px; width: auto; opacity: 0.72; }
.f-loc { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-fade); }
.footer-nav-main { display: flex; flex-wrap: wrap; gap: 0.4rem 2.5rem; justify-content: center; }
.footer-nav-main a { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-fade); transition: color 0.2s; }
.footer-nav-main a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-social a { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.66rem; color: rgba(245,237,216,0.22); letter-spacing: 0.06em; }

/* ============================================================
   SEO SUB-PAGES — Compatibility (muay-thai-goa.html etc.)
   ============================================================ */
.header { position: sticky; top: 0; z-index: 100; background: var(--green); }
.header .nav { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 1rem 1.5rem; flex-wrap: wrap; }
.nav-link { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,237,216,0.82); transition: color 0.2s; }
.nav-link:hover { color: var(--cream); }
.logo { line-height: 0; }
.logo img { height: 38px; }

.hero { position: relative; height: 65vh; min-height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; max-width: 800px; }
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(6,6,6,0.58); z-index: 1; }
.hero-title { font-family: var(--serif); font-size: clamp(2.5rem, 8vw, 6rem); line-height: 0.95; color: var(--cream); margin-bottom: 1rem; }
.hero-tagline { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero-desc { font-size: 1rem; color: rgba(245,237,216,0.72); line-height: 1.6; max-width: 560px; margin: 0 auto 2rem; }

.section { padding: 5rem 0; background: var(--dark); }
.section.intro { background: var(--black); }
.section.spaces { background: var(--dark); }
.section.fit-lab { background: var(--green-dark); }
.section.events { background: var(--black); }
.section.founder { background: var(--dark); }
.section.contact { background: var(--dark); }

.section-title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); color: var(--cream); margin-bottom: 1.5rem; }
.section-subtitle { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.intro-text { font-size: 1.03rem; color: var(--cream-fade); max-width: 680px; line-height: 1.72; margin-bottom: 1.25rem; }
.intro-text a { color: var(--gold); }
.intro-text a:hover { text-decoration: underline; }

.space-grid { display: flex; flex-direction: column; gap: 3rem; }
.space-card { display: flex; gap: 2.5rem; align-items: center; }
.space-card.reverse { flex-direction: row-reverse; }
.space-image { flex: 1; overflow: hidden; border-radius: 2px; }
.space-image img { width: 100%; height: 280px; object-fit: cover; }
.space-content { flex: 1; }
.space-content h3 { font-family: var(--serif); font-size: 1.9rem; color: var(--cream); margin-bottom: 0.75rem; }
.space-content p { font-size: 0.97rem; color: var(--cream-fade); line-height: 1.68; margin-bottom: 1.25rem; }

.fit-lab-content { max-width: 680px; }
.fit-lab-content p { font-size: 1.03rem; color: var(--cream-fade); line-height: 1.7; margin-bottom: 1.5rem; }
.fit-lab-content a:not(.btn) { color: var(--gold); }
.fit-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.fit-tag {
  background: var(--cream-faint);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 0.38rem 0.85rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-info h3 { font-family: var(--serif); font-size: 1.75rem; color: var(--cream); margin-bottom: 0.75rem; }
.contact-info a { color: var(--cream-fade); font-size: 0.97rem; transition: color 0.2s; }
.contact-info a:hover { color: var(--gold); }

.footer { background: var(--black); border-top: 1px solid var(--border); padding: 3rem 0; }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-logo { height: 44px; opacity: 0.68; }
.footer-tagline { font-size: 0.73rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cream-fade); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.75rem; justify-content: center; }
.footer-nav a { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-fade); transition: color 0.2s; }
.footer-nav a:hover { color: var(--cream); }

@media (max-width: 700px) {
  .space-card, .space-card.reverse { flex-direction: column; }
  .space-image img { height: 220px; }
}

/* ============================================================
   ARTISTIC LAYER — Added for deeper visual expression
   ============================================================ */

/* ----- Film Grain Texture ----- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ----- Ornamental Section Divider ----- */
.orn {
  text-align: center;
  padding: 2.25rem 2rem;
  background: var(--black);
  position: relative;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.5em;
}
.orn::before, .orn::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: calc(50% - 4rem);
  background: linear-gradient(to right, transparent, var(--border-gold));
}
.orn::before { left: 2rem; background: linear-gradient(to right, transparent, var(--border-gold)); }
.orn::after  { right: 2rem; background: linear-gradient(to left,  transparent, var(--border-gold)); }

/* ----- Staggered Hero H1 ----- */
.hero-main-content h1 {
  display: inline-block;       /* shrink to widest word so "of" aligns to GAIA's edge */
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-align: left;
}
.h1-a { display: block; }
.h1-b {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 0.36em;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  text-align: right;
  padding-right: 0.06em;
  margin: -0.22em 0 -0.18em;
  line-height: 1;
}
.h1-c { display: block; }

/* ----- Giant Manifesto Quote ----- */
.manifesto-giant {
  max-width: 1260px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid rgba(196,154,60,0.15);
}
.manifesto-giant p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 6.5vw, 7.5rem);
  line-height: 1.06;
  color: var(--cream);
  max-width: none;
}
.manifesto-giant p em {
  color: var(--gold);
  font-style: normal;
}

/* ----- Section Pull Quote ----- */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  max-width: 680px;
}

/* ----- Spaces section vertical label ----- */
.spaces-section { position: relative; }
.spaces-vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateX(0) translateY(-50%) rotate(180deg);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196,154,60,0.25);
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 900px) { .spaces-vertical-label { display: none; } }

/* ----- Pantheon — full-bleed dark with gold border-top ----- */
.pantheon-section {
  border-top: 1px solid rgba(196,154,60,0.12);
  border-bottom: 1px solid rgba(196,154,60,0.12);
}
.pantheon-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  line-height: 1.3;
  color: rgba(245,237,216,0.45);
  margin-bottom: 2.5rem;
  max-width: 400px;
}

/* ----- RITUALS SECTION ----- */
.rituals-section {
  background: var(--dark);
  padding: 8rem 0 0;
  overflow: hidden;
}
.rituals-header { text-align: center; margin-bottom: 0; padding-bottom: 4rem; }
.rituals-header h2 { font-size: clamp(2.5rem, 6vw, 5.5rem); color: var(--cream); }
.rituals-header .sub { font-size: 1.03rem; color: var(--cream-fade); max-width: 520px; margin: 1rem auto 0; }

.rituals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}
@media (max-width: 700px) { .rituals-grid { grid-template-columns: 1fr; } }

.ritual-card {
  padding: 4.5rem 3.5rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ritual-ice {
  background:
    radial-gradient(ellipse at 25% 85%, rgba(30, 100, 200, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(120, 210, 255, 0.08) 0%, transparent 50%),
    var(--dark);
}
.ritual-flow {
  background:
    radial-gradient(ellipse at 75% 85%, rgba(210, 70, 10, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 15%, rgba(255, 160, 30, 0.1) 0%, transparent 50%),
    var(--surface);
}
.ritual-num {
  font-family: var(--serif);
  font-size: 14rem;
  line-height: 1;
  color: var(--cream);
  opacity: 0.04;
  position: absolute;
  top: -2rem;
  right: 1.5rem;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}
.ritual-glyph {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  display: block;
  line-height: 1;
  opacity: 0.7;
}
.ritual-ice .ritual-glyph { color: #7ec8e3; }
.ritual-flow .ritual-glyph { color: #e87840; }

.ritual-tag {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.ritual-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.ritual-card p {
  font-size: 1rem;
  color: var(--cream-fade);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 2.25rem;
}
.ritual-divider {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

/* ----- Fit Lab additions ----- */
.fitlab-section { padding-bottom: 0; }
.fitlab-disciplines-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ----- Founder section — portrait layout ----- */
.founder-portrait-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.founder-portrait-wrap img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}
.founder-portrait-wrap:hover img { transform: scale(1.03); }
.founder-portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(to top, rgba(6,6,6,0.88) 0%, transparent 100%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream-fade);
  line-height: 1.4;
}

/* ----- Rating badge gold accent ----- */
.rating-badge { position: relative; overflow: hidden; }
.rating-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* ----- Manifesto body text links ----- */
.manifesto-text a { color: var(--gold); }

/* ----- Review card gold quote mark ----- */
.review-card { transition: border-color 0.3s; }
.review-card:hover { border-color: rgba(196,154,60,0.2); }

/* ----- Contact section artistic left bar ----- */
.contact-section {
  border-top: 1px solid rgba(196,154,60,0.12);
}

/* ----- Mobile rituals ----- */
@media (max-width: 768px) {
  .ritual-card { min-height: 380px; padding: 3rem 2rem 2.5rem; }
  .ritual-num { font-size: 8rem; }
  .manifesto-giant { padding: 3.5rem 1.5rem 3rem; }
  .orn { padding: 1.75rem 2rem; }
}

/* ============================================================
   FAQ + GOOGLE REVIEW CTA + FOOTER NAP
   ============================================================ */

/* ----- FAQ ----- */
.faq-section { background: var(--black); padding: 8rem 0; }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-top: 1px solid var(--border);
  transition: background 0.2s var(--ease);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--cream);
  transition: color 0.2s, padding 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); padding-left: 1rem; }
.faq-icon {
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body { padding: 0 0.5rem 1.75rem; }
.faq-body p {
  font-size: 1rem;
  color: var(--cream-fade);
  line-height: 1.7;
  max-width: 720px;
}
.faq-body a { color: var(--gold); }
.faq-body a:hover { text-decoration: underline; }
.faq-body strong { color: var(--cream); }

/* ----- Google Review CTA ----- */
.google-review-cta {
  margin: 4rem auto 0;
  max-width: 720px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(196,154,60,0.08) 0%, transparent 60%),
    var(--dark);
  position: relative;
  overflow: hidden;
}
.google-review-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.grc-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.grc-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.grc-sub {
  font-size: 0.97rem;
  color: var(--cream-fade);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

/* ----- Footer NAP block ----- */
.footer-nap {
  font-style: normal;
  text-align: center;
  font-size: 0.88rem;
  color: var(--cream-fade);
  line-height: 1.7;
  max-width: 480px;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0.5rem 0;
}
.footer-nap strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.footer-nap a { color: var(--gold); transition: color 0.2s; }
.footer-nap a:hover { color: var(--gold-light); }

.f-areas {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.4);
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section { padding: 5rem 0; }
  .google-review-cta { padding: 2.5rem 1.5rem; margin: 3rem 1.5rem 0; }
  .footer-nap { font-size: 0.82rem; }
}

/* ============================================================
   RESPONSIVE OVERRIDES — Comprehensive mobile/tablet polish
   ============================================================ */

/* ----- Tablet & below (≤ 1024px) ----- */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .nav-inner { padding: 1rem 1.5rem; }
  .hero-main-content h1 { font-size: clamp(4rem, 14vw, 11rem); }
  .manifesto, .spaces-section, .pantheon-section, .fitlab-section,
  .community-section, .reviews-section, .founder-section, .contact-section,
  .faq-section, .rituals-section { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
  .rituals-section { padding-top: clamp(4rem, 7vw, 6rem); }
  .manifesto-inner, .pantheon-inner, .founder-inner { gap: clamp(2.5rem, 6vw, 5rem); padding: 0 1.5rem; }
  .fitlab-layout, .community-gallery, .reviews-grid, .contact-grid { padding: 0 1.5rem; }
  .fitlab-header, .community-header, .reviews-header, .contact-header,
  .rituals-header, .section-header { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
  .manifesto-img-wrap img,
  .founder-portrait-wrap img { height: clamp(380px, 60vw, 640px); }
  .ritual-num { font-size: clamp(7rem, 18vw, 12rem); }
}

/* ----- Tablet (≤ 900px) ----- */
@media (max-width: 900px) {
  .manifesto-giant { padding: 3.5rem 1.5rem 3rem; }
  .manifesto-giant p { font-size: clamp(1.8rem, 7vw, 4rem); line-height: 1.1; }
  .pull-quote { font-size: clamp(1.2rem, 3vw, 1.8rem); padding-left: 1.25rem; margin: 2rem 0; }
  .pantheon-pull { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 1.5rem; }
  .review-card { padding: 1.75rem 1.5rem 1.5rem; }
  .review-card::before { font-size: 4rem; top: 0.5rem; left: 1rem; }
  .rating-badge { padding: 1.5rem 2.5rem; min-width: 160px; }
  .rating-badge strong { font-size: 2.75rem; }
  .ratings-row { gap: 1rem; }
}

/* ----- Mobile breakpoint (≤ 768px) ----- */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 1.25rem; }

  /* Buttons need 44px touch target */
  .btn { padding: 0.95rem 1.6rem; font-size: 0.72rem; min-height: 44px; }
  .hero-ctas { gap: 0.75rem; flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-ctas .btn { width: 100%; }

  /* Nav */
  .nav-inner { padding: 0.85rem 1.25rem; }
  .nav-logo img { height: 32px; }

  /* Hero */
  .hero-main { min-height: 560px; height: 100svh; }
  .hero-main-content { padding: 0 1.25rem; }
  .hero-main-content h1 { font-size: clamp(3.5rem, 18vw, 6rem); line-height: 0.86; }
  .h1-b { font-size: 0.42em; }
  .eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; margin-bottom: 1rem; }
  .hero-tagline-main { font-size: 0.78rem; letter-spacing: 0.22em; margin-bottom: 1rem; }
  .hero-sub-main { font-size: 0.95rem; line-height: 1.55; margin-bottom: 2rem; }
  .hero-scroll-cue { display: none; } /* save vertical space */

  /* Trust bar — clean wrapping */
  .trust-bar { padding: 0.75rem 0.75rem; }
  .trust-inner { gap: 0.25rem 0.5rem; padding: 0; }
  .trust-inner .t-sep { display: none; }
  .t-item { font-size: 0.62rem; padding: 0.2rem 0.5rem; letter-spacing: 0.07em; border: 1px solid var(--border); border-radius: 1rem; }

  /* Sections */
  .label { font-size: 0.6rem; letter-spacing: 0.18em; margin-bottom: 0.6rem; }
  .section-header h2, .fitlab-header h2, .community-header h2,
  .reviews-header h2, .contact-header h2, .rituals-header h2 { font-size: clamp(2rem, 9vw, 3.5rem); }
  .section-header .sh-sub, .fitlab-header .sub, .community-header .sub,
  .rituals-header .sub { font-size: 0.92rem; line-height: 1.55; padding: 0 0.5rem; }

  /* Manifesto */
  .manifesto-text blockquote { font-size: 1.15rem; padding-left: 1rem; margin: 1rem 0 1.5rem; }
  .manifesto-text p { font-size: 0.95rem; }

  /* Spaces */
  .spaces-grid-v2 { padding: 0; }
  .sc-v2 .sc-img { aspect-ratio: 16/10; }
  .sc-v2 .sc-body { padding: 1.1rem 1.1rem 1.4rem; }
  .sc-v2 h3 { font-size: 1.15rem; }
  .sc-v2 p { font-size: 0.85rem; }

  /* Pantheon */
  .pantheon-text h2 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .pantheon-text .lead { font-size: 1rem; }
  .pantheon-text p { font-size: 0.93rem; }
  .pantheon-img-stack { grid-template-columns: 1fr 1fr; gap: 3px; }
  .p-main img { height: 240px; }
  .p-side img { height: 150px; }

  /* Fit Lab */
  .fl-info { padding: 1.5rem; }
  .disc strong { font-size: 0.95rem; }
  .disc span { font-size: 0.8rem; }

  /* Rituals */
  .rituals-grid { gap: 3px; }
  .ritual-card { padding: 2.5rem 1.75rem 2.25rem; min-height: 360px; }
  .ritual-num { font-size: 7rem; top: -1rem; right: 1rem; }
  .ritual-glyph { font-size: 2.2rem; margin-bottom: 1.25rem; }
  .ritual-card h3 { font-size: 1.6rem; }
  .ritual-card p { font-size: 0.93rem; }

  /* Community */
  .community-gallery { padding: 0 1.25rem; gap: 3px; }
  .g-img, .g-img.g-wide { height: 220px; }
  .g-img.g-wide { height: 260px; }

  /* Reviews */
  .reviews-grid { gap: 1rem; padding: 0 1.25rem; }
  .ratings-row { gap: 0.75rem; padding: 0 1.25rem; }
  .rating-badge { padding: 1.25rem 1.5rem; min-width: 0; flex: 1 1 130px; max-width: 200px; }
  .rating-badge strong { font-size: 2.2rem; }
  .rating-badge strong span { font-size: 1.1rem !important; }
  .rating-badge span { font-size: 0.62rem; letter-spacing: 0.08em; }

  /* Google Review CTA */
  .google-review-cta { padding: 2.25rem 1.5rem; margin: 3rem 1.25rem 0; }
  .grc-title { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
  .grc-sub { font-size: 0.92rem; }

  /* Founder */
  .founder-text h2 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .founder-text .lead { font-size: 1.05rem; }
  .founder-text p { font-size: 0.95rem; }
  .founder-portrait-caption { padding: 1.5rem 1.25rem; font-size: 0.88rem; }

  /* Contact */
  .contact-section { padding-bottom: 5rem; }
  .contact-grid { padding: 0 1.25rem; gap: 2.5rem; }
  .contact-map-wrap iframe { height: 280px; }
  .contact-details { gap: 1.5rem; }
  .ci a, .ci p { font-size: 0.95rem; }

  /* FAQ */
  .faq-section { padding: 4rem 0; }
  .faq-list { padding: 0 0.5rem; }
  .faq-item summary { padding: 1.25rem 0.25rem; font-size: 1rem; gap: 1rem; }
  .faq-item summary:hover { padding-left: 0.5rem; }
  .faq-icon { font-size: 1.3rem; }
  .faq-body { padding: 0 0.25rem 1.5rem; }
  .faq-body p { font-size: 0.93rem; }

  /* Footer */
  .footer-main { padding: 3rem 0 2.25rem; }
  .footer-main-inner { gap: 1.25rem; }
  .footer-nap { font-size: 0.85rem; padding: 1rem 0; }
  .footer-nap strong { font-size: 1rem; }
  .footer-nav-main { gap: 0.4rem 1.25rem; }
  .footer-nav-main a { font-size: 0.66rem; }
  .footer-social { gap: 1.25rem; }
  .footer-social a { font-size: 0.66rem; }
  .f-areas { font-size: 0.62rem; }
  .f-loc { font-size: 0.7rem; }
  .footer-copy { font-size: 0.62rem; }

  /* Ornaments */
  .orn { padding: 1.5rem 1rem; font-size: 0.55rem; letter-spacing: 0.4em; }
  .orn::before, .orn::after { width: calc(50% - 3rem); }
}

/* ----- Small Mobile (≤ 480px) ----- */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-main-content { padding: 0 1rem; }
  .nav-inner { padding: 0.8rem 1rem; }
  .nav-logo img { height: 30px; }
  .hero-main-content h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .hero-sub-main { font-size: 0.9rem; }
  .manifesto-inner, .pantheon-inner, .founder-inner { padding: 0 1rem; gap: 2rem; }
  .fitlab-layout, .community-gallery, .reviews-grid, .contact-grid { padding: 0 1rem; }
  .ratings-row { padding: 0 1rem; flex-direction: column; align-items: stretch; }
  .rating-badge { max-width: none; flex: 1; padding: 1.25rem 1rem; }
  .google-review-cta { margin: 2.5rem 1rem 0; padding: 2rem 1.25rem; }
  .ritual-card { padding: 2rem 1.5rem 1.75rem; min-height: 320px; }
  .ritual-card h3 { font-size: 1.4rem; }
  .ritual-num { font-size: 6rem; }
  .pantheon-img-stack { grid-template-columns: 1fr; }
  .p-main { grid-column: 1; }
  .p-main img { height: 220px; }
  .p-side img { height: 180px; }
  .footer-main-inner { padding: 0 1rem; }
  .footer-nap { font-size: 0.78rem; }
  .manifesto-text blockquote { font-size: 1.05rem; }
  .pull-quote { font-size: 1.1rem; padding-left: 1rem; margin: 1.5rem 0; }
  .orn { padding: 1.25rem 1rem; }
  .orn::before, .orn::after { width: calc(50% - 2.5rem); }
  .trust-bar { padding: 0.65rem 0.5rem; }
  .t-item { font-size: 0.6rem; }
}

/* ----- Tiny Mobile (≤ 360px) — iPhone SE 1st gen, etc. ----- */
@media (max-width: 360px) {
  body { font-size: 14px; }
  .container { padding: 0 0.85rem; }
  .hero-main-content h1 { font-size: clamp(2.6rem, 16vw, 4rem); }
  .nav-cta { display: none; } /* hamburger only */
  .ritual-card { padding: 1.75rem 1.25rem 1.5rem; min-height: 280px; }
  .ritual-num { font-size: 5rem; }
  .faq-item summary { font-size: 0.95rem; padding: 1rem 0.25rem; }
}

/* ----- Landscape phones (short height) ----- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-main { min-height: auto; height: auto; padding: 6rem 0 4rem; }
  .hero-scroll-cue { display: none; }
  .hero-main-content h1 { font-size: clamp(3rem, 8vw, 5rem); }
}

/* ============================================================
   MOBILE NAV — single drawer panel (fixes dual-drawer overlap bug)
   ============================================================ */
@media (max-width: 840px) {
  /* Force-hide both desktop nav-links divs */
  .nav-links { display: none !important; }

  /* Single slide-in panel with all nav links */
  .nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(80vw, 320px);
    background: rgba(6,6,6,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    gap: 1.75rem;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 199;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .nav-drawer a {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.72);
    transition: color 0.2s;
  }
  .nav-drawer a:hover { color: var(--cream); }
  .nav-drawer .nav-cta {
    font-size: 0.78rem !important;
    padding: 0.7rem 1.4rem !important;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
  body.nav-open .nav-drawer { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav-hamburger { z-index: 201; position: relative; }
  body.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Backdrop */
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 198;
  }
}

/* ============================================================
   QA POLISH + ARTISTIC UPGRADE
   ============================================================ */

/* ----- Logo sizing — clean leaf icon, more prominent ----- */
.nav-logo img { height: 56px; width: auto; }
@media (max-width: 840px) { .nav-logo img { height: 44px; } }
@media (max-width: 480px) { .nav-logo img { height: 38px; } }

.f-logo { height: 64px; opacity: 0.9; }
.footer-logo { height: 60px; opacity: 0.9; }

/* ----- Hero: clear the nav, stronger contrast ----- */
.hero-main { padding-top: 6rem; }
.hero-main-overlay {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(6,6,6,0.65) 0%, rgba(6,6,6,0.85) 70%),
    linear-gradient(180deg, rgba(6,6,6,0.45) 0%, rgba(6,6,6,0.35) 50%, rgba(6,6,6,0.85) 100%);
}
.hero-main-content { padding-top: 2rem; }
.hero-main-content .eyebrow {
  position: relative;
  padding: 0.55rem 1.5rem;
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 1.75rem;
  border: 1px solid var(--border-gold);
  border-radius: 2rem;
  background: rgba(6,6,6,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Gold underline accent under hero tagline */
.hero-tagline-main {
  position: relative;
  padding-top: 1.5rem;
}
.hero-tagline-main::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ----- Trust bar — more refined ----- */
.trust-bar {
  background: linear-gradient(to right, rgba(13,13,13,1), rgba(20,20,20,1), rgba(13,13,13,1));
}

/* ----- Manifesto giant quote — more dramatic ----- */
.manifesto-giant {
  border-top: 1px solid rgba(196,154,60,0.15);
  padding-top: 6rem;
  position: relative;
}
.manifesto-giant::before {
  content: '⌃';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  padding: 0 1rem;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.5em;
}
.manifesto-giant p::after {
  content: '— Sharo Philip';
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
  opacity: 0.7;
}

/* ----- Section labels: monogram style ----- */
.label {
  display: inline-block;
  padding: 0.3rem 0;
  position: relative;
}

/* ----- Spaces grid: thinner gold dividers ----- */
.spaces-grid-v2 { gap: 1px; background: var(--border-gold); }
.sc-v2 { background: var(--black); }
.sc-v2 .sc-img { aspect-ratio: 4/5; }  /* Taller portrait crop */
.sc-v2 .sc-body { padding: 1.5rem 1.4rem 1.75rem; }

/* Subtle hover detail on space cards */
.sc-v2 { position: relative; }
.sc-v2::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.sc-v2:hover::after { width: 100%; }

/* ----- Pantheon: more confident image hierarchy ----- */
.p-main img { height: 480px; }
.p-side img { height: 240px; }
@media (max-width: 768px) {
  .p-main img { height: 280px; }
  .p-side img { height: 170px; }
}

/* ----- Gold rule under each section H2 ----- */
.section-header h2,
.fitlab-header h2,
.community-header h2,
.reviews-header h2,
.contact-header h2,
.faq-section .section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header,
.fitlab-header,
.community-header,
.reviews-header,
.contact-header { position: relative; }
.section-header::after,
.fitlab-header::after,
.community-header::after,
.reviews-header::after,
.contact-header::after,
.rituals-header::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 1.75rem auto 0;
  opacity: 0.6;
}

/* ----- Reviews: editorial number markers ----- */
.review-card { counter-increment: rev; }
.reviews-grid { counter-reset: rev; }
.review-card::after {
  content: counter(rev, decimal-leading-zero);
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.45;
  letter-spacing: 0.1em;
}

/* ----- Founder portrait: editorial frame ----- */
.founder-portrait-wrap {
  position: relative;
  border: 1px solid rgba(196,154,60,0.15);
  padding: 0.75rem;
  background: var(--black);
}
.founder-portrait-wrap::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px; bottom: -1px; left: -1px;
  border: 1px solid var(--gold);
  opacity: 0.2;
  pointer-events: none;
  margin: -0.75rem;
}
.founder-portrait-wrap img { height: 640px; }
@media (max-width: 900px) { .founder-portrait-wrap img { height: 480px; } }

/* ----- Spaces card: tag with thin border ----- */
.sc-v2 .sc-tag { padding-left: 0; }
.sc-v2 h3 { letter-spacing: -0.005em; }

/* ----- Buttons: subtle inset accent ----- */
.btn-primary { box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15); }

/* ----- FAQ: confident left rule, gold marker ----- */
.faq-item summary {
  position: relative;
  padding-left: 1.5rem !important;
}
.faq-item summary::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.3s var(--ease);
}
.faq-item[open] summary::before,
.faq-item summary:hover::before { height: 60%; }
.faq-item summary:hover { padding-left: 2rem !important; }
.faq-body { padding-left: 1.5rem !important; }

/* ----- Contact map: warmer treatment ----- */
.contact-map-wrap iframe {
  filter: grayscale(0.4) contrast(1.05) brightness(0.92) sepia(0.15);
}

/* ----- Footer logo: more prominent ----- */
.footer-main-inner { gap: 1.5rem; }

/* ----- Ornament: more refined symbols ----- */
.orn {
  background: linear-gradient(to bottom, var(--black) 0%, var(--black) 100%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.55;
  padding: 3rem 2rem;
}
.orn::before, .orn::after {
  width: calc(50% - 5rem);
  background: linear-gradient(to right, transparent 0%, rgba(196,154,60,0.3) 50%, transparent 100%);
}

/* ----- Spaces section: vertical chapter mark ----- */
.spaces-section::before {
  content: 'CHAPTER · 02';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left top;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 1100px) { .spaces-section::before { display: none; } }

/* ----- Section headers: section number above heading ----- */
.section-header .label,
.fitlab-header .label,
.community-header .label,
.reviews-header .label,
.contact-header .label,
.faq-section .label { margin-bottom: 1.25rem; }

/* ----- Hero scroll cue: more refined ----- */
.scroll-line { background: linear-gradient(to bottom, var(--gold), transparent 90%); }

/* ----- Image lazy fade ----- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-pending]) {
  opacity: 1;
}
/* fallback: show all images regardless */
img { opacity: 1; }

/* ----- Accessibility: focus states ----- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ----- Selection color ----- */
::selection { background: var(--gold); color: var(--black); }

/* ----- Hide ritual-related styles since section is removed ----- */
/* Rituals section CSS still in stylesheet but unused — kept for future re-add */

/* ----- Contact CTAs: better stacking on mobile ----- */
@media (max-width: 768px) {
  .contact-cta-stack { gap: 0.6rem; }
  .contact-cta-stack .btn { font-size: 0.72rem; padding: 0.85rem 1.4rem; }
}

/* ============================================================
   SHARED INNER-PAGE COMPONENTS
   ============================================================ */

/* Used on fitlab/experiences as section subtitle */
.sh-sub, .section-sub {
  font-size: 1.05rem;
  color: var(--cream-fade);
  max-width: 480px;
  margin: 1.1rem auto 0;
}

/* Instagram embed placeholder (shown before real embed is set) */
.ig-placeholder {
  background: rgba(245,237,216,0.04);
  border: 1px dashed rgba(196,154,60,0.35);
  padding: 3rem 2rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 380px;
}
.ig-placeholder .ig-ph-icon { font-size: 2.5rem; display: block; opacity: 0.5; }
.ig-placeholder p { font-size: 0.82rem; color: rgba(245,237,216,0.45); line-height: 1.6; max-width: 280px; }
.ig-placeholder .ig-ph-step { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-top: 0.5rem; display: block; }

/* ---- Inner page hero responsive ---- */
@media (max-width: 768px) {
  .page-hero { height: 55vh; min-height: 400px; }
  .page-hero-content h1 { font-size: clamp(2.5rem, 12vw, 5rem); }
  .trust-bar-inline { gap: 0.35rem; }
  .trust-badge { font-size: 0.65rem; padding: 0.38rem 0.85rem; }
}
@media (max-width: 480px) {
  .page-hero { height: 50vh; }
  .page-hero-content { padding: 0 1rem; }
  .trust-badge { font-size: 0.6rem; padding: 0.32rem 0.7rem; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9990;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.3);
}
.whatsapp-float svg { display: block; flex-shrink: 0; }
@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
}

/* ============================================================
   EMAIL CAPTURE FORM
   ============================================================ */
.email-capture {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  width: 100%;
}
.email-capture input[type="email"] {
  flex: 1;
  background: rgba(245, 237, 216, 0.06);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.85rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.email-capture input[type="email"]::placeholder { color: rgba(245,237,216,0.32); }
.email-capture input[type="email"]:focus { border-color: rgba(196,154,60,0.5); }
.email-capture button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.email-capture button:hover { background: var(--gold-light); transform: translateY(-1px); }
.email-capture-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.email-capture-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 2rem;
  background: rgba(196,154,60,0.04);
  border-top: 1px solid var(--border-gold);
  width: 100%;
  max-width: 560px;
}
.email-capture-wrap p {
  font-size: 0.82rem;
  color: rgba(245,237,216,0.32);
  text-align: center;
}
@media (max-width: 480px) {
  .email-capture { flex-direction: column; }
  .email-capture button { width: 100%; }
}

/* ----- Tablet 700-900 polish ----- */
@media (max-width: 900px) and (min-width: 700px) {
  .pantheon-img-stack { grid-template-columns: 1fr 1fr; }
  .p-main { grid-column: span 2; }
  .p-main img { height: 320px; }
  .p-side img { height: 200px; }
}

/* ----- Manifesto inner spacing on mobile ----- */
@media (max-width: 900px) {
  .manifesto { padding-top: 5rem; }
  .manifesto-giant { padding-top: 4rem; }
  .manifesto-giant p::after { font-size: 0.62rem; margin-top: 1.25rem; }
}

/* ----- Make sure rituals CSS doesn't apply (section removed) ----- */
.rituals-section { display: none; }

/* ============================================================
   NAV LAYOUT FIX — keep logo centered at all sizes
   ============================================================ */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
}
.nav-left { justify-self: end; }
.nav-right { justify-self: start; }
.nav-logo { justify-self: center; grid-column: 2; }

@media (max-width: 840px) {
  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0.85rem 1.25rem;
  }
  .nav-hamburger {
    grid-column: 3;
    justify-self: end;
    z-index: 201;
  }
  .nav-links { grid-column: 1 / -1; } /* off-screen drawer ignores this */
}

/* ============================================================
   WORDMARK LOGO — clean editorial typography
   ============================================================ */
.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  position: relative;
  padding: 0 0.5rem;
  display: inline-block;
  transition: color 0.3s var(--ease);
}
.nav-wordmark::before,
.nav-wordmark::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  transition: opacity 0.3s var(--ease);
}
.nav-wordmark::before { left: -10px; opacity: 0.5; }
.nav-wordmark::after  { right: -10px; opacity: 0.5; }
.nav-logo:hover .nav-wordmark { color: var(--gold-light); }
.nav-logo:hover .nav-wordmark::before,
.nav-logo:hover .nav-wordmark::after { opacity: 1; }

@media (max-width: 840px) {
  .nav-wordmark { font-size: 1.35rem; letter-spacing: 0.16em; }
}
@media (max-width: 480px) {
  .nav-wordmark { font-size: 1.2rem; }
}

/* Footer wordmark — same family, lighter weight feel */
.footer-wordmark {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.22em;
  color: var(--cream);
  position: relative;
  padding: 0 0.75rem;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-wordmark::before,
.footer-wordmark::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: 0.5;
}
.footer-wordmark::before { left: -10px; }
.footer-wordmark::after  { right: -10px; }

/* Hide old image-based logo classes */
.f-logo { display: none; }

/* ============================================================
   WHY GAIA — superlative comparison cards
   ============================================================ */
.why-section { background: var(--green-dark); padding: 8rem 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196,154,60,0.12);
  margin-top: 2rem;
}
.why-card {
  background: var(--green-dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s var(--ease);
}
.why-card:hover { background: rgba(27, 74, 56, 0.4); }
.why-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.why-card p {
  font-size: 0.94rem;
  color: var(--cream-fade);
  line-height: 1.65;
}
.why-card strong { color: var(--gold); }
.why-card em { color: var(--cream); }

@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 5rem 0; }
  .why-card { padding: 2rem 1.5rem; }
}
