/*
Theme Name:         YogaFlexie
Theme URI:          https://www.yogaflexie.com/
Author:             YogaFlexie Studio
Author URI:         https://www.yogaflexie.com/
Description:        A natural, organic yoga & wellness WordPress theme for YogaFlexie. Features full pages for Poses, Yoga Therapy, Classes, Blog, About and Contact. Earthy tones, elegant typography and smooth animations.
Version:            2.0.0
Requires at least:  5.8
Tested up to:       6.5
Requires PHP:       7.4
License:            Private
License URI:        https://www.yogaflexie.com/
Text Domain:        yogaflexie
Tags:               yoga, wellness, health, fitness, natural, organic, blog, custom-menu, full-width-template, custom-logo
*/

/* =========================================================
   YOGAFLEXIE WORDPRESS THEME — style.css
   Natural · Organic · Wellness
   Website: https://www.yogaflexie.com/
   Pages: Home · Poses · Yoga Therapy · Classes · Blog · About · Contact
   ========================================================= */

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

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  /* Natural earthy palette */
  --sage:        #7C9A7E;
  --sage-light:  #A8C5A0;
  --sage-pale:   #EBF2EB;
  --sage-dark:   #4A6B4C;
  --sage-deep:   #2E4A30;

  --earth:       #8B6F47;
  --earth-light: #C4A882;
  --earth-pale:  #F5EFE6;
  --earth-dark:  #5C4A2A;

  --cream:       #FDFAF5;
  --cream-dark:  #F0EAD8;
  --warm-white:  #FFFEF9;

  --charcoal:    #2C2C2C;
  --stone:       #666666;
  --pebble:      #999999;
  --mist:        #DDDDDD;

  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;

  /* Typography */
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Lato', system-ui, sans-serif;
  --font-italic:'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --gap-xs:  8px;
  --gap-sm:  16px;
  --gap-md:  24px;
  --gap-lg:  48px;
  --gap-xl:  80px;
  --gap-2xl: 120px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(44,44,44,.07);
  --shadow-md: 0 6px 28px rgba(44,44,44,.10);
  --shadow-lg: 0 14px 50px rgba(44,44,44,.13);

  /* Nav height */
  --nav-h: 72px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--sage-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sage); }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   WORDPRESS REQUIRED
   ========================================================= */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link { position: absolute; top: -100px; left: 8px; z-index: 99999;
  background: var(--sage-dark); color: #fff; padding: 8px 16px;
  border-radius: var(--r-sm); font-size: 14px; transition: top .2s; }
.skip-link:focus { top: 8px; }

/* Admin bar offset */
.admin-bar #yf-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #yf-header { top: 46px; } }

/* WP alignment */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: 100%; width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--pebble); text-align: center; margin-top: 6px; }

/* Gutenberg blocks */
.wp-block-image img       { border-radius: var(--r-md); }
.wp-block-quote           { border-left: 3px solid var(--sage); padding-left: 1.5rem;
                             font-style: italic; color: var(--stone); margin: 1.5rem 0; }
.wp-block-separator       { border-color: var(--mist); }
.wp-block-button__link    { background: var(--sage-dark) !important;
                             border-radius: var(--r-full) !important; }
.wp-block-button__link:hover { background: var(--sage) !important; }

/* WP pagination */
.pagination, .nav-links { display: flex; align-items: center; gap: 8px;
  justify-content: center; margin: 2.5rem 0; flex-wrap: wrap; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-sm); font-size: 14px;
  color: var(--stone); border: 1px solid var(--mist); transition: all .2s; }
.page-numbers:hover, .page-numbers.current {
  background: var(--sage-dark); color: #fff; border-color: var(--sage-dark); }
.page-numbers.dots { border: none; width: auto; }

/* WP search */
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] { flex: 1; padding: 10px 16px; border: 1px solid var(--mist);
  border-radius: var(--r-full); font-size: 14px; outline: none;
  transition: border-color .2s; }
.search-form input[type="search"]:focus { border-color: var(--sage); }
.search-form button { background: var(--sage-dark); color: #fff; padding: 10px 20px;
  border-radius: var(--r-full); font-size: 13px; font-weight: 700; transition: background .2s; }
.search-form button:hover { background: var(--sage); }

/* Post nav */
.post-navigation { display: flex; justify-content: space-between; gap: 1rem;
  margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid var(--cream-dark);
  flex-wrap: wrap; }
