/* =============================================================
   KEVICS GOLF ACADEMY — Master Stylesheet
   Version: 3.0
   Pages: index.html | junior-golf-academy/index.html |
          junior-golf-academy/camps/index.html |
          forms/consultation.html | forms/thankyou.html
   Fonts: Playfair Display + DM Sans (loaded via Google Fonts)
   CSS location: root/css/styles.css
   ============================================================= */


/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
nav ul, nav ul li { margin: 0; padding: 0; list-style: none; }


/* ── DESIGN TOKENS ── */
:root {
  --green:       #2D5016;
  --green-mid:   #4A7C2A;
  --green-light: #7DB84A;
  --cream:       #F7F3EC;
  --cream-dark:  #EDE8DC;
  --gold:        #C8A84B;
  --gold-light:  #E8C96A;
  --dark:        #1A1A14;
  --text:        #2C2C22;
  --text-muted:  #6B6B55;
  --white:       #FFFFFF;
  --font-disp:   'Playfair Display', serif;
  --font-body:   'DM Sans', sans-serif;
}


/* ── BASE ── */
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; }


/* ── LAYOUT ── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 28px; }


/* =============================================================
   BUTTONS
   ============================================================= */
.btn-green {
  display: inline-block; background: var(--green); color: var(--cream);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 1.75rem; border: none; border-radius: 2px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.9rem 1.9rem; border: none; border-radius: 2px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold svg { width: 15px; height: 15px; }

.btn-outline {
  display: inline-block; background: transparent; color: var(--cream);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.82rem 1.7rem; border: 1.5px solid rgba(247,243,236,0.45); border-radius: 2px;
  cursor: pointer; transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--cream); }

.hero-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--gold); color: var(--dark);
  padding: 1rem 2rem; border: none; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
}
.hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.hero-btn svg  { width: 16px; height: 16px; }


/* =============================================================
   SECTION LABELS & TITLES
   ============================================================= */
.section-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.75rem; }
.section-label.light { color: var(--gold); }
.section-title { font-family: var(--font-disp); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.1; color: var(--green); margin-bottom: 0.75rem; }
.section-title.light { color: var(--cream); }
.section-title em { font-style: italic; color: var(--gold-light); }
.section-sub, .section-desc { font-size: 1rem; line-height: 1.75; color: var(--text-muted); max-width: 540px; margin-bottom: 2.5rem; }
.section-sub.light, .section-desc.light { color: rgba(247,243,236,0.65); }


/* =============================================================
   HERO — SHARED
   ============================================================= */
.hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; background: var(--green); }
.hero-video-zone { position: absolute; inset: 0; z-index: 0; }
.hero-video-zone video { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-video-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(26,26,20,0.88) 0%, rgba(45,80,22,0.80) 55%, rgba(26,26,20,0.55) 100%); }
.hero-gold-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); z-index: 3; }

.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: 96px 32px 80px; max-width: 1140px; margin: 0 auto; width: 100%; }

.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 8rem 3rem 5rem 4rem; position: relative; z-index: 2; max-width: 640px; }

.hero-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; animation: fadeUp 0.6s ease 0.1s both; }

.hero h1, .hero-title { font-family: var(--font-disp); color: var(--cream); font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 900; line-height: 1.05; margin-bottom: 1.2rem; animation: fadeUp 0.6s ease 0.25s both; }
.hero h1 em, .hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub { color: rgba(247,243,236,0.7); font-size: 1rem; line-height: 1.75; max-width: 420px; margin-bottom: 2rem; font-weight: 300; animation: fadeUp 0.6s ease 0.4s both; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; animation: fadeUp 0.6s ease 0.5s both; }

.hero-stats { display: flex; gap: 0; flex-wrap: wrap; animation: fadeUp 0.6s ease 0.6s both; }
.hero-stat { padding: 14px 22px; border: 1px solid rgba(200,168,75,0.15); border-right: none; background: rgba(26,26,20,0.4); }
.hero-stat:last-child { border-right: 1px solid rgba(200,168,75,0.15); }
.hero-stat-num   { font-family: var(--font-disp); font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,243,236,0.45); margin-top: 3px; }

.stat { display: flex; flex-direction: column; }
.stat-num   { font-family: var(--font-disp); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.05em; color: rgba(247,243,236,0.6); margin-top: 0.25rem; }

.hero-card { background: rgba(26,26,20,0.72); border: 1px solid rgba(200,168,75,0.2); border-top: 2px solid var(--gold); padding: 2rem 1.75rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.hero-card-tag { background: var(--gold); color: var(--dark); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 12px; border-radius: 2px; display: inline-block; margin-bottom: 1rem; }
.hero-card h3 { font-family: var(--font-disp); font-size: 1.35rem; font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; }
.hero-card p  { color: rgba(247,243,236,0.55); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.hero-card-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.5rem; }
.hero-card-features li { display: flex; align-items: flex-start; gap: 8px; color: rgba(247,243,236,0.72); font-size: 0.85rem; line-height: 1.5; }
.hero-card-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.hero-live { display: flex; align-items: center; gap: 6px; margin-top: 1rem; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,243,236,0.35); }

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 72px 24px 56px; }
  .hero-stats   { width: 100%; }
  .hero-stat    { flex: 1; border-right: 1px solid rgba(200,168,75,0.15); }
}


