/* ================================================
   LIFESTYLE 365 — Modern Sans-Serif Design
   Font: Outfit | Colors: Navy + Gold + Warm Neutrals
   Inspired by: The Latitude Collective
   ================================================ */

:root {
    --navy: #1B2A4A;
    --navy-deep: #0f1a30;
    --gold: #C4A265;
    --gold-light: #d4b87a;
    --gold-soft: #f0e6d3;
    --gold-glow: rgba(196, 162, 101, 0.2);
    --dark: #1a1a1a;
    --text: #3d3d3d;
    --text-light: #6b6b6b;
    --cream: #faf8f5;
    --warm-white: #fdfcfa;
    --border: #e8e4de;
    --white: #ffffff;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1140px;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--white);
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--navy);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

.center {
    text-align: center;
}

/* ---- Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Section Divider ---- */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 0;
}

.section-divider span {
    display: block;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* ---- Section Labels ---- */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-label.center {
    text-align: center;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

.section-sub.center {
    margin: 0 auto 48px;
    text-align: center;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

h2.center {
    text-align: center;
}

/* ================================================
   NAV
   ================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 14px 0;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.nav-logo span {
    color: var(--gold);
}

.nav.scrolled .nav-logo {
    color: var(--dark);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

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

.nav.scrolled .nav-links a {
    color: var(--text);
}

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

.btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-nav {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--gold-light);
    color: var(--navy-deep);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px var(--gold-glow);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

.btn-large {
    padding: 18px 44px;
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
    background: var(--dark);
}

.mobile-menu {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-menu.open {
    display: flex !important;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 26, 48, 0.7) 0%,
            rgba(27, 42, 74, 0.8) 50%,
            rgba(15, 26, 48, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 120px 28px 80px;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.9rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

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

/* ================================================
   ABOUT / LED BY EXPERIENCE
   ================================================ */
.section-about {
    padding: 120px 0;
}

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

.about-image img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 3/4;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.about-text h2 {
    margin-top: 4px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-text .section-label {
    color: var(--gold);
}

.about-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: all var(--transition);
}

.social-link:hover {
    color: var(--navy);
    border-color: var(--navy);
    background: var(--cream);
}

.social-link svg {
    flex-shrink: 0;
}

/* ================================================
   PHOTO FILMSTRIP (horizontal scroll)
   ================================================ */
.section-photos {
    padding: 0;
    overflow: hidden;
}

.photo-filmstrip {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    height: 280px;
}

.photo-filmstrip::-webkit-scrollbar {
    display: none;
}

.filmstrip-item {
    flex: 0 0 auto;
    height: 100%;
    scroll-snap-align: start;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.filmstrip-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.filmstrip-item:hover img {
    transform: scale(1.05);
}

.filmstrip-quote {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    padding: 32px;
    cursor: default;
}

.filmstrip-quote blockquote p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
}

/* About section credibility photo (below bio grid) */
.about-credibility {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 360px;
}

.about-credibility img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    max-height: 360px;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

/* ================================================
   THREE PILLARS
   ================================================ */
.section-pillars {
    padding: 120px 0;
    background: var(--cream);
}

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

.pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
}

.pillar-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================
   WHO THIS IS FOR
   ================================================ */
.section-who {
    padding: 120px 0;
}

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

.who-text h2 {
    margin-top: 4px;
}

.who-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.who-text .section-label {
    color: var(--gold);
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.who-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text);
}

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

.who-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ================================================
   STEPS
   ================================================ */
.section-steps {
    padding: 120px 0;
    background: var(--cream);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 16px;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.step-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.step-line {
    width: 1px;
    height: 80px;
    background: var(--border);
    flex-shrink: 0;
    align-self: center;
}

/* ================================================
   COMMUNITY / SKOOL
   ================================================ */
.section-community {
    padding: 120px 0;
}

.community-card {
    display: block;
    background: var(--navy);
    border-radius: 20px;
    padding: 64px;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.community-text .section-label {
    color: var(--gold);
}

.community-text h2 {
    color: var(--white);
}

.community-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.community-features {
    list-style: none;
    margin-bottom: 32px;
    display: inline-block;
    text-align: left;
}

.community-features li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.community-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.community-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-radius: 100px;
    padding: 8px 24px;
    margin-bottom: 24px;
}

.community-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

.community-card .btn {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
}

.skool-preview {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.skool-dot {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold);
    margin: 0 auto 16px;
}

.skool-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.skool-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.skool-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.skool-stats div {
    text-align: center;
}

.skool-stats strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.skool-stats span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   FINAL CTA
   ================================================ */
.section-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--dark);
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-actions {
    margin-bottom: 16px;
}

.cta-small {
    font-size: 0.82rem;
    color: var(--text-light);
    opacity: 0.6;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--navy-deep);
    padding: 56px 0 36px;
}

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

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-contact {
    text-align: right;
}

.footer-contact a {
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-contact p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

    .about-image img {
        max-width: 360px;
        margin: 0 auto;
    }

    .photo-filmstrip {
        height: 200px;
    }

    .filmstrip-quote {
        flex: 0 0 200px;
        padding: 20px;
    }

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

    .step-line {
        width: 80px;
        height: 1px;
    }

    .community-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 100px 20px 60px;
    }

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

    .hero-headline br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-about,
    .section-pillars,
    .section-who,
    .section-steps,
    .section-community {
        padding: 80px 0;
    }

    .section-cta {
        padding: 100px 0;
    }

    .community-card {
        padding: 32px 20px;
    }

    .about-links {
        flex-direction: column;
        gap: 12px;
    }

    .social-link {
        justify-content: center;
    }

    .pillar-card {
        padding: 32px 24px;
    }
}