/*
Theme Name: BossyFit by Mina
Theme URI: https://bossyfitbymina.com
Author: BossyFit by Mina
Author URI: https://bossyfitbymina.com
Description: A fully custom WordPress theme for BossyFit by Mina — a bold, feminine fitness and wellness brand built for busy women ready to become the boss of their health journey. Auto-installs all pages, menus, and categories on activation.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
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: bossyfit
Tags: fitness, wellness, custom-colors, custom-menu, featured-images, woocommerce, responsive-layout, animation
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --gold:          #c9843a;
  --gold-light:    #e8b86d;
  --gold-pale:     #fdf6ee;
  --gold-dark:     #a0621f;
  --rose-dark:     #2a0f1e;
  --rose-mid:      #4a1828;
  --rose-deep:     #8a4c6b;
  --rose-soft:     #7a4060;
  --rose-pale:     #fdf0f5;
  --pink-bright:   #d4537e;
  --white:         #ffffff;
  --off-white:     #fafafa;
  --black:         #111111;
  --text:          #1e1e1e;
  --text-muted:    #6a6a6a;
  --border:        #f0d6e0;
  --border-light:  #ececec;
  --shadow-xs:     0 1px 6px rgba(42,15,30,0.05);
  --shadow-sm:     0 2px 16px rgba(42,15,30,0.08);
  --shadow-md:     0 8px 36px rgba(42,15,30,0.12);
  --shadow-lg:     0 20px 60px rgba(42,15,30,0.16);
  --r-xs:          4px;
  --r-sm:          8px;
  --r-md:          12px;
  --r-lg:          20px;
  --r-xl:          28px;
  --r-full:        9999px;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Montserrat', system-ui, sans-serif;
  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
  --t:             0.28s;
  --max:           1200px;
  --nav-h:         72px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--rose-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p  { font-size: 1rem; line-height: 1.9; color: var(--text-muted); font-weight: 300; }
strong { font-weight: 600; color: inherit; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.wrap          { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.wrap-sm       { width: 100%; max-width: 800px;     margin: 0 auto; padding: 0 2rem; }
.wrap-xs       { width: 100%; max-width: 640px;     margin: 0 auto; padding: 0 2rem; }
.section       { padding: 5rem 0; }
.section-lg    { padding: 7rem 0; }
.section-sm    { padding: 3rem 0; }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

/* ═══════════════════════════════════════════════════════════
   DESIGN ATOMS
═══════════════════════════════════════════════════════════ */

/* Tag */
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; font-family: var(--font-sans);
}
.tag::before, .tag::after { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.tag-light { color: var(--gold-light); }
.tag-light::before, .tag-light::after { background: var(--gold-light); }

/* Section header */
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-header .tag { justify-content: center; margin-bottom: 0.75rem; }
.sec-header h2 { margin-top: 0; }
.sec-header p  { max-width: 540px; margin: 1rem auto 0; }

/* Divider */
.divider { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 1.25rem 0; }
.divider-center { margin: 1.25rem auto; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.85rem 2.1rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  font-family: var(--font-sans); border-radius: var(--r-xs);
  transition: all var(--t) var(--ease); white-space: nowrap; line-height: 1;
  border: 2px solid transparent; cursor: pointer;
}
.btn-gold   { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white) !important; }
.btn-gold:hover { opacity: .86; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,132,58,.35); }
.btn-dark   { background: var(--rose-dark); color: var(--white) !important; }
.btn-dark:hover { background: var(--rose-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--rose-deep) !important; border-color: var(--border); }
.btn-outline:hover { background: var(--rose-pale); border-color: var(--rose-deep); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: var(--white) !important; border-color: rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-lg  { padding: 1.05rem 2.6rem; font-size: 0.72rem; }
.btn-sm  { padding: 0.6rem 1.4rem; font-size: 0.6rem; }

/* ═══════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════ */
.card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-pad { padding: 1.75rem; }

/* ═══════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════ */
.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-size: 0.62rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--rose-deep); font-weight: 700; margin-bottom: .5rem;
}
.input {
  width: 100%; padding: .78rem 1rem;
  font-size: .88rem; font-family: var(--font-sans);
  border: 1px solid var(--border); border-radius: var(--r-xs);
  background: var(--white); color: var(--rose-dark);
  outline: none; transition: border-color var(--t) var(--ease);
}
.input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,132,58,.12); }
textarea.input { min-height: 130px; resize: vertical; }
select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238a4c6b'%3E%3Cpath d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; background: var(--gold-pale); border: 1px solid var(--gold); border-radius: var(--r-xs); padding: 1rem 1.25rem; font-size: .9rem; color: var(--gold-dark); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   BADGES & PILLS
═══════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: .32rem .9rem; border-radius: var(--r-full);
  font-size: .62rem; font-weight: 700; letter-spacing: .5px;
  background: var(--rose-pale); color: var(--rose-deep); border: .5px solid var(--border);
}
.badge-gold { background: var(--gold-pale); color: var(--gold); border-color: rgba(201,132,58,.2); }
.badge-dark { background: var(--rose-dark); color: var(--gold-light); border-color: transparent; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: .5px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
  height: var(--nav-h);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 2rem; max-width: var(--max); margin: 0 auto;
}
.site-logo a {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: .4px;
}