/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes fadeUp  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
@keyframes popIn   { from{opacity:0;transform:scale(0.6)} to{opacity:1;transform:scale(1)} }
@keyframes fadeUpHero { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.pulse-dot { width:7px; height:7px; border-radius:50%; background:var(--gold-light); animation:blink 1.6s infinite; display:inline-block; }


/* =============================================================
   HOMEPAGE — SERVICES GRID
   ============================================================= */
.services-section { background: var(--white); padding: 5rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; margin-top: 3rem; background: var(--cream-dark); }
.service-card { display: block; background: var(--white); overflow: hidden; border-top: 2px solid transparent; transition: border-color 0.25s, transform 0.2s; text-decoration: none; color: inherit; }
.service-card:hover { border-top-color: var(--gold); transform: translateY(-3px); }
.service-img-zone { height: 190px; position: relative; overflow: hidden; background: var(--green); }
.service-img-zone img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 1.5rem 1.4rem; }
.service-card h3 { font-family: var(--font-disp); font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.service-link    { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-mid); }
.service-link::after { content: ' →'; }
.service-link:hover  { color: var(--green); }


/* =============================================================
   SHARED — TESTIMONIAL CAROUSEL
   ============================================================= */
.testimonials { padding: 2.5rem 4rem 5rem; background: var(--white); }
.carousel-wrap { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; position: relative; }
.carousel-track { flex: 1; position: relative; min-height: 200px; }
.testimonial-card { display: none; background: var(--cream); padding: 2.5rem; border-radius: 4px; border-left: 3px solid var(--gold); animation: fadeIn 0.4s ease both; }
.testimonial-card.active { display: block; }
.testimonial-stars  { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-quote  { font-family: var(--font-disp); font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 500; color: var(--text); letter-spacing: 0.04em; }
.testimonial-role   { font-size: 0.75rem; color: var(--green-light); margin-top: 2px; }
.carousel-btn { flex-shrink:0; width:44px; height:44px; border-radius:50%; border:1.5px solid rgba(45,80,22,0.2); background:var(--white); color:var(--green); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background 0.2s, border-color 0.2s, color 0.2s; }
.carousel-btn:hover { background:var(--green); border-color:var(--green); color:var(--cream); }
.carousel-btn svg   { width:20px; height:20px; }
.carousel-dots { display:flex; justify-content:center; gap:8px; margin-top:1.5rem; }
.carousel-dot  { width:8px; height:8px; border-radius:50%; background:rgba(45,80,22,0.2); border:none; cursor:pointer; transition:background 0.2s, transform 0.2s; padding:0; }
.carousel-dot.active { background:var(--gold); transform:scale(1.3); }
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; margin-top:3rem; }
@media (max-width: 640px) {
  .testimonials { padding: 3.5rem 1.5rem; }
  .carousel-btn { width:36px; height:36px; }
  .carousel-btn svg { width:16px; height:16px; }
  .testimonial-quote { font-size: 1rem; }
}


/* =============================================================
   HOMEPAGE — COACHES
   ============================================================= */
.coaches-section { background: var(--white); padding: 5rem 0; }
.coaches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.coach-card { border: 1px solid rgba(45,80,22,0.12); border-radius: 4px; overflow: hidden; transition: transform 0.2s, box-shadow 0.25s; }
.coach-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,80,22,0.1); }
.coach-photo-zone { height: 220px; position: relative; overflow: hidden; background: var(--green); }
.coach-photo-zone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.coach-cert { position: absolute; bottom: 0; right: 0; background: var(--gold); color: var(--dark); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; z-index: 2; }
.coach-body   { padding: 1.4rem; }
.coach-name   { font-family: var(--font-disp); font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 3px; }
.coach-title  { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.75rem; }
.coach-tags   { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 0.75rem; }
.coach-tag    { background: var(--cream); border: 1px solid rgba(45,80,22,0.15); color: var(--text-muted); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; padding: 2px 9px; border-radius: 2px; }
.coach-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }


/* =============================================================
   HOMEPAGE — CAMP SECTION
   ============================================================= */
.camp-section  { position: relative; overflow: hidden; }
.camp-video-bg { position: absolute; inset: 0; z-index: 0; }
.camp-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.camp-overlay  { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg,rgba(26,26,20,0.91) 0%,rgba(45,80,22,0.82) 55%,rgba(26,26,20,0.65) 100%); }
.camp-inner    { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 5rem 28px; max-width: 1140px; margin: 0 auto; }
.camp-eyebrow  { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 8px; }
.camp-title    { font-family: var(--font-disp); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: var(--cream); line-height: 1.1; margin-bottom: 0.75rem; }
.camp-title em { color: var(--gold-light); font-style: italic; }
.camp-desc     { color: rgba(247,243,236,0.6); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.urgency-bar   { background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.3); padding: 0.7rem 1rem; display: flex; align-items: center; gap: 8px; border-radius: 2px; margin-bottom: 1.5rem; }
.urgency-dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; animation: blink 1.5s infinite; }
.urgency-text  { color: var(--gold-light); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }
.camp-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.75rem; }
.camp-features li { display: flex; align-items: flex-start; gap: 10px; color: rgba(247,243,236,0.72); font-size: 0.88rem; line-height: 1.5; }
.camp-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.camp-card      { background: rgba(247,243,236,0.93); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 4px; padding: 2rem 1.75rem; border-top: 2px solid var(--gold); }
.camp-card-title{ font-family: var(--font-disp); font-size: 1.2rem; font-weight: 700; color: var(--green); margin-bottom: 0.35rem; }
.camp-card-sub  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-row      { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; border-bottom: 0.5px solid rgba(45,80,22,0.1); font-size: 0.85rem; }
.price-row:last-of-type { border-bottom: none; margin-bottom: 1.25rem; }
.price-dates    { font-weight: 500; color: var(--text); }
.price-amount   { font-family: var(--font-disp); font-size: 1rem; font-weight: 700; color: var(--green); }
.spots-bar      { height: 3px; background: rgba(45,80,22,0.1); border-radius: 2px; margin-bottom: 5px; }
.spots-fill     { height: 100%; width: 72%; background: var(--gold); border-radius: 2px; }
.spots-text     { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.camp-card .btn-green { width: 100%; text-align: center; padding: 0.9rem; font-size: 0.85rem; display: block; }
.camp-card-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 0.6rem; }
@media (max-width: 860px) {
  .camp-inner { grid-template-columns: 1fr; }
  .camp-overlay { background: rgba(26,26,20,0.88); }
}


