/* =============================================
   BONANZA SOCIAL WELLNESS CLUB
   Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

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

:root {
  --teal:        #7DCFBC;
  --teal-dark:   #4aaa98;
  --teal-deeper: #2d7a6e;
  --teal-light:  #c5ede6;
  --teal-pale:   #edf8f5;
  --rose:        #C94E6E;
  --rose-light:  #f5d0da;
  --cream:       #F7F4EF;
  --warm-white:  #FDFAF6;
  --charcoal:    #2C2925;
  --charcoal2:   #3d3a36;
  --mid:         #6B6560;
  --light:       #9e9991;
  --border:      #E5DDD5;
  --border-dark: #ccc4ba;
  --nav-h:       72px;
  --section-pad: 7rem 6rem;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

.serif { font-family: 'Cormorant Garamond', serif; }
.section-pad { padding: var(--section-pad); }
.alt-bg { background: var(--cream); }
.dark-bg { background: var(--charcoal); color: var(--warm-white); }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: rgba(253,250,246,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(253,250,246,0.98);
  box-shadow: 0 1px 24px rgba(44,41,37,0.07);
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav-logo img:hover { opacity: 0.8; }
.nav-links {
  display: flex; gap: 2.2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); transition: color 0.3s; font-weight: 400;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-cta {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; color: var(--warm-white) !important;
  background: var(--teal-dark);
  padding: 0.6rem 1.5rem;
  transition: background 0.3s;
  border-radius: 0;
}
.nav-cta:hover { background: var(--rose) !important; }

/* Mobile hamburger */
.nav-toggle { display: none; background: none; padding: 0.4rem; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); margin: 5px 0;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  position: relative;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.1s ease forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 0.5px;
  background: var(--teal-dark);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 6.5vw, 6rem);
  font-weight: 300; line-height: 1.0;
  color: var(--charcoal); margin-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 300; font-style: italic;
  color: var(--mid); margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-desc {
  font-size: 0.88rem; line-height: 1.95; color: var(--mid);
  max-width: 420px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-actions {
  display: flex; gap: 1.5rem; align-items: center;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.55s ease forwards;
}
.btn-primary {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 400; color: var(--warm-white);
  background: var(--charcoal); padding: 1rem 2.6rem;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 400; color: var(--teal-dark);
  border-bottom: 1px solid var(--teal-light);
  padding-bottom: 3px; transition: var(--transition);
}
.btn-outline:hover { color: var(--rose); border-color: var(--rose-light); }
.btn-teal {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 400; color: var(--warm-white);
  background: var(--teal-dark); padding: 1rem 2.6rem;
  transition: background 0.3s;
}
.btn-teal:hover { background: var(--rose); }

.hero-image {
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85;
  filter: contrast(1.08) brightness(0.97);
  transition: transform 10s ease;
}
.hero:hover .hero-image img { transform: scale(1.04); }
.hero-badge {
  position: absolute; bottom: 3.5rem; left: -2rem;
  background: var(--warm-white);
  border: 0.5px solid var(--border);
  padding: 1.4rem 2rem;
  animation: fadeUp 0.8s 0.7s ease forwards; opacity: 0;
}
.hero-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--teal-dark); line-height: 1;
}
.hero-badge .label { font-size: 0.68rem; color: var(--mid); letter-spacing: 0.1em; margin-top: 0.3rem; }
.hero-stat-row {
  display: flex; gap: 0; border-top: 0.5px solid var(--border);
  margin-top: 4rem;
  opacity: 0; animation: fadeUp 0.8s 0.65s ease forwards;
}
.hero-stat {
  padding: 1.2rem 1.5rem;
  border-right: 0.5px solid var(--border);
  flex: 1;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .s-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--teal-dark); line-height: 1;
}
.hero-stat .s-label { font-size: 0.67rem; color: var(--mid); letter-spacing: 0.1em; margin-top: 0.3rem; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.dark-bg .section-label { color: var(--teal); }
.section-label::before {
  content: ''; display: block; width: 20px; height: 0.5px;
  background: currentColor;
}
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.1;
}
.section-header-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
}