/* Nav */
.nav-primary { display: flex; align-items: center; }
#primary-menu { display: flex; align-items: center; gap: .2rem; }
#primary-menu > li > a {
  display: block; padding: .5rem .82rem;
  font-size: .65rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--rose-deep); border-radius: var(--r-xs);
  transition: color var(--t), background var(--t);
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a { color: var(--gold); }
#primary-menu > li.nav-cta > a {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important; margin-left: .6rem; padding: .5rem 1.3rem;
}
#primary-menu > li.nav-cta > a:hover { opacity: .86; }

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer; z-index: 1100;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--rose-deep); border-radius: 2px; transition: all var(--t); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--white); z-index: 999; overflow-y: auto;
  flex-direction: column; padding: 2rem;
  border-top: .5px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 0; font-size: .78rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--rose-deep);
  border-bottom: .5px solid var(--border); display: block;
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta { margin-top: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--rose-pale) 0%, var(--gold-pale) 55%, var(--rose-pale) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(42,15,30,.84) 0%, rgba(42,15,30,.46) 55%, rgba(42,15,30,.1) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-content .tag { color: var(--gold-light); margin-bottom: .75rem; }
.hero-content .tag::before, .hero-content .tag::after { background: var(--gold-light); }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero-content p   { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-btns        { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase;
}
.hero-scroll-line { display: block; width: 1px; height: 44px; background: rgba(255,255,255,.25); animation: scrollDrop 2.2s ease infinite; }
@keyframes scrollDrop { 0%,100%{transform:scaleY(.3) translateY(-8px);opacity:.3} 50%{transform:scaleY(1);opacity:1} }

/* Stat pills on hero */
.hero-stats { display: flex; gap: 1.25rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: .6rem; }
.hero-stat-num { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: .62rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.55); line-height: 1.3; }

/* ═══════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════ */
.marquee-bar { background: linear-gradient(135deg, var(--rose-dark), var(--rose-mid)); padding: .9rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
.marquee-item  { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; flex-shrink: 0; display: flex; align-items: center; gap: .9rem; }
.marquee-item::before { content: '✦'; color: var(--gold); font-size: .5rem; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-box {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--rose-pale), var(--gold-pale));
  border: .5px solid var(--border);
}
.why-img-box img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; width: 100px; height: 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-md); font-family: var(--font-sans);
}
.why-badge strong { font-size: 1.5rem; font-weight: 700; line-height: 1; color: var(--white); }
.why-badge span   { font-size: .58rem; letter-spacing: 1px; text-transform: uppercase; opacity: .9; }
.why-text h2 { margin-bottom: 1rem; }
.why-text p  { margin-bottom: 1rem; }
.why-pills   { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }

.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 5rem; }
.pillar-card {
  background: var(--rose-pale); border: .5px solid var(--border); border-radius: var(--r-md);
  padding: 2.5rem 2rem; text-align: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.pillar-icon {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem; border: .5px solid var(--border); box-shadow: var(--shadow-xs);
}
.pillar-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }

/* ═══════════════════════════════════════════════════════════
   COACHING SECTION
═══════════════════════════════════════════════════════════ */
.coaching-section { background: linear-gradient(160deg, var(--rose-dark), var(--rose-mid)); }
.coaching-section h2,
.coaching-section h3,
.coaching-section h4,
.coaching-section h5 { color: var(--white); }
.coaching-section p   { color: rgba(255,255,255,.58); }
.coaching-section .sec-header p { color: rgba(255,255,255,.55); }
.coaching-section strong { color: var(--white); }
.coaching-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.coaching-card {
  background: rgba(255,255,255,.06); border: .5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 2.5rem 2rem;
  transition: background var(--t), transform var(--t);
}
.coaching-card:hover   { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.coaching-card.featured{ border-color: var(--gold); background: rgba(201,132,58,.08); }
.coaching-card-badge   { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); font-size: .58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: .28rem .85rem; border-radius: var(--r-full); margin-bottom: 1.1rem; }
.coaching-icon  { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem; }
.coaching-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .55rem; }
.coaching-card p  { color: rgba(255,255,255,.58); font-size: .88rem; margin-bottom: 1.1rem; }
.coaching-price { font-size: 1.9rem; font-weight: 700; color: var(--white); font-family: var(--font-sans); }
.coaching-price span { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 400; }
.coaching-feats { margin: 1rem 0 1.5rem; }
.coaching-feats li {
  font-size: .84rem; color: rgba(255,255,255,.68); padding: .38rem 0;
  border-bottom: .5px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 8px;
}
.coaching-feats li::before { content: '✦'; color: var(--gold); font-size: .55rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   CHALLENGE BANNER
═══════════════════════════════════════════════════════════ */
.challenge-banner {
  background: linear-gradient(120deg, var(--rose-dark) 0%, var(--rose-mid) 40%, #6a2040 100%);
  padding: 4rem 0; overflow: hidden; position: relative;
}
.challenge-banner h1,
.challenge-banner h2,
.challenge-banner h3,
.challenge-banner h4 { color: var(--white); }
.challenge-banner p   { color: rgba(255,255,255,.65); }
.challenge-banner strong { color: var(--white); }
.challenge-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,132,58,.15), transparent 60%);
}
.challenge-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.challenge-meta { display: flex; gap: 2rem; margin: 1.25rem 0; flex-wrap: wrap; }
.challenge-meta-item { display: flex; flex-direction: column; }
.challenge-meta-item strong { font-size: 1.2rem; color: var(--white); font-family: var(--font-sans); font-weight: 700; }
.challenge-meta-item span  { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════════════════ */
.posts-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.post-card   { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-thumb  { position: relative; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(160deg, var(--rose-pale), var(--gold-pale)); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-cat    { position: absolute; top: 1rem; left: 1rem; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); font-size: .58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: .28rem .75rem; border-radius: var(--r-full); }
.post-body   { padding: 1.5rem; }
.post-meta   { font-size: .68rem; color: #a07080; margin-bottom: .5rem; }
.post-body h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.35; }
.post-body h3 a { color: var(--rose-dark); }
.post-body h3 a:hover { color: var(--gold); }
.post-body p  { font-size: .85rem; margin-bottom: 1rem; }
.read-more    { font-size: .62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; }
.read-more:hover { color: var(--rose-dark); }

/* ═══════════════════════════════════════════════════════════
   RESOURCES GRID
═══════════════════════════════════════════════════════════ */
.resources-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.resource-card   { background: var(--rose-pale); border: .5px solid var(--border); border-radius: var(--r-md); padding: 2rem 1.5rem; text-align: center; transition: transform var(--t); }
.resource-card:hover { transform: translateY(-4px); }
.resource-icon   { font-size: 2.6rem; margin-bottom: 1rem; display: block; }
.resource-card h4 { font-size: .98rem; margin-bottom: .5rem; }
.resource-card p  { font-size: .84rem; margin-bottom: 1.25rem; }
.resource-badge  { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); font-size: .58rem; font-weight: 700; padding: .25rem .7rem; border-radius: var(--r-full); letter-spacing: 1px; text-transform: uppercase; margin-bottom: .75rem; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.testi-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); padding: 2rem; }
.testi-stars { color: var(--gold); font-size: .88rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-quote {
  font-size: .94rem; color: var(--rose-soft); line-height: 1.82; font-style: italic; font-weight: 300;
  margin-bottom: 1.5rem; position: relative; padding-left: 1rem;
}
.testi-quote::before { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, var(--gold), transparent); border-radius: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-pale), var(--gold-pale)); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; color: var(--gold); border: .5px solid var(--border); flex-shrink: 0; overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name   { font-size: .84rem; font-weight: 600; color: var(--rose-dark); }
.testi-label  { font-size: .72rem; color: #a07080; }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════════ */
.newsletter-section { background: linear-gradient(135deg, var(--rose-dark), var(--rose-mid)); text-align: center; }
.newsletter-section h1,
.newsletter-section h2,
.newsletter-section h3,
.newsletter-section h4 { color: var(--white); }
.newsletter-section p       { color: rgba(255,255,255,.58); max-width: 500px; margin: 1rem auto 2rem; }
.newsletter-section strong  { color: var(--white); }
.nl-form { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; }
.nl-form .input { flex: 1; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); color: var(--white); }
.nl-form .input::placeholder { color: rgba(255,255,255,.38); }
.nl-form .input:focus { border-color: var(--gold); }
.nl-trust { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.1rem; flex-wrap: wrap; }
.nl-trust span { font-size: .68rem; color: rgba(255,255,255,.38); display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, var(--rose-pale) 0%, var(--gold-pale) 50%, var(--rose-pale) 100%);
  padding: 5rem 0; text-align: center;
}
.page-hero h1 { margin-top: .25rem; color: var(--rose-dark); }
.page-hero h2 { color: var(--rose-dark); }
.page-hero .tag { justify-content: center; margin-bottom: .75rem; }
.page-hero p  { max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   START HERE PAGE
═══════════════════════════════════════════════════════════ */
.start-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.start-card {
  background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md);
  padding: 2.25rem 2rem; text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 1rem; transition: all var(--t);
  cursor: pointer; text-decoration: none;
}
.start-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.start-card-icon { font-size: 2.5rem; width: 72px; height: 72px; border-radius: 50%; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; border: .5px solid var(--border); }
.start-card h3 { font-size: 1.1rem; margin: 0; }
.start-card p  { font-size: .84rem; margin: 0; }
.start-card .arrow { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-grid   { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-box  { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--rose-pale), var(--gold-pale)); }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -1.25rem; right: -1.25rem; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; width: 98px; height: 98px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); box-shadow: var(--shadow-md); }
.about-badge strong { font-size: 1.5rem; font-weight: 700; line-height: 1; font-family: var(--font-sans); color: var(--white); }
.about-badge span   { font-size: .58rem; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-sans); }
.cert-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.cert-card    { background: var(--rose-pale); border: .5px solid var(--border); border-radius: var(--r-md); padding: 1.75rem 1.25rem; text-align: center; }
.cert-card .ci { font-size: 2rem; margin-bottom: .75rem; display: block; }
.cert-card h4 { font-size: .95rem; margin-bottom: .35rem; }
.cert-card p  { font-size: .8rem; }
.phil-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.phil-card { padding: 2rem; border-left: 3px solid var(--gold); background: rgba(253,240,245,.6); border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.phil-num  { font-family: var(--font-serif); font-size: 2.75rem; font-weight: 700; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: .75rem; }
.phil-card h4 { font-size: 1rem; margin-bottom: .5rem; }

/* ═══════════════════════════════════════════════════════════
   COACHING PAGE
═══════════════════════════════════════════════════════════ */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; border-bottom: .5px solid var(--border); }
.service-row:last-child { border-bottom: none; }
.service-row.flip { direction: rtl; }
.service-row.flip > * { direction: ltr; }
.service-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(160deg, var(--rose-pale), var(--gold-pale)); }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-feats li { font-size: .88rem; color: var(--text-muted); padding: .38rem 0; border-bottom: .5px solid var(--border-light); display: flex; align-items: center; gap: 8px; }
.service-feats li::before { content: '✦'; color: var(--gold); font-size: .55rem; flex-shrink: 0; }
.price-tag { font-size: 2rem; font-weight: 700; color: var(--rose-dark); font-family: var(--font-sans); }
.price-tag small { font-size: .82rem; color: var(--text-muted); font-weight: 400; }