.post-navigation a { font-size: 14px; color: var(--sage-dark); font-weight: 700; }
.post-navigation a:hover { color: var(--sage); }

/* Entry meta */
.entry-meta { font-size: 13px; color: var(--pebble); margin-bottom: 1rem; }
.entry-meta a { color: var(--sage); }
.entry-footer { font-size: 13px; color: var(--pebble); margin-top: 1.5rem;
  padding-top: 1rem; border-top: 1px solid var(--cream-dark); }

/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */
.yf-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.yf-container-sm { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.yf-section  { padding: var(--gap-xl) 0; }
.yf-section-sm { padding: var(--gap-lg) 0; }
.yf-section-lg { padding: var(--gap-2xl) 0; }
.yf-bg-cream { background: var(--cream); }
.yf-bg-sage  { background: var(--sage-pale); }
.yf-bg-earth { background: var(--earth-pale); }
.yf-bg-dark  { background: var(--sage-deep); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(38px,6vw,72px); }
h2 { font-size: clamp(28px,4vw,48px); }
h3 { font-size: clamp(20px,2.5vw,30px); }
h4 { font-size: clamp(17px,2vw,22px); }
h5 { font-size: 17px; }
h6 { font-size: 15px; }

.yf-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.yf-section-head { text-align: center; margin-bottom: 3.5rem; }
.yf-section-head h2 { margin-bottom: 14px; }
.yf-section-head p { font-size: 17px; color: var(--stone); max-width: 560px; margin: 0 auto; }

.yf-italic-quote {
  font-family: var(--font-italic);
  font-size: clamp(20px,2.5vw,28px);
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.5;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
#yf-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(253,250,245,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.yf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.yf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.yf-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.yf-logo-text { line-height: 1; }
.yf-logo-name {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--sage-deep);
  letter-spacing: -0.3px;
}
.yf-logo-tagline {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
}
.yf-logo:hover .yf-logo-name { color: var(--sage); }

/* Nav links */
#yf-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

#yf-nav-menu li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--stone);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all .2s;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
}

#yf-nav-menu li a:hover,
#yf-nav-menu li.current-menu-item > a,
#yf-nav-menu li.current_page_item > a {
  color: var(--sage-dark);
  background: var(--sage-pale);
}

/* Register button in nav */
.yf-nav-btn {
  display: inline-block;
  background: var(--sage-dark);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.yf-nav-btn:hover { background: var(--sage); color: #fff !important; transform: translateY(-1px); }

/* Top info bar */
.yf-topbar {
  background: var(--sage-deep);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 8px 0;
  text-align: center;
}
.yf-topbar a { color: rgba(255,255,255,.85); }
.yf-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.yf-topbar span { display: flex; align-items: center; gap: 6px; }

/* Mobile hamburger */
.yf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.yf-hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }
.yf-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.yf-hamburger.open span:nth-child(2) { opacity: 0; }
.yf-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
#yf-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
  z-index: 9998;
  padding: 1rem 0;
}
#yf-mobile-menu.open { display: flex; }
#yf-mobile-menu a {
  display: block;
  padding: 13px 2rem;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
  transition: all .2s;
}
#yf-mobile-menu a:hover { background: var(--sage-pale); color: var(--sage-dark); }

/* =========================================================
   BUTTONS
   ========================================================= */
.yf-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r-full);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: all .25s;
  line-height: 1;
  white-space: nowrap;
}

.yf-btn-primary {
  background: var(--sage-dark);
  color: #fff !important;
  border-color: var(--sage-dark);
}
.yf-btn-primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,74,48,.25); }

.yf-btn-outline {
  background: transparent;
  color: var(--sage-dark) !important;
  border-color: var(--sage-dark);
}
.yf-btn-outline:hover { background: var(--sage-dark); color: #fff !important; transform: translateY(-2px); }

.yf-btn-white {
  background: #fff;
  color: var(--sage-deep) !important;
  border-color: #fff;
}
.yf-btn-white:hover { background: var(--cream); color: var(--sage-deep) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.yf-btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,.6);
}
.yf-btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff !important; }