/* =============================================
   PHILOSOPHY
   ============================================= */
.philosophy {
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.philosophy-text {
  font-size: 0.88rem; line-height: 2.1;
  color: rgba(253,250,246,0.68);
}
.philosophy-text p + p { margin-top: 1.3rem; }
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-style: italic; font-weight: 300;
  line-height: 1.65; color: var(--teal-light);
  border-left: 1px solid var(--teal);
  padding-left: 2.5rem;
  margin-bottom: 3rem;
}
.philosophy-values {
  display: flex; flex-direction: column; gap: 1.2rem;
  margin-top: 2.5rem;
}
.phil-val {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.85rem; color: rgba(253,250,246,0.65);
}
.phil-val-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 0.55rem;
}

/* =============================================
   CLASSES
   ============================================= */
.classes { padding: var(--section-pad); }
.classes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.class-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.class-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--teal-dark);
  transition: width 0.4s ease;
}
.class-card:hover::after { width: 100%; }
.class-card:hover { background: var(--teal-pale); }
.class-card.featured {
  background: var(--charcoal); color: var(--warm-white);
}
.class-card.featured:hover { background: var(--charcoal2); }
.class-card.featured::after { background: var(--teal); }
.class-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--border); margin-bottom: 1rem; line-height: 1;
  transition: color 0.3s;
}
.class-card:hover .class-num { color: var(--teal-light); }
.class-card.featured .class-num { color: rgba(253,250,246,0.1); }
.class-card.featured:hover .class-num { color: rgba(125,207,188,0.3); }
.class-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400; margin-bottom: 0.4rem;
}
.class-card.featured .class-name { color: var(--teal-light); }
.class-when {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 1.2rem;
}
.class-card.featured .class-when { color: var(--teal); }
.class-desc { font-size: 0.84rem; line-height: 1.85; color: var(--mid); }
.class-card.featured .class-desc { color: rgba(253,250,246,0.58); }
.class-tag {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-dark); border: 0.5px solid var(--teal-light);
  padding: 0.3rem 0.7rem;
}
.class-card.featured .class-tag { color: var(--teal); border-color: rgba(125,207,188,0.3); }

/* =============================================
   HATHA YOGA DEEP DIVE
   ============================================= */
.hatha-section {
  padding: var(--section-pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.hatha-content {}
.hatha-image {
  position: relative;
}
.hatha-image img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(15%);
}
.hatha-decor {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 160px; height: 160px;
  border: 0.5px solid var(--border); border-radius: 50%;
  pointer-events: none;
}
.hatha-decor-2 {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 80px; height: 80px;
  border: 0.5px solid var(--teal-light); border-radius: 50%;
  pointer-events: none;
}
.hatha-text {
  font-size: 0.88rem; line-height: 2;
  color: var(--mid); margin-top: 1.8rem;
}
.hatha-text p + p { margin-top: 1.2rem; }

/* =============================================
   SCHEDULE
   ============================================= */
.schedule { padding: var(--section-pad); }
.schedule-wrap { overflow-x: auto; }
.schedule-table {
  width: 100%; border-collapse: collapse;
  min-width: 700px;
}
.sch-head th {
  font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid); font-weight: 400;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left; background: var(--cream);
}
.sch-head th:first-child { width: 80px; }
.sch-row td {
  padding: 0; border-bottom: 0.5px solid var(--border);
  vertical-align: top;
}
.slot {
  padding: 0.9rem 1rem; min-height: 78px;
  display: flex; flex-direction: column; justify-content: center;
  transition: background 0.25s;
}
.slot:hover { background: var(--teal-pale); }
.slot-time { font-size: 0.68rem; color: var(--light); margin-bottom: 0.25rem; letter-spacing: 0.05em; }
.slot-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 400; color: var(--charcoal);
}
.slot-who { font-size: 0.67rem; color: var(--teal-dark); margin-top: 0.2rem; }
.slot.t-teal { border-top: 2px solid var(--teal); }
.slot.t-rose { border-top: 2px solid var(--rose); }
.slot.t-gold { border-top: 2px solid #c9a85c; }
.slot.t-grey { border-top: 2px solid var(--light); }
.slot.donation { font-size: 0.7rem; color: var(--light); font-style: italic; }
.schedule-legend {
  display: flex; gap: 2rem; margin-top: 2rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--mid);
}
.legend-dot {
  width: 10px; height: 3px; border-radius: 2px;
}
.day-col { font-size: 0.75rem; color: var(--mid); padding: 0.8rem 1rem; font-weight: 400; }

