/*
Theme Name: Kural 948 Fitness Club
Theme URI: https://kural948.com
Author: Kural 948
Author URI: https://kural948.com
Description: A premium wellness & fitness theme for Kural 948 Fitness Club — Women Fitness, Serenity, Mindfulness, Wellness. Fully responsive, WooCommerce ready, and compatible with all major plugins.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kural948
Tags: fitness, wellness, yoga, women, responsive, woocommerce, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

/* =========================================
   KURAL 948 FITNESS CLUB — MASTER STYLESHEET
   Women Fitness • Serenity • Mindfulness • Wellness
   ========================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Brand Colors from Logo */
  --k-forest:       #3a5a1c;   /* deep bamboo green */
  --k-sage:         #5a7a2e;   /* medium sage green */
  --k-moss:         #8aab50;   /* light moss green */
  --k-bamboo-light: #c8d9a0;   /* pale bamboo tint */
  --k-earth:        #5c3a1e;   /* warm earth brown */
  --k-bark:         #7a4e2a;   /* medium bark brown */
  --k-latte:        #c49a6c;   /* warm latte */
  --k-gold:         #c9a227;   /* lotus gold */
  --k-gold-light:   #e8c76a;   /* light gold shimmer */
  --k-gold-pale:    #f5e9c0;   /* very pale gold */
  --k-cream:        #f7f3ec;   /* warm cream background */
  --k-ivory:        #faf8f3;   /* near white ivory */
  --k-sand:         #e8dfc8;   /* sand */
  --k-charcoal:     #2a2a2a;   /* near black text */
  --k-text:         #3d3028;   /* warm dark text */
  --k-text-muted:   #7a6a58;   /* muted text */
  --k-white:        #ffffff;

  /* Typography */
  --font-display:   'Playfair Display', 'Georgia', serif;
  --font-body:      'Cormorant Garamond', 'Georgia', serif;
  --font-ui:        'Jost', 'Trebuchet MS', sans-serif;
  --font-accent:    'Dancing Script', cursive;

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

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(60,40,20,0.08);
  --shadow-md:  0 8px 32px rgba(60,40,20,0.12);
  --shadow-lg:  0 20px 60px rgba(60,40,20,0.18);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-med:  400ms;
  --duration-slow: 700ms;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 800px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--k-text);
  background-color: var(--k-ivory);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--k-forest); text-decoration: none; transition: color var(--duration-fast) ease; }
a:hover { color: var(--k-gold); }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--k-earth);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--k-sage);
}

.accent-script {
  font-family: var(--font-accent);
  font-size: 1.3em;
  color: var(--k-gold);
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--k-earth);
  border-left: 3px solid var(--k-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }

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

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* === DECORATIVE DIVIDERS === */
.divider-lotus {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  width: fit-content;
}
.divider-lotus::before,
.divider-lotus::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--k-gold));
}
.divider-lotus::after { background: linear-gradient(to left, transparent, var(--k-gold)); }
.divider-lotus span {
  color: var(--k-gold);
  font-size: 1.2rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90,122,46,0.15);
  transition: all var(--duration-med) var(--ease-smooth);
}
#site-header.scrolled {
  height: 68px;
  box-shadow: var(--shadow-md);
  background: rgba(250, 248, 243, 0.98);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.site-logo img { height: 56px; width: auto; transition: transform var(--duration-med) var(--ease-bounce); }
.site-logo:hover img { transform: scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--k-forest);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--k-text-muted);
}

/* Primary Navigation */
#primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#primary-navigation ul li { position: relative; }
#primary-navigation ul li a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--k-text);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) ease;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a {
  color: var(--k-forest);
  background: rgba(90,122,46,0.08);
}

/* Dropdown */
#primary-navigation ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--k-ivory);
  border: 1px solid var(--k-sand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration-med) var(--ease-smooth);
  flex-direction: column;
  gap: 0;
  padding: 0.5rem;
}
#primary-navigation ul li:hover > ul,
#primary-navigation ul li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#primary-navigation ul li ul li a {
  border-radius: var(--radius-sm);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--k-forest);
  transition: all var(--duration-med) var(--ease-smooth);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-med) var(--ease-smooth);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--k-gold); outline-offset: 3px; }

.btn-primary {
  background: var(--k-forest);
  color: var(--k-ivory);
  border-color: var(--k-forest);
}
.btn-primary:hover {
  background: var(--k-sage);
  border-color: var(--k-sage);
  color: var(--k-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,90,28,0.3);
}