.yf-btn-earth {
  background: var(--earth);
  color: #fff !important;
  border-color: var(--earth);
}
.yf-btn-earth:hover { background: var(--earth-dark); border-color: var(--earth-dark); color: #fff !important; transform: translateY(-2px); }

.yf-btn-sm { padding: 9px 20px; font-size: 12px; }
.yf-btn-lg { padding: 17px 44px; font-size: 14px; }

.yf-btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.yf-btn-row.center { justify-content: center; }

/* =========================================================
   HERO — HOMEPAGE
   ========================================================= */
.yf-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f2ede4 0%, #e8f0e8 35%, #edf5ed 70%, #f5f0e8 100%);
}

.yf-hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

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

.yf-hero h1 {
  font-size: clamp(42px,6.5vw,78px);
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

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

.yf-hero-sub {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.yf-hero-trust {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.yf-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--sage-dark);
}
.yf-trust-icon { font-size: 18px; }

.yf-hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yf-hero-img-wrap {
  width: 520px;
  height: 520px;
  border-radius: 50% 30% 50% 30%;
  background: linear-gradient(145deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  animation: yf-breathe 5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

@keyframes yf-breathe {
  0%,100% { border-radius: 50% 30% 50% 30%; transform: scale(1); }
  50%      { border-radius: 30% 50% 30% 50%; transform: scale(1.03); }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.yf-stats-bar {
  background: var(--sage-deep);
  padding: 2rem 0;
}

.yf-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}

.yf-stat {
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--sage-deep);
}

.yf-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.yf-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.yf-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.yf-service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.yf-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transition: transform .3s;
}

.yf-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.yf-service-card:hover::before { transform: scaleX(1); }

.yf-svc-emoji {
  font-size: 42px;
  margin-bottom: 1.25rem;
  display: block;
  animation: yf-float 4s ease-in-out infinite;
}

.yf-service-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--sage-deep); }
.yf-service-card p  { font-size: 14px; color: var(--stone); line-height: 1.7; }

.yf-svc-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--sage-pale);
  color: var(--sage-dark);
}

/* =========================================================
   WHY YOGAFLEXIE — BENEFITS
   ========================================================= */
.yf-benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.yf-benefits-visual {
  background: linear-gradient(145deg, var(--sage-pale), var(--cream));
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  padding: 4rem 3rem;
  text-align: center;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: yf-breathe 6s ease-in-out infinite;
}

.yf-benefits-visual .big { font-size: 96px; display: block; margin-bottom: 1.5rem; animation: yf-float 4s ease-in-out infinite; }

.yf-benefit-list { display: flex; flex-direction: column; gap: 1.5rem; }

.yf-benefit-item { display: flex; gap: 16px; align-items: flex-start; }

.yf-benefit-dot {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--r-md);
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.yf-benefit-item h4 { font-size: 18px; margin-bottom: 4px; color: var(--sage-deep); }
.yf-benefit-item p  { font-size: 14px; color: var(--stone); line-height: 1.65; margin: 0; }

/* =========================================================
   CLASSES SECTION
   ========================================================= */
.yf-classes-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}

.yf-class-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all .3s;
  display: flex;
  gap: 0;
}

.yf-class-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.yf-class-thumb {
  width: 130px;
  min-height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.yf-class-body { padding: 1.5rem 1.5rem 1.5rem 0; flex: 1; }
.yf-class-body h4 { font-size: 19px; margin-bottom: 6px; color: var(--sage-deep); }
.yf-class-body p  { font-size: 13px; color: var(--stone); line-height: 1.65; margin-bottom: 12px; }

.yf-class-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.yf-class-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.yf-class-pill.green  { background: var(--sage-pale); color: var(--sage-dark); }
.yf-class-pill.earth  { background: var(--earth-pale); color: var(--earth-dark); }
.yf-class-pill.gold   { background: #fdf6e3; color: #7a5c00; }

/* =========================================================
   POSES SECTION
   ========================================================= */
.yf-poses-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.yf-pose-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: all .3s;
}

.yf-pose-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }

