/* ============================================
   ZENITH YOGA & WELLNESS
   Aesthetic: Zen, Calm & Natural
   ============================================ */

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

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Color Palette - Natural & Serene */
  --sage: #9CAF88;
  --sage-light: #B8C7A8;
  --sage-dark: #7A8F68;
  --sage-muted: rgba(156, 175, 136, 0.15);

  --rose: #D4A5A5;
  --rose-light: #E5C4C4;
  --rose-dark: #B88888;
  --rose-muted: rgba(212, 165, 165, 0.15);

  --sand: #E8DCC4;
  --sand-light: #F5EDE0;
  --sand-dark: #D4C4A8;

  --charcoal: #3A3A3A;
  --charcoal-light: #5A5A5A;
  --charcoal-muted: rgba(58, 58, 58, 0.7);

  --warm-white: #FFFEF9;
  --cream: #FBF9F4;
  --stone: #E8E4DC;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Questrial', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Shadows - Soft & Organic */
  --shadow-soft: 0 4px 20px rgba(58, 58, 58, 0.06);
  --shadow-medium: 0 8px 40px rgba(58, 58, 58, 0.08);
  --shadow-lifted: 0 20px 60px rgba(58, 58, 58, 0.1);

  /* Border Radius - Organic Curves */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-organic: 60% 40% 50% 50% / 50% 50% 50% 50%;

  /* Transitions */
  --transition-calm: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-gentle: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-breath: 4s ease-in-out infinite;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle paper texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 9999;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-calm);
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: 1.5em;
}

p:last-child {
  margin-bottom: 0;
}

.text-sage { color: var(--sage-dark); }
.text-rose { color: var(--rose-dark); }
.text-muted { color: var(--charcoal-muted); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-cream {
  background-color: var(--cream);
}

.section-sand {
  background-color: var(--sand-light);
}

.section-sage {
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--rose-muted) 100%);
}

/* ============================================
   ORGANIC DECORATIVE SHAPES
   ============================================ */
.organic-shape {
  position: absolute;
  border-radius: var(--radius-organic);
  opacity: 0.4;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.organic-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--sage);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.organic-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--rose);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.organic-shape-3 {
  width: 250px;
  height: 250px;
  background: var(--sand);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-soft 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(20px, -20px) rotate(5deg);
  }
  66% {
    transform: translate(-10px, 15px) rotate(-3deg);
  }
}

@keyframes pulse-soft {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-calm);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 254, 249, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  padding: var(--space-sm) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-calm);
}

.logo:hover .logo-icon {
  transform: rotate(180deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--charcoal-muted);
  font-family: var(--font-body);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: var(--transition-calm);
}

.nav-link:hover,
.nav-link.active {
  color: var(--charcoal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: var(--transition-calm);
}

.header-cta:hover {
  background: var(--sage);
  color: var(--warm-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 50%, var(--sand-light) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--sage-muted);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 1s ease-out;
}

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--charcoal-muted);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--charcoal-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--sage) 0%, transparent 100%);
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(0.6);
  }
}

/* Page Hero (for inner pages) */
.page-hero {
  min-height: 50vh;
  padding-top: 120px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-calm);
}

.btn-primary {
  background: var(--sage);
  color: var(--warm-white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}

.btn-rose {
  background: var(--rose);
  color: var(--warm-white);
}

.btn-rose:hover {
  background: var(--rose-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-dark);
  padding: var(--space-sm) 0;
}

.btn-ghost:hover {
  color: var(--charcoal);
}

.btn-ghost::after {
  content: ' →';
  transition: var(--transition-calm);
}

.btn-ghost:hover::after {
  transform: translateX(5px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: var(--sage);
}

.section-header.center .section-tag {
  padding-left: 0;
}

.section-header.center .section-tag::before {
  display: none;
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--charcoal-muted);
  max-width: 600px;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   CLASS CARDS (Yoga Classes)
   ============================================ */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.class-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: var(--transition-calm);
  border: 1px solid transparent;
}

.class-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--rose) 100%);
  opacity: 0;
  transition: var(--transition-calm);
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lifted);
  border-color: var(--sage-muted);
}

.class-card:hover::before {
  opacity: 1;
}

.class-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  transition: var(--transition-calm);
}

.class-card:hover .class-icon {
  background: var(--sage);
  transform: scale(1.1);
}

.class-card h3 {
  margin-bottom: var(--space-xs);
}

.class-level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--space-sm);
}

.class-level-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

.class-level-dot.empty {
  background: transparent;
  border: 1px solid var(--sage);
}

.class-card p {
  color: var(--charcoal-muted);
  font-size: 0.9375rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  text-align: center;
  padding: var(--space-lg);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--rose-muted) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition-calm);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.benefit-item p {
  font-size: 0.9375rem;
  color: var(--charcoal-muted);
}

/* ============================================
   SCHEDULE PREVIEW
   ============================================ */
.schedule-preview {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: var(--sage);
  color: var(--warm-white);
}

.schedule-header h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--warm-white);
}

.schedule-list {
  padding: var(--space-sm);
}

.schedule-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: var(--transition-calm);
  align-items: center;
}

.schedule-item:hover {
  background: var(--sage-muted);
}

.schedule-time {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage-dark);
}

.schedule-class {
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

.schedule-class span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--charcoal-muted);
}

.schedule-spots {
  font-size: 0.75rem;
  padding: var(--space-xs) var(--space-sm);
  background: var(--rose-muted);
  color: var(--rose-dark);
  border-radius: var(--radius-xl);
}

.schedule-spots.available {
  background: var(--sage-muted);
  color: var(--sage-dark);
}

