/* ============================================
   12TH OFF-PITCH — MASTER STYLESHEET
   One file for all pages.

   CONTENTS
   01. Variables
   02. Reset & Base
   03. Navigation
   04. Footer
   05. Buttons           → .btn .btn-primary .btn-secondary .btn-large
   06. Badges            → .badge .badge--filled
   07. Cards             → .card .card--left-accent
   08. Card Grid         → .card-grid
   09. CTA Section       → .cta-section  (every "call to action" block)
   10. Page Hero         → .page-hero    (every inner-page hero)
   11. Content Block     → .content-block (max-width prose areas)
   12. CTA Buttons Group → .cta-buttons
   13. Forms             → .form-group .form-label .form-input
   14. Nav Dropdowns
   15. Animations
   16. Home Page
   17. Clubs & Countries
   18. Experience Pages
   19. Ambassador Page
   20. About Page
   21. Blog Page
   22. Legal Pages
   23. Responsive
   ============================================ */


/* ── 01. Variables ───────────────────────────────────────────────────────── */
:root {
    --green-dark:   #0d1a0f;
    --green-medium: #2d6e2d;
    --green-bright: #3d8b3d;
    --yellow-gold:  #c9a820;
    --yellow-bright:#e0be40;
    --cream:        #ffffff;
}


/* ── 02. Reset & Base ────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Archivo', sans-serif;
    color: var(--cream);
    background: var(--green-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section { padding: 3rem 2rem; }

section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--yellow-gold);
}

section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 0.75rem;
}


/* ── 03. Navigation ──────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--green-dark);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 2px solid var(--yellow-gold);
}

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

nav .logo-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
}

nav .logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    margin-left: 3rem;
}

nav .nav-brand-name {
    display: flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
    line-height: 1;
}

.nav-brand-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 5vw, 2.3rem);
    letter-spacing: 0.1em;
    color: var(--yellow-gold);
    line-height: 1;
    margin-right: 0.2em;
}

.brand-initial {
    font-size: 1.3em;
    line-height: 1;
}

.article-back-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    margin-top: 1.25rem;
}
.article-back-link:hover { color: var(--yellow-gold); }

.nav-brand-off {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 0.1em;
    color: var(--yellow-gold);
    line-height: 1;
    margin-right: 0.1em;
}

.nav-brand-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 0.1em;
    color: var(--yellow-gold);
    line-height: 1;
    margin-right: 0.2em;
}

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

nav .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

nav .nav-links a.active {
    color: var(--yellow-gold);
    border-bottom: 2px solid var(--yellow-gold);
    padding-bottom: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    border-radius: 2px;
    transition: 0.3s;
}


/* ── 04. Footer ──────────────────────────────────────────────────────────── */
footer {
    background: var(--green-medium);
    padding: 3rem 2rem 1.5rem;
    border-top: 3px solid var(--yellow-gold);
}

footer .container { max-width: 1400px; margin: 0 auto; }

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4rem;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

footer .footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--yellow-gold);
    margin-bottom: 1rem;
}

footer .footer-section ul { list-style: none; }
footer .footer-section ul li { margin-bottom: 0.5rem; }

footer .footer-section a {
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover { color: var(--yellow-bright); }

footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

footer .social-links .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 0;
    transition: all 0.3s;
    color: var(--cream);
    flex-shrink: 0;
}

footer .social-links .social-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

footer .social-links .social-icon:hover {
    background: var(--yellow-gold);
    transform: translateY(-3px);
}


/* ── 05. Buttons ─────────────────────────────────────────────────────────── */
/*
   Classes:
   .btn            — base, required on all buttons/links
   .btn-primary    — gold fill
   .btn-secondary  — ghost (white border)
   .btn-large      — bigger padding, larger text
   .disabled       — muted, non-interactive
*/
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--yellow-gold);
    color: var(--green-dark);
}

.btn-primary:hover {
    background: var(--yellow-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201,162,39,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--green-dark);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn.disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}