/* =============================================================
   HOMEPAGE — CTA SECTION
   ============================================================= */
.cta-section  { background: var(--green); padding: 5rem 0; }
.cta-inner    { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.trust-items  { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
.trust-item   { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; color: rgba(247,243,236,0.65); }
.trust-dot    { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.facility-photo-zone { height: 180px; margin-top: 1.75rem; border-radius: 2px; overflow: hidden; }
@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; } }


/* =============================================================
   SHARED — FORM CARD
   ============================================================= */
.form-card { background: var(--cream); border-radius: 4px; padding: 2.25rem; }
.form-card-title, .form-title { font-family: var(--font-disp); font-size: 1.25rem; font-weight: 700; color: var(--green); margin-bottom: 0.35rem; }
.form-card-sub, .form-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: block; }
.form-group input, .form-group select { border: 1px solid rgba(45,80,22,0.2); background: var(--white); padding: 0.75rem 1rem; font-size: 0.9rem; font-family: var(--font-body); color: var(--text); outline: none; border-radius: 2px; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; width: 100%; }
.form-group input:focus, .form-group select:focus { border-color: var(--green); }
.form-submit { width: 100%; padding: 0.9rem; background: var(--green); color: var(--cream); border: none; border-radius: 2px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--green-mid); }
.form-note { text-align: center; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.6rem; }
@media (max-width: 860px) { .form-row { grid-template-columns: 1fr; } }


/* =============================================================
   HOMEPAGE — PARTNERS
   ============================================================= */
.partners-section { background: var(--cream-dark); padding: 2.5rem 0; }
.partners-label   { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 1.5rem; }
.partners-logos   { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.partner-pill     { border: 1px solid rgba(45,80,22,0.15); border-radius: 2px; padding: 7px 16px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }


/* =============================================================
   SHARED — AREAS STRIP
   ============================================================= */
.areas-strip { background: var(--green); padding: 11px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; justify-content: center; }
.areas-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; margin-right: 4px; }
.area-tag    { font-size: 0.78rem; color: rgba(247,243,236,0.6); }
.area-sep    { color: rgba(200,168,75,0.3); font-size: 0.65rem; }


/* =============================================================
   SHARED — FOOTER
   ============================================================= */
