/* ===========================
   FONTS
   =========================== */
@font-face {
  font-family: 'One Of A Kind';
  src: url('Website Files/One Of A Kind.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Ultra Monic';
  src: url('Website Files/Ultra Monic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Raleigh Handwriting';
  src: url('Website Files/Raleigh Handwriting 2.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Mango Dream';
  src: url('Website Files/Mango Dream.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

:root {
  --red: #E20000;
  --red-glow: rgba(226, 0, 0, 0.35);
  --gold: #FFA800;
  --white: #FFFFFF;
  --black: #000000;
  --dark: #0a0a0a;
  --dark2: #0e0e0e;
  --mid: #141414;
  --text-muted: #888;
  --text-light: #bbb;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mango Dream', Georgia, serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3 {
  font-family: 'One Of A Kind', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: none;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  background: linear-gradient(135deg, var(--white) 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.script-accent {
  font-family: 'Raleigh Handwriting', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}
}

.label-tag {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.label-tag::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--red);
}

.center-text .label-tag::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-light);
  max-width: 650px;
  margin: 1.2rem auto;
  line-height: 1.8;
}

.section-body {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-dark {
  background-color: var(--dark);
  padding: 7rem 0;
  position: relative;
}

.section-black {
  background-color: var(--black);
  padding: 7rem 0;
  position: relative;
}

/* Subtle gradient transition between sections */
.section-dark::before,
.section-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), #b50000);
  color: var(--white);
  font-family: 'One Of A Kind', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.1rem 2.6rem;
  border-radius: 4px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(226, 0, 0, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(226, 0, 0, 0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'One Of A Kind', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-large {
  font-size: 1.15rem;
  padding: 1.3rem 3.2rem;
}

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-family: 'One Of A Kind', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(226,0,0,0.3);
}

.btn-nav:hover {
  background: #b50000;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(226,0,0,0.4);
}

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 0.8rem 0;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 1px 30px rgba(226, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.4rem 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 55px;
  width: auto;
  transition: var(--transition);
}

#navbar.scrolled .nav-logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a:not(.btn-nav).active::after {
  width: 100%;
}

.nav-links a:not(.btn-nav):hover,
.nav-links a:not(.btn-nav).active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: 7rem 0 5rem;
}

/* Animated gradient background */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(226,0,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255,168,0,0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(226,0,0,0.08) 0%, transparent 40%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('Website Files/Logo.png') no-repeat center right;
  background-size: 35%;
  opacity: 0.03;
  pointer-events: none;
}

/* Noise texture for depth */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-eyebrow {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  opacity: 0.9;
}

.hero-headline {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 0%, #ddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text-light);
  margin-bottom: 1.8rem;
  line-height: 1.8;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.4rem;
  margin-top: 1.5rem;
  align-items: center;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  transition: color var(--transition);
}

.hero-benefit:hover {
  color: var(--white);
}

.hero-benefit-icon {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  stroke-width: 1.5;
}

/* Hero photo column */
.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid rgba(226,0,0,0.3);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(226,0,0,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  display: block;
  transition: var(--transition-slow);
}

.hero-photo:hover img {
  box-shadow:
    0 35px 90px rgba(0,0,0,0.7),
    0 0 80px rgba(226,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

/* Decorative corner accents */
.hero-photo::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  border-radius: 2px 0 0 0;
  opacity: 0.6;
  z-index: 3;
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 50px;
  height: 50px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  border-radius: 0 0 2px 0;
  opacity: 0.6;
  z-index: 3;
}

.hero-photo-badge {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  background: linear-gradient(135deg, rgba(226,0,0,0.95), rgba(140,0,0,0.95));
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.7;
  padding: 1rem 1.3rem;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 4;
}

.hero-photo-badge strong {
  font-family: 'One Of A Kind', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.15rem;
  color: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; height: 30px; }
  50% { opacity: 1; height: 50px; }
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: linear-gradient(135deg, var(--red), #b50000);
  padding: 0.85rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: trustShimmer 4s infinite;
}

@keyframes trustShimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.trust-bar-inner span::before {
  content: '\2713  ';
}

/* ===========================
   ABOUT / COACH
   =========================== */
.coach-images {
  position: relative;
}

.coach-img-main {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 2/3;
  border: 1px solid rgba(226,0,0,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(226,0,0,0.08);
  display: block;
  transition: var(--transition-slow);
}

.coach-images:hover .coach-img-main {
  box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 60px rgba(226,0,0,0.12);
  transform: translateY(-4px);
}

/* Decorative element behind coach photo */
.coach-images::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(226,0,0,0.15);
  border-radius: 8px;
  z-index: -1;
}

.coach-text h2 {
  margin-bottom: 0.5rem;
}

.coach-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.coach-text strong {
  color: var(--gold);
}

.credentials {
  background: rgba(226,0,0,0.06);
  border-left: 3px solid var(--red);
  padding: 1.2rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-top: 1.5rem;
  backdrop-filter: blur(5px);
}

.cred-title {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 0.8rem !important;
}

.credentials ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.credentials li {
  color: var(--text-light);
  font-size: 0.9rem;
}

.credentials li::before {
  content: '\2014  ';
  color: var(--red);
}

/* ===========================
   PILLARS
   =========================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.pillar {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar:hover {
  border-color: rgba(226,0,0,0.3);
  transform: translateY(-6px);
  background: rgba(226,0,0,0.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  background: none;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   PHOENIX STANDARD
   =========================== */
.phoenix-standard {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.standard-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
  text-align: left;
}

.standard-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
}

.red-dash {
  color: var(--red);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.standard-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.service-card {
  background: rgba(20,20,20,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  backdrop-filter: blur(5px);
}

.service-card:hover {
  border-color: rgba(226,0,0,0.4);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 30px rgba(226,0,0,0.08);
}

.service-card.featured {
  border-color: rgba(226,0,0,0.5);
  box-shadow: 0 0 50px rgba(226,0,0,0.12);
  background: rgba(226,0,0,0.03);
}

.service-card.featured:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 60px rgba(226,0,0,0.2);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--red), #b50000);
  color: var(--white);
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(226,0,0,0.4);
}

.service-header {
  padding: 2rem 1.8rem 1rem;
}

.service-tag {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.service-header h3 {
  color: var(--white);
  margin-bottom: 0.3rem;
  -webkit-text-fill-color: var(--white);
  background: none;
}

.service-sub {
  font-family: 'Raleigh Handwriting', cursive;
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.service-price {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.service-price span {
  font-family: 'One Of A Kind', sans-serif;
  font-size: 1.5rem;
  color: var(--red);
}

.service-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black);
  position: relative;
}

.service-video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(20,20,20,0.8));
  pointer-events: none;
}

.service-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 1.5rem 1.8rem;
  flex: 1;
}