/* ── 06. Badges ──────────────────────────────────────────────────────────── */
/*
   Classes:
   .badge          — outline pill (e.g. "Pre-Match Football Experiences" labels in hero)
   .badge--filled  — gold fill pill (e.g. "Launching 2026/27 Season" on cards)

   Aliases (existing HTML):
   .hero-badge     → same as .badge
   .city-badge     → same as .badge--filled
   .step-badge     → same as .badge--filled
*/
.badge,
.hero-badge {
    display: inline-block;
    background: rgba(201,168,32,0.15);
    color: var(--yellow-gold);
    border: 1px solid var(--yellow-gold);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.badge--filled,
.city-badge,
.step-badge {
    display: inline-block;
    background: var(--yellow-gold);
    color: var(--green-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* ── 07. Cards ───────────────────────────────────────────────────────────── */
/*
   Classes:
   .card               — standard content card
   .card--left-accent  — card with left yellow border (FAQs, steps, pillars, quotes)
   .card--featured     — full yellow border (active club cards, pricing boxes)

   Aliases (existing HTML):
   .get-card           → same as .card
   .blog-card          → same as .card
   .faq-item           → same as .card--left-accent
   .pillar-item        → same as .card--left-accent
   .pillar-step        → same as .card--left-accent
   .legal-footer       → same as .card--left-accent
*/
.card,
.get-card,
.blog-card {
    background: var(--green-medium);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201,168,32,0.2);
    transition: border-color 0.3s;
}

.card:hover,
.get-card:hover { border-color: var(--yellow-gold); }

.card h4,
.get-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--yellow-gold);
    margin-bottom: 0.5rem;
}

.card p,
.get-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
}

.card--left-accent,
.faq-item,
.pillar-item,
.pillar-step,
.amb-quote,
.legal-footer {
    background: var(--green-medium);
    border-radius: 8px;
    padding: 2rem;
    border-left: 4px solid var(--yellow-gold);
}

.faq-item h3,
.card--left-accent h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--yellow-gold);
    margin-bottom: 1rem;
}

.faq-item p,
.card--left-accent p {
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.card--featured {
    border: 2px solid var(--yellow-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}


/* ── 08. Card Grid ───────────────────────────────────────────────────────── */
/*
   Class: .card-grid
   Auto-fill responsive grid, 300px minimum column width.
   Alias: .get-grid
*/
.card-grid,
.get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}


/* ── 09. CTA Section ─────────────────────────────────────────────────────── */
/*
   Class: .cta-section
   The full-width gradient block used at the bottom of every page.
   Always contains: h2, p, one or two .btn links.

   Aliases (existing HTML):
   .cta-about          → about page
   .cta-countries      → clubs / country pages
   .final-cta          → experience pages
   .ambassador-callout → home page
   .amb-apply          → ambassador page
*/
.cta-section,
.cta-about,
.cta-countries,
.final-cta,
.ambassador-callout,
.amb-apply {
    background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2,
.cta-about h2,
.cta-countries h2,
.final-cta h2,
.ambassador-callout h2,
.amb-apply h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--yellow-gold);
    margin-bottom: 1rem;
}

.cta-section p,
.cta-about p,
.cta-countries p,
.final-cta p,
.ambassador-callout p,
.amb-apply .apply-intro {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* inner wrapper (home's ambassador-callout uses this) */
.ambassador-callout-inner,
.cta-section__inner {
    max-width: 640px;
    margin: 0 auto;
}


/* ── 10. Page Hero ───────────────────────────────────────────────────────── */
/*
   Class: .page-hero
   Used on every inner page (about, clubs, countries, blog, legal, ambassador).
   The home page has its own .hero class (see Home section below).
*/
.page-hero {
    padding: 150px 2rem 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
}

.page-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    color: var(--yellow-gold);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.page-hero .hero-subtitle,
.page-hero p {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Experience-page hero variant */
.experience-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 2rem 80px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
    text-align: center;
}

.experience-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    color: var(--yellow-gold);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.experience-hero .tagline {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Ambassador hero variant */
.amb-hero {
    padding: 150px 2rem 90px;
    text-align: center;
    background: linear-gradient(160deg, #0d1a0f 0%, #1a3a1a 60%, #0d1a0f 100%);
    position: relative;
    overflow: hidden;
}

.amb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(201,168,32,0.02) 60px,
        rgba(201,168,32,0.02) 61px
    );
}

.amb-hero .container { position: relative; z-index: 1; }

.amb-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: var(--yellow-gold);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.amb-hero .hero-subtitle {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Legal hero (smaller) */
.legal-hero {
    padding: 150px 2rem 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
}

.legal-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--yellow-gold);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}


/* ── 11. Content Block ───────────────────────────────────────────────────── */
/*
   Class: .content-block
   A max-width centered prose container. Use inside a section.
   Alias: .amb-inner, .description-content, .legal-text
*/
.content-block,
.amb-inner,
.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2,
.amb-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--yellow-gold);
    margin-bottom: 1.5rem;
}

.content-block p,
.amb-inner p,
.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
}

.content-block p:last-child,
.amb-inner p:last-child { margin-bottom: 0; }

/* lead paragraph variant */
.description-content .lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
}


/* ── 12. CTA Buttons Group ───────────────────────────────────────────────── */
/*
   Class: .cta-buttons
   Flex row of 2 buttons, equal width, centered.
   Stacks vertically on mobile.
*/
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn { min-width: 210px; }