footer { background: var(--dark); border-top: 1px solid rgba(200,168,75,0.15); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-logo-text { font-family: var(--font-disp); font-size: 1.05rem; color: rgba(247,243,236,0.8); margin-bottom: 0.6rem; }
.footer-tagline   { font-size: 0.82rem; color: rgba(247,243,236,0.35); line-height: 1.65; max-width: 220px; margin-bottom: 1.25rem; }
.footer-contact a { display: block; color: rgba(247,243,236,0.45); font-size: 0.82rem; margin-bottom: 5px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a  { display: block; font-size: 0.82rem; color: rgba(247,243,236,0.4); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(247,243,236,0.8); }
.footer-bottom { border-top: 1px solid rgba(247,243,236,0.06); padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span, .footer-bottom a { font-size: 0.72rem; color: rgba(247,243,236,0.22); }
.footer-bottom a:hover { color: rgba(247,243,236,0.45); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-simple { background: var(--dark); padding: 2rem 4rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(247,243,236,0.4); }
.footer-logo { font-family: var(--font-disp); color: rgba(247,243,236,0.7); font-size: 0.95rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } .footer-simple { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; } }


/* =============================================================
   CAMPS PAGE — SESSIONS, INCLUDED, FAQ, ACCORDION
   ============================================================= */
.sessions { padding: 6rem 4rem; background: var(--white); }
.session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.session-card { border: 1px solid rgba(45,80,22,0.12); border-radius: 4px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.session-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45,80,22,0.1); }
.session-card-top { background: var(--green); padding: 1.5rem; position: relative; }
.session-card-top.featured { background: var(--gold); }
.session-week { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,243,236,0.6); margin-bottom: 0.5rem; }
.session-card-top.featured .session-week { color: rgba(26,26,20,0.6); }
.session-dates { font-family: var(--font-disp); font-size: 1.3rem; font-weight: 700; color: var(--cream); }
.session-card-top.featured .session-dates { color: var(--dark); }
.session-spots { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; }
.spots-low { color: #ff9f7a; }
.spots-ok  { color: rgba(247,243,236,0.5); }
.session-card-top.featured .spots-ok { color: rgba(26,26,20,0.4); }
.session-card-body { padding: 1.5rem; background: var(--white); }
.session-age   { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.session-price { font-family: var(--font-disp); font-size: 1.6rem; font-weight: 700; color: var(--green); margin-bottom: 1rem; }
.session-includes { list-style: none; font-size: 0.85rem; color: var(--text-muted); line-height: 2; margin-bottom: 1.25rem; }
.session-includes li::before { content: '—'; color: var(--green-light); margin-right: 0.5rem; }
.session-btn { display: block; text-align: center; background: var(--green); color: var(--cream); padding: 0.75rem; border-radius: 2px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.session-btn:hover { background: var(--green-mid); }
.session-btn.gold { background: var(--gold); color: var(--dark); }
.session-btn.gold:hover { background: var(--gold-light); }
.included { padding: 6rem 4rem; background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.included-visual { background: var(--green); border-radius: 4px; padding: 3rem; position: relative; }
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon { width: 36px; height: 36px; border-radius: 2px; background: rgba(200,168,75,0.2); border: 1px solid rgba(200,168,75,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.feature-text h4 { font-size: 0.9rem; font-weight: 500; color: var(--cream); margin-bottom: 0.2rem; }
.feature-text p  { font-size: 0.8rem; color: rgba(247,243,236,0.55); line-height: 1.5; }
.register { padding: 6rem 4rem; background: var(--green); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.register-left h2 { font-family: var(--font-disp); font-size: 2.5rem; font-weight: 900; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
.register-left h2 em { color: var(--gold-light); font-style: italic; }
.register-left p  { font-size: 0.95rem; color: rgba(247,243,236,0.65); line-height: 1.7; margin-bottom: 2rem; }
.faq { padding: 5rem 4rem; background: var(--cream); max-width: 720px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid rgba(45,80,22,0.12); padding: 1.25rem 0; }
.faq-q     { font-weight: 500; font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
.faq-a     { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.accordion-item { border-bottom: 1px solid rgba(45,80,22,0.12); }
.accordion-trigger { width: 100%; background: none; border: none; padding: 1.1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.accordion-trigger:hover { color: var(--green); }
.accordion-trigger.open  { color: var(--green); }
.accordion-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--cream); border: 1px solid rgba(45,80,22,0.2); display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s, transform 0.25s; }
.accordion-trigger.open .accordion-icon { background: var(--green); border-color: var(--green); transform: rotate(45deg); }
.accordion-icon svg { width: 10px; height: 10px; }
.accordion-trigger .accordion-icon svg line { stroke: var(--green); }
.accordion-trigger.open .accordion-icon svg line { stroke: var(--cream); }
.accordion-body { display: none; padding: 0 0 1.1rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.accordion-body.open { display: block; }
.accordion-body ul { margin: 0.5rem 0 0 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.urgency-badge { position: absolute; top: 2rem; right: 2rem; background: var(--gold); color: var(--dark); padding: 0.6rem 1.1rem; border-radius: 2px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 860px) {
  .sessions, .included, .register { padding: 3.5rem 1.5rem; }
  .session-grid { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; gap: 2rem; }
  .register  { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) { .faq { padding: 3rem 1.5rem; } }


/* =============================================================
   CONSULTATION PAGE
   ============================================================= */
.consult-hero { background: var(--green); padding: 7rem 2rem 5rem; position: relative; overflow: hidden; }
.consult-hero-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; z-index: 2; }
.consult-hero::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; border: 100px solid rgba(200,168,75,0.08); pointer-events: none; }
.consult-hero-title { font-family: var(--font-disp); font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 900; color: var(--cream); line-height: 1.1; margin-bottom: 1rem; }
.consult-hero-title em { color: var(--gold-light); font-style: italic; }
.consult-hero-sub { color: rgba(247,243,236,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; max-width: 440px; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.trust-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: rgba(247,243,236,0.75); line-height: 1.5; }
.trust-list li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; background: var(--gold); clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); }
.consult-contact-block { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(200,168,75,0.2); }
.consult-contact-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,243,236,0.35); margin-bottom: 0.5rem; }
.consult-phone { display: block; font-family: var(--font-disp); font-size: 1.6rem; font-weight: 700; color: var(--cream); margin-bottom: 0.25rem; transition: color 0.2s; }
.consult-phone:hover { color: var(--gold-light); }
.consult-email { font-size: 0.9rem; color: var(--gold); transition: color 0.2s; }
.consult-email:hover { color: var(--gold-light); }
.consult-iframe-card { background: var(--cream); border-radius: 4px; border-top: 3px solid var(--gold); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.consult-iframe-header { background: var(--white); padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(45,80,22,0.1); display: flex; align-items: center; justify-content: space-between; }
.consult-iframe-title  { font-family: var(--font-disp); font-size: 1.1rem; font-weight: 700; color: var(--green); }
.consult-iframe-badge  { background: var(--green); color: var(--cream); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; display: flex; align-items: center; gap: 5px; }
.consult-iframe-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); animation: blink 1.6s infinite; }
.momence-wrap { padding: 1.5rem; background: var(--cream); }
#momence-plugin-lead-form { --momenceColorBackground: #F7F3EC; --momenceColorPrimary: 45, 80, 22; --momenceColorBlack: 44, 44, 34; }
.why-section { background: var(--white); padding: 5rem 0; }
.why-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.why-card    { background: var(--cream); border-radius: 4px; border-top: 2px solid var(--gold); padding: 1.75rem 1.5rem; transition: transform 0.2s; }
.why-card:hover { transform: translateY(-3px); }
.why-icon   { font-size: 1.75rem; margin-bottom: 0.75rem; }
.why-card h3 { font-family: var(--font-disp); font-size: 1.05rem; font-weight: 700; color: var(--green); margin-bottom: 0.4rem; }
.why-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.expect-section { background: var(--cream); padding: 5rem 0; }
.expect-steps   { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; max-width: 680px; }
.expect-step    { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 2rem; position: relative; }
.expect-step:not(:last-child)::after { content: ''; position: absolute; left: 17px; top: 36px; width: 2px; bottom: 0; background: rgba(45,80,22,0.12); }
.expect-step-num { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; background: var(--green); color: var(--gold); font-family: var(--font-disp); font-size: 0.95rem; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.expect-step-body h4 { font-family: var(--font-disp); font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.3rem; }
.expect-step-body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.bottom-cta    { background: var(--green); padding: 4rem 0; text-align: center; }
.bottom-cta h2 { font-family: var(--font-disp); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: var(--cream); margin-bottom: 0.75rem; }
.bottom-cta h2 em { color: var(--gold-light); font-style: italic; }
.bottom-cta p  { color: rgba(247,243,236,0.6); font-size: 0.95rem; line-height: 1.7; max-width: 460px; margin: 0 auto 1.75rem; }
@media (max-width: 860px) { .consult-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; } .consult-hero { padding: 6rem 1.5rem 3rem; } }


/* =============================================================
   THANK YOU PAGE
   ============================================================= */
.ty-hero { background: var(--green); min-height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 7rem 2rem 5rem; }
.ty-hero::before { content: ''; position: absolute; top: -80px; left: -80px; width: 400px; height: 400px; border-radius: 50%; border: 80px solid rgba(200,168,75,0.07); pointer-events: none; }
.ty-hero::after  { content: ''; position: absolute; bottom: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; border: 100px solid rgba(200,168,75,0.07); pointer-events: none; }
.ty-inner   { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 2; animation: fadeUpHero 0.7s ease both; }
.ty-check   { width: 80px; height: 80px; border-radius: 50%; background: rgba(200,168,75,0.15); border: 2px solid rgba(200,168,75,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.75rem; animation: popIn 0.5s ease 0.2s both; }
.ty-check svg { width: 36px; height: 36px; stroke: var(--gold); stroke-width: 2.5; }
.ty-eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.ty-title   { font-family: var(--font-disp); font-size: clamp(2.2rem,5vw,3.2rem); font-weight: 900; line-height: 1.1; color: var(--cream); margin-bottom: 1rem; }
.ty-title em { color: var(--gold-light); font-style: italic; }
.ty-sub     { font-size: 1.05rem; line-height: 1.75; color: rgba(247,243,236,0.68); margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.ty-steps   { display: flex; justify-content: center; gap: 0; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ty-step    { flex: 1; min-width: 150px; max-width: 200px; padding: 1.25rem 1rem; border-right: 1px solid rgba(200,168,75,0.15); text-align: center; }
.ty-step:last-child { border-right: none; }
.ty-step-icon  { font-size: 1.5rem; margin-bottom: 0.5rem; }
.ty-step-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.ty-step-text  { font-size: 0.82rem; color: rgba(247,243,236,0.5); line-height: 1.5; }
.ty-actions    { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.explore-section { background: var(--cream); padding: 5rem 0; }
.explore-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.explore-card    { background: var(--white); border-radius: 4px; border-top: 2px solid var(--gold); padding: 1.75rem 1.5rem; text-decoration: none; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.explore-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(45,80,22,0.1); }
.explore-card-icon  { font-size: 1.5rem; margin-bottom: 0.75rem; }
.explore-card h3    { font-family: var(--font-disp); font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.4rem; }
.explore-card p     { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.explore-card-arrow { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-mid); margin-top: 0.75rem; display: block; }
.social-strip { background: var(--white); padding: 3rem 0; text-align: center; border-top: 1px solid rgba(45,80,22,0.08); border-bottom: 1px solid rgba(45,80,22,0.08); }
.social-strip p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-link  { display: inline-flex; align-items: center; gap: 7px; background: var(--cream); border: 1px solid rgba(45,80,22,0.15); border-radius: 2px; padding: 0.6rem 1.1rem; font-size: 0.82rem; font-weight: 500; color: var(--green); text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.social-link:hover { background: var(--green); color: var(--cream); border-color: var(--green); }


/* =============================================================
   JUNIOR GOLF ACADEMY PAGE
   ============================================================= */
.levels-section { background: var(--white); padding: 5rem 0; }
.levels-intro   { max-width: 680px; margin-bottom: 3.5rem; }
.level-card { display: grid; grid-template-columns: 200px 1fr; gap: 0; border: 1px solid rgba(45,80,22,0.12); border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; transition: box-shadow 0.2s, transform 0.2s; }
.level-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(45,80,22,0.1); }
.level-band { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 1.25rem; background: var(--green); text-align: center; position: relative; }
.level-band.gold-band { background: var(--gold); }
.level-number { font-family: var(--font-disp); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,243,236,0.5); margin-bottom: 0.4rem; }
.level-band.gold-band .level-number { color: rgba(26,26,20,0.5); }
.level-name { font-family: var(--font-disp); font-size: 1.15rem; font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 0.5rem; }
.level-band.gold-band .level-name { color: var(--dark); }
.level-age  { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; color: rgba(247,243,236,0.65); text-transform: uppercase; background: rgba(0,0,0,0.15); padding: 3px 10px; border-radius: 100px; }
.level-band.gold-band .level-age { color: rgba(26,26,20,0.6); background: rgba(0,0,0,0.08); }
.level-priority { position: absolute; top: 10px; right: 10px; background: var(--gold); color: var(--dark); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border-radius: 2px; }
.level-band.gold-band .level-priority { background: var(--green); color: var(--cream); }
.level-body    { padding: 1.75rem 2rem; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.level-tagline { font-family: var(--font-disp); font-size: 1.05rem; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }
.level-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.level-bullets li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }
.level-bullets li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.level-footer  { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid rgba(45,80,22,0.08); }
.level-format  { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-light); }
.level-cta     { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: var(--cream); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.55rem 1.1rem; border-radius: 2px; text-decoration: none; transition: background 0.2s; flex-shrink: 0; }
.level-cta:hover { background: var(--green-mid); }
.level-cta.gold-cta { background: var(--gold); color: var(--dark); }
.level-cta.gold-cta:hover { background: var(--gold-light); }
.pathway-section { background: var(--green); padding: 5rem 0; }
.pathway-steps  { display: flex; align-items: flex-start; gap: 0; margin-top: 2.5rem; flex-wrap: wrap; }
.pathway-step   { flex: 1; min-width: 160px; text-align: center; padding: 1.5rem 1rem; position: relative; }
.pathway-step:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: rgba(200,168,75,0.4); font-size: 1.2rem; }
.pathway-step-num  { width: 40px; height: 40px; border-radius: 50%; background: rgba(200,168,75,0.15); border: 1.5px solid rgba(200,168,75,0.4); display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 1rem; font-weight: 700; color: var(--gold); margin: 0 auto 0.75rem; }
.pathway-step-name { font-family: var(--font-disp); font-size: 0.9rem; font-weight: 700; color: var(--cream); margin-bottom: 0.25rem; }
.pathway-step-age  { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,243,236,0.45); }
.pathway-step.priority .pathway-step-num  { background: rgba(200,168,75,0.35); border-color: var(--gold); width: 48px; height: 48px; font-size: 1.1rem; }
.pathway-step.priority .pathway-step-name { color: var(--gold-light); }
.diff-section { background: var(--cream); padding: 5rem 0; }
.diff-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.diff-card    { background: var(--white); border-radius: 4px; border-top: 2px solid var(--gold); padding: 1.5rem; }
.diff-icon    { font-size: 1.5rem; margin-bottom: 0.6rem; }
.diff-card h3 { font-family: var(--font-disp); font-size: 0.95rem; font-weight: 700; color: var(--green); margin-bottom: 0.35rem; }
.diff-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.results-strip  { background: var(--gold); padding: 0; }
.results-inner  { display: flex; flex-wrap: wrap; justify-content: center; }
.result-item    { flex: 1; min-width: 140px; padding: 24px 16px; text-align: center; border-right: 1px solid rgba(26,26,20,0.12); }
.result-item:last-child { border-right: none; }
.result-num     { font-family: var(--font-disp); font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.result-label   { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,26,20,0.6); margin-top: 5px; }
.consult-cta    { background: var(--green); padding: 5rem 0; text-align: center; }
.consult-cta h2 { font-family: var(--font-disp); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: var(--cream); margin-bottom: 0.75rem; }
.consult-cta h2 em { color: var(--gold-light); font-style: italic; }
.consult-cta p  { color: rgba(247,243,236,0.6); font-size: 1rem; line-height: 1.75; max-width: 520px; margin: 0 auto 2rem; }
.consult-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 700px) {
  .level-card  { grid-template-columns: 1fr; }
  .level-band  { padding: 1.5rem; flex-direction: row; gap: 1rem; text-align: left; justify-content: flex-start; }
  .level-priority { top: 8px; right: 8px; }
  .pathway-step:not(:last-child)::after { display: none; }
  .pathway-steps { gap: 4px; }
}


/* =============================================================
   MOMENCE EMBED
   ============================================================= */
:root {
  --momenceColorBackground: #F7F3EC;
  --momenceColorPrimary: 45, 80, 22;
  --momenceColorBlack: 44, 44, 34;
}


/* =============================================================
   SERVICES PAGE — services/index.html
   ============================================================= */

/* ── HERO ── */
.svc-hero {
  background: var(--green);
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 100px solid rgba(200,168,75,0.06);
  pointer-events: none;
}
.svc-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 80px solid rgba(200,168,75,0.05);
  pointer-events: none;
}
.svc-hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 2;
}
.svc-hero-title {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; color: var(--cream);
  line-height: 1.05; margin-bottom: 1.2rem;
}
.svc-hero-title em { font-style: italic; color: var(--gold-light); }
.svc-hero-sub {
  color: rgba(247,243,236,0.65);
  font-size: 1rem; line-height: 1.8;
  margin-bottom: 2rem; max-width: 440px;
}
.svc-hero-trust {
  display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem;
}
.svc-hero-trust-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.85rem; color: rgba(247,243,236,0.65);
}
.svc-hero-trust-item::before {
  content: '';
  width: 14px; height: 14px; flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* Right side — quick nav cards */
.svc-hero-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.svc-nav-card {
  background: rgba(26,26,20,0.5);
  border: 1px solid rgba(200,168,75,0.18);
  border-top: 2px solid var(--gold);
  border-radius: 8px;
  padding: 1.4rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: block;
}
.svc-nav-card:hover {
  background: rgba(26,26,20,0.75);
  transform: translateY(-2px);
}
.svc-nav-card-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.svc-nav-card h3 {
  font-family: var(--font-disp);
  font-size: 0.95rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.25rem;
}
.svc-nav-card p {
  font-size: 0.75rem; color: rgba(247,243,236,0.45); line-height: 1.5;
}

/* ── SERVICE SECTIONS ── */
.svc-section { padding: 6rem 0; }
.svc-section.white { background: var(--white); }
.svc-section.cream { background: var(--cream); }
.svc-section.dark  { background: var(--green); }

/* Two-column layout — alternating */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.svc-row.reverse { direction: rtl; }
.svc-row.reverse > * { direction: ltr; }

.svc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 2px; padding: 4px 12px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.svc-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.svc-title {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--green); margin-bottom: 0.75rem;
}
.svc-title em { font-style: italic; color: var(--gold); }
.svc-title.light { color: var(--cream); }
.svc-title.light em { color: var(--gold-light); }
.svc-desc {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 1.75rem;
}
.svc-desc.light { color: rgba(247,243,236,0.65); }

.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.svc-bullets li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}
.svc-bullets li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.svc-bullets.light li { color: rgba(247,243,236,0.65); }

.svc-visual { border-radius: 16px; overflow: hidden; position: relative; }

/* Private coaching visual */
.svc-visual-private { background: var(--green); padding: 2.5rem; border-radius: 16px; }
.svc-visual-private-quote {
  font-family: var(--font-disp);
  font-size: 1.1rem; font-style: italic;
  color: var(--cream); line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}
.svc-visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.svc-visual-stat {
  background: rgba(26,26,20,0.4);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 8px; padding: 1.1rem; text-align: center;
}
.svc-visual-stat-num   { font-family: var(--font-disp); font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.svc-visual-stat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,243,236,0.4); margin-top: 4px; }

/* Remote coaching visual */
.svc-visual-remote { background: var(--cream-dark); border-radius: 16px; border: 1px solid rgba(45,80,22,0.1); padding: 2.5rem; }
.remote-steps { display: flex; flex-direction: column; gap: 0; }
.remote-step  { display: flex; gap: 1.25rem; align-items: flex-start; padding-bottom: 1.5rem; position: relative; }
.remote-step:not(:last-child)::after { content: ''; position: absolute; left: 16px; top: 34px; width: 2px; bottom: 0; background: rgba(45,80,22,0.1); }
.remote-step-num { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: var(--green); color: var(--gold); font-family: var(--font-disp); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.remote-step-body h4 { font-family: var(--font-disp); font-size: 0.9rem; font-weight: 700; color: var(--green); margin-bottom: 0.2rem; }
.remote-step-body p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* On-course visual */
.svc-visual-oncourse { background: var(--green); border-radius: 16px; padding: 2.5rem; position: relative; overflow: hidden; }
.svc-visual-oncourse::before { content: ''; position: absolute; bottom: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; border: 50px solid rgba(200,168,75,0.1); }
.oncourse-phases { display: flex; flex-direction: column; gap: 1rem; }
.oncourse-phase { background: rgba(26,26,20,0.35); border-radius: 8px; padding: 1rem 1.25rem; border-left: 3px solid var(--gold); }
.oncourse-phase h4 { font-family: var(--font-disp); font-size: 0.9rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.2rem; }
.oncourse-phase p  { font-size: 0.8rem; color: rgba(247,243,236,0.55); line-height: 1.55; }

/* Group coaching visual */
.svc-visual-group { background: var(--cream-dark); border-radius: 16px; border: 1px solid rgba(45,80,22,0.1); padding: 2.5rem; }
.group-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }
.group-tag { background: var(--white); border: 1px solid rgba(45,80,22,0.15); border-radius: 4px; padding: 6px 14px; font-size: 0.78rem; font-weight: 500; color: var(--green); letter-spacing: 0.04em; }
.group-note { background: var(--white); border-radius: 8px; padding: 1.25rem; border-left: 3px solid var(--gold); font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.group-note strong { color: var(--green); }

/* ── WHO WE COACH STRIP ── */
.who-strip { background: var(--gold); padding: 0; }
.who-inner { display: flex; flex-wrap: wrap; justify-content: center; }
.who-item { flex: 1; min-width: 160px; padding: 24px 20px; text-align: center; border-right: 1px solid rgba(26,26,20,0.1); }
.who-item:last-child { border-right: none; }
.who-icon  { font-size: 1.6rem; margin-bottom: 0.4rem; }
.who-label { font-family: var(--font-disp); font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.who-desc  { font-size: 0.72rem; color: rgba(26,26,20,0.55); margin-top: 3px; line-height: 1.4; }

/* ── BOTTOM CTA ── */
.svc-cta { background: var(--green); padding: 5.5rem 0; text-align: center; }
.svc-cta h2 { font-family: var(--font-disp); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--cream); margin-bottom: 0.75rem; }
.svc-cta h2 em { color: var(--gold-light); font-style: italic; }
.svc-cta p { color: rgba(247,243,236,0.6); font-size: 1rem; line-height: 1.75; max-width: 480px; margin: 0 auto 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .svc-hero-nav   { grid-template-columns: 1fr 1fr; }
  .svc-row        { grid-template-columns: 1fr; gap: 3rem; }
  .svc-row.reverse { direction: ltr; }
  .svc-section    { padding: 4rem 0; }
}
@media (max-width: 540px) {
  .svc-hero { padding: 6rem 1.5rem 3.5rem; }
  .svc-hero-nav { grid-template-columns: 1fr; }
}

/* =============================================================
   COOKIE / TRACKING CONSENT BANNER
   ============================================================= */
#consent-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  background: #1A1A14;
  border: 1px solid rgba(200,168,75,0.25);
  border-top: 2px solid #C8A84B;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  max-width: 760px;
  width: calc(100% - 48px);
}
#consent-banner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(247,243,236,0.7);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  min-width: 220px;
}
.consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.consent-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.consent-btn-accept {
  background: #C8A84B;
  color: #1A1A14;
}
.consent-btn-accept:hover { background: #E8C96A; }
.consent-btn-decline {
  background: transparent;
  color: rgba(247,243,236,0.5);
  border: 1px solid rgba(247,243,236,0.2);
}
.consent-btn-decline:hover {
  color: rgba(247,243,236,0.85);
  border-color: rgba(247,243,236,0.4);
}
@media (max-width: 600px) {
  #consent-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
  }
  .consent-buttons { width: 100%; }
  .consent-btn { flex: 1; text-align: center; }
}


