/* ============================================
   10th Planet Tigard - Global Styles
   Dark premium theme with gold accents
   ============================================ */
/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0A0A0A;
    --bg-surface: #111111;
    --bg-elevated: #141414;
    --bg-card: #111111;
    --border-subtle: #1A1A1A;
    --border-medium: #262626;
    --gold: #C9A84C;
    --gold-hover: #D4B65E;
    --gold-dark: #A8893D;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --text-faint: #52525B;
    --kids-color: #C9A84C;
    --muay-thai-color: #E8B04A;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
    font-size: 1.375rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Layout --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section--surface {
    background: var(--bg-surface);
}

/* --- Section Tag (the gold label with line) --- */
.section-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.section-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-tag span {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-tag--center {
    justify-content: center;
}

.section-tag--center::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-tag--center::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn--primary:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn--large {
    padding: 1.25rem 2.75rem;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s ease;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav__logo-main {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.nav__logo-sub {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
}

.nav__link--dropdown {
    position: relative;
}

.nav__link--dropdown::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav__link--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.nav__dropdown a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
    background-image: url('Untitled%20design%20(32).png');
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
}

.hero__headline {
    margin-bottom: 1.5rem;
}

.hero__sub {
    font-size: 1.125rem;
    color: #f7f7f7;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.85),
    rgba(10, 10, 10, 0.95)
  );
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero__content h1 {
    margin-bottom: 1rem;
}

.page-hero__content p {
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.75rem 0;
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-stat__number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.trust-stat__label strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.03em;
}

.trust-stat__label span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

/* ============================================
   ABOUT SECTION (homepage)
   ============================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-split__text h2 {
    margin-bottom: 1.5rem;
}

.about-split__text p {
    margin-bottom: 1.25rem;
}

.about-split__image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-surface);
}

.about-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   PROGRAM CARDS
   ============================================ */
.program-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.program-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.program-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.program-card__image {
    height: 320px;
    overflow: hidden;
    background: var(--bg-surface);
}

.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-size: cover;
}

.program-card:hover .program-card__image img {
    transform: scale(1.05);
}

.program-card__content {
    padding: 2.5rem;
}

.program-card__content h3 {
    margin-bottom: 1rem;
}

.program-card__content p {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* ============================================
   BENEFIT GRID
   ============================================ */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 2.25rem;
    transition: border-color 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--border-medium);
}

.benefit-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.benefit-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.benefit-card h4 {
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.benefit-card p {
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ============================================
   COACH SECTION
   ============================================ */
.coach-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem;
    align-items: center;
}

.coach-section__image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-surface);
}

.coach-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.coach-section__role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 2rem;
}

.coach-section__text p {
    margin-bottom: 1rem;
}

.coach-section__text p:last-child {
    color: var(--text-muted);
}

/* ============================================
   SCHEDULE GRID
   ============================================ */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.schedule-day {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.schedule-day__header {
    padding: 0.875rem 1.25rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--bg-primary);
}

.schedule-day__class {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.schedule-day__class:last-child {
    border-bottom: none;
}

.schedule-day__time {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.schedule-day__name {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.schedule-day__name--kids {
    color: var(--gold);
}

.schedule-day__name--special {
    color: var(--muay-thai-color);
}

/* Full schedule page (7 columns) */
.schedule-grid--full {
    grid-template-columns: repeat(7, 1fr);
}

.schedule-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-surface);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.testimonial__stars svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.testimonial__quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial__attribution strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial__attribution span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.88),
    rgba(10, 10, 10, 0.92)
  );
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner__content h2 {
    margin-bottom: 1.25rem;
}

.cta-banner__content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-banner__phone {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050505;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer__social a:hover {
    color: var(--gold);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer__col a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer__col a:hover {
    color: var(--text-secondary);
}

.footer__col a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-faint);
}

/* ============================================
   FEATURES LIST (program pages)
   ============================================ */
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: var(--border-medium);
}

.feature-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    color: var(--gold);
}

.feature-item__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    color: var(--gold);
}

.contact-info__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.contact-info__item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info__item p {
    font-size: 0.9375rem;
}

.contact-info__item a {
    color: var(--gold);
    transition: color 0.2s ease;
}

.contact-info__item a:hover {
    color: var(--gold-hover);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ============================================
   HOURS TABLE
   ============================================ */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9375rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-secondary);
}

/* ============================================
   MAP
   ============================================ */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 16/9;
    background: var(--bg-surface);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(0.9) brightness(0.6);
}

/* ============================================
   ABOUT PAGE EXTRAS
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-medium);
}

.value-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.value-card h4 {
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
}

/* ============================================
   MODAL / POPUP
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal {
    position: relative;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
    transform: translateY(0) scale(1);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.modal__close:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border-medium);
}

.modal__close svg {
    width: 18px;
    height: 18px;
}

.modal__body {
    height: 724px;
    max-height: calc(90vh - 70px);
    overflow-y: auto;
}

.modal__body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coach-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .schedule-grid--full {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta-desktop {
        display: none;
    }

    .hero {
        min-height: 90vh;
    }

    .hero__content {
        padding-top: 100px;
    }

    .trust-bar__inner {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .trust-bar__divider {
        display: none;
    }

    .trust-stat {
        flex: 0 0 calc(50% - 1rem);
        justify-content: center;
    }

    .program-cards {
        grid-template-columns: 1fr;
    }

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

    .schedule-grid,
    .schedule-grid--full {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .schedule-grid,
    .schedule-grid--full {
        grid-template-columns: 1fr;
    }

    .trust-stat {
        flex: 0 0 100%;
    }
}