/* Overrides for specific sections that had custom gaps */
.featured .cta-buttons  { gap: 2rem; }
.cta-about .cta-buttons { gap: 2rem; }


/* ── 13. Forms ───────────────────────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label,
.form-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.form-group input,
.form-group textarea,
.form-input,
.form-textarea {
    padding: 14px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(201,162,39,0.3);
    color: #fff;
    font-size: 15px;
    border-radius: 6px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-input:focus,
.form-textarea:focus { border-color: var(--yellow-gold); }

.form-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    line-height: 1.5;
}

.amb-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}


/* ── 14. Nav Dropdowns ───────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger { cursor: pointer; }

a.nav-dropdown-trigger[href="#"] { cursor: default; }

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    border: 1px solid var(--yellow-gold);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 170px;
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
    display: block !important;
    padding: 0.5rem 1.25rem !important;
    color: var(--cream) !important;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s, background 0.3s;
    border-bottom: none !important;
}

.nav-dropdown-menu a.active  { color: var(--yellow-gold) !important; }
.nav-dropdown-menu a:hover   { color: var(--yellow-bright) !important; background: rgba(255,255,255,0.05); }

.nav-dropdown-menu a.browse-all {
    font-style: italic;
    color: rgba(255,255,255,0.6) !important;
    border-top: 1px solid rgba(201,168,32,0.2) !important;
    margin-top: 0.25rem;
    padding-top: 0.6rem !important;
}

.nav-dropdown-menu a.browse-all:hover { color: var(--yellow-bright) !important; }


/* ── 15. Animations ──────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes gridMove {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   16. HOME PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(74,124,46,0.03) 50px, rgba(74,124,46,0.03) 100px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(74,124,46,0.03) 50px, rgba(74,124,46,0.03) 100px);
    animation: gridMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .highlight { color: var(--yellow-gold); display: block; }

.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-style: italic;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

/* Trust bar */
.trust-bar { background: var(--green-dark); border-top: 2px solid rgba(201,168,32,0.25); border-bottom: 2px solid rgba(201,168,32,0.25); padding: 20px 2rem; }
.trust-items { display: flex; align-items: stretch; justify-content: center; flex-wrap: nowrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.6rem 2rem; flex: 1; max-width: 220px; }
.trust-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow-gold); text-align: center; line-height: 1.3; }
.trust-sep { width: 1px; background: rgba(201,168,32,0.3); align-self: stretch; margin: 0.2rem 0; flex-shrink: 0; }
.trust-svg { color: var(--yellow-gold); }

/* Featured section */
.featured { background: var(--green-medium); }

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--green-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--yellow-gold);
}

.featured-image {
    background: var(--green-medium);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: rgba(255,255,255,0.3); text-align: center; }

.featured-content { padding: 3rem 3rem 3rem 0; }

.featured-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--yellow-gold); margin-bottom: 1rem; }

.featured-desc { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

.featured-highlights { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }

.highlight-item { padding: 0.8rem; background: rgba(74,124,46,0.2); border-radius: 6px; border-left: 3px solid var(--yellow-gold); font-size: 14px; }

.pricing-box { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--green-medium); border-radius: 8px; border: 2px solid var(--yellow-gold); }

.price { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--yellow-gold); line-height: 1; }
.price-label { font-size: 13px; color: rgba(255,255,255,0.7); }
.exp-city-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; font-weight: 600; }

/* Carousel */
.carousel-wrapper { position: relative; display: flex; align-items: center; gap: 1rem; }
.carousel-track-container { overflow: hidden; flex: 1; }
.carousel-track { display: flex; transition: transform 0.4s ease; }
.carousel-slide { min-width: 100%; }
.carousel-arrow { background: rgba(201,168,32,0.15); border: 2px solid var(--yellow-gold); color: var(--yellow-gold); width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; cursor: pointer; flex-shrink: 0; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.carousel-arrow:hover { background: rgba(201,168,32,0.35); }
.carousel-dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--yellow-gold); background: transparent; cursor: pointer; padding: 0; transition: background 0.2s; }
.carousel-dot.active { background: var(--yellow-gold); }