/* =============================================
   TEAM
   ============================================= */
.team { padding: var(--section-pad); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}
.team-member {}
.team-photo {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; position: relative; margin-bottom: 1.8rem;
  background: var(--charcoal);
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(25%) contrast(1.05);
  transition: transform 0.7s ease, filter 0.5s;
}
.team-member:hover .team-photo img {
  transform: scale(1.05); filter: grayscale(0%) contrast(1.02);
}
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--charcoal) 100%);
}
.team-photo-placeholder .initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300; color: rgba(255,255,255,0.7);
}
.team-photo-placeholder .role-badge {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); margin-top: 0.5rem;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; margin-bottom: 0.2rem;
}
.team-age { font-size: 0.7rem; color: var(--light); margin-bottom: 0.3rem; }
.team-role {
  font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 1.2rem;
}
.team-bio { font-size: 0.84rem; line-height: 1.88; color: var(--mid); }
.team-specialties {
  margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.specialty-tag {
  font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-dark); border: 0.5px solid var(--teal-light);
  padding: 0.25rem 0.6rem;
}

/* =============================================
   ABOUT / STORY
   ============================================= */
.about-story {
  padding: var(--section-pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem; font-weight: 300; line-height: 0.8;
  color: rgba(253,250,246,0.05); position: absolute;
  top: -1rem; right: -1rem; pointer-events: none;
}
.about-content { position: relative; }
.about-text {
  font-size: 0.88rem; line-height: 2; color: rgba(253,250,246,0.65);
}
.about-text p + p { margin-top: 1.3rem; }
.about-dividers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
.about-stat-box {
  border: 0.5px solid rgba(125,207,188,0.2);
  padding: 1.5rem;
}
.about-stat-box .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--teal);
  line-height: 1;
}
.about-stat-box .l {
  font-size: 0.7rem; color: rgba(253,250,246,0.45);
  letter-spacing: 0.1em; margin-top: 0.4rem;
}
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-image-accent {
  position: absolute; top: -2rem; right: -2rem;
  width: 100px; height: 100px; border: 0.5px solid var(--teal);
  border-radius: 50%; pointer-events: none;
}

/* =============================================
   PRICING
   ============================================= */