/* =============================================================
   TRACKMAN PAGE — services/trackman/index.html
   ============================================================= */

.tm-section     { padding: 5rem 0; background: var(--white); }
.tm-section.alt { background: var(--cream); }
.tm-section.dark{ background: var(--green); }

/* ── OPTIONS GRID (What Can You Do) ── */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.option-card {
  background: var(--white);
  border-radius: 12px;
  border-top: 3px solid var(--gold);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45,80,22,0.1);
}
.option-icon    { font-size: 1.75rem; margin-bottom: 0.75rem; }
.option-card h3 {
  font-family: var(--font-disp);
  font-size: 1.05rem; font-weight: 700;
  color: var(--green); margin-bottom: 0.4rem;
}
.option-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── DATA GRID (What TrackMan Measures) ── */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.data-card {
  background: var(--green);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.data-card-num   {
  font-family: var(--font-disp);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,168,75,0.6); margin-bottom: 0.5rem;
}
.data-card-name  {
  font-family: var(--font-disp);
  font-size: 1.05rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.4rem; line-height: 1.2;
}
.data-card-desc  { font-size: 0.78rem; color: rgba(247,243,236,0.5); line-height: 1.5; }

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.benefit-list   { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.benefit-item   { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-icon   {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.benefit-text h4 {
  font-family: var(--font-disp);
  font-size: 0.95rem; font-weight: 700;
  color: var(--green); margin-bottom: 0.2rem;
}
.benefit-text p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.benefits-visual {
  background: var(--green);
  border-radius: 16px; padding: 2.5rem;
  position: relative; overflow: hidden;
}
.benefits-visual::before {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  border: 60px solid rgba(200,168,75,0.08); pointer-events: none;
}
.bv-stat        { margin-bottom: 1.5rem; border-bottom: 1px solid rgba(200,168,75,0.15); padding-bottom: 1.5rem; }
.bv-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bv-stat-num    { font-family: var(--font-disp); font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.bv-stat-label  { font-size: 0.8rem; color: rgba(247,243,236,0.55); line-height: 1.4; }

/* ── BOOKING CARD (Session Requirements) ── */
.booking-card {
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  padding: 2rem 2.25rem;
  max-width: 680px;
}
.booking-card h3 {
  font-family: var(--font-disp);
  font-size: 1.2rem; font-weight: 700;
  color: var(--green); margin-bottom: 1.25rem;
}
.booking-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
}
.booking-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1rem;
}
.booking-card ul li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  min-width: 1rem;
}
.booking-card ul li a { color: var(--green-mid); text-decoration: underline; }
.booking-card ul li a:hover { color: var(--green); }
.booking-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.booking-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
  padding-left: 1rem;
}
.booking-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  min-width: 1rem;
}
.booking-list a { color: var(--green-mid); text-decoration: underline; }
.booking-list a:hover { color: var(--green); }