/* How It Works (home) */
.hiw-home-section { background: var(--green-dark); padding: 5rem 2rem; text-align: center; }
.hiw-home-header { margin-bottom: 2.5rem; }
.hiw-home-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--yellow-gold); line-height: 1.05; margin-bottom: 0; text-align: center; }
.hiw-home-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: left; }
.hiw-pillar-card { background: var(--green-medium); border-radius: 10px; padding: 2.5rem; display: grid; grid-template-rows: auto auto auto auto; align-content: start; }
.hiw-pillar-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--yellow-gold); opacity: 0.35; line-height: 1; margin-bottom: 1rem; }
.hiw-pillar-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--yellow-gold); margin-bottom: 0.5rem; }
.hiw-pillar-timing { display: inline-block; background: rgba(201,168,32,0.1); border: 1px solid rgba(201,168,32,0.3); color: var(--yellow-gold); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 12px; margin-bottom: 1.25rem; white-space: nowrap; align-self: start; }
.hiw-pillar-timing-placeholder { display: block; height: 28px; margin-bottom: 1.25rem; }
.hiw-pillar-card p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.75; margin: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   17. CLUBS & COUNTRIES
   ═══════════════════════════════════════════════════════════════════════════ */

.countries-section { padding: 3rem 2rem; }
.clubs-section { padding: 4rem 0; }

.country-block { margin-bottom: 4rem; }

.country-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow-gold);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(201,168,32,0.3);
}

/* Club card grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Club card — coming soon */
.city-card {
    background: var(--green-medium);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(201,168,32,0.2);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.city-card:hover { border-color: var(--yellow-gold); transform: translateY(-5px); }

.city-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1.1; color: var(--yellow-gold); margin-bottom: 0.4rem; }

.city-nickname { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; line-height: 1.6; }

.city-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 0; flex: 1; }

.city-card .btn { width: 100%; text-align: center; margin-top: 1.8rem; }

/* Club card — active (has image) */
.city-card--active {
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--yellow-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.city-card__img {
    position: relative;
}

.city-card__img img { width: 100%; height: 200px; object-fit: cover; display: block; }

.city-card--active .city-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.city-card__body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }


/* ═══════════════════════════════════════════════════════════════════════════
   18. EXPERIENCE PAGES (club detail pages)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero overlay grid */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(74,124,46,0.03) 50px, rgba(74,124,46,0.03) 100px);
}

/* Breadcrumb */
.breadcrumb { font-size: 14px; margin-bottom: 1rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow-gold); }

/* Hero badges row */
.hero-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Experience subtitle */
.experience-hero .subtitle { display: block; font-size: clamp(1.7rem, 3.5vw, 2.8rem); color: var(--cream); font-weight: 400; }

/* Description section */
.description-section { padding: 0.75rem 2rem; }

/* Pillars timeline */
.pillars-detailed { padding: 1rem 2rem; background: var(--green-dark); }
.pillar-timeline { max-width: 860px; margin: 0 auto; }
.pillar-step { padding: 1.25rem 0; background: none; border-radius: 0; border-left: none; border-bottom: 1px solid rgba(201,168,32,0.12); margin-bottom: 0; }
.pillar-step:last-child { border-bottom: none; }
.pillar-step p { line-height: 1.75; color: rgba(255,255,255,0.82); margin-top: 0.75rem; }
.step-header { display: flex; align-items: baseline; gap: 1.25rem; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--yellow-gold); opacity: 0.25; line-height: 1; min-width: 2.5rem; flex-shrink: 0; }
.step-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--yellow-gold); letter-spacing: 0.05em; line-height: 1; }

/* Included / Excluded */
.included-section { padding: 2.5rem 2rem; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.included-list, .excluded-list { display: flex; flex-direction: column; gap: 0; }
.included-item, .excluded-item { display: flex; gap: 1rem; padding: 0.9rem 0; background: none; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.included-item:last-child, .excluded-item:last-child { border-bottom: none; }
.check, .cross { font-size: 1.5rem; flex-shrink: 0; }
.included-item h4, .excluded-item h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--yellow-gold); margin-bottom: 0.5rem; }
.included-item p, .excluded-item p { font-size: 14px; color: rgba(255,255,255,0.8); }

/* Booking section */
.booking-section { padding: 4rem 2rem; }

/* Pricing */
.pricing-section { padding: 4rem 2rem; background: var(--green-medium); }
.pricing-card-large { max-width: 700px; margin: 0 auto; background: var(--green-dark); border-radius: 16px; border: 3px solid var(--yellow-gold); overflow: hidden; }
.pricing-header { background: var(--yellow-gold); color: var(--green-dark); padding: 2.5rem; text-align: center; }
.pricing-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--green-dark); }
.price-display { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; }
.currency { font-size: 2rem; font-weight: 700; }
.amount { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; line-height: 1; }
.per-person { font-size: 1.2rem; }
.pricing-details { padding: 2rem; }
.detail-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.detail-row span:first-child { white-space: nowrap; }
.detail-row span:last-child { text-align: right; }
.detail-row:last-child { border-bottom: none; }
.booking-cta { padding: 1rem; text-align: center; }
.availability-note { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }

/* FAQ accordion */
.faq-section { padding: 3rem 2rem; }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; max-width: 860px; margin: 0 auto; }
details.faq-item { padding: 1rem 1.4rem; cursor: pointer; }
details.faq-item[open] { }
.faq-summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; user-select: none; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; }
.faq-q { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--yellow-gold); line-height: 1.2; }
.faq-icon { font-size: 1.5rem; color: var(--yellow-gold); flex-shrink: 0; transition: transform 0.22s ease; line-height: 1; font-weight: 300; }
details[open].faq-item .faq-icon { transform: rotate(45deg); }
.faq-answer { padding-top: 0.75rem; margin-top: 0.75rem; border-top: 1px solid rgba(201,168,32,0.15); }
.faq-answer p { line-height: 1.7; color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }

/* Comparison */
.comparison-section { padding: 4rem 2rem; background: var(--green-medium); }
.comparison-table { max-width: 900px; margin: 0 auto; background: var(--green-dark); border-radius: 12px; overflow: hidden; }
.comparison-header, .comparison-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1rem; padding: 1.5rem; align-items: center; }
.comparison-header { background: rgba(201,168,32,0.2); font-weight: 700; text-align: center; font-size: 14px; text-transform: uppercase; }
.comparison-row { border-bottom: 1px solid rgba(255,255,255,0.1); }
.comparison-row:last-child { border-bottom: none; }
.comparison-row .label { font-weight: 600; color: rgba(255,255,255,0.9); }
.comparison-row div { text-align: center; font-size: 15px; }
.highlight-col { color: var(--yellow-gold); font-weight: 600; }


/* ═══════════════════════════════════════════════════════════════════════════
   19. AMBASSADOR PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.amb-section { padding: 3rem 2rem; }
.amb-section:nth-child(even) { background: var(--green-medium); }
.amb-section:nth-child(odd)  { background: var(--green-dark); }

/* Blockquote */
.amb-quote { background: rgba(201,168,32,0.06); border-left: 4px solid var(--yellow-gold); padding: 1.5rem 2rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
.amb-quote p { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.9); margin-bottom: 0; }

