* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light theme: white + red + gold */
    --primary: #ffffff;
    --secondary: #c8102e; /* red */
    --accent: #d4af37; /* gold */
    --light-bg: #fff5f6; /* warm light */
    --text: #1a1a1a;
    --border: #eadfe0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #fff6f7 100%);
    overflow-x: hidden;
}

/* Header / Navigation */
header {
    background: #ffffff;
    color: var(--text);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.club-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--secondary);
}

/* Mobile navigation */
.burger-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200, 16, 46, 0.22);
    background: rgba(200, 16, 46, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.burger-button:hover {
    background: rgba(200, 16, 46, 0.1);
    border-color: rgba(200, 16, 46, 0.45);
    transform: translateY(-1px);
}

.burger-icon {
    width: 20px;
    height: 14px;
    position: relative;
}

.burger-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.burger-icon span:nth-child(1) { top: 0; }
.burger-icon span:nth-child(2) { top: 6px; }
.burger-icon span:nth-child(3) { top: 12px; }

body.menu-open .burger-icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
body.menu-open .burger-icon span:nth-child(2) { opacity: 0; }
body.menu-open .burger-icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(84vw, 360px);
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding: 84px 20px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    background: rgba(200, 16, 46, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(200, 16, 46, 0.12);
    border-color: rgba(200, 16, 46, 0.25);
    color: var(--secondary);
}

body.menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .mobile-menu {
    transform: translateX(0);
}

/* Fixed CTA Button */
.cta-button-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--secondary);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 20, 90, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
}

.cta-button-fixed:hover {
    background: #b8103a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 20, 90, 0.5);
}

/* Hero Section */
.hero {
    background: radial-gradient(900px 400px at 15% 20%, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 60%),
                radial-gradient(900px 400px at 85% 20%, rgba(200, 16, 46, 0.16) 0%, rgba(200, 16, 46, 0) 60%),
                linear-gradient(180deg, #ffffff 0%, #fff5f6 100%);
    color: var(--text);
    padding: 6rem 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: 0.08;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.92;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #b8103a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 20, 90, 0.4);
}

/* Sections */
section {
    padding: 4rem 2rem;
}

/* Fade-in on scroll */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent);
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p:first-child {
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 1.25rem;
}

.about-text p:first-child strong {
    color: var(--secondary);
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.86);
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.12) 0%, rgba(212, 175, 55, 0.18) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Coach Section */
.coaches-section {
    position: relative;
}

.coaches-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-arrow {
    background: var(--secondary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: #b8103a;
    transform: scale(1.1);
}

.coaches-slider {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.coach-main {
    flex: 0 0 auto;
    width: 100%;
    max-width: 640px;
    transition: all 0.4s ease;
}

.coach-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
}

.coach-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.coach-image {
    width: 100%;
    height: min(52vw, 380px);
    max-height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-info {
    padding: 1.75rem 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.coach-info h3 {
    font-size: 1.5rem;
    margin: 0 0 0.35rem;
    color: var(--secondary);
    line-height: 1.25;
}

.coach-rank {
    color: rgba(26, 26, 26, 0.72);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 1.1rem;
    line-height: 1.45;
}

.coach-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(26, 26, 26, 0.9);
    margin: 0 0 1.1rem;
}

.coach-lead strong {
    color: var(--secondary);
    font-weight: 700;
}

.coach-achievements-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.6rem;
}

.coach-achievements {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(200, 16, 46, 0.06) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.28);
}

.coach-achievements li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(26, 26, 26, 0.88);
}

.coach-achievements li:last-child {
    margin-bottom: 0;
}

.coach-achievements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

.coach-achievements strong {
    color: var(--secondary);
    font-weight: 700;
}

.coach-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(26, 26, 26, 0.84);
    margin: 0 0 0.85rem;
}

.coach-text:last-of-type {
    margin-bottom: 0;
}

.coach-text strong {
    color: rgba(26, 26, 26, 0.95);
    font-weight: 700;
}

.coach-focus {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    background: rgba(200, 16, 46, 0.06);
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(26, 26, 26, 0.88);
}

.coach-focus strong {
    color: var(--secondary);
    font-weight: 700;
}

.coach-cta {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1.25rem;
    display: block;
    text-decoration: none;
    text-align: center;
}

.coach-cta:hover {
    background: #b8103a;
    transform: translateY(-2px);
}

.coach-counter {
    text-align: center;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 1.5rem;
    border-radius: 10px;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #999;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--secondary);
}

.modal-content h2 {
    text-align: center;
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.extended-plans-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.extended-plan-card {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.extended-plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(212, 20, 90, 0.15);
}

.extended-plan-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(212, 20, 90, 0.05) 0%, rgba(212, 20, 90, 0.02) 100%);
    box-shadow: 0 8px 30px rgba(212, 20, 90, 0.1);
}

.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.extended-plan-card h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    margin-top: 0.3rem;
}

