/* --- RESET & VARIABLES --- */
:root {
    --bg-color: #0E0E0E;
    --bg-card: #161616;
    --text-main: #F5F5F5;
    --text-muted: #888888;
    --accent: #FFD400; /* Street Yellow */
    --accent-hover: #E5BE00;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-lg: 120px;
    --spacing-md: 80px;
    --spacing-sm: 40px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 500;
}

/* --- TYPOGRAPHY SCALE --- */
h1 { font-size: clamp(3.5rem, 10vw, 8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.5rem; letter-spacing: 1px; }
p { color: #cccccc; max-width: 65ch; margin-bottom: 1.5rem; font-size: 1.1rem; }
.big-p { font-size: 1.4rem; color: white; border-left: 2px solid var(--accent); padding-left: 20px; }
.text-outline { -webkit-text-stroke: 1px var(--text-main); color: transparent; }

/* --- UTILITIES --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.container.narrow { max-width: 800px; }
.section-padding { padding: var(--spacing-lg) 0; }
.bg-darker { background-color: #050505; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-head);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--text-main);
}
.btn.primary { background: var(--accent); color: var(--bg-color); border-color: var(--accent); }
.btn.primary:hover { background: var(--accent-hover); transform: translateY(-3px); }
.btn.secondary { background: transparent; color: var(--text-main); margin-left: 10px; }
.btn.secondary:hover { background: rgba(255,255,255,0.1); }

.btn-small {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-small:hover { background: var(--accent); color: var(--bg-color); }

/* --- HEADER & NAV --- */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: rgba(14, 14, 14, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }

.desktop-nav a {
    color: var(--text-main); text-decoration: none;
    margin-left: 30px; font-size: 0.9rem; text-transform: uppercase;
    transition: color 0.3s;
}
.desktop-nav a:hover { color: var(--accent); }
.btn-nav { border: 1px solid var(--text-main); padding: 8px 20px; }
.btn-nav:hover { background: var(--text-main); color: var(--bg-color) !important; }

/* Mobile Menu Button */
.burger-menu {
    display: none; background: none; border: none;
    flex-direction: column; gap: 6px; cursor: pointer;
}
.burger-menu span {
    display: block; width: 30px; height: 2px; background: var(--text-main);
}

/* Mobile Overlay */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--bg-color); z-index: 2000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: right 0.4s ease-in-out;
}
.mobile-menu.active { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-link { font-family: var(--font-head); font-size: 2rem; color: var(--text-main); text-decoration: none; text-transform: uppercase; }
.mobile-link.highlight { color: var(--accent); }
.close-menu {
    position: absolute; top: 30px; right: 30px;
    background: none; border: none; color: var(--text-main);
    font-size: 3rem; cursor: pointer;
}

/* --- HERO --- */
.hero {
    height: 100vh; min-height: 600px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 0 20px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0E0E0E 70%);
}
.hero-actions { margin-top: 2rem; display: flex; gap: 10px; justify-content: center; }
.scroll-indicator {
    position: absolute; bottom: 30px; opacity: 0.6; font-size: 0.8rem; text-transform: uppercase;
}
.scroll-indicator .line { width: 1px; height: 40px; background: var(--text-main); margin: 10px auto 0; }