.service-body-tall {
  padding-top: 4rem;
}

.service-body p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.best-for-label,
.includes-label {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}

.service-body ul {
  list-style: none;
  margin-bottom: 1rem;
}

.service-body li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-body li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.8rem;
}

.service-card .btn-primary {
  margin: 0 1.8rem 1.8rem;
  text-align: center;
}

/* ===========================
   COMPARE TABLE
   =========================== */
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 4rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(20,20,20,0.5);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table thead tr {
  background: linear-gradient(135deg, var(--red), #b50000);
}

.compare-table th {
  font-family: 'One Of A Kind', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 1rem 1.2rem;
  text-align: left;
  color: var(--white);
}

.compare-table th:first-child {
  background: transparent;
}

.compare-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-light);
  vertical-align: top;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(odd) {
  background: rgba(255,255,255,0.015);
}

.compare-table tbody tr:hover {
  background: rgba(226,0,0,0.04);
}

.compare-table td:first-child {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.price-cell {
  font-family: 'One Of A Kind', sans-serif;
  color: var(--gold) !important;
  font-size: 1rem !important;
  letter-spacing: 0.05em;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.6rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  grid-row: span 1;
}

/* Portrait photos get 2 rows */
.gallery-item.gallery-tall {
  grid-row: span 2;
}

/* Landscape photos get 2 columns */
.gallery-item.gallery-landscape {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===========================
   TRANSFORMATIONS
   =========================== */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.transform-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
}

.transform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226,0,0,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 20px rgba(226,0,0,0.1);
}

.transform-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.testimonial-card img {
  width: 100%;
  border-radius: 8px;
}

.pull-quote {
  font-family: 'Raleigh Handwriting', cursive;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: normal;
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
  text-align: left;
  position: relative;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: -5px;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ===========================
   FOUNDATION
   =========================== */
.foundation-two-col {
  gap: 5rem;
}

.foundation-img {
  position: relative;
}

.foundation-img img {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(226,0,0,0.15), 0 0 30px rgba(226,0,0,0.08);
  border: 1px solid rgba(226,0,0,0.15);
  transition: var(--transition-slow);
}

.foundation-img:hover img {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(226,0,0,0.2), 0 0 50px rgba(226,0,0,0.12);
}

.foundation-text h2 {
  margin-bottom: 0.5rem;
}

.foundation-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.foundation-text ul {
  margin-bottom: 2rem;
}

.foundation-text li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.foundation-text li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--red);
}