.pricing { padding: var(--section-pad); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.price-category-label {
  font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); display: block;
  margin: 2.5rem 0 0.8rem; padding-bottom: 0.6rem;
  border-bottom: 0.5px solid rgba(125,207,188,0.2);
}
.price-category-label:first-child { margin-top: 0; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 0.5px solid rgba(253,250,246,0.08);
  font-size: 0.87rem;
}
.price-row:last-child { border-bottom: none; }
.price-name { color: rgba(253,250,246,0.75); line-height: 1.4; }
.price-note { font-size: 0.72rem; color: rgba(253,250,246,0.35); margin-top: 0.15rem; }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--teal);
  white-space: nowrap; margin-left: 1rem;
}
.pricing-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 0.5px solid rgba(125,207,188,0.18);
  background: rgba(125,207,188,0.04);
  font-size: 0.8rem; line-height: 1.85;
  color: rgba(253,250,246,0.45);
}
.pricing-note strong { color: rgba(253,250,246,0.6); font-weight: 400; }
.pricing-image-wrap { position: relative; }
.pricing-image-wrap img { width: 100%; border: 0.5px solid rgba(125,207,188,0.2); }
.pricing-image-wrap::before {
  content: ''; position: absolute; top: -1.5rem; right: -1.5rem;
  width: 70px; height: 70px; border: 0.5px solid rgba(125,207,188,0.3);
  border-radius: 50%;
}
.pricing-image-wrap::after {
  content: ''; position: absolute; bottom: -2.5rem; left: -2.5rem;
  width: 120px; height: 120px; border: 0.5px solid rgba(125,207,188,0.12);
  border-radius: 50%;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: var(--section-pad); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem;
}
.contact-info {}
.contact-address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; line-height: 1.4;
  color: var(--charcoal); margin-bottom: 3rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.contact-label {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-dark); min-width: 80px; padding-top: 3px; flex-shrink: 0;
}
.contact-val { font-size: 0.87rem; color: var(--mid); line-height: 1.6; }
.contact-val a { color: var(--teal-dark); transition: color 0.3s; }
.contact-val a:hover { color: var(--rose); }
.contact-hours { margin-top: 2.5rem; }
.hours-title {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 0.8rem;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.55rem 0; border-bottom: 0.5px solid var(--border);
  font-size: 0.83rem; color: var(--mid);
}

/* FORM */
.contact-form {}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--light); margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.87rem; font-weight: 300;
  color: var(--charcoal); outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-dark);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; margin-top: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 400; color: var(--warm-white);
  background: var(--teal-dark); padding: 1rem 2rem;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--rose); }
.form-privacy {
  font-size: 0.72rem; color: var(--light); margin-top: 0.8rem;
  line-height: 1.5;
}

/* =============================================
   INSTAGRAM STRIP
   ============================================= */
.instagram-strip { padding: 5rem 6rem; }
.insta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.insta-tile {
  aspect-ratio: 1; overflow: hidden; position: relative;
  background: var(--border); cursor: pointer;
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-tile:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(44,41,37,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.insta-tile:hover .insta-overlay { opacity: 1; }
.insta-overlay-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: white; font-style: italic;
}
.insta-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-pale);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--charcoal); color: rgba(253,250,246,0.55);
  padding: 5rem 6rem 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(253,250,246,0.08);
}
.footer-brand img { height: 34px; opacity: 0.8; margin-bottom: 1.3rem; object-fit: contain; }
.footer-desc { font-size: 0.82rem; line-height: 1.85; max-width: 270px; }
.footer-col-title {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.3rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.82rem; color: rgba(253,250,246,0.48);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; color: rgba(253,250,246,0.25);
  flex-wrap: wrap; gap: 1rem;
}
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,250,246,0.3); transition: color 0.3s;
}
.footer-social a:hover { color: var(--teal); }

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

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  :root { --section-pad: 5rem 4rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 60vw; }
  .hero-content { padding: 4rem; }
  .hero-badge { left: 2rem; }
  .philosophy { grid-template-columns: 1fr; gap: 3rem; }
  .hatha-section { grid-template-columns: 1fr; gap: 3rem; }
  .hatha-section .hatha-image { order: -1; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  nav { padding: 0 2rem; }
  .philosophy { padding: 5rem 4rem; }
}

@media (max-width: 900px) {
  :root { --section-pad: 4rem 2.5rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open { 
    display: flex; flex-direction: column; 
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--warm-white);
    padding: 2rem; gap: 1.2rem;
    border-bottom: 0.5px solid var(--border);
    z-index: 199;
  }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-content { padding: 3rem 2.5rem; }
  .hero-badge { display: none; }
  .hero-stat-row { display: none; }
  .classes-grid { grid-template-columns: 1fr; gap: 0; }
  .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-photo { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .philosophy { padding: 4rem 2.5rem; }
}

@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 1.5rem; }
  nav { padding: 0 1.2rem; }
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2rem; }
  .philosophy { padding: 3.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem 2rem; }
  .about-dividers { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
