/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
p { color: #aaa; line-height: 1.7; margin-bottom: 1rem; }
.section-label { color: #f0a500; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #1a1a1a; }
.nav-container { max-width: 1100px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-weight: 900; font-size: 1.2rem; color: #f0a500; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #aaa; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

/* Buttons */
.btn { display: inline-block; padding: 0.85rem 2rem; border-radius: 6px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s; border: none; }
.btn-primary { background: #f0a500; color: #000; }
.btn-primary:hover { background: #ffb520; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #333; }
.btn-outline:hover { border-color: #f0a500; color: #f0a500; }
.btn-full { display: block; width: 100%; text-align: center; }

/* Hero */
.hero { padding: 6rem 0 5rem; border-bottom: 1px solid #111; }
.hero-eyebrow { color: #f0a500; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.hero-headline { margin-bottom: 1.5rem; max-width: 800px; }
.hero-sub { font-size: 1.2rem; color: #888; max-width: 600px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page Hero */
.page-hero { padding: 5rem 0 4rem; border-bottom: 1px solid #111; }
.price-badge { display: inline-block; background: #1a1a1a; border: 1px solid #333; color: #f0a500; font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 100px; margin: 1rem 0; font-size: 1rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.stat-card { background: #111; border: 1px solid #1e1e1e; border-radius: 12px; padding: 1.5rem; text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: #f0a500; }
.stat-label { font-size: 0.85rem; color: #666; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* Offers */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.offer-card { background: #111; border: 1px solid #1e1e1e; border-radius: 16px; padding: 2rem; position: relative; transition: border-color 0.2s; }
.offer-card:hover { border-color: #333; }
.offer-card--premium { border-color: #f0a500; }
.offer-tag { display: inline-block; background: #1a1a1a; color: #f0a500; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem; border: 1px solid #2a2a2a; }
.offer-tag--gold { background: #f0a500; color: #000; border-color: #f0a500; }
.offer-price { font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.offer-card h3 { color: #fff; margin-bottom: 0.75rem; }
.offer-list { list-style: none; margin: 1.25rem 0 1.75rem; }
.offer-list li { padding: 0.4rem 0; color: #888; font-size: 0.9rem; border-bottom: 1px solid #1a1a1a; }
.offer-list li::before { content: "\2192 "; color: #f0a500; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.testimonial-card { background: #111; border: 1px solid #1e1e1e; border-radius: 12px; padding: 2rem; }
.testimonial-text { color: #ccc; font-style: italic; margin-bottom: 1rem; font-size: 0.95rem; }
.testimonial-author { color: #555; font-size: 0.85rem; font-weight: 600; }

/* CTA Section */
.cta-section { background: #0d0d0d; border-top: 1px solid #111; text-align: center; }
.cta-section .hero-ctas { justify-content: center; }

/* Feature List */
.feature-list { list-style: none; }
.feature-list li { padding: 0.65rem 0; border-bottom: 1px solid #1a1a1a; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: #ccc; }
.check { color: #f0a500; font-weight: 900; flex-shrink: 0; }

/* Checkout Box */
.checkout-box { background: #111; border: 1px solid #222; border-radius: 16px; padding: 2rem; }
.sticky-checkout { position: sticky; top: 5rem; }
.checkout-price { font-size: 3rem; font-weight: 900; color: #f0a500; }
.checkout-label { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.checkout-includes { list-style: none; margin-bottom: 1.75rem; }
.checkout-includes li { padding: 0.5rem 0; color: #888; font-size: 0.95rem; border-bottom: 1px solid #1a1a1a; }
.checkout-note { color: #555; font-size: 0.8rem; margin-top: 1rem; margin-bottom: 0; text-align: center; }

/* Module List */
.module-list { margin-top: 1.5rem; }
.module-card { display: flex; gap: 1.5rem; align-items: flex-start; background: #111; border: 1px solid #1e1e1e; border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; transition: border-color 0.2s; }
.module-card:hover { border-color: #333; }
.module-num { font-size: 2rem; font-weight: 900; color: #f0a500; opacity: 0.5; min-width: 3rem; line-height: 1; }
.module-card h3 { color: #fff; margin-bottom: 0.25rem; }
.module-card p { font-size: 0.9rem; margin: 0; }

/* For Grid */
.for-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 700px; margin: 2rem auto 0; }
.for-card { background: #111; border: 1px solid #1e1e1e; border-radius: 12px; padding: 1.75rem; text-align: left; }
.for-icon { color: #f0a500; font-size: 1.25rem; margin-bottom: 0.75rem; }
.for-card p { margin: 0; font-size: 0.95rem; }

/* Week Grid */
.week-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.week-card { background: #111; border: 1px solid #1e1e1e; border-radius: 12px; padding: 1.75rem; }
.week-num { color: #f0a500; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.week-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.week-card p { font-size: 0.875rem; margin: 0; }

/* Forms */
.contact-form { max-width: 700px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; color: #ccc; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; background: #111; border: 1px solid #222; border-radius: 8px; padding: 0.875rem 1rem; color: #fff; font-size: 1rem; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #f0a500; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #444; }
.form-group textarea { resize: vertical; }

/* Thanks */
.thanks-icon { font-size: 4rem; color: #f0a500; margin-bottom: 1rem; }

/* Booking section */
.booking-section { background: #080808; }

/* Footer */
.footer { padding: 3rem 0; border-top: 1px solid #111; text-align: center; }
.footer p { color: #555; margin-bottom: 0.25rem; }
.footer-sub { font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
    .offer-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .week-grid { grid-template-columns: repeat(2, 1fr); }
    .for-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .nav-links { gap: 1rem; font-size: 0.8rem; }
    .hero { padding: 4rem 0 3rem; }
    .hero-ctas { flex-direction: column; }
    .week-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .btn { width: 100%; text-align: center; }
}