.yf-pose-emoji { font-size: 56px; display: block; margin-bottom: 1rem; }
.yf-pose-card h4 { font-size: 19px; margin-bottom: 6px; color: var(--sage-deep); }
.yf-pose-card p  { font-size: 13px; color: var(--stone); line-height: 1.65; }
.yf-pose-level {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.yf-level-beginner  { background: #e8f5e8; color: #2e6b2e; }
.yf-level-moderate  { background: #fdf6e3; color: #7a5c00; }
.yf-level-advanced  { background: #fce8e8; color: #6b2e2e; }

/* =========================================================
   YOGA THERAPY SECTION
   ========================================================= */
.yf-therapy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.yf-therapy-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .3s;
}

.yf-therapy-card:hover { box-shadow: var(--shadow-md); border-color: var(--sage-light); }

.yf-therapy-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--r-md);
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.yf-therapy-body h4 { font-size: 18px; margin-bottom: 6px; color: var(--sage-deep); }
.yf-therapy-body p  { font-size: 13px; color: var(--stone); line-height: 1.65; margin: 0; }

/* =========================================================
   SCHEDULE / TIMETABLE
   ========================================================= */
.yf-schedule-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

table.yf-timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 680px;
  background: #fff;
}

table.yf-timetable th {
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 10px;
  text-align: center;
  border-bottom: 2px solid var(--sage-light);
}

table.yf-timetable th:first-child { text-align: left; padding-left: 16px; }

table.yf-timetable td {
  padding: 10px 8px;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
  color: var(--stone);
  vertical-align: middle;
}

table.yf-timetable td:first-child {
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  padding-left: 16px;
  font-size: 13px;
  white-space: nowrap;
}

table.yf-timetable tr:nth-child(even) td { background: rgba(235,242,235,.3); }

.yf-tpill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .3px;
  white-space: nowrap;
}
.yf-tp-hatha    { background: var(--sage-pale); color: var(--sage-dark); }
.yf-tp-vinyasa  { background: #ece8f8; color: #4a3a8a; }
.yf-tp-yin      { background: var(--earth-pale); color: var(--earth-dark); }
.yf-tp-therapy  { background: #e8f5e8; color: #2e6b2e; }
.yf-tp-breath   { background: #fdf6e3; color: #7a5c00; }
.yf-tp-meditate { background: #fce8f5; color: #6b2e5c; }

/* =========================================================
   PRICING
   ========================================================= */
.yf-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.yf-price-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.25rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.yf-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.yf-price-card.featured {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: #fff;
}

.yf-price-featured-badge {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.yf-price-card h3 { font-size: 22px; margin-bottom: 6px; }
.yf-price-card.featured h3 { color: var(--gold-light); }
.yf-price-desc { font-size: 13px; color: var(--pebble); margin-bottom: 1.5rem; }
.yf-price-card.featured .yf-price-desc { color: rgba(255,255,255,.65); }

.yf-price-amount {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
}
.yf-price-card.featured .yf-price-amount { color: var(--gold-light); }
.yf-price-amount sup { font-size: 22px; vertical-align: top; margin-top: 12px; display: inline-block; }
.yf-price-period { font-size: 14px; color: var(--pebble); font-family: var(--font-body); font-weight: 400; margin-bottom: 1.75rem; }
.yf-price-card.featured .yf-price-period { color: rgba(255,255,255,.55); }

.yf-price-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.yf-price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 8px;
}
.yf-price-card.featured .yf-price-features li { border-bottom-color: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.yf-price-features li::before { content: "✓"; color: var(--sage); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.yf-price-card.featured .yf-price-features li::before { color: var(--gold-light); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.yf-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.yf-testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  transition: box-shadow .3s;
  position: relative;
}

.yf-testi-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--sage-pale);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.yf-testi-card:hover { box-shadow: var(--shadow-md); }

.yf-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; display: block; }

.yf-testi-card blockquote {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
  border: none;
  padding: 0;
  background: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.yf-testi-author { display: flex; align-items: center; gap: 12px; }
.yf-testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.yf-testi-name { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--charcoal); }
.yf-testi-role { font-size: 12px; color: var(--pebble); }

/* =========================================================
   INSTRUCTORS / TEAM
   ========================================================= */
.yf-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.yf-team-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: all .3s;
}

.yf-team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.yf-team-av {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  border: 4px solid var(--sage-pale);
}

.yf-team-card h4 { font-size: 20px; margin-bottom: 4px; color: var(--sage-deep); }
.yf-team-role { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; display: block; }
.yf-team-card p  { font-size: 13px; color: var(--stone); line-height: 1.65; }
.yf-team-cert {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--sage-pale);
  color: var(--sage-dark);
}

/* =========================================================
   BLOG / POSTS
   ========================================================= */
.yf-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.yf-post-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: all .3s;
}

.yf-post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.yf-post-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
}