.plan-price {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.plan-price span {
    font-size: 1rem;
}

.extended-plan-card ul {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.extended-plan-card li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.85rem;
}

.extended-plan-card li:last-child {
    border-bottom: none;
}

.extended-plan-card .cta-button {
    margin-top: 0.8rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Schedule Section */
.schedule {
    background: #ffffff;
}

.schedule-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
}

.schedule-scroll .schedule-table {
    margin-top: 0;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.schedule-table thead {
    background: linear-gradient(90deg, rgba(200, 16, 46, 0.1) 0%, rgba(212, 175, 55, 0.16) 100%);
    color: var(--text);
}

.schedule-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 700;
    color: var(--text);
}

.schedule-table td {
    padding: 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: rgba(26, 26, 26, 0.9);
}

.schedule-table tbody tr:hover {
    background: rgba(200, 16, 46, 0.04);
}

.schedule-table tbody tr:nth-child(even) {
    background: rgba(0,0,0,0.02);
}

/* Pricing Section */
.pricing {
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(200,16,46,0.14);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(212, 20, 90, 0.15);
}

.pricing-card.featured {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.pricing-card .price {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-card .price-period {
    font-size: 0.9rem;
    color: #999;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    color: #555;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* Reviews Section */
.reviews {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
    border: 1px solid rgba(0,0,0,0.06);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--text);
}

.review-rating {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Contacts Section */
.contacts {
    background: white;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
    font-weight: bold;
}

.contact-item p {
    line-height: 1.6;
    color: #555;
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #b8103a;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 1.2rem;
    border: 1px solid rgba(0,0,0,0.06);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    color: #ffffff;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    overflow: hidden;
}

.map-placeholder iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 340px;
    border: 0;
}

/* Footer */
footer {
    background: #ffffff;
    color: var(--text);
    text-align: center;
    padding: 2rem;
    border-top: 3px solid var(--secondary);
}

footer p {
    opacity: 0.9;
}

/* Responsive — tablets & phones (до 768px) */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.55;
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    }

    .header-content {
        padding: 0.65rem 1rem;
        gap: 0.5rem;
        align-items: center;
    }

    .logo-row {
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }

    .club-logo {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    header h1 {
        font-size: clamp(0.9rem, 3.8vw, 1.15rem);
        letter-spacing: 0.02em;
        line-height: 1.25;
        word-wrap: break-word;
        hyphens: auto;
    }

    .burger-button {
        display: inline-flex;
        flex-shrink: 0;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: unset;
        padding: clamp(2.5rem, 8vw, 3.5rem) 1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 0.25rem;
    }

    .hero h2 {
        font-size: clamp(1.5rem, 5.5vw, 1.9rem);
        line-height: 1.2;
        margin-bottom: 0.85rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        display: inline-block;
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
        box-sizing: border-box;
    }

    section {
        padding: 2.5rem 1rem;
    }

    section h2 {
        font-size: clamp(1.45rem, 4.5vw, 1.85rem);
        margin-bottom: 1.75rem;
        line-height: 1.25;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text p:first-child {
        font-size: 1.12rem;
        line-height: 1.35;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.1rem;
    }

    .about-image {
        height: min(52vw, 280px);
        min-height: 200px;
    }

    .coaches-carousel {
        gap: 0.4rem;
        margin-top: 2rem;
        align-items: stretch;
    }

    .coaches-slider {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.2rem;
        align-self: center;
    }

    .coach-main {
        max-width: 100%;
    }

    .coach-image {
        height: min(58vw, 300px);
    }

    .coach-info {
        padding: 1.25rem 1rem 1.5rem;
    }

    .coach-info h3 {
        font-size: 1.3rem;
    }

    .coach-lead,
    .coach-text,
    .coach-achievements li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .coach-achievements {
        padding: 0.75rem 0.85rem;
    }

    .coach-cta {
        min-height: 48px;
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .schedule-scroll {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-right: 0.25rem;
    }

    .schedule-table {
        min-width: 100%;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.75rem 0.45rem;
        font-size: 0.9rem;
        line-height: 1.45;
        word-break: break-word;
        vertical-align: top;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-card {
        min-width: 0;
        padding: 1.5rem 1.15rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card .cta-button {
        min-height: 48px;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .review-card {
        padding: 1.35rem 1.1rem;
        min-width: 0;
    }

    .review-text {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-image {
        height: min(52vw, 340px);
        min-height: 220px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        padding: 1.35rem 1.1rem;
        min-width: 0;
    }

    .contact-item p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .map-placeholder {
        height: auto;
        min-height: 280px;
    }

    .map-placeholder iframe {
        height: min(50vw, 320px);
        min-height: 260px;
    }

    .modal-content {
        width: 92%;
        max-width: 100%;
        margin: 8vh auto;
        padding: 1.25rem 1rem;
        max-height: min(88vh, 900px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content h2 {
        font-size: 1.35rem;
        line-height: 1.3;
        padding: 0 0.25rem;
    }

    .extended-plans-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .extended-plan-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    .extended-plan-card .cta-button {
        min-height: 48px;
        width: 100%;
    }

    .cta-button-fixed {
        bottom: max(0.75rem, env(safe-area-inset-bottom, 0.75rem));
        right: max(0.75rem, env(safe-area-inset-right, 0.75rem));
        left: auto;
        padding: 0.8rem 1.1rem;
        font-size: 0.95rem;
        min-height: 48px;
        max-width: calc(100vw - 1.5rem);
        box-sizing: border-box;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.05rem;
    }

    .hero {
        padding: 2.25rem 0.85rem;
    }

    .hero h2 {
        font-size: clamp(1.35rem, 6vw, 1.65rem);
    }

    section h2 {
        font-size: 1.45rem;
    }

    .modal-content {
        width: 94%;
        margin: 6vh auto;
        padding: 1rem 0.85rem;
    }
}