/* ============================================
   INSTRUCTOR SPOTLIGHT
   ============================================ */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.instructor-card {
  text-align: center;
}

.instructor-image {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--rose-muted) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.instructor-image::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-calm);
}

.instructor-card:hover .instructor-image::before {
  opacity: 1;
  inset: 4px;
}

.instructor-card h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.instructor-title {
  font-size: 0.875rem;
  color: var(--sage-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.instructor-specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.instructor-specialties span {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--sage-muted);
  color: var(--sage-dark);
  border-radius: var(--radius-xl);
}

.instructor-card p {
  font-size: 0.9375rem;
  color: var(--charcoal-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--warm-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--sage);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--rose-muted) 0%, var(--sage-muted) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.testimonial-info h5 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--charcoal-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(100px);
}

.cta-section h2 {
  color: var(--warm-white);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.cta-section .btn {
  background: var(--warm-white);
  color: var(--sage-dark);
}

.cta-section .btn:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  border: 1px solid var(--stone);
  transition: var(--transition-calm);
}

.pricing-card.featured {
  border-color: var(--sage);
  transform: scale(1.02);
  box-shadow: var(--shadow-lifted);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-md);
  background: var(--sage);
  color: var(--warm-white);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
}

.pricing-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-medium);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--charcoal-muted);
  margin-bottom: var(--space-lg);
}

.pricing-price {
  margin-bottom: var(--space-lg);
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
}

.pricing-price .period {
  font-size: 0.875rem;
  color: var(--charcoal-muted);
}

.pricing-features {
  margin-bottom: var(--space-lg);
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--stone);
  font-size: 0.9375rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--sage);
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.team-member {
  text-align: center;
}

.team-image {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--sand-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: var(--transition-calm);
}

.team-member:hover .team-image {
  transform: scale(1.05);
}

.team-member h4 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 0.8125rem;
  color: var(--sage-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.team-member p {
  font-size: 0.9375rem;
  color: var(--charcoal-muted);
}

/* ============================================
   STUDIO FEATURES
   ============================================ */
.studio-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.studio-features.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .studio-features.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .studio-features.cols-3 {
    grid-template-columns: 1fr;
  }
}

.studio-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  transition: var(--transition-calm);
}

.studio-feature:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.studio-feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--sage-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.studio-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.studio-feature p {
  font-size: 0.875rem;
  color: var(--charcoal-muted);
}

/* ============================================
   SERVICE PACKAGES
   ============================================ */
.packages-section {
  background: var(--cream);
}

.package-group {
  margin-bottom: var(--space-2xl);
}

.package-group:last-child {
  margin-bottom: 0;
}

.package-group h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--sage-muted);
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.package-card {
  background: var(--warm-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--stone);
  transition: var(--transition-calm);
}

.package-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-soft);
}

.package-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.package-card .price {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--sage-dark);
  margin-bottom: var(--space-xs);
}

.package-card .savings {
  font-size: 0.75rem;
  color: var(--rose-dark);
  background: var(--rose-muted);
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.package-card p {
  font-size: 0.875rem;
  color: var(--charcoal-muted);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: var(--warm-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: var(--transition-calm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px var(--sage-muted);
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233A3A3A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: 2.5rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
}

.contact-details {
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--sage-muted);
  border-radius: var(--radius-md);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-item h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0;
}

.studio-hours h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--stone);
  font-size: 0.9375rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  color: var(--charcoal);
}

.hours-list .time {
  color: var(--sage-dark);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
  padding: var(--space-md) 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  transition: var(--transition-calm);
}

.faq-question:hover {
  color: var(--sage-dark);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--sage);
  transition: var(--transition-calm);
}

.faq-answer {
  padding-top: var(--space-md);
  color: var(--charcoal-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo-icon {
  background: var(--sage);
}

.footer-brand .logo-text {
  color: var(--warm-white);
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand > p {
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: var(--transition-calm);
}

.social-link:hover {
  background: var(--sage);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: var(--transition-calm);
}

.footer-links a:hover {
  color: var(--sage-light);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: var(--space-2xl) var(--space-md);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .nav {
    gap: var(--space-sm);
  }

  .nav-link {
    font-size: 0.75rem;
  }
}

/* ============================================
   SPECIAL PAGE STYLES
   ============================================ */
/* About page timeline */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--rose) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 5px);
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--sage);
  border-radius: 50%;
  border: 3px solid var(--warm-white);
}

.timeline-year {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--space-xs);
}

.timeline-item h4 {
  margin-bottom: var(--space-xs);
}

/* Workshop/Event cards */
.workshop-card {
  display: flex;
  gap: var(--space-lg);
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-calm);
}

.workshop-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.workshop-date {
  width: 100px;
  flex-shrink: 0;
  background: var(--sage);
  color: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  text-align: center;
}

.workshop-date .month {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workshop-date .day {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
}

.workshop-content {
  padding: var(--space-lg);
  flex: 1;
}

.workshop-content h4 {
  margin-bottom: var(--space-xs);
}

.workshop-meta {
  font-size: 0.875rem;
  color: var(--charcoal-muted);
  margin-bottom: var(--space-sm);
}

/* Trial offer box */
.trial-offer {
  background: linear-gradient(135deg, var(--sage-muted) 0%, var(--rose-muted) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 2px dashed var(--sage);
}

.trial-offer h3 {
  margin-bottom: var(--space-sm);
}

.trial-offer .price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--sage-dark);
  margin-bottom: var(--space-sm);
}

.trial-offer p {
  color: var(--charcoal-muted);
  margin-bottom: var(--space-lg);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .header-inner {
    position: relative;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }

  .header-cta {
    display: none;
  }
}