.btn-gold {
  background: var(--k-gold);
  color: var(--k-earth);
  border-color: var(--k-gold);
}
.btn-gold:hover {
  background: var(--k-gold-light);
  border-color: var(--k-gold-light);
  color: var(--k-earth);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--k-forest);
  border-color: var(--k-forest);
}
.btn-outline:hover {
  background: var(--k-forest);
  color: var(--k-ivory);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--k-gold);
  border-color: var(--k-gold);
}
.btn-outline-gold:hover {
  background: var(--k-gold);
  color: var(--k-earth);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.75rem; font-size: 0.9rem; }

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247,243,236,0.97) 0%, rgba(200,217,160,0.3) 50%, rgba(247,243,236,0.95) 100%),
    url('assets/images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Bamboo decorative element */
.hero-bg::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: radial-gradient(ellipse at 70% 50%, rgba(90,122,46,0.12) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--k-gold);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s var(--ease-smooth) both;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--k-earth);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.1s var(--ease-smooth) both;
}
.hero-title em {
  font-style: normal;
  color: var(--k-forest);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--k-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 0.6s 1s var(--ease-smooth) forwards;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--k-text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s 0.2s var(--ease-smooth) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s var(--ease-smooth) both;
}

.hero-pillars {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.4s var(--ease-smooth) both;
}
.hero-pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-text-muted);
}
.hero-pillar::before {
  content: '◆';
  color: var(--k-gold);
  font-size: 0.5rem;
}

.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 560px;
  z-index: 1;
  animation: fadeInRight 1s 0.2s var(--ease-smooth) both;
}
.hero-image img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(58,90,28,0.2));
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: bounceDown 2s infinite;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--k-text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--k-gold), transparent);
}

/* =========================================
   STATS / HIGHLIGHTS BAR
   ========================================= */
.stats-bar {
  background: var(--k-forest);
  padding: 1.5rem 0;
  overflow: hidden;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1.5rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--k-gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* =========================================
   ABOUT / WELLNESS PHILOSOPHY
   ========================================= */
.about-section { background: var(--k-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap .img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--k-sand);
}
.about-image-wrap .img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--k-ivory);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  background: var(--k-bamboo-light);
}
.about-image-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-leaf-decoration {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  background: var(--k-gold-pale);
  border-radius: 50%;
  display: flex-center;
  opacity: 0.6;
}

.about-content { padding: 1rem 0; }
.about-content .eyebrow { margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.25rem; color: var(--k-text-muted); font-size: 1.05rem; }

.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.philosophy-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--k-ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--k-sand);
  transition: all var(--duration-med) var(--ease-smooth);
}
.philosophy-pillar:hover {
  border-color: var(--k-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--k-gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.pillar-text h4 {
  font-size: 0.9rem;
  color: var(--k-earth);
  margin-bottom: 0.25rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pillar-text p {
  font-size: 0.85rem;
  color: var(--k-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* =========================================
   CLASSES / PROGRAMS
   ========================================= */
.classes-section { background: var(--k-ivory); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--k-text-muted); font-size: 1.05rem; }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.class-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--k-cream);
  border: 1px solid var(--k-sand);
  transition: all var(--duration-med) var(--ease-smooth);
  cursor: pointer;
}
.class-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--k-moss);
}

.class-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--k-bamboo-light);
  position: relative;
}
.class-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) ease; }
.class-card:hover .class-card-image img { transform: scale(1.08); }

.class-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: var(--k-gold);
  color: var(--k-earth);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.class-card-body { padding: 1.5rem; }
.class-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--k-earth);
}
.class-card-body p {
  font-size: 0.9rem;
  color: var(--k-text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.class-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.class-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--k-text-muted);
  font-weight: 500;
}
.class-meta-item svg { color: var(--k-sage); }

/* =========================================
   TIMETABLE / SCHEDULE
   ========================================= */
.schedule-section { background: var(--k-cream); }

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.schedule-tab {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--k-sand);
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--k-text-muted);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}
.schedule-tab:hover,
.schedule-tab.active {
  background: var(--k-forest);
  border-color: var(--k-forest);
  color: var(--k-white);
}

.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-text-muted);
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--k-sand);
}
.schedule-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--k-sand);
  font-size: 0.95rem;
  vertical-align: middle;
}
.schedule-table tr:hover td { background: rgba(90,122,46,0.04); }
.schedule-class-name { font-weight: 600; color: var(--k-earth); font-family: var(--font-display); }
.schedule-instructor { color: var(--k-text-muted); font-size: 0.85rem; }
.schedule-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
}
.badge-available { background: rgba(90,122,46,0.12); color: var(--k-sage); }
.badge-full { background: rgba(201,162,39,0.12); color: var(--k-gold); }