/* --- MARQUEE --- */
.marquee-wrapper { background: var(--accent); overflow: hidden; padding: 10px 0; color: var(--bg-color); }
.marquee-content {
    white-space: nowrap; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
    animation: scroll 20s linear infinite;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SECTIONS: PHILOSOPHY & SPLIT --- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.image-block { position: relative; }
.image-block img { width: 100%; height: auto; filter: grayscale(100%); transition: filter 0.5s; }
.image-block:hover img { filter: grayscale(0%); }
.overlay-text {
    position: absolute; bottom: 20px; left: -20px;
    background: var(--bg-color); padding: 20px;
    font-family: var(--font-head); font-size: 1.5rem; border: 1px solid var(--accent);
}

/* --- CARDS (Benefits) --- */
.cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px;
}
.card {
    background: var(--bg-card); padding: 40px; border-top: 1px solid #333;
    transition: transform 0.3s;
}
.card:hover { transform: translateY(-10px); border-top-color: var(--accent); }
.card-number { font-family: var(--font-head); font-size: 4rem; color: #222; margin-bottom: 20px; line-height: 1; }

/* --- SCHEDULE LIST --- */
.schedule-list { margin-top: 40px; border-top: 1px solid #333; }
.schedule-item {
    display: grid; grid-template-columns: 100px 1fr auto; gap: 20px;
    padding: 30px 0; border-bottom: 1px solid #333; align-items: center;
}
.schedule-item:hover { background: #111; }
.date { text-align: center; }
.date .day { display: block; font-size: 0.8rem; color: var(--accent); }
.date .num { font-family: var(--font-head); font-size: 2.5rem; line-height: 1; }
.details h3 { margin: 0; font-size: 1.5rem; color: var(--text-main); }
.tag { display: inline-block; background: #222; padding: 4px 10px; font-size: 0.8rem; border-radius: 4px; margin-top: 5px; }

/* --- FAQ ACCORDION --- */
.accordion { margin-top: 40px; max-width: 800px; }
.accordion-item { border-bottom: 1px solid #333; }
.accordion-header {
    width: 100%; text-align: left; padding: 25px 0; background: none; border: none;
    color: var(--text-main); font-size: 1.2rem; font-family: var(--font-head);
    display: flex; justify-content: space-between; cursor: pointer;
}
.accordion-header .icon { font-size: 1.5rem; transition: transform 0.3s; }
.accordion-header[aria-expanded="true"] .icon { transform: rotate(45deg); color: var(--accent); }
.accordion-content {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding-right: 20px;
}
.accordion-content p { padding-bottom: 25px; color: #999; }

/* --- FINAL CTA FORM --- */
.final-cta { text-align: center; background: linear-gradient(to top, #1a1a1a, var(--bg-color)); }
.cta-box { border: 1px solid #333; padding: 60px 20px; background: var(--bg-card); position: relative; overflow: hidden; }
.cta-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--accent);
}
.lead-form {
    margin-top: 30px; display: flex; flex-direction: column; gap: 15px; max-width: 400px; margin-left: auto; margin-right: auto;
}
.input-group input {
    width: 100%; padding: 15px; background: #000; border: 1px solid #333;
    color: white; font-family: var(--font-body); outline: none; transition: 0.3s;
}
.input-group input:focus { border-color: var(--accent); }
.btn-submit {
    padding: 15px; background: var(--text-main); border: none; font-weight: bold;
    text-transform: uppercase; cursor: pointer; transition: 0.3s; font-family: var(--font-head); letter-spacing: 1px;
}
.btn-submit:hover { background: var(--accent); }
.privacy-text { font-size: 0.8rem; margin-top: 15px; opacity: 0.5; }

/* --- FOOTER --- */
footer { border-top: 1px solid #333; padding: 50px 0; margin-top: 50px; }
.footer-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-links a { color: var(--text-muted); text-decoration: none; margin-left: 20px; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); }
.copyright { margin-top: 40px; font-size: 0.8rem; color: #444; text-align: center; }

/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    /* Header & Nav */
    .desktop-nav { display: none; }
    .burger-menu { display: flex; }
    
    /* Hero */
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { display: block; width: 100%; text-align: center; margin: 0 0 10px 0; }
    
    /* Sections */
    .split-grid { grid-template-columns: 1fr; }
    .image-block { order: -1; margin-bottom: 20px; }
    .overlay-text { right: 0; left: auto; bottom: -20px; font-size: 1.2rem; }
    
    /* Schedule */
    .schedule-item { grid-template-columns: 1fr; text-align: center; gap: 10px; }
    .date .num { font-size: 2rem; display: inline-block; }
    .date .day { display: inline-block; margin-right: 5px; }
    .action { margin-top: 10px; }
    .btn-small { display: block; width: 100%; }

    /* Footer */
    .footer-flex { flex-direction: column; text-align: center; }
    .footer-links a { margin: 0 10px; }
}