.yf-post-body { padding: 1.5rem; }
.yf-post-cat  {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.yf-post-card h4 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; color: var(--sage-deep); }
.yf-post-card h4 a { color: inherit; }
.yf-post-card h4 a:hover { color: var(--sage); }
.yf-post-card p  { font-size: 13px; color: var(--stone); line-height: 1.65; margin-bottom: 1rem; }
.yf-post-meta { font-size: 12px; color: var(--pebble); display: flex; gap: 10px; flex-wrap: wrap; }

/* Blog layout with sidebar */
.yf-blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }

.yf-sidebar-widget {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
}
.yf-widget-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pebble);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
}
.yf-sidebar-widget ul { display: flex; flex-direction: column; gap: 8px; }
.yf-sidebar-widget li a { font-size: 14px; color: var(--stone); transition: color .2s; }
.yf-sidebar-widget li a:hover { color: var(--sage); }

/* Single post content */
.yf-post-content { max-width: 760px; margin: 0 auto; padding: 3rem 2rem; }
.yf-post-content h2,
.yf-post-content h3 { margin: 2rem 0 .75rem; color: var(--sage-deep); }
.yf-post-content p   { font-size: 16px; color: var(--stone); line-height: 1.85; margin-bottom: 1.25rem; }
.yf-post-content ul,
.yf-post-content ol  { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.yf-post-content li  { font-size: 15px; color: var(--stone); line-height: 1.75; margin-bottom: 6px; }
.yf-post-content ul li { list-style: disc; }
.yf-post-content ol li { list-style: decimal; }
.yf-post-content img  { border-radius: var(--r-md); margin: 1.5rem 0; }
.yf-post-content a    { color: var(--sage-dark); text-decoration: underline; }
.yf-post-content blockquote { border-left: 4px solid var(--sage); padding: 1rem 1.5rem; background: var(--sage-pale); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 1.5rem 0; }
.yf-post-content blockquote p { color: var(--sage-dark); font-style: italic; margin: 0; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.yf-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.yf-about-visual {
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  background: linear-gradient(145deg, var(--sage-pale), var(--cream));
  padding: 3.5rem 2.5rem;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: yf-breathe 7s ease-in-out infinite;
}

.yf-about-visual .big { font-size: 88px; display: block; animation: yf-float 4s ease-in-out infinite; }

.yf-about-content h2 { font-size: clamp(28px,3.5vw,40px); margin-bottom: 1rem; }
.yf-about-content p  { font-size: 16px; color: var(--stone); line-height: 1.85; margin-bottom: 1rem; }

.yf-highlight-box {
  background: var(--sage-pale);
  border-left: 4px solid var(--sage);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.5rem 0;
  font-family: var(--font-italic);
  font-size: 19px;
  font-style: italic;
  color: var(--sage-deep);
  line-height: 1.6;
}

.yf-milestones {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--cream-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.yf-milestone {
  background: #fff;
  padding: 1.75rem 1.25rem;
  text-align: center;
}
.yf-milestone .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--sage); display: block; line-height: 1; }
.yf-milestone .lbl { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--pebble); margin-top: 6px; display: block; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.yf-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.yf-contact-form-box {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.yf-contact-form-box h3 { font-size: 28px; margin-bottom: 8px; }
.yf-contact-form-box > p { font-size: 15px; color: var(--stone); margin-bottom: 2rem; }

.yf-form { display: flex; flex-direction: column; gap: 16px; }
.yf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.yf-form-group { display: flex; flex-direction: column; gap: 6px; }
.yf-label { font-size: 13px; font-weight: 700; color: var(--charcoal); letter-spacing: .3px; }

.yf-form input,
.yf-form select,
.yf-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mist);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--warm-white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.yf-form input:focus,
.yf-form select:focus,
.yf-form textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(124,154,126,.12); }
.yf-form input::placeholder,
.yf-form textarea::placeholder { color: var(--pebble); font-size: 13px; }
.yf-form textarea { resize: vertical; min-height: 130px; }
.yf-form select { appearance: none; cursor: pointer; }
.yf-form-submit {
  background: var(--sage-dark);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s;
  width: 100%;
  text-align: center;
}
.yf-form-submit:hover { background: var(--sage-deep); transform: translateY(-1px); }

/* Contact info sidebar */
.yf-contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.yf-cinfo-card {
  background: var(--sage-pale);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--sage-light);
}