/* ── CTA SECTION ── */
.tm-cta { background: var(--green); padding: 5rem 0; text-align: center; }
.tm-cta h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--cream); margin-bottom: 0.75rem;
}
.tm-cta h2 em { color: var(--gold-light); font-style: italic; }
.tm-cta p     {
  color: rgba(247,243,236,0.65);
  font-size: 1rem; line-height: 1.75;
  max-width: 480px; margin: 0 auto 2rem;
}
.tm-cta-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .tm-section    { padding: 3.5rem 0; }
}


/* ── TESTIMONIAL HERO ── */
.testi-hero {
  background: var(--green);
  padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.testi-hero::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  border: 100px solid rgba(200,168,75,0.05);
  pointer-events: none;
}
.testi-hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.testi-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900; color: var(--cream); line-height: 1.1; margin-bottom: 1rem;
}
.testi-hero h1 em { font-style: italic; color: var(--gold-light); }
.testi-hero p {
  color: rgba(247,243,236,0.62); font-size: 1rem;
  line-height: 1.8; max-width: 520px; margin: 0 auto;
}

/* ── FEATURED REVIEWS ── */
.featured-section { background: var(--cream); padding: 5rem 0; }
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.featured-card {
  background: var(--white);
  border-radius: 12px;
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45,80,22,0.1); }
.featured-card.large {
  grid-column: span 2;
  background: var(--green);
  border-top: 3px solid var(--gold);
}
.featured-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1rem; }
.featured-quote {
  font-family: var(--font-disp);
  font-size: 1.05rem; font-style: italic;
  color: var(--text); line-height: 1.75; margin-bottom: 1.25rem;
}
.featured-card.large .featured-quote { color: var(--cream); font-size: 1.15rem; }
.featured-author { font-size: 0.85rem; font-weight: 600; color: var(--green); }
.featured-card.large .featured-author { color: var(--gold-light); }
.featured-role   { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }
.featured-card.large .featured-role   { color: rgba(247,243,236,0.45); }
.featured-tag {
  display: inline-block;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.25);
  color: var(--gold);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
  margin-bottom: 1rem;
}
.featured-card.large .featured-tag { background: rgba(200,168,75,0.2); }

