/* =============================================
   BALI MOTORSPORT ACADEMY — STYLES
   Red & White | Minimalist | Rally-Themed
   ============================================= */

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

:root {
    --red: #c41e2a;
    --red-dark: #9a1720;
    --red-light: #e8343f;
    --red-glow: rgba(196, 30, 42, 0.15);
    --white: #ffffff;
    --off-white: #f8f7f5;
    --gray-50: #fafaf9;
    --gray-100: #f0efed;
    --gray-200: #e2e0dc;
    --gray-300: #c8c5be;
    --gray-400: #9b9790;
    --gray-500: #6e6b64;
    --gray-600: #4a4843;
    --gray-700: #333130;
    --gray-800: #1f1e1d;
    --gray-900: #141312;
    --black: #0a0a09;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Oswald', 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gray-900);
}

.text-accent {
    color: var(--red);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--red);
}

.section-tag-light {
    color: var(--white);
}

.section-tag-light::before {
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-top: 16px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 42, 0.3);
}

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

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

.btn-card {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
    font-size: 0.85rem;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
}

.btn-card:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 42, 0.25);
}

.btn-card-featured {
    background: var(--red);
    border-color: var(--red);
}

.btn-card-featured:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 9, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--red);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.lang-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lang-option:hover,
.lang-option.active {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.lang-option.active {
    color: var(--red-light);
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 9, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    color: var(--red);
}

.mobile-cta {
    margin-top: 16px;
    font-size: 1.2rem !important;
    background: var(--red);
    padding: 14px 36px;
    border-radius: var(--radius-full);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: url('images/hero-bg.jpeg') center center / cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 9, 0.6);
}

.hero-stripe {
    position: absolute;
    background: var(--red);
    opacity: 0.07;
}

.hero-stripe-1 {
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    transform: skewX(-12deg);
}

.hero-stripe-2 {
    bottom: -30%;
    left: -5%;
    width: 40%;
    height: 80%;
    transform: skewX(8deg);
    opacity: 0.04;
}

.hero-dust {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(196, 30, 42, 0.08) 0%, transparent 70%);
}

.checkered-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0.04;
    background-image:
        linear-gradient(45deg, var(--white) 25%, transparent 25%),
        linear-gradient(-45deg, var(--white) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--white) 75%),
        linear-gradient(-45deg, transparent 75%, var(--white) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--red-light);
    background: rgba(196, 30, 42, 0.12);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    border: 1px solid rgba(196, 30, 42, 0.2);
}

.hero h1 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-line-1,
.hero-line-2,
.hero-line-3 {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
}

.hero-line-1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-line-2 {
    font-size: clamp(2.2rem, 7vw, 4.8rem);
    color: rgba(255,255,255,0.5);
    letter-spacing: -0.01em;
}

.hero-line-3 {
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--red);
    letter-spacing: -0.03em;
    position: relative;
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 28px auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Programs Section --- */
.programs {
    padding: 120px 0;
    background: var(--off-white);
}

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

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.program-card-featured {
    border-color: rgba(196, 30, 42, 0.2);
}

.program-card-featured:hover {
    border-color: rgba(196, 30, 42, 0.3);
    box-shadow: 0 12px 40px rgba(196, 30, 42, 0.1);
}

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

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

.program-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--gray-900);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.program-badge-premium {
    background: var(--gray-700);
}

.program-badge-exclusive {
    background: var(--red);
}

.program-content {
    padding: 24px;
}

.program-age {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.program-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.program-content p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Legend Section --- */
.legend {
    position: relative;
    padding: 120px 0;
    background: var(--gray-900);
    overflow: hidden;
}

.legend-bg {
    position: absolute;
    inset: 0;
}

.legend-stripe {
    position: absolute;
    top: 0;
    left: 60%;
    width: 40%;
    height: 100%;
    background: var(--red);
    opacity: 0.04;
    transform: skewX(-8deg);
}

.legend-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.legend-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 380px;
}

.legend-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.legend-photo-placeholder span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.legend-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 20px;
    max-width: 380px;
}