.foundation-cta {
  margin-top: 2rem;
}

.foundation-price {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem !important;
  color: var(--white) !important;
}

.foundation-price span {
  font-family: 'One Of A Kind', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.foundation-note {
  margin-top: 0.8rem !important;
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
}

/* ===========================
   WHO THIS IS FOR
   =========================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}

.who-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
}

.who-item:hover {
  border-color: rgba(226,0,0,0.3);
  background: rgba(226,0,0,0.03);
  transform: translateY(-3px);
}

.who-check {
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.who-item p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===========================
   APPLY CTA
   =========================== */
.section-apply {
  position: relative;
  padding: 9rem 0;
  background: var(--black);
  overflow: hidden;
}

.section-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(226,0,0,0.15) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(226,0,0,0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.apply-overlay {
  position: absolute;
  inset: 0;
  background: url('Website Files/Logo.png') no-repeat center;
  background-size: 35%;
  opacity: 0.03;
  pointer-events: none;
}

.apply-content {
  position: relative;
  z-index: 2;
}

.apply-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.apply-sub {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo img {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: #444;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 4rem 0 3.5rem;
  text-align: left;
}

.step {
  flex: 1;
  background: rgba(20,20,20,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--red);
  border-radius: 10px;
  padding: 2.5rem 2rem 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(226,0,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.step:hover {
  border-color: rgba(226,0,0,0.5);
  background: rgba(25,25,25,0.9);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 25px rgba(226,0,0,0.1);
}

.step-number {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226,0,0,0.08);
  border: 1px solid rgba(226,0,0,0.2);
  border-radius: 10px;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.step:hover .step-icon-wrap {
  background: rgba(226,0,0,0.12);
  border-color: rgba(226,0,0,0.4);
}

.step-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.step-label {
  font-family: 'Ultra Monic', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.step h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  line-height: 1.3;
  -webkit-text-fill-color: var(--white);
  background: none;
}

.step p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  flex: 1;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  flex-shrink: 0;
  align-self: center;
  margin-top: -1.5rem;
}

.step-connector svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  opacity: 0.4;
}

/* ===========================
   STICKY MOBILE CTA
   =========================== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(135deg, var(--red), #b50000);
  padding: 0.9rem 1.5rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(226,0,0,0.3);
}

.sticky-cta-bar a {
  font-family: 'One Of A Kind', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ===========================
   MY TRANSFORMATION (inside coach section)
   =========================== */
.my-transformation {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.transformation-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.transformation-photo:hover {
  border-color: rgba(226,0,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.transformation-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ===========================
   PHOTO STRIP (inline in sections)
   =========================== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 2.5rem auto;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  display: block;
}

/* ===========================
   PHOTO BREAK (between sections)
   =========================== */
.photo-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ===========================
   COACH SECONDARY IMAGE
   =========================== */
.coach-img-secondary {
  width: 55%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid rgba(226,0,0,0.2);
  position: absolute;
  bottom: -30px;
  right: -20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  z-index: 2;
}

.coach-images {
  position: relative;
  margin-bottom: 30px;
}

/* ===========================
   SERVICE PHOTO (for cards without video)
   =========================== */
.service-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--black);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for grid items */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    order: 1;
  }

  .hero-photo {
    order: 2;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-photo::before,
  .hero-photo::after {
    display: none;
  }

  .hero-photo-badge {
    left: 0;
    bottom: -1rem;
    font-size: 0.62rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-benefits {
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .hero-benefit {
    font-size: 0.58rem;
    gap: 0.3rem;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .coach-images::before {
    display: none;
  }

  .steps-grid {
    flex-direction: column;
    gap: 1.2rem;
  }

  .step-connector {
    display: none;
  }

  .step-number {
    font-size: 2.4rem;
  }

  .foundation-two-col {
    gap: 3rem;
  }

  .transformation-photos {
    max-width: 100%;
  }

  .photo-strip {
    max-width: 100%;
  }

  .photo-strip img {
    height: 150px;
  }

  .photo-break {
    height: 160px;
  }

  .coach-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 1rem;
    aspect-ratio: 4/3;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.8rem;
    border-left: 1px solid rgba(226,0,0,0.2);
    align-items: flex-start;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    color: var(--white);
  }

  .section-dark, .section-black {
    padding: 5rem 0;
  }
}

@media (max-width: 600px) {
  .sticky-cta-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
    font-size: 16px;
  }

  .section-dark, .section-black {
    padding: 4rem 0;
  }

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

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

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

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .standard-list {
    text-align: left;
  }

  .photo-strip {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .photo-strip img {
    height: 180px;
  }

  .photo-break {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-break img {
    height: 160px;
  }

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