/* ── FILTER BAR ── */
.filter-section { background: var(--white); padding: 4rem 0 0; }
.filter-bar {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-right: 4px; flex-shrink: 0;
}
.filter-btn {
  background: var(--cream);
  border: 1px solid rgba(45,80,22,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.filter-btn:hover { background: var(--cream-dark); color: var(--green); }
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}

/* ── REVIEWS GRID ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  padding-bottom: 5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(45,80,22,0.1);
  border-radius: 10px;
  padding: 1.5rem 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,80,22,0.08); }
.review-card[data-hidden="true"] { display: none; }
.review-stars  { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-quote  {
  font-family: var(--font-disp);
  font-size: 0.92rem; font-style: italic;
  color: var(--text); line-height: 1.7; margin-bottom: 1rem;
}
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--green); }
.review-role   { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.review-service-tag {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--cream);
  border: 1px solid rgba(45,80,22,0.12);
  border-radius: 2px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-mid); padding: 2px 8px;
}

/* No results message */
.no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── GOOGLE REVIEWS PLACEHOLDER ── */
.google-section { background: var(--cream); padding: 5rem 0; text-align: center; }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid rgba(45,80,22,0.12);
  border-radius: 8px; padding: 1rem 1.5rem; margin-bottom: 2rem;
}
.google-badge-logo { font-size: 1.4rem; }
.google-badge-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; text-align: left; }
.google-badge-text strong { color: var(--green); display: block; font-size: 0.88rem; }
/* Google Reviews API widget will go here */
#google-reviews-widget {
  max-width: 1140px; margin: 0 auto;
  min-height: 200px;
  /* Placeholder styling — remove when API is connected */
  background: var(--white);
  border: 2px dashed rgba(45,80,22,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
  padding: 3rem;
  color: var(--text-muted); font-size: 0.88rem;
}
#google-reviews-widget .placeholder-icon { font-size: 2rem; }

/* ── CTA ── */
.testi-cta { background: var(--green); padding: 5rem 0; text-align: center; }
.testi-cta h2 { font-family: var(--font-disp); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: var(--cream); margin-bottom: 0.75rem; }
.testi-cta h2 em { color: var(--gold-light); font-style: italic; }
.testi-cta p { color: rgba(247,243,236,0.6); font-size: 1rem; line-height: 1.75; max-width: 460px; margin: 0 auto 2rem; }

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card.large { grid-column: span 1; }
}
@media (max-width: 600px) {
  .testi-hero { padding: 6rem 1.5rem 3.5rem; }
  .filter-section { padding: 3rem 0 0; }
}