/* ─────────────────────────────────────────────
   2LR CLUB · Landing Page Styles
   Colors: #272626 black · #DEED69 lime · #FFBE84 peach · #164B5B teal · #F4F4F4 white
   Fonts: Space Grotesk (headings) · Open Sans (body)
──────────────────────────────────────────────── */

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

:root {
    --black:  #272626;
    --black2: #1c1c1c;
    --lime:   #DEED69;
    --peach:  #FFBE84;
    --teal:   #164B5B;
    --white:  #F4F4F4;
    --grey:   #888;
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-w: 1200px;
    --radius: 4px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Utility ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.2rem;
}

.section-tag.light { color: var(--lime); opacity: 0.9; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

.section-desc {
    margin-top: 1rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    color: var(--grey);
    font-size: 1rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}
.btn-primary:hover {
    background: transparent;
    color: var(--lime);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

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

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


/* ─────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: var(--black);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,244,244,0.75);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--lime); }

.nav-cta { margin-left: 1rem; padding: 0.55rem 1.2rem; font-size: 0.78rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ─────────────────────────────────────────────
   HERO
──────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(39,38,38,0.45) 0%,
        rgba(39,38,38,0.65) 50%,
        rgba(39,38,38,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 860px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(222,237,105,0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hero-title span {
    white-space: nowrap;
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(244,244,244,0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(244,244,244,0.5);
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition);
}
.scroll-indicator:hover { color: var(--lime); }

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

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


/* ─────────────────────────────────────────────
   STATS
──────────────────────────────────────────────── */
.stats {
    background: var(--lime);
    padding: 3rem 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.stat-plus {
    font-size: 60%;
    vertical-align: super;
}

.stat-label {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(39,38,38,0.6);
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(39,38,38,0.2);
    flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   STORY
──────────────────────────────────────────────── */
.story {
    padding: 7rem 0;
    background: var(--black);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: rgba(244,244,244,0.7);
    font-size: 0.97rem;
    margin-bottom: 1rem;
    max-width: 480px;
}

.story-text em { color: var(--lime); font-style: normal; }

.values-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.value-dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
}

.story-visual { position: relative; }

.story-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.story-img-wrap:hover img { transform: scale(1.03); }

.story-img-caption {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(39,38,38,0.7);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    backdrop-filter: blur(4px);
}


/* ─────────────────────────────────────────────
   TABBED SECTIONS (Training + Events)
──────────────────────────────────────────────── */
.tabbed-section {
    padding: 7rem 0;
    background: var(--black);
}

.tabbed-dark {
    background: var(--black2);
}

/* ── Tab Nav ── */
.tabs-nav {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 3rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
    position: relative;
    background: none;
    border: none;
    color: rgba(244,244,244,0.4);
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 1.6rem;
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition);
    flex-shrink: 0;
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--lime); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn.tab-soon {
    color: rgba(244,244,244,0.2);
    cursor: default;
}
.tab-btn.tab-soon::after { display: none; }

.tab-btn.tab-next {
    color: var(--peach);
}
.tab-btn.tab-next::after { background: var(--peach); }
.tab-btn.tab-next.active { color: var(--peach); }

/* ── Event Announcement (2Wheels) ── */
.event-announcement {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: calc(var(--radius) * 2);
    max-width: 560px;
    margin: 0 auto;
}

.announcement-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--peach);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.event-announcement h3 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.event-announcement p {
    color: rgba(244,244,244,0.55);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0.6rem;
    max-width: 400px;
}

.event-announcement .btn {
    margin-top: 1.8rem;
}

/* ── Tab Panels ── */
.tab-panel { display: none; animation: fadeIn 0.35s ease; }
.tab-panel.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Tab Content Grid ── */
.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}
.tab-content-grid--reverse .carousel { order: -1; }

/* ── Tab Info ── */
.tab-label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.8rem;
}

.tab-info h3 {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tab-info p {
    font-size: 0.93rem;
    color: rgba(244,244,244,0.65);
    line-height: 1.75;
    margin-bottom: 0.8rem;
    max-width: 440px;
}

.tab-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.meta-label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
}

.meta-value {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.etag {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lime);
    border: 1px solid rgba(222,237,105,0.3);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

/* ── Carousel ── */
.carousel {
    position: relative;
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    background: var(--black2);
    aspect-ratio: 4/3;
    user-select: none;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(39,38,38,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    backdrop-filter: blur(4px);
}
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-prev:hover,
.carousel-next:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--black);
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.carousel-dot.active {
    background: var(--lime);
    transform: scale(1.3);
}

/* ─────────────────────────────────────────────
   OLD TRAINING PILLARS (kept for reference, now unused)
──────────────────────────────────────────────── */
.training-old {
    padding: 7rem 0 0;
    background: var(--black);
}

.training-old .section-header { margin-bottom: 3rem; }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
}