/* =========================================
   MEMBERSHIP PLANS
   ========================================= */
.membership-section { background: var(--k-ivory); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--k-sand);
  background: var(--k-cream);
  transition: all var(--duration-med) var(--ease-smooth);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.plan-card.featured {
  border-color: var(--k-forest);
  background: var(--k-forest);
  position: relative;
  transform: scale(1.04);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.plan-badge {
  background: var(--k-gold);
  color: var(--k-earth);
  text-align: center;
  padding: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.plan-header { padding: 2rem 2rem 1.5rem; }
.plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.plan-card.featured .plan-name { color: var(--k-gold); }
.plan-card:not(.featured) .plan-name { color: var(--k-earth); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1rem 0;
}
.plan-currency { font-size: 1.2rem; color: var(--k-text-muted); font-family: var(--font-ui); }
.plan-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.plan-card.featured .plan-amount { color: var(--k-white); }
.plan-card:not(.featured) .plan-amount { color: var(--k-forest); }
.plan-period { font-size: 0.9rem; color: var(--k-text-muted); font-family: var(--font-ui); }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.6); }

.plan-desc { font-size: 0.9rem; line-height: 1.5; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.75); }
.plan-card:not(.featured) .plan-desc { color: var(--k-text-muted); }

.plan-features { padding: 0 2rem 2rem; }
.plan-features ul { display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.plan-card.featured .plan-features ul li { color: rgba(255,255,255,0.85); }
.plan-card:not(.featured) .plan-features ul li { color: var(--k-text); }
.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(90,122,46,0.15);
  color: var(--k-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}
.plan-card.featured .feature-check { background: rgba(201,162,39,0.25); color: var(--k-gold); }

.plan-footer { padding: 0 2rem 2rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--k-cream); overflow: hidden; }

.testimonial-slider { position: relative; }
.testimonials-track { display: flex; transition: transform var(--duration-slow) var(--ease-smooth); }

.testimonial-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 1rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--k-earth);
  line-height: 1.4;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-size: 6rem;
  color: var(--k-gold);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--k-gold);
  background: var(--k-bamboo-light);
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--k-earth);
  letter-spacing: 0.05em;
}
.author-detail {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--k-text-muted);
  margin-top: 0.15rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  color: var(--k-gold);
  font-size: 0.9rem;
}

.testimonial-image {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--k-bamboo-light);
  box-shadow: var(--shadow-lg);
}
.testimonial-image img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--k-sand);
  background: var(--k-ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-text-muted);
  transition: all var(--duration-fast) ease;
}
.testimonial-btn:hover {
  border-color: var(--k-forest);
  color: var(--k-forest);
  background: var(--k-cream);
}
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--k-sand);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}
.testimonial-dot.active { background: var(--k-forest); width: 24px; border-radius: 4px; }

/* =========================================
   TRAINERS / TEAM
   ========================================= */
.trainers-section { background: var(--k-ivory); }

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trainer-card {
  text-align: center;
  transition: all var(--duration-med) var(--ease-smooth);
}
.trainer-card:hover { transform: translateY(-6px); }

.trainer-image {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--k-bamboo-light);
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.trainer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) ease; }
.trainer-card:hover .trainer-image img { transform: scale(1.05); }

.trainer-socials {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: all var(--duration-med) var(--ease-smooth);
}
.trainer-card:hover .trainer-socials { opacity: 1; transform: translateX(-50%) translateY(0); }
.trainer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247,243,236,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-forest);
  font-size: 0.8rem;
  transition: all var(--duration-fast) ease;
}
.trainer-social-btn:hover { background: var(--k-gold); color: var(--k-earth); }

.trainer-name {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--k-earth);
}
.trainer-role {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-sage);
}
.trainer-specialty {
  font-size: 0.85rem;
  color: var(--k-text-muted);
  margin-top: 0.25rem;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-section { background: var(--k-cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) ease; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,90,28,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-med) ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--k-white);
  letter-spacing: 0.05em;
}

/* =========================================
   BLOG / WELLNESS TIPS
   ========================================= */
.blog-section { background: var(--k-ivory); }

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--k-cream);
  border: 1px solid var(--k-sand);
  transition: all var(--duration-med) var(--ease-smooth);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--k-moss);
}

