/* ============================================
   BODY BEND YOGA FOUNDATION | STYLESHEET
   Dark Luxury Edition
   ============================================ */

:root {
  --bg:           #080D09;
  --surface:      #0F1810;
  --surface-2:    #162014;
  --green:        #1E3A2F;
  --green-mid:    #2C5040;
  --green-light:  #3D6B57;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --cream:        #F0EBE3;
  --text:         #F0EBE3;
  --text-muted:   rgba(240,235,227,0.5);
  --border:       rgba(255,255,255,0.07);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width:   1200px;
  --nav-height:  72px;
  --transition:  0.4s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-line.center { margin: 1.5rem auto; }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #0A0F0C;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,235,227,0.3);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(240,235,227,0.05);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #0A0F0C;
  border-color: var(--gold);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 3rem;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8,13,9,0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.55rem 1.3rem;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #0A0F0C;
  border-color: var(--gold);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.06);
  transition: transform 10s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,13,9,0.95) 0%,
    rgba(8,13,9,0.5) 50%,
    rgba(8,13,9,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1.05;
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: 3rem;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: lineDown 2s ease infinite;
}

@keyframes lineDown {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* === STATEMENT SECTION === */
.statement {
  padding: 7rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.statement-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

.statement-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* === ABOUT === */
.about {
  padding: 8rem 3rem;
  background: var(--bg);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

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

.about-image-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(8,13,9,0.85);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.2rem; }

/* === PROGRAMS === */
.programs {
  padding: 8rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.programs-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.programs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.programs-header p { max-width: none; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.program-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}

.program-card:hover { background: var(--surface-2); }

.program-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  display: block;
}

.program-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.program-card p {
  font-size: 0.9rem;
  max-width: none;
}

/* === COMMUNITY FULL BLEED === */
.community {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.community-bg {
  position: absolute;
  inset: 0;
}

.community-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8,13,9,0.92) 0%,
    rgba(8,13,9,0.6) 50%,
    rgba(8,13,9,0.2) 100%
  );
}

.community-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.community-content h2 { max-width: 560px; margin-bottom: 1rem; }
.community-content p { margin-bottom: 2rem; }

/* === IMPACT === */
.impact {
  padding: 8rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.impact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.impact-header {
  margin-bottom: 5rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.impact-item {
  padding: 3rem 2rem;
  background: var(--bg);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.impact-item:hover {
  background: var(--surface);
  border-bottom-color: var(--gold);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.impact-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === LEADERSHIP === */
.leadership {
  padding: 8rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.leadership-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6rem;
  align-items: center;
}

.leadership-photo {
  position: relative;
  overflow: hidden;
}

.leadership-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.leadership-photo:hover img { transform: scale(1.03); }

.leadership-photo-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8,13,9,0.9), transparent);
}

.leadership-photo-tag span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.leader-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cream);
}

.leader-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.leadership-text p { margin-bottom: 1rem; }

.board-list {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.board-list-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  display: block;
}

.board-members {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.board-member {
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}

.board-member:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.2);
}

/* === PARTNER CTA === */
.partner-cta {
  padding: 10rem 3rem;
  background: var(--green);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.partner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.partner-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.partner-cta h2 { margin-bottom: 1rem; }
.partner-cta p { margin: 0 auto 2.5rem; }

/* === FOOTER === */
footer {
  background: var(--surface);
  padding: 5rem 3rem 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ============================================
   PARTNER PAGE
   ============================================ */

.partner-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 4rem) 3rem 5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.partner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.partner-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.partner-hero h1 { font-style: italic; margin-bottom: 1.2rem; }
.partner-hero h1 em { font-style: normal; color: var(--gold); }
.partner-hero p { font-size: 1.05rem; }

/* Why Partner */
.why-partner {
  padding: 7rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.why-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}

.why-card:hover { background: var(--surface); }

.why-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.why-card p { font-size: 0.9rem; max-width: none; }

/* Tier Sections */
.tiers {
  padding: 7rem 3rem;
  border-top: 1px solid var(--border);
}

.tiers-private { background: var(--surface); }
.tiers-corporate { background: var(--bg); }

.tiers-inner { max-width: var(--max-width); margin: 0 auto; }

.tiers-header { margin-bottom: 4rem; }
.tiers-header p { max-width: 560px; }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.tier-card {
  background: var(--surface);
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  border-top: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.tiers-corporate .tier-card { background: var(--bg); }

.tier-card:hover { background: var(--surface-2); }

.tier-card.featured {
  border-top-color: var(--gold);
  background: var(--green);
}

.tier-card.featured:hover { background: var(--green-mid); }

.tier-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.tier-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.tier-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }

.tier-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.package-highlight {
  background: rgba(201,168,76,0.07);
  border-left: 2px solid var(--gold);
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.tier-benefits {
  flex: 1;
  margin-bottom: 2rem;
}

.tier-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.tier-benefits li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.tier-card .btn { width: 100%; text-align: center; }

/* Retreat Section */
.retreat-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.retreat-image {
  width: 100%;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}

.retreat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.retreat-content {
  padding: 6rem 3rem;
  text-align: center;
}

.retreat-content-inner {
  max-width: 640px;
  margin: 0 auto;
}

.retreat-content h2 { margin-bottom: 1rem; }
.retreat-content p { margin: 0 auto; }

/* Inquiry */
.inquiry {
  padding: 9rem 3rem;
  background: var(--green);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.inquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 65%);
}

.inquiry-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.inquiry h2 { margin-bottom: 1rem; }
.inquiry p { margin: 0 auto 2.5rem; }

.inquiry-email {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}

.inquiry-email:hover { color: var(--gold-light); }

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

@media (max-width: 1024px) {
  .statement-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .programs-header { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-inner { grid-template-columns: 1fr; }
  .leadership-photo img { height: 400px; }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 0 1.5rem; }
  .hero-scroll-line { left: 1.5rem; }

  section,
  .about, .programs, .impact, .leadership,
  .partner-cta, .why-partner, .tiers,
  .retreat-content, .inquiry { padding-left: 1.5rem; padding-right: 1.5rem; }

  .statement { padding: 4rem 1.5rem; }
  .community-content { padding: 0 1.5rem; }

  .programs-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