/* FAQ */
.faq-list    { max-width: 780px; margin: 0 auto; }
.faq-item    { border-bottom: .5px solid var(--border); overflow: hidden; }
.faq-q       { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; font-family: var(--font-sans); font-size: .95rem; font-weight: 600; color: var(--rose-dark); cursor: pointer; text-align: left; gap: 1rem; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform var(--t); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: .9rem; color: var(--text-muted); line-height: 1.82; max-height: 0; overflow: hidden; transition: max-height .42s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.25rem; }

/* App form */
.app-form-wrap { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-xl); padding: 2.75rem; }

/* ═══════════════════════════════════════════════════════════
   CHALLENGES PAGE
═══════════════════════════════════════════════════════════ */
.challenge-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.challenge-card {
  background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: all var(--t);
}
.challenge-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.challenge-card-top {
  padding: 2.5rem 2rem; background: linear-gradient(135deg, var(--rose-dark), var(--rose-mid));
  position: relative; overflow: hidden;
}
.challenge-card-top h1,
.challenge-card-top h2,
.challenge-card-top h3,
.challenge-card-top h4 { color: var(--white); }
.challenge-card-top p   { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }
.challenge-card-top strong { color: var(--white); }
.challenge-card-top::after { content: ''; position: absolute; right: -2rem; top: -2rem; width: 120px; height: 120px; border-radius: 50%; background: rgba(201,132,58,.12); }
.challenge-card-bottom { padding: 1.75rem 2rem; }
.challenge-feats li { font-size: .85rem; color: var(--text-muted); padding: .3rem 0; display: flex; align-items: center; gap: 8px; }
.challenge-feats li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: .8rem; }
.challenge-signup { background: var(--rose-pale); border: .5px solid var(--border); border-radius: var(--r-md); padding: 2rem; margin-top: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   RESOURCES PAGE
═══════════════════════════════════════════════════════════ */
.filter-bar { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { padding: .55rem 1.25rem; border-radius: var(--r-full); font-size: .65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--border); color: var(--rose-deep); background: var(--white); cursor: pointer; transition: all var(--t); }
.filter-btn:hover, .filter-btn.active { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white) !important; border-color: transparent; }
.resource-lg-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: all var(--t); }
.resource-lg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.resource-lg-thumb { aspect-ratio: 16/9; background: linear-gradient(160deg, var(--rose-pale), var(--gold-pale)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.resource-lg-body { padding: 1.5rem; }
.resource-lg-body h4 { font-size: .98rem; margin-bottom: .4rem; }
.resource-lg-body p  { font-size: .84rem; margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════════════════════ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; align-items: start; }
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }
.widget { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-title { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-family: var(--font-sans); font-weight: 700; margin-bottom: 1rem; }
.search-wrap { display: flex; }
.search-wrap .input { border-radius: var(--r-xs) 0 0 var(--r-xs); }
.search-wrap .btn   { border-radius: 0 var(--r-xs) var(--r-xs) 0; padding: .78rem 1rem; }
.cat-list li { border-bottom: .5px solid var(--border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a { display: flex; align-items: center; justify-content: space-between; padding: .6rem 0; font-size: .84rem; color: var(--text-muted); }
.cat-list a:hover { color: var(--gold); }
.cat-list .count { font-size: .72rem; color: #c0a0b0; }
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; }
.pagination .page-numbers { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-xs); font-size: .8rem; font-weight: 600; color: var(--rose-deep); border: .5px solid var(--border); transition: all var(--t); }
.pagination .page-numbers:hover, .pagination .current { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); border-color: transparent; }

/* Single post */
.single-wrap { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.post-hero-thumb { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/7; margin-bottom: 2.5rem; }
.post-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content p  { margin-bottom: 1.25rem; font-size: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { font-size: .95rem; color: var(--text-muted); margin-bottom: .4rem; line-height: 1.75; }
.entry-content a  { color: var(--gold); }
.entry-content blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; background: var(--rose-pale); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 1.5rem 0; font-style: italic; color: var(--rose-soft); }

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════════════════════════ */
.shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.product-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: all var(--t); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-thumb { aspect-ratio: 1; background: linear-gradient(160deg, var(--rose-pale), var(--gold-pale)); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb .sale-badge { position: absolute; top: .75rem; left: .75rem; background: var(--pink-bright); color: var(--white); font-size: .58rem; font-weight: 700; padding: .25rem .6rem; border-radius: var(--r-full); }
.product-body { padding: 1.25rem; }
.product-cat  { font-size: .62rem; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: .35rem; }
.product-body h4 { font-size: .95rem; margin-bottom: .45rem; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--rose-dark); font-family: var(--font-sans); margin-bottom: .75rem; }
.product-price del { font-size: .85rem; color: #b0b0b0; font-weight: 400; margin-right: .35rem; }

/* WooCommerce override */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; list-style: none; }
.woocommerce ul.products li.product { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: all var(--t); }
.woocommerce ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.woocommerce ul.products li.product a img { width: 100%; height: 220px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-serif); padding: 1rem 1rem .25rem; color: var(--rose-dark); font-size: .98rem; }
.woocommerce ul.products li.product .price { padding: 0 1rem .75rem; color: var(--gold); font-weight: 700; }
.woocommerce ul.products li.product .button { margin: 0 1rem 1rem; display: block; text-align: center; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); padding: .6rem 1rem; border-radius: var(--r-xs); font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-detail  { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon    { width: 46px; height: 46px; border-radius: 50%; background: var(--rose-pale); border: .5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: .72rem; letter-spacing: .5px; font-weight: 700; color: var(--rose-dark); margin-bottom: .2rem; }
.contact-detail span { font-size: .9rem; color: var(--text-muted); }
.social-links { display: flex; gap: .6rem; margin-top: 2rem; }
.social-link  { width: 40px; height: 40px; border-radius: 50%; border: .5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--rose-deep); font-size: 1rem; transition: all var(--t); }
.social-link:hover { background: var(--rose-pale); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: .75rem; }
.gallery-item  { border-radius: var(--r-sm); overflow: hidden; background: linear-gradient(160deg, var(--rose-pale), var(--gold-pale)); transition: all var(--t); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-sm); }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item img, .gallery-item .gallery-ph { width: 100%; height: 100%; object-fit: cover; }
.gallery-ph { display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--border); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer { background: var(--rose-dark); }
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 { color: var(--gold-light); }
.site-footer p  { color: rgba(255,255,255,.44); }
.site-footer strong { color: var(--white); }
.footer-top  { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding: 4.5rem 0 3.5rem; }
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: .5px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .9rem; transition: all var(--t); }
.footer-social a:hover { background: rgba(201,132,58,.18); color: var(--gold-light); border-color: var(--gold); }
.footer-col h5 { font-family: var(--font-sans); font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .84rem; color: rgba(255,255,255,.44); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-info { font-size: .84rem; color: rgba(255,255,255,.44); line-height: 1.9; }
.footer-bottom { border-top: .5px solid rgba(255,255,255,.06); padding: 1.35rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.28); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.28); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════ */
[data-anim] { opacity: 0; will-change: opacity, transform; transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-anim="up"]    { transform: translateY(34px); }
[data-anim="left"]  { transform: translateX(34px); }
[data-anim="right"] { transform: translateX(-34px); }
[data-anim="scale"] { transform: scale(.93); }
[data-anim].visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-anim] { opacity:1!important; transform:none!important; transition:none!important; } }

