/* ============================================================
   SEAN MIREE FITNESS — SHARED STYLESHEET
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ─── CSS Variables ─── */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-light: #E8C96E;
  --gold-dark: #A07830;
  --gray-dark: #0A0A0A;
  --gray-mid: #111111;
  --gray-light: #1A1A1A;
  --gray-border: #2A2A2A;
  --text-muted: #888888;
  --nav-height: 70px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.display-xl { font-size: clamp(3.5rem, 9vw, 8rem); }
.display-lg { font-size: clamp(2.5rem, 6vw, 5.5rem); }
.display-md { font-size: clamp(2rem, 4vw, 3.5rem); }
.display-sm { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p { max-width: 68ch; }

strong { color: var(--gold); font-weight: 700; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; }

/* ─── Layout Utilities ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 16px; }
.gap-md { gap: 32px; }
.gap-lg { gap: 48px; }

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

/* ─── Gold Divider ─── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

.gold-divider-thick {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ─── Section Labels ─── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ─── Grain Texture ─── */
.grain {
  position: relative;
}
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.4s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.25rem;
}

.btn-full { width: 100%; }

/* ─── Image Placeholder ─── */
.img-placeholder {
  background: var(--gray-light);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  border-bottom-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px 24px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  letter-spacing: 0.1em;
  min-height: 48px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu .nav-link::after { display: none; }
.mobile-menu .nav-link:hover,
.mobile-menu .nav-link:active { color: var(--gold); }
.mobile-menu .btn {
  min-height: 52px;
  width: 100%;
  max-width: 280px;
  -webkit-tap-highlight-color: transparent;
}

/* ─── FOOTER ─── */
footer {
  background: var(--gray-dark);
  border-top: 1px solid var(--gray-border);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ─── Page Hero ─── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-title {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ─── Cards ─── */
.card {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.card:hover::before { transform: scaleX(1); }

/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ─── Forms ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--gray-mid);
  color: var(--white);
}

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

/* ─── Consent Checkbox ─── */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.consent-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  cursor: pointer;
  margin-top: 2px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.consent-checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.consent-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--black);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.consent-checkbox:focus {
  outline: 2px solid rgba(201,168,76,0.5);
  outline-offset: 2px;
}

.consent-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.consent-label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-label a:hover { color: var(--gold-light); }

/* ─── Stars ─── */
.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 1rem;
}

/* ─── Page-specific overrides ─── */

/* ---- HOME: Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .img-placeholder {
  width: 100%;
  height: 100%;
  border: none;
  background: linear-gradient(135deg, #0A0A0A 0%, #111 50%, #0A0A0A 100%);
  font-size: 1rem;
  color: rgba(201,168,76,0.3);
  letter-spacing: 0.1em;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-title .shimmer-text {
  background: linear-gradient(90deg, var(--white) 0%, var(--gold-light) 40%, var(--white) 60%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-sub span {
  color: var(--gold);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- HOME: About Strip ---- */
.about-strip {
  background: var(--white);
  color: var(--black);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-strip-img {
  height: 100%;
  min-height: 400px;
}

.about-strip-img .img-placeholder {
  height: 100%;
  border: none;
  background: #e8e8e8;
  color: #999;
}

.about-strip-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-text h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1;
}

.about-strip-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 32px;
  max-width: 100%;
}

.about-strip-text .section-label {
  color: var(--gold-dark);
}

/* ---- HOME: Services Strip ---- */
.services-strip {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
  border: 1px solid var(--gray-border);
}

.service-tile {
  background: var(--gray-mid);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-tile:hover {
  background: var(--gray-light);
}
.service-tile:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: all var(--transition);
}
.service-tile:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.service-tile h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-tile p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ---- HOME: Testimonials Preview ---- */
.testimonials-preview {
  background: var(--gray-dark);
}

.testimonial-card-preview {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.testimonial-card-preview:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.testimonial-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  position: relative;
}
.testimonial-before-after::after {
  content: 'VS';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
}