/* Trait list */
.trait-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.trait-item { display: flex; align-items: flex-start; gap: 1rem; background: #071209; border: 1px solid rgba(201,168,32,0.6); border-radius: 8px; padding: 1.25rem 1.5rem; }
.trait-check { color: var(--yellow-gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.trait-item p { margin-bottom: 0; font-size: 1rem; }

/* Apply checklist */
.apply-checklist { list-style: none; max-width: 560px; margin: 0 auto 2.5rem; text-align: left; display: flex; flex-direction: column; gap: 0.75rem; }
.apply-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.6; }
.apply-checklist li::before { content: '→'; color: var(--yellow-gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.apply-note { margin-top: 1.25rem; color: rgba(255,255,255,0.45); font-size: 13px; }


/* ═══════════════════════════════════════════════════════════════════════════
   20. ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.mission-section { padding: 4rem 2rem; }

.content-block { margin-bottom: 4rem; }

.highlight-block {
    background: var(--green-medium);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--yellow-gold);
    text-align: center;
}

.mission-body { text-align: left; margin-top: 2rem; border-top: 1px solid rgba(201,168,32,0.2); padding-top: 2rem; }

.large-text { font-size: 1.5rem; font-weight: 600; line-height: 1.6; color: var(--yellow-bright); }

.pillars-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.pillar-item { display: flex; gap: 1.5rem; padding: 1.5rem; background: var(--green-medium); border-radius: 8px; border-left: 4px solid var(--yellow-gold); }

.pillar-item h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--yellow-gold); margin-bottom: 0.5rem; }

.pillar-item p { font-size: 15px; color: rgba(255,255,255,0.8); }

.founder-section { padding: 4rem 2rem; }
.founder-content { max-width: 800px; margin: 0 auto; }
.founder-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--yellow-gold); margin-bottom: 0.5rem; }
.founder-text p { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   21. BLOG PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.blog-coming-soon { padding: 5rem 2rem; text-align: center; }
.blog-coming-soon h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--yellow-gold); margin-bottom: 1rem; }
.blog-coming-soon p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; max-width: 1100px; margin: 40px auto 0; }

.blog-card { border: 1px solid rgba(201,168,32,0.25); border-radius: 8px; padding: 0; background: var(--green-medium); overflow: hidden; display: flex; flex-direction: column; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; background: rgba(0,0,0,0.25); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.blog-card h2 { font-family: inherit; font-size: 1.1rem; margin-bottom: 12px; line-height: 1.4; font-weight: 600; text-align: left; }
.blog-card h2 a { text-decoration: none; color: var(--yellow-gold); transition: color 0.2s, text-shadow 0.2s; }
.blog-card h2 a:hover { color: #fff; text-shadow: 0 0 18px rgba(201,168,32,0.6); }
.blog-card p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 16px; }

/* Article hero */
.article-hero { background: var(--green-dark); border-bottom: 1px solid rgba(201,168,32,0.2); padding: 6.5rem 2rem 3rem; }
.article-hero__inner { max-width: 760px; margin: 0 auto; }
@media (max-width: 600px) { .article-hero { padding: 5rem 1.25rem 2.5rem; } }

/* Article images */
.article-hero-img { width: 100%; max-width: 760px; margin: 0 auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.article-hero-img-wrap { background: var(--green-dark); padding: 0 2rem; }
.article-figure { margin: 2rem 0; }
.article-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-radius: 4px; }
.article-figure figcaption { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; font-style: italic; text-align: center; }
@media (max-width: 600px) { .article-hero-img-wrap { padding: 0 1.25rem; } }
.blog-coming-label { font-size: 0.8rem; background: rgba(201,168,32,0.12); color: var(--yellow-gold); border: 1px solid rgba(201,168,32,0.3); padding: 4px 10px; border-radius: 20px; }
.blog-date-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }

/* Sticky sidebar layout for club/experience pages */
.experience-layout { display: flex; align-items: flex-start; gap: 3rem; max-width: 1400px; margin: 0 auto; padding: 0 2rem 2rem; }
.experience-layout__main { flex: 1; min-width: 0; }
.experience-layout__main section { padding-left: 0; padding-right: 0; }
.experience-layout__main .container { padding: 0; max-width: none; }
.experience-layout__sidebar { width: 420px; flex-shrink: 0; position: sticky; top: 88px; align-self: flex-start; }
.booking-box { background: rgba(201,168,32,0.05); border: 1px solid rgba(201,168,32,0.28); border-radius: 12px; padding: 1.75rem; margin-top: 0.75rem; }
.booking-box__title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.04em; color: var(--yellow-gold); margin-bottom: 0.35rem; }
.booking-box__subtitle { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.booking-box__widget { background: #111; border: 2px dashed rgba(201,168,32,0.3); padding: 3rem 1rem; text-align: center; border-radius: 8px; margin-bottom: 1.25rem; }
.booking-box__widget p { color: rgba(255,255,255,0.35); font-size: 13px; font-style: italic; }
.booking-box .btn { width: 100%; text-align: center; white-space: normal; line-height: 1.3; }
@media (max-width: 1024px) {
    .experience-layout { flex-direction: column; }
    .experience-layout__sidebar { display: none; }
    .booking-box { margin-top: 0; }
}

/* Mobile sticky book bar & booking bottom-sheet modal */
.mobile-book-bar { display: none; position: sticky; bottom: 0; z-index: 900; padding: 0.75rem 1.25rem; background: var(--green-dark); border-top: 2px solid var(--yellow-gold); box-shadow: 0 -4px 16px rgba(0,0,0,0.4); }
.mobile-book-bar--hidden { display: none !important; }
.mobile-book-btn { display: block; width: 100%; background: var(--yellow-gold); color: var(--green-dark); border: none; border-radius: 8px; padding: 14px; font-family: inherit; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: background 0.2s; }
.mobile-book-btn:hover, .mobile-book-btn:active { background: var(--yellow-bright); }
.booking-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.72); z-index: 9998; align-items: flex-end; justify-content: center; }
.booking-modal__inner { background: var(--green-dark); border: 1px solid rgba(201,168,32,0.3); border-top: 2px solid var(--yellow-gold); border-radius: 16px 16px 0 0; padding: 1.75rem 1.5rem 2.5rem; width: 100%; max-width: 600px; position: relative; }
.booking-modal__close { position: absolute; top: 0.75rem; right: 1rem; background: none; border: none; color: rgba(255,255,255,0.45); font-size: 1.75rem; cursor: pointer; line-height: 1; padding: 0; }
@media (max-width: 1024px) {
    .mobile-book-bar { display: block; }
}

/* Further reading section */
.further-reading { border-top: 1px solid rgba(201,168,32,0.2); padding: 2rem 2rem 2.5rem; }
.further-reading h2 { margin-bottom: 1.25rem; text-align: center; }
.further-reading__content { max-width: 760px; margin: 0 auto; text-align: center; }
.further-reading__title { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.03em; line-height: 1.3; margin-bottom: 0.5rem; }
.further-reading__title a { color: #fff; text-decoration: none; transition: color 0.2s; }
.further-reading__title a:hover { color: var(--yellow-gold); }
.further-reading__excerpt { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.55; margin-bottom: 0.9rem; }
.further-reading__link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow-gold); text-decoration: none; }
.further-reading__link:hover { opacity: 0.75; }


/* ═══════════════════════════════════════════════════════════════════════════
   22. LEGAL PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

.legal-content { padding: 4rem 2rem; }

.legal-text { max-width: 900px; margin: 0 auto; }

.legal-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--yellow-gold); margin-top: 3rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(201,162,39,0.3); text-align: left; }
.legal-text h2:first-child { margin-top: 0; }
.legal-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--yellow-bright); margin-top: 2rem; margin-bottom: 0.8rem; }
.legal-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.legal-text ul, .legal-text ol { margin-left: 1.5rem; margin-bottom: 1.5rem; }
.legal-text ul li, .legal-text ol li { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; }
.legal-text strong { color: var(--yellow-gold); font-weight: 600; }
.legal-text a { color: var(--yellow-bright); text-decoration: underline; }
.legal-text a:hover { color: var(--yellow-gold); }

.legal-footer { margin-top: 3rem; padding: 2rem; background: var(--green-medium); border-radius: 8px; border-left: 4px solid var(--yellow-gold); }
.legal-footer p { font-size: 15px; font-style: italic; color: rgba(255,255,255,0.8); margin: 0; }

/* Tables */
.refund-table table, .cookie-table { width: 100%; border-collapse: collapse; margin: 2rem 0; background: var(--green-medium); border-radius: 8px; overflow: hidden; }
.refund-table thead, .cookie-table thead { background: rgba(201,162,39,0.2); }
.refund-table th, .cookie-table th { padding: 1rem; text-align: left; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--yellow-gold); border-bottom: 2px solid rgba(201,162,39,0.3); }
.refund-table td, .cookie-table td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.refund-table tbody tr:last-child td, .cookie-table tbody tr:last-child td { border-bottom: none; }
.refund-table tbody tr:hover, .cookie-table tbody tr:hover { background: rgba(201,162,39,0.05); }