.blog-card-image {
  overflow: hidden;
  background: var(--k-bamboo-light);
}
.blog-card:first-child .blog-card-image { aspect-ratio: 16/9; }
.blog-card:not(:first-child) .blog-card-image { aspect-ratio: 4/3; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-body { padding: 1.5rem; }
.blog-category {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--k-sage);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--k-earth);
}
.blog-card:first-child .blog-card-body h3 { font-size: 1.5rem; }
.blog-card-body p {
  font-size: 0.9rem;
  color: var(--k-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--k-text-muted);
}
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--k-sand); }

/* =========================================
   CONTACT / LOCATION
   ========================================= */
.contact-section { background: var(--k-cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .eyebrow { margin-bottom: 1rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--k-text-muted); margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--k-gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-text h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-text-muted);
  margin-bottom: 0.25rem;
}
.contact-text p { font-size: 0.95rem; color: var(--k-text); margin: 0; }

.hours-table { width: 100%; margin-top: 1.5rem; }
.hours-table tr { border-bottom: 1px solid var(--k-sand); }
.hours-table td { padding: 0.6rem 0; font-size: 0.9rem; }
.hours-table td:first-child { color: var(--k-text-muted); font-family: var(--font-ui); font-size: 0.82rem; }
.hours-table td:last-child { text-align: right; color: var(--k-earth); font-weight: 500; }

/* Contact Form */
.contact-form { background: var(--k-ivory); padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--k-sand); }
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--k-text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--k-cream);
  border: 1.5px solid var(--k-sand);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--k-text);
  transition: all var(--duration-fast) ease;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--k-sage);
  box-shadow: 0 0 0 3px rgba(90,122,46,0.1);
  background: var(--k-white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-section {
  background: var(--k-forest);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(138,171,80,0.1) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-inner h2 { color: var(--k-white); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-inner p { color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: #1a2810;
  color: rgba(247,243,236,0.75);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo { margin-bottom: 1.25rem; }
.footer-brand .logo-name { color: var(--k-gold); }
.footer-brand .logo-sub { color: rgba(247,243,236,0.5); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(247,243,236,0.6);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,243,236,0.6);
  font-size: 0.9rem;
  transition: all var(--duration-fast) ease;
  text-decoration: none;
}
.footer-social:hover {
  border-color: var(--k-gold);
  color: var(--k-gold);
  background: rgba(201,162,39,0.1);
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--k-gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(247,243,236,0.6);
  transition: color var(--duration-fast) ease;
}
.footer-col ul li a:hover { color: var(--k-ivory); }

.footer-newsletter h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--k-gold);
  margin-bottom: 0.75rem;
}
.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(247,243,236,0.6);
  margin-bottom: 1rem;
}
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--k-ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--duration-fast) ease;
}
.newsletter-form input::placeholder { color: rgba(247,243,236,0.35); }
.newsletter-form input:focus {
  border-color: var(--k-gold);
  background: rgba(255,255,255,0.1);
}
.newsletter-form button {
  padding: 0.65rem 1.25rem;
  background: var(--k-gold);
  border: none;
  border-radius: var(--radius-full);
  color: var(--k-earth);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--k-gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(247,243,236,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(247,243,236,0.4);
  transition: color var(--duration-fast) ease;
}
.footer-bottom-links a:hover { color: var(--k-ivory); }

/* =========================================
   WOOCOMMERCE INTEGRATION
   ========================================= */
.woocommerce-page { background: var(--k-ivory); }

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products li.product {
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  background: var(--k-cream) !important;
  border: 1px solid var(--k-sand) !important;
  transition: all var(--duration-med) var(--ease-smooth) !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-md) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  color: var(--k-earth) !important;
  padding: 1rem 1.25rem 0.25rem !important;
}

.woocommerce ul.products li.product .price {
  color: var(--k-forest) !important;
  font-family: var(--font-ui) !important;
  font-weight: 700 !important;
  padding: 0 1.25rem 0.75rem !important;
}

.woocommerce ul.products li.product .button {
  margin: 0 1.25rem 1.25rem !important;
  background: var(--k-forest) !important;
  color: var(--k-ivory) !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-ui) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 0.6rem 1.5rem !important;
  transition: all var(--duration-fast) ease !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--k-sage) !important;
  transform: translateY(-2px) !important;
}

/* WooCommerce Cart & Checkout */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1.5px solid var(--k-sand) !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-body) !important;
  background: var(--k-cream) !important;
  color: var(--k-text) !important;
  transition: border-color var(--duration-fast) ease !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--k-sage) !important;
  box-shadow: 0 0 0 3px rgba(90,122,46,0.1) !important;
  outline: none !important;
}