/* ═══════════════════════════════════════════════════════════
   DARK SECTION UTILITY — applies to any dark-bg section
   Ensures text is always visible regardless of global defaults
═══════════════════════════════════════════════════════════ */
.bf-dark-cta,
.bf-dark-cta h1,
.bf-dark-cta h2,
.bf-dark-cta h3,
.bf-dark-cta h4,
.bf-dark-cta h5 { color: var(--white); }
.bf-dark-cta p  { color: rgba(255,255,255,.65); }
.bf-dark-cta strong { color: var(--white); }
.bf-dark-cta a:not(.btn) { color: var(--gold-light); }

/* Testimonials section on dark-adjacent light bg - ensure names are dark */
.testi-name   { font-size: .84rem; font-weight: 600; color: var(--rose-dark) !important; }
.testi-label  { font-size: .72rem; color: #a07080 !important; }

/* Start card text must stay dark on white card bg */
.start-card h3 { color: var(--rose-dark); }
.start-card p  { color: var(--text-muted); }

/* Phil card text on light-ish background */
.phil-card h4 { color: var(--rose-dark); }
.phil-card p  { color: var(--text-muted); }

/* Resource card text */
.resource-card h4 { color: var(--rose-dark); }
.resource-card p  { color: var(--text-muted); }

/* Cert card text */
.cert-card h4 { color: var(--rose-dark); }
.cert-card p  { color: var(--text-muted); }

/* Pillar card */
.pillar-card h3 { color: var(--rose-dark); }
.pillar-card p  { color: var(--text-muted); }

/* Post card body */
.post-body p { color: var(--text-muted); }

/* Widget on dark bg in blog sidebar */
.widget h4, .widget-title { color: var(--gold); }

/* Contact page - detail strong labels on white bg */
.contact-detail strong { color: var(--rose-dark) !important; }

/* Footer overrides - ensure footer-col items stay light */
.footer-col h5 { color: var(--gold-light) !important; }
.footer-col ul li a { color: rgba(255,255,255,.44); }
.footer-contact-info { color: rgba(255,255,255,.44); }


.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .shop-grid  { grid-template-columns: repeat(3,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3,1fr); }
  .resources-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid   { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .why-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-img-box  { max-width: 420px; margin: 0 auto; aspect-ratio: 4/3; }
  .why-badge    { bottom: -1rem; right: 0; }
  .pillars      { grid-template-columns: 1fr; }
  .coaching-grid{ grid-template-columns: 1fr; }
  .posts-grid   { grid-template-columns: repeat(2,1fr); }
  .testi-grid   { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-badge  { bottom: -1rem; right: .5rem; }
  .cert-grid    { grid-template-columns: repeat(2,1fr); }
  .phil-grid    { grid-template-columns: 1fr; }
  .service-row, .service-row.flip { grid-template-columns: 1fr; direction: ltr; }
  .blog-layout  { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .challenge-cards { grid-template-columns: 1fr; }
  .challenge-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .shop-grid    { grid-template-columns: repeat(2,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .wrap { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  #primary-menu { display: none; }
  .burger { display: flex; }
  .hero   { min-height: 100svh; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .posts-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .filter-bar { gap: .5rem; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
