/* ============================================
   LA Academy — Brand Styles
   Color Palette:
     Emerald 900: #064e3b (deep green)
     Emerald 800: #065f46
     Emerald 700: #047857
     Emerald 600: #059669
     Cream:       #faf6f0
     Cream Dark:  #f0e8da
     Charcoal:    #1c1917
     Warm Gray:   #57534e
     Light Gray:  #e7e5e4
============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream: #faf6f0;
    --cream-dark: #f0e8da;
    --charcoal: #1c1917;
    --charcoal-light: #292524;
    --warm-gray: #57534e;
    --light-gray: #e7e5e4;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--emerald-700);
    color: var(--white);
    border-color: var(--emerald-700);
}

.btn-primary:hover {
    background-color: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cream);
    border-color: rgba(250, 246, 240, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(250, 246, 240, 0.1);
    border-color: var(--cream);
}

.btn-outline {
    background-color: transparent;
    color: var(--emerald-700);
    border-color: var(--emerald-700);
}

.btn-outline:hover {
    background-color: var(--emerald-700);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--emerald-900);
}

.btn-light {
    background-color: var(--white);
    color: var(--emerald-900);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow-line {
    width: 32px;
    height: 2px;
    background-color: var(--emerald-600);
    flex-shrink: 0;
}

.section-eyebrow span:last-child {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-700);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

.section-header .section-sub {
    margin-top: 16px;
}

/* ============================================
   HEADER / NAV
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald-900);
    background-color: var(--emerald-900);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-wordmark {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
}

.logo-light .logo-mark {
    background-color: var(--white);
    color: var(--emerald-900);
}

.logo-light .logo-wordmark {
    color: var(--cream);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--warm-gray);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--emerald-700);
    background-color: rgba(6, 78, 59, 0.06);
}

.btn-nav {
    background-color: var(--emerald-700);
    color: var(--white) !important;
    margin-left: 8px;
}

.btn-nav:hover {
    background-color: var(--emerald-800);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--charcoal);
}

/* ============================================
   MOBILE NAV
============================================ */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    text-align: center;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 8px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 12px 24px;
    display: block;
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--emerald-700);
}

.mobile-nav-cta {
    margin-top: 24px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--emerald-700);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
}

/* ============================================
   HERO
============================================ */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--cream);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px 0;
}

.hero-content {
    max-width: 540px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-eyebrow .eyebrow-line {
    width: 48px;
    height: 2px;
    background-color: var(--emerald-600);
}

.hero-eyebrow span:last-child {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-700);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--emerald-700);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-900);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--light-gray);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(6, 78, 59, 0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background-color: var(--emerald-700);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.15;
}

/* ============================================
   ABOUT
============================================ */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

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

.about-content .section-headline {
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.about-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--cream);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.badge svg {
    color: var(--emerald-700);
    flex-shrink: 0;
}

/* ============================================
   PROGRAMS
============================================ */
.programs {
    padding: 120px 0;
    background-color: var(--cream);
}

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

.program-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.1);
}

.program-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.program-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6, 78, 59, 0.15) 100%);
}

.program-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(6, 78, 59, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
}

.program-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.program-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 20px;
    flex: 1;
}

.program-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--charcoal);
    font-weight: 500;
}

.program-features li svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

.program-card-content .btn {
    align-self: flex-start;
}

/* ============================================
   WHY US
============================================ */
.why-us {
    padding: 120px 0;
    background-color: var(--emerald-900);
    color: var(--cream);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-us-content .section-headline {
    color: var(--cream);
}

.why-us-content .section-eyebrow .eyebrow-line {
    background-color: var(--emerald-500);
}

.why-us-content .section-eyebrow span:last-child {
    color: var(--emerald-400);
}

.why-us-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(250, 246, 240, 0.7);
    margin-bottom: 48px;
}

.why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item-num {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-500);
    padding-top: 4px;
}

.why-item-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
}

.why-item-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 246, 240, 0.6);
}

.why-us-image-stack {
    position: relative;
    height: 560px;
}

.stack-card {
    border-radius: 16px;
    overflow: hidden;
    position: absolute;
}

.stack-card-main {
    width: 320px;
    height: 400px;
    top: 0;
    right: 0;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.stack-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card-accent {
    width: 220px;
    height: 160px;
    bottom: 0;
    left: 0;
    background-color: var(--emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.stack-card-inner {
    text-align: center;
}

.stack-card-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stack-card-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(250, 246, 240, 0.8);
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    padding: 120px 0;
    background-color: var(--cream);
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.08);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--emerald-200);
    position: absolute;
    top: 24px;
    right: 32px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
}

.testimonial-program {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--emerald-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CTA
============================================ */
.cta {
    padding: 100px 0;
    background-color: var(--charcoal);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-content {
    flex: 1;
    max-width: 560px;
}

.cta-eyebrow .eyebrow-line {
    background-color: var(--emerald-500);
}

.cta-eyebrow span:last-child {
    color: var(--emerald-400);
}

.cta-headline {
    color: var(--cream);
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(250, 246, 240, 0.6);
    margin-top: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============================================
   CONTACT
============================================ */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(6, 78, 59, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.contact-detail-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-700);
    transition: color var(--transition);
}

.contact-detail-link:hover {
    color: var(--emerald-800);
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: var(--cream);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background-color: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: rgba(6, 78, 59, 0.06);
    border: 1px solid rgba(6, 78, 59, 0.15);
    border-radius: 8px;
    color: var(--emerald-800);
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-success svg {
    color: var(--emerald-700);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: 80px 0 0;
    background-color: var(--charcoal);
    color: var(--cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(250, 246, 240, 0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 246, 240, 0.6);
    margin-top: 16px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(250, 246, 240, 0.6);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--cream);
}

.footer-address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(250, 246, 240, 0.6);
}

.footer-link {
    color: var(--emerald-400);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--emerald-300);
    text-decoration: underline;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 246, 240, 0.4);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 32px;
    }

    .about-grid,
    .why-us-grid,
    .contact-grid {
        gap: 48px;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }

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

    .about-image-wrapper {
        max-width: 480px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-image-stack {
        height: 400px;
        order: -1;
    }

    .stack-card-main {
        width: 240px;
        height: 300px;
    }

    .stack-card-accent {
        width: 180px;
        height: 130px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .cta-actions .btn {
        justify-content: center;
    }

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

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

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

    .hero-headline {
        font-size: 2rem;
    }

    .section-headline {
        font-size: 1.75rem;
    }

    .about,
    .programs,
    .why-us,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .program-card-content {
        padding: 24px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }
}