.testimonial-before-after .img-placeholder {
  height: 100%;
  border: none;
  font-size: 0.7rem;
}
.testimonial-before-after .img-placeholder:first-child {
  border-right: 1px solid var(--gold);
}

.testimonial-content {
  padding: 24px;
}
.testimonial-content .stars { margin-bottom: 12px; }
.testimonial-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonial-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- HOME: Social Feed ---- */
.social-section {
  background: var(--black);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.social-post {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.social-post .img-placeholder {
  height: 100%;
  border: none;
  background: var(--gray-light);
  color: transparent;
  font-size: 0;
  transition: all var(--transition);
}
.social-post:hover .img-placeholder {
  background: var(--gray-mid);
}
.social-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.5rem;
  color: var(--white);
}
.social-post:hover .social-post-overlay { opacity: 1; }
.social-post-new:hover .social-post-overlay { opacity: 1; }

/* ---- HOME: Email Banner ---- */
.email-banner {
  background: var(--gold);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.email-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.03) 20px,
    rgba(0,0,0,0.03) 40px
  );
}

.email-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.email-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--black);
  line-height: 1;
  max-width: 500px;
}

.email-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  max-width: 480px;
}
.email-form input {
  flex: 1;
  min-width: 160px;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.2);
  color: var(--black);
  padding: 14px 20px;
  font-size: 0.95rem;
  outline: none;
}
.email-form input::placeholder { color: rgba(0,0,0,0.5); }
.email-form input:focus {
  border-color: rgba(0,0,0,0.5);
}
.email-form .btn {
  background: var(--black);
  color: var(--gold);
  border: 2px solid var(--black);
  white-space: nowrap;
}
.email-form .btn:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

/* ─── SERVICES PAGE ─── */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-full {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card-full:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.service-card-full:hover::before { transform: scaleX(1); }

.service-card-full .service-icon {
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
}

.service-card-full h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.service-card-full p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

/* Pricing */
.pricing-section {
  background: var(--gray-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 4px 16px;
  white-space: nowrap;
}
.pricing-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.pricing-price {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  vertical-align: middle;
}
.pricing-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FAQ */
.faq-section { background: var(--black); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.faq-item.open .faq-icon {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ─── TESTIMONIALS PAGE ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.testimonial-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 180px;
  position: relative;
}
.testimonial-images::after {
  content: '→';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--black);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  border-radius: 50%;
}

.testimonial-images .img-placeholder {
  height: 100%;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}
.testimonial-images .img-placeholder:first-child {
  background: #0E0E0E;
  border-right: 1px solid rgba(201,168,76,0.3);
}
.testimonial-images .img-placeholder:last-child {
  background: #141414;
}

.testimonial-body {
  padding: 24px;
}
.testimonial-body .stars { margin-bottom: 12px; }
.testimonial-body h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.testimonial-body .program-type,
.testimonial-content .program-type {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.testimonial-body blockquote {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-body .timeframe {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--gray-border);
  padding-top: 12px;
}

/* Video Testimonials */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.video-card:hover {
  border-color: var(--gold);
}

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--gray-mid);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb .img-placeholder {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--gray-light);
  font-size: 0.75rem;
}

.play-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
  box-shadow: 0 0 30px rgba(201,168,76,0.5);
}
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 4px;
}
.video-card:hover .play-btn {
  background: var(--gold-light);
  transform: scale(1.1);
}

.video-label {
  padding: 16px 20px;
  background: var(--gray-mid);
}
.video-label h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.video-label span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: var(--black);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto 40px;
}

/* ─── ABOUT PAGE ─── */
.about-hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
}

.about-hero-img {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
}
.about-hero-img .img-placeholder {
  height: 100%;
  border: none;
  background: var(--gray-light);
  font-size: 0.9rem;
}

.about-hero-text {
  padding: 80px 64px;
  background: var(--black);
}

.about-hero-text h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  margin-bottom: 32px;
}

.about-hero-text .section-label {
  margin-bottom: 16px;
}

.about-hero-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 100%;
}

/* Stats Bar */
.stats-bar {
  background: var(--gold);
  padding: 40px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0,0,0,0.2);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--black);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 4px;
  display: block;
}