.yf-cinfo-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 1.25rem; }
.yf-cinfo-item:last-child { margin-bottom: 0; }
.yf-cinfo-icon { width: 44px; height: 44px; min-width: 44px; border-radius: var(--r-md); background: var(--sage-light); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.yf-cinfo-item h5 { font-size: 14px; margin-bottom: 3px; color: var(--sage-deep); }
.yf-cinfo-item p, .yf-cinfo-item a { font-size: 13px; color: var(--stone); margin: 0; line-height: 1.6; }
.yf-cinfo-item a:hover { color: var(--sage); }

.yf-hours-box { background: #fff; border-radius: var(--r-lg); padding: 1.5rem; border: 1px solid var(--cream-dark); }
.yf-hours-box h5 { font-size: 15px; margin-bottom: 14px; color: var(--sage-deep); }
.yf-hour-row { display: flex; justify-content: space-between; font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--cream-dark); }
.yf-hour-row:last-child { border-bottom: none; }
.yf-hour-row .day { font-weight: 700; color: var(--charcoal); }
.yf-hour-row .time { color: var(--stone); }

/* FAQ */
.yf-faq-wrap { max-width: 780px; margin: 0 auto; }
.yf-faq-item { border: 1px solid var(--cream-dark); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; background: #fff; }
.yf-faq-item.open { border-color: var(--sage-light); }
.yf-faq-q { width: 100%; padding: 1.1rem 1.5rem; font-family: var(--font-body); font-size: 15px; font-weight: 700; text-align: left; background: #fff; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--charcoal); transition: background .2s; }
.yf-faq-q:hover { background: var(--sage-pale); }
.yf-faq-q .arr { font-size: 18px; color: var(--sage); transition: transform .25s; flex-shrink: 0; margin-left: 12px; }
.yf-faq-a { display: none; padding: 0 1.5rem 1.1rem; font-size: 14px; color: var(--stone); line-height: 1.8; }
.yf-faq-item.open .yf-faq-a { display: block; }
.yf-faq-item.open .arr { transform: rotate(180deg); }

/* =========================================================
   CTA BAND
   ========================================================= */
.yf-cta-band {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage-dark) 50%, #3d6040 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.yf-cta-band::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -100px; left: -80px;
}
.yf-cta-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -60px; right: -60px;
}

.yf-cta-band h2 { color: #fff; font-size: clamp(28px,4vw,48px); margin-bottom: 14px; position: relative; z-index: 1; }
.yf-cta-band p  { color: rgba(255,255,255,.8); font-size: 17px; max-width: 520px; margin: 0 auto 2.5rem; font-weight: 300; position: relative; z-index: 1; }
.yf-cta-band .yf-btn-row { position: relative; z-index: 1; }

/* =========================================================
   FOOTER
   ========================================================= */
#yf-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
}

.yf-footer-top { padding: 4rem 0; }

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

.yf-footer-logo-wrap .yf-logo-name { color: #fff; font-size: 22px; }
.yf-footer-logo-wrap .yf-logo-tagline { color: var(--sage-light); }
.yf-footer-logo-wrap p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; margin-top: 14px; max-width: 260px; }

.yf-footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 18px;
}

.yf-footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .2s; }
.yf-footer-col a:hover { color: var(--sage-light); }

.yf-footer-col p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }

.yf-footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.yf-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: all .2s;
  text-decoration: none;
}
.yf-social-link:hover { background: var(--sage); color: #fff; }

.yf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.yf-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.yf-footer-links { display: flex; gap: 1.5rem; }
.yf-footer-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.yf-footer-links a:hover { color: var(--sage-light); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes yf-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@keyframes yf-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes yf-fade-in { from { opacity:0; } to { opacity:1; } }

@keyframes yf-slide-left {
  from { opacity:0; transform: translateX(20px); }
  to   { opacity:1; transform: translateX(0); }
}

.yf-animate { animation: yf-fade-up .7s ease both; }
.yf-delay-1 { animation-delay: .1s; }
.yf-delay-2 { animation-delay: .2s; }
.yf-delay-3 { animation-delay: .3s; }
.yf-delay-4 { animation-delay: .4s; }
.yf-delay-5 { animation-delay: .5s; }

/* =========================================================
   MISC / UTILITIES
   ========================================================= */
.yf-divider { border: none; border-top: 1px solid var(--cream-dark); margin: 2rem 0; }
.yf-text-center { text-align: center; }
.yf-text-sage   { color: var(--sage-dark) !important; }
.yf-text-earth  { color: var(--earth) !important; }
.yf-text-muted  { color: var(--stone) !important; }
.yf-mb-0 { margin-bottom: 0 !important; }
.yf-mt-2 { margin-top: 2rem; }
.yf-mt-3 { margin-top: 3rem; }

.notice-bar {
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 14px;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

/* Page hero for inner pages */
.yf-page-hero {
  background: linear-gradient(160deg, var(--earth-pale) 0%, var(--cream) 40%, var(--sage-pale) 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.yf-page-hero h1 { color: var(--sage-deep); margin-bottom: 14px; }
.yf-page-hero p  { font-size: 17px; color: var(--stone); max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.8; }

/* =========================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  #yf-header .yf-container { padding: 0 1.5rem; }
  .yf-hero-visual { width: 45%; }
  .yf-hero-img-wrap { width: 420px; height: 420px; font-size: 130px; }
  .yf-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .yf-milestones  { grid-template-columns: repeat(2,1fr); }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================= */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  #yf-nav-menu    { display: none; }
  .yf-hamburger   { display: flex; }
  .yf-nav-btn.desktop-only { display: none; }
  .yf-container   { padding: 0 1.25rem; }
  .yf-container-sm { padding: 0 1.25rem; }

  /* Sections */
  .yf-section    { padding: 3.5rem 0; }
  .yf-section-lg { padding: 4.5rem 0; }

  /* Hero */
  .yf-hero {
    min-height: auto;
    padding: 4rem 1.25rem 3rem;
    text-align: center;
  }
  .yf-hero-content { max-width: 100%; padding: 0; }
  .yf-hero-visual  { display: none; }
  .yf-hero-trust   { justify-content: center; }
  .yf-btn-row      { justify-content: center; flex-direction: column; align-items: center; }

  /* Stats */
  .yf-stats-grid { grid-template-columns: repeat(2,1fr); }

  /* Grids → single col */
  .yf-services-grid,
  .yf-poses-grid,
  .yf-team-grid,
  .yf-testi-grid,
  .yf-posts-grid,
  .yf-pricing-grid,
  .yf-therapy-grid,
  .yf-classes-grid { grid-template-columns: 1fr; }

  /* 2-col grids → stack */
  .yf-benefits-wrap,
  .yf-about-story,
  .yf-contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Blog layout */
  .yf-blog-layout { grid-template-columns: 1fr; }

  /* Milestones */
  .yf-milestones { grid-template-columns: repeat(2,1fr); }

  /* Form */
  .yf-form-row { grid-template-columns: 1fr; }

  /* CTA */
  .yf-cta-band { padding: 4rem 1.25rem; }
  .yf-cta-band .yf-btn-row { flex-direction: column; align-items: center; }

  /* Buttons full width on mobile */
  .yf-btn { width: 100%; display: block; text-align: center; }
  .yf-btn-row { width: 100%; }

  /* Footer */
  .yf-footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .yf-footer-bottom { flex-direction: column; text-align: center; }
  .yf-footer-links  { justify-content: center; }
  .yf-footer-socials { justify-content: center; }

  /* Page hero */
  .yf-page-hero { padding: 3.5rem 1.25rem 3rem; }

  /* Timetable scroll */
  .yf-schedule-wrap { -webkit-overflow-scrolling: touch; }

  /* Class card — stack */
  .yf-class-card { flex-direction: column; }
  .yf-class-thumb { width: 100%; height: 100px; }
  .yf-class-body  { padding: 1.25rem; }

  /* Topbar */
  .yf-topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
}

/* =========================================================
   RESPONSIVE — SMALL (max 480px)
   ========================================================= */
@media (max-width: 480px) {
  .yf-stats-grid    { grid-template-columns: 1fr 1fr; }
  .yf-milestones    { grid-template-columns: 1fr 1fr; }
  .yf-section-head h2 { font-size: 26px; }
  .yf-footer-grid   { grid-template-columns: 1fr; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  #yf-header, .yf-hamburger, #yf-mobile-menu,
  .yf-cta-band, #yf-footer, .yf-btn-row { display: none !important; }
  body { font-size: 11pt; color: #000; }
  h1,h2,h3,h4 { color: #000; }
  a { color: #000; text-decoration: underline; }
  .yf-container { max-width: 100%; padding: 0; }
}