.legend-card h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.legend-card-role {
    font-size: 0.8rem;
    color: var(--red-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.legend-card-bio {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.legend-info h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.legend-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legend-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Why Chico Button */
.why-chico-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-light);
    padding: 12px 24px;
    border: 1px solid rgba(196, 30, 42, 0.3);
    border-radius: var(--radius-full);
    transition: var(--transition);
    margin-bottom: 8px;
}

.why-chico-btn:hover {
    background: rgba(196, 30, 42, 0.1);
    border-color: var(--red);
}

.why-chico-btn svg {
    transition: var(--transition);
}

.why-chico-btn.active svg {
    transform: rotate(180deg);
}

/* Why Chico Content */
.why-chico-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.why-chico-content.open {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 28px;
    margin-top: 20px;
}

.why-chico-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-chico-item:last-child {
    border-bottom: none;
}

.why-chico-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 42, 0.1);
    border-radius: var(--radius-sm);
    color: var(--red-light);
}

.why-chico-item h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.why-chico-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* Mission */
.legend-mission {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.legend-mission h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.legend-mission p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.legend-mission-highlight {
    font-family: var(--font-display);
    font-size: 1.3rem !important;
    color: var(--red-light) !important;
    font-weight: 600;
    margin-top: 12px;
}

/* Quote */
.legend-quote {
    margin-top: 36px;
    padding: 28px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--red);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.legend-quote p {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legend-quote cite {
    font-size: 0.85rem;
    color: var(--red-light);
    font-style: normal;
    font-weight: 600;
}

/* --- Café Section --- */
.cafe {
    padding: 120px 0;
    background: var(--off-white);
}

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

.cafe-info h2 {
    margin-bottom: 20px;
}

.cafe-lead {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cafe-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cafe-feature {
    display: flex;
    gap: 16px;
    align-items: start;
}

.cafe-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-glow);
    border-radius: var(--radius-sm);
    color: var(--red);
}

.cafe-feature h4 {
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.cafe-feature p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Café images */
.cafe-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.cafe-image-main img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.cafe-image-small img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.cafe-placeholder {
    height: 280px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-lg);
}

.cafe-placeholder span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.cafe-placeholder svg {
    opacity: 0.5;
}

.cafe-image-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cafe-placeholder-sm {
    height: 140px;
}

/* --- Gallery Section --- */
.gallery {
    padding: 120px 0;
    background: var(--gray-900);
}

.gallery .section-header h2 {
    color: var(--white);
}

.gallery .section-tag {
    color: var(--red-light);
}

.gallery .section-tag::before {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.gallery-item-large {
    grid-column: span 2;
}

.gallery-placeholder {
    height: 240px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-md);
}

.gallery-item-large .gallery-placeholder {
    height: 280px;
}

.gallery-placeholder span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background: var(--black);
}

.contact-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    background: linear-gradient(135deg, rgba(196, 30, 42, 0.08) 0%, rgba(196, 30, 42, 0.02) 100%);
    border: 1px solid rgba(196, 30, 42, 0.12);
    border-radius: var(--radius-xl);
    padding: 56px;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    color: var(--white);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.contact-method strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
}

.contact-method span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-placeholder span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.map-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
}

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    padding: 5px 0;
    transition: var(--transition);
    text-transform: none;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-checkered {
    width: 80px;
    height: 16px;
    opacity: 0.15;
    background-image:
        linear-gradient(45deg, var(--white) 25%, transparent 25%),
        linear-gradient(-45deg, var(--white) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--white) 75%),
        linear-gradient(-45deg, transparent 75%, var(--white) 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    border-radius: 2px;
}

/* --- Floating WhatsApp --- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .legend-photo {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
    }

    .legend-photo-frame {
        max-width: 100%;
    }

    .legend-card {
        margin-top: 0;
        max-width: 100%;
    }

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

    .contact-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }

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

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

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .programs {
        padding: 80px 0;
    }

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

    .legend {
        padding: 80px 0;
    }

    .legend-photo {
        grid-template-columns: 1fr;
    }

    .legend-photo-frame {
        max-width: 300px;
        margin: 0 auto;
    }

    .legend-card {
        max-width: 100%;
    }

    .cafe {
        padding: 80px 0;
    }

    .gallery {
        padding: 80px 0;
    }

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

    .gallery-item-large {
        grid-column: span 2;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-box {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 32px;
        height: 1px;
    }

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

    .gallery-item-large {
        grid-column: span 1;
    }

    .cafe-image-small {
        grid-template-columns: 1fr;
    }
}