/* Philosophy */
.philosophy-section {
  background: var(--gray-dark);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.philosophy-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--gray-border);
  position: relative;
  transition: all var(--transition);
}
.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.philosophy-card:hover { border-color: rgba(201,168,76,0.3); }
.philosophy-card:hover::before { width: 100%; }

.philosophy-num {
  font-size: 5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 8px;
}

.philosophy-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.philosophy-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0 auto;
}

/* Certifications */
.certs-section { background: var(--black); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cert-card {
  border: 1px solid var(--gray-border);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover { border-color: var(--gold); }

.cert-card .cert-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.cert-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cert-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Press Bar */
.press-bar {
  background: var(--gray-dark);
  padding: 60px 0;
  border-top: 1px solid var(--gray-border);
}

.press-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.press-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 12px 24px;
  border: 1px solid var(--gray-border);
}
.press-logo:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* ─── APPLY PAGE ─── */
.apply-section {
  background: var(--black);
  padding-bottom: 100px;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.apply-info h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1;
}

.apply-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 100%;
}

.apply-contact-card {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--gold);
  padding: 28px 24px;
  margin-top: 32px;
}
.apply-contact-card h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.apply-contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.apply-form {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  padding: 48px 40px;
}

.apply-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.apply-form-grid .form-group.full {
  grid-column: 1 / -1;
}

.apply-form h3 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-border);
}

.response-note {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.6;
}

/* ─── RESOURCES PAGE ─── */
.resources-section { background: var(--black); }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.resource-card {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.resource-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.resource-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 50%;
}

.resource-card h3 {
  font-size: 1.3rem;
}

.resource-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* Blog Section */
.blog-section {
  background: var(--gray-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.blog-card {
  background: var(--gray-mid);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.blog-thumb {
  height: 200px;
}
.blog-thumb .img-placeholder {
  height: 100%;
  border: none;
  background: var(--gray-light);
  font-size: 0.75rem;
}

.blog-body {
  padding: 24px;
}

.blog-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card .read-more {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 10px; }
.blog-card .read-more::after { content: '→'; }

/* Email Capture Mini */
.email-capture {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--gray-border);
}
.email-capture h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 8px;
}
.email-capture p {
  color: var(--text-muted);
  margin: 0 auto 32px;
}
.email-capture-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.email-capture-form input {
  flex: 1;
}

/* ─── Section Headers ─── */
.section-header {
  margin-bottom: 60px;
}
.section-header.center { text-align: center; }
.section-header.center p { margin: 12px auto 0; }
.section-header h2 {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 1;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.section-header .gold-divider-thick {
  margin-top: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-split { grid-template-columns: 1fr; }
  .about-hero-img { display: none; }
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-text { padding: 60px 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .email-banner-inner { flex-direction: column; align-items: flex-start; }
  .apply-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-height: 60px; }
  .section-pad { padding: 70px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; overflow: hidden; }
  .service-tile { padding: 28px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cards-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .about-strip-text { padding: 48px 24px; }
  .apply-form { padding: 32px 24px; }
  .email-banner { padding: 48px 0; }
  .email-form { flex-direction: column; }
  .email-capture-form { flex-direction: column; }
  .back-to-top { bottom: 20px; right: 20px; }

  /* Coaching photo grid: stack on mobile */
  .policy-body { padding: 40px 20px 72px; }
  .form-input, .form-select, .form-textarea { font-size: 16px; } /* prevents iOS zoom on focus */
  .btn { min-height: 48px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
  .consent-row { gap: 12px; }
  .consent-checkbox { width: 22px; height: 22px; flex-shrink: 0; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { text-align: center; }
}

@media (max-width: 640px) {
  .coaching-photo-grid { grid-template-columns: 1fr !important; }
}

/* Results page stats grid — desktop 4-col, mobile 2×2 */
.results-stats-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 640px) {
  .results-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Global touch improvements */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
input, select, textarea { touch-action: manipulation; }

/* Prevent font size inflation on iOS landscape */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