.woocommerce #place_order,
.woocommerce button.button.alt {
  background: var(--k-forest) !important;
  color: var(--k-white) !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: all var(--duration-fast) ease !important;
}
.woocommerce #place_order:hover,
.woocommerce button.button.alt:hover {
  background: var(--k-sage) !important;
  transform: translateY(-2px) !important;
}

/* =========================================
   ELEMENTOR COMPATIBILITY
   ========================================= */
.elementor-section { width: 100% !important; }
.elementor-widget-wrap { flex-direction: column; }

/* =========================================
   CONTACT FORM 7
   ========================================= */
.wpcf7 .wpcf7-form-control-wrap input,
.wpcf7 .wpcf7-form-control-wrap select,
.wpcf7 .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--k-cream);
  border: 1.5px solid var(--k-sand);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--k-text);
  transition: all var(--duration-fast) ease;
  outline: none;
}
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  background: var(--k-forest);
  color: var(--k-white);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}
.wpcf7 input[type="submit"]:hover { background: var(--k-sage); transform: translateY(-2px); }

/* =========================================
   YOAST SEO BREADCRUMBS
   ========================================= */
.yoast-breadcrumbs, .breadcrumbs {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--k-text-muted);
  padding: 0.75rem 0;
}
.yoast-breadcrumbs a { color: var(--k-sage); }
.yoast-breadcrumbs a:hover { color: var(--k-forest); }

/* =========================================
   GRAVITY FORMS
   ========================================= */
.gfield input,
.gfield select,
.gfield textarea {
  border: 1.5px solid var(--k-sand) !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-body) !important;
  background: var(--k-cream) !important;
  color: var(--k-text) !important;
}
.gform_button {
  background: var(--k-forest) !important;
  color: var(--k-white) !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
}

/* =========================================
   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 fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes underlineReveal {
  to { transform: scaleX(1); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.revealed { 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.4s; }

/* =========================================
   ACCESSIBILITY
   ========================================= */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--k-forest);
  color: var(--k-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* =========================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-image-wrap { max-width: 480px; margin: 0 auto; }

  .classes-grid,
  .plans-grid { grid-template-columns: repeat(2, 1fr); }

  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }

  .trainers-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card:first-child { grid-column: span 2; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .hero-image { display: none; }
  .hero-content { max-width: 100%; }

  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-actions { justify-content: flex-start; }

  .testimonial-card { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-image { display: none; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================= */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  /* Mobile Navigation */
  .menu-toggle { display: flex; }
  #primary-navigation {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--k-ivory);
    padding: 1.5rem;
    border-bottom: 1px solid var(--k-sand);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--duration-med) var(--ease-smooth);
    z-index: 999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  #primary-navigation.open {
    transform: translateY(0);
    opacity: 1;
  }
  #primary-navigation ul {
    flex-direction: column;
    gap: 0;
  }
  #primary-navigation ul li a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--k-sand);
    text-transform: none;
    letter-spacing: 0.02em;
  }
  #primary-navigation ul li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(90,122,46,0.04);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem;
    margin: 0.25rem 0;
  }

  .header-cta .btn:not(.btn-primary) { display: none; }

  .classes-grid,
  .plans-grid,
  .trainers-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .blog-grid .blog-card:first-child { grid-column: span 1; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .hero-pillars { gap: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .stats-inner { gap: 0.5rem; }
  .stat-divider { display: none; }

  .about-image-accent { display: none; }

  .schedule-table { font-size: 0.85rem; }
  .schedule-table th, .schedule-table td { padding: 0.75rem 0.75rem; }

  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .philosophy-pillars { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }

  #site-footer { padding-top: 3rem; }

  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ========================================= */
@media (max-width: 480px) {
  .container { padding-left: 1rem; padding-right: 1rem; }

  .hero-badge { font-size: 0.65rem; }
  .hero-title { font-size: 2rem; }

  .plan-card.featured { transform: none; }

  .stats-inner { flex-direction: column; }

  .footer-grid { gap: 2rem; }
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
  #site-header, #site-footer, .hero-scroll, .cta-section { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  .container { max-width: 100%; padding: 0; }
}

/* =========================================
   HIGH CONTRAST / ACCESSIBILITY
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  /* Dark mode support — can be toggled via body class .dark-mode */
}

/* =========================================
   CUSTOM SCROLLBAR
   ========================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--k-sand); }
::-webkit-scrollbar-thumb { background: var(--k-sage); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--k-forest); }

/* =========================================
   SELECTION
   ========================================= */
::selection { background: var(--k-gold-pale); color: var(--k-earth); }