.pillar {
    position: relative;
    background-image: var(--pillar-bg);
    background-size: cover;
    background-position: center;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    cursor: default;
}

.pillar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(39,38,38,0.92) 40%, rgba(39,38,38,0.35) 100%);
    transition: background var(--transition);
}
.pillar:hover .pillar-overlay {
    background: linear-gradient(to top, rgba(39,38,38,0.96) 50%, rgba(39,38,38,0.5) 100%);
}

.pillar-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
}

.pillar-number {
    display: block;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--lime);
    margin-bottom: 0.8rem;
}

.pillar-content h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.pillar-content p {
    font-size: 0.88rem;
    color: rgba(244,244,244,0.65);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pillar-list li {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(244,244,244,0.5);
    padding-left: 1rem;
    position: relative;
}
.pillar-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--lime);
    font-size: 0.7rem;
}


/* ─────────────────────────────────────────────
   GALLERY
──────────────────────────────────────────────── */
.gallery {
    padding: 7rem 0 0;
    background: var(--black);
}

.gallery .section-header { margin-bottom: 3rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 3px;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    background: var(--black2);
}

.gallery-item.gi-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: saturate(0.85);
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}


/* ─────────────────────────────────────────────
   TRIPS
──────────────────────────────────────────────── */
.trips {
    padding: 7rem 0;
    background: var(--black);
}

.trip-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--black2);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.trip-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.trip-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.trip-img-wrap:hover img { transform: scale(1.04); }

/* Carousel inside trip card fills the wrapper */
.carousel--trip {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
    border-radius: 0;
    position: absolute;
    inset: 0;
}

.trip-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--lime);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
}

.trip-info {
    padding: 3rem 3rem 3rem 0;
}

.trip-location {
    display: block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.6rem;
}

.trip-info h3 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.trip-info .trip-date {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 1.2rem;
}

.trip-desc {
    font-size: 0.93rem;
    color: rgba(244,244,244,0.7);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.trip-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.trip-tag {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
}

.trip-cta-text {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 1rem;
}


/* ─────────────────────────────────────────────
   PARTNERS
──────────────────────────────────────────────── */
.partners {
    background: var(--teal);
    padding: 7rem 0;
}

.partners-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.partners-text .section-tag { color: var(--lime); }

.partners-text h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.partners-text p {
    color: rgba(244,244,244,0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 420px;
}

.partners-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ps-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ps-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
}

.ps-lbl {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,244,244,0.55);
}


/* ─────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────────── */
.contact {
    padding: 7rem 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}

.contact-left h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.contact-left p {
    color: rgba(244,244,244,0.65);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--lime);
    border-bottom: 1px solid rgba(222,237,105,0.3);
    padding-bottom: 2px;
    transition: border-color var(--transition);
}
.ig-link:hover { border-color: var(--lime); }

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(244,244,244,0.3); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--lime);
    background: rgba(222,237,105,0.04);
}

.contact-form select option { background: var(--black); color: var(--white); }

.contact-form textarea { resize: vertical; min-height: 130px; }

.form-success {
    display: none;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--lime);
    text-align: center;
    padding-top: 0.5rem;
}


/* ─────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.footer {
    background: var(--black2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(244,244,244,0.45);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-nav a {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244,244,244,0.45);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--lime); }

.footer-follow-label {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244,244,244,0.3);
    margin-bottom: 0.8rem;
}

.footer-ig {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(244,244,244,0.6);
    transition: color var(--transition);
}
.footer-ig:hover { color: var(--lime); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-family: var(--font-head);
    font-size: 0.72rem;
    color: rgba(244,244,244,0.25);
    letter-spacing: 0.04em;
}

.footer-tagline { color: rgba(222,237,105,0.3) !important; font-style: italic; }


/* ─────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .tab-content-grid,
    .tab-content-grid--reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .tab-content-grid--reverse .carousel { order: 0; }
    .carousel { aspect-ratio: 16/9; }
    .tab-info p { max-width: 100%; }

    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-img-wrap { aspect-ratio: 16/9; }
    .story-visual { order: -1; }

    .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
    .pillar { min-height: 360px; }

    .trip-card { grid-template-columns: 1fr; }
    .trip-img-wrap { aspect-ratio: 16/9; }
    .trip-info { padding: 2rem; }

    .partners-inner { grid-template-columns: 1fr; gap: 3rem; }

    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 50;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.3rem; }
    .nav-toggle { display: flex; z-index: 101; }
    .nav-cta { display: none; }

    .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
    .hero-sub br { display: none; }

    .stats-grid {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .stat-divider { display: none; }
    .stat-item { flex: 0 0 calc(50% - 0.75rem); }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.gi-tall { grid-row: span 1; }

    .partners-stats { grid-template-columns: 1fr 1fr; }

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

    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; text-align: center; }
    .btn { justify-content: center; }
    .values-row { flex-wrap: wrap; gap: 1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}