/* ═══════════════════════════════════════════════════════════════════════════
   23. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* — Compress nav on medium screens before hamburger kicks in — */
@media (max-width: 1280px) {
    nav .logo-link { gap: 0.75rem; }
    nav .logo-img { height: 40px; margin-left: 0.5rem; }
    .nav-brand-main { font-size: 1.5rem; margin-right: 0.35em; }
    .nav-brand-off { font-size: 0.85rem; }
    .nav-brand-sub { font-size: 0.85rem; }
    nav .nav-links { gap: 1.25rem; }
    nav .nav-links a { font-size: 13px; }
}

/* — Mobile nav layout — */
@media (max-width: 1024px) {
    nav { padding: 1rem 0; }

    nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: auto;
        right: 0;
        width: min(300px, 85vw);
        background: var(--green-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 0 1.5rem;
        box-shadow: -4px 8px 24px rgba(0,0,0,0.5);
        border-top: 1px solid rgba(201,168,32,0.25);
        border-left: 1px solid rgba(201,168,32,0.15);
    }

    nav .nav-links.active { display: flex; }

    /* Top-level links */
    nav .nav-links > a,
    nav .nav-links > .nav-dropdown > .nav-dropdown-trigger {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: var(--cream) !important;
        letter-spacing: 0.05em;
    }

    nav .nav-links > a.active {
        color: var(--yellow-gold) !important;
        border-bottom-color: rgba(255,255,255,0.06);
        border-left: 3px solid var(--yellow-gold);
        padding-left: calc(1rem - 3px);
    }

    /* Section label for dropdown triggers */
    nav .nav-links > .nav-dropdown > .nav-dropdown-trigger {
        color: rgba(255,255,255,0.5) !important;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        padding-top: 1.25rem;
        padding-bottom: 0.4rem;
        border-bottom: none;
        pointer-events: none;
    }

    /* Always-visible sub-links */
    .nav-dropdown-menu {
        display: flex !important;
        flex-direction: column;
        position: static;
        transform: none;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        min-width: 0;
        padding: 0 0 0.75rem;
        margin: 0;
        z-index: auto;
    }

    .nav-dropdown-menu::before { display: none; }

    .nav-dropdown-menu a {
        font-size: 0.95rem !important;
        padding: 0.55rem 1.5rem !important;
        color: rgba(255,255,255,0.8) !important;
        border-bottom: none !important;
        letter-spacing: 0.03em;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.active { color: var(--yellow-gold) !important; }

    .nav-dropdown-menu a.browse-all {
        color: var(--yellow-gold) !important;
        font-weight: 600;
    }

    .menu-toggle { display: flex; }

    nav .logo-link { gap: 1rem; }

    nav .logo-img { margin-left: 0; }

    .nav-brand-main { font-size: 1.5rem; }
    .nav-brand-off { font-size: 0.85rem; }
    .nav-brand-sub { font-size: 0.85rem; }
}

/* — General mobile — */
@media (max-width: 768px) {
    section { padding: 3rem 1.5rem; }

    /* Hero */
    .page-hero { padding: 120px 1.5rem 60px; }
    .page-hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
    .experience-hero { padding: 130px 1.5rem 60px; }
    .experience-hero h1 { font-size: clamp(2.8rem, 11vw, 3.5rem); }
    .hero-badges { gap: 0.35rem; }
    .hero-badges .badge { padding: 4px 8px; font-size: 10px; letter-spacing: 0.05em; margin-bottom: 0; }
    .amb-hero { padding: 120px 1.5rem 70px; }

    /* CTA section */
    .cta-section,
    .cta-about,
    .cta-countries,
    .final-cta,
    .ambassador-callout,
    .amb-apply { padding: 3.5rem 1.5rem; }

    /* CTA buttons — stack vertically */
    .cta-buttons { flex-direction: column; align-items: center; gap: 1.5rem; }
    .cta-buttons .btn { width: 100%; min-width: 0; }

    /* Container — reduce inner padding to avoid double-indent on mobile */
    .container { padding: 0 1rem; }

    /* Cards */
    .highlight-block { padding: 1.75rem 1.25rem; }
    .content-block { margin: 0 0 2.5rem; }
    .mission-section { padding: 3rem 1rem; }
    .large-text { font-size: 1.2rem; }
    .pillar-item { gap: 1rem; padding: 1.25rem; }
    .pillar-step { padding: 1.25rem; }

    /* Club cards */
    .cities-grid { grid-template-columns: 1fr; }
    .country-block { padding: 0; }
    .city-card__img img { height: 130px; }
    .city-card--active > .city-card__body { padding: 1.25rem; }
    .city-card:not(.city-card--active) { padding: 1.25rem; opacity: 0.82; }

    /* Home */
    .hero { min-height: auto; padding: 120px 1.5rem 80px; }
    .trust-items { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
    .trust-sep { display: none; }
    .trust-item { min-width: 0; width: calc(50% - 0.25rem); max-width: none; padding: 0.5rem 0.75rem; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-image { min-height: 200px; }
    .featured-content { padding: 2rem; }
    .pricing-box { flex-direction: column; gap: 1rem; text-align: center; }
    .pricing-box .btn { width: 100%; }
    .btn-large { width: 100%; padding: 16px 20px; font-size: 16px; white-space: normal; line-height: 1.3; }
    .carousel-arrow { display: none; }
    .carousel-dot { width: 10px; height: 10px; }
    .hiw-home-pillars { grid-template-columns: repeat(2, 1fr); }
    .hiw-pillar-card { padding: 1.5rem; }
    .featured .cta-buttons { gap: 1.5rem; }

    /* Footer */
    footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
    footer .footer-brand { grid-column: 1 / -1; text-align: center; }
    footer .footer-brand .social-links { justify-content: center; }
    footer .footer-section a, footer .footer-section ul li { font-size: 12px; white-space: normal; }
    .footer-bottom { margin-top: 1.5rem; padding-top: 1rem; }

    /* Experience */
    .included-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .comparison-header { display: none; }
    .comparison-row { grid-template-columns: 1fr 1fr; gap: 0.25rem 0.75rem; padding: 1rem 1.5rem; text-align: left; }
    .comparison-row .label { grid-column: 1 / -1; font-weight: 700; color: var(--yellow-gold); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.1rem; padding-bottom: 0.3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .comparison-row > div:nth-child(2) { font-size: 13px; color: rgba(255,255,255,0.55); text-align: left; }
    .comparison-row > div:nth-child(2)::before { content: "Tour: "; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; display: block; opacity: 0.7; }
    .comparison-row .highlight-col { font-size: 14px; font-weight: 700; text-align: left; }
    .comparison-row .highlight-col::before { content: "Us: "; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; display: block; color: rgba(201,168,32,0.6); font-weight: 400; }

    /* Ambassador */
    .get-grid, .card-grid { grid-template-columns: 1fr; }

    /* Legal */
    .legal-text { padding: 0 1rem; }
    .refund-table table, .cookie-table { font-size: 14px; }
    .refund-table th, .cookie-table th, .refund-table td, .cookie-table td { padding: 0.8rem 0.5rem; }
    .legal-text ul, .legal-text ol { margin-left: 1rem; }
}

@media (max-width: 900px) {
    .hiw-home-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hiw-home-pillars { grid-template-columns: 1fr; }
    .hiw-pillar-card { padding: 1.5rem; }
    .comparison-row { padding: 0.85rem 1rem; }
}
