:root {
    --bg-primary: #000;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(255,255,255,.05);
    --text-primary: #fff;
    --text-secondary: rgba(255,255,255,.6);
    --gold: #c5a55a;
    --gold-hover: #d4b66a;
    --gold-dark: #8a7340;
    --border: rgba(255,255,255,.1);
    --font-heading: 'Sarabun', sans-serif;
    --font-body: 'Sen', sans-serif;
    --font-ui: 'Syne', sans-serif;
    --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 33px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-hover); }

/* =============================================
   Header + Navigation
   ============================================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex; align-items: center;
    justify-content: space-between;
}
.logo img { width: 44px; height: 44px; }
.main-nav {
    position: absolute;
    left: 50%; transform: translateX(-50%);
}
.main-nav > ul {
    list-style: none; display: flex; align-items: center; gap: 6px;
}
.main-nav ul {
    list-style: none;
}
.main-nav a {
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .04em;
    padding: 6px 10px;
    border-radius: 4px;
    transition: color .2s, background .2s;
    white-space: nowrap;
    text-decoration: none;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--gold);
    background: rgba(197,165,90,.08);
}

/* "Join the Club" gold accent button in nav */
.btn-join-nav {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    color: #000 !important;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 100px;
    transition: background .25s, color .25s, box-shadow .25s;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}
.btn-join-nav:hover {
    background: var(--gold-hover);
    color: #000 !important;
    box-shadow: 0 2px 16px rgba(197,165,90,.35);
}
.mobile-join {
    display: none;
}

.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block; width: 100%; height: 1.5px; background: var(--text-primary);
    position: absolute; left: 0; transition: .3s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* =============================================
   Hero
   ============================================= */
.hero { margin-top: 64px; }
.hero-bg {
    position: relative;
    min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center;
    overflow: hidden;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.7) 100%),
        linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 0 24px;
}
.hero-bg h1, .hero-bg h2 {
    position: relative; z-index: 1;
    font-family: var(--font-heading); font-size: 52px; font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.4);
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,.65);
    margin-top: 16px;
    letter-spacing: .5px;
    font-weight: 400;
}

/* Hero CTA pill */
.btn-hero-pill {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 40px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #000 !important;
    background: var(--gold);
    border-radius: 100px;
    transition: background .25s, box-shadow .25s, transform .25s;
    text-decoration: none;
}
.btn-hero-pill:hover {
    background: var(--gold-hover);
    color: #000 !important;
    box-shadow: 0 4px 24px rgba(197,165,90,.4);
    transform: translateY(-2px);
}

/* =============================================
   Shared Heading Styles
   ============================================= */
.section-heading-lg {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 48px;
}
.section-label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
    display: block;
}
.section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    margin: 56px 0 28px;
}
h2.section-heading { font-size: 50px; }
h3.section-heading { font-size: 30px; }

/* =============================================
   Section 2: Value Pillars
   ============================================= */
.value-pillars {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}
.value-pillars-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}
.pillar-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,165,90,.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover {
    border-color: rgba(197,165,90,.3);
    box-shadow: 0 0 32px rgba(197,165,90,.08), 0 8px 24px rgba(0,0,0,.3);
    transform: translateY(-4px);
}
.pillar-icon {
    color: var(--gold);
    margin-bottom: 24px;
    display: flex; justify-content: center;
}
.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}
.pillar-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

/* WHO WE ARE text from StreamField */
.who-we-are-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.who-we-are-text p { margin-bottom: 16px; }

/* =============================================
   Section 3: Membership Perks
   ============================================= */
.perks-section {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}
.perks-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
}
.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}
.perk-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.perk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,165,90,.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}
.perk-card:hover::before { opacity: 1; }
.perk-card:hover {
    border-color: rgba(197,165,90,.35);
    box-shadow: 0 0 24px rgba(197,165,90,.1), 0 8px 20px rgba(0,0,0,.3);
    transform: translateY(-3px);
}
.perk-icon {
    color: var(--gold);
    margin-bottom: 16px;
    display: flex; justify-content: center;
}
.perk-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}
.perk-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    position: relative;
}
.perks-cta {
    text-align: center;
}
.perks-price {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}
.perks-price strong {
    color: var(--gold);
    font-size: 28px;
}

/* =============================================
   Section 4: Events & Community
   ============================================= */
.events-section {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}
.events-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
}
.content-body--events {
    padding: 0;
    margin: 0 auto;
}

/* Q&A Callout */
.qa-callout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 56px;
    padding: 36px 40px;
    background: rgba(197,165,90,.04);
    border: 1px solid rgba(197,165,90,.2);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}
.qa-callout-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.qa-callout-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.qa-callout-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   Section 5: Community Showcase
   ============================================= */
.community-section {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}
.community-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.showcase-card {
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,165,90,.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}
.showcase-card:hover::before { opacity: 1; }
.showcase-card:hover {
    border-color: rgba(197,165,90,.35);
    box-shadow: 0 0 24px rgba(197,165,90,.1), 0 8px 20px rgba(0,0,0,.3);
    transform: translateY(-3px);
    color: var(--text-primary);
}
.showcase-card-label {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}
.showcase-card-body {
    flex: 1;
    position: relative;
}
.showcase-card-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}
.showcase-card-link {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .04em;
    color: var(--gold);
    position: relative;
    transition: color .2s;
}
.showcase-card:hover .showcase-card-link {
    color: var(--gold-hover);
}

/* =============================================
   Section 6: Bottom CTA
   ============================================= */
.bottom-cta {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}
.bottom-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
}
.bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.bottom-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* =============================================
   Content Body (StreamField blocks)
   ============================================= */
.content-body, .page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
}

.content-body .block-paragraph,
.page-content .block-paragraph {
    max-width: 680px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.content-body .block-image,
.page-content .block-image {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 6px;
    overflow: hidden;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .03em;
    border-radius: 3px;
    transition: all .25s ease;
    cursor: pointer;
}
.btn:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.btn-primary {
    background: transparent; color: #fff; border: 2px solid #fff;
}
.btn-primary:hover { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline {
    background: transparent; color: #fff; border: 2px solid #fff;
}
.btn-outline:hover { background: transparent; border-color: var(--gold); color: var(--gold); }
.cta-wrapper { text-align: center; margin: 40px 0; }

.btn-gold {
    border-color: var(--gold);
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-gold:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(197,165,90,.25);
}
.btn-cta-large {
    padding: 16px 48px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .04em;
}

/* =============================================
   Image Card Grid
   ============================================= */
.image-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0;
}
.image-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: border-color .3s, box-shadow .3s;
}
.image-card:hover {
    border-color: rgba(197,165,90,.3);
    box-shadow: 0 0 24px rgba(197,165,90,.12);
}
.image-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.image-card:hover img { transform: scale(1.05); }
.image-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.image-card-overlay h3 {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    margin-bottom: 6px;
}
.image-card-overlay p {
    font-size: 14px; color: var(--text-secondary); line-height: 1.5;
}

/* =============================================
   FAQ Sections
   ============================================= */
.faq-section { margin: 48px 0; }
.faq-section-header { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 32px; }
.faq-section-header.image-right { flex-direction: row-reverse; }
.faq-section-image { flex: 0 0 400px; border-radius: 4px; overflow: hidden; }
.faq-items { flex: 1; }

details.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
details.faq-item summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    display: flex; align-items: center; gap: 12px;
    color: var(--text-primary);
}
details.faq-item summary::before {
    content: '+'; font-size: 24px; color: var(--gold);
    flex-shrink: 0; width: 24px; text-align: center;
    transition: transform .2s;
}
details.faq-item[open] summary::before { content: '\2212'; }
details.faq-item .faq-answer {
    padding: 12px 0 4px 36px;
    font-size: 16px; color: var(--text-secondary); line-height: 1.7;
}

/* =============================================
   Schedule Grid
   ============================================= */
.schedule-grid { margin: 40px 0; }
.schedule-day {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}
.schedule-day h3 {
    font-family: var(--font-heading);
    font-size: 32px; font-weight: 700; font-style: italic;
    margin-bottom: 24px;
}
.schedule-events { list-style: none; }
.schedule-events li {
    padding: 8px 0;
    font-size: 16px;
    display: flex; gap: 16px;
}
.schedule-events .time {
    color: var(--gold); font-weight: 700; flex-shrink: 0; width: 50px;
}
.schedule-day-image { border-radius: 4px; overflow: hidden; }

/* =============================================
   Listing Cards
   ============================================= */
.listing-group { margin: 48px 0; }
.listing-group-heading {
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 700;
    text-align: center;
    color: var(--gold);
    letter-spacing: .1em;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .2s;
}
.car-card:hover { border-color: var(--gold); }
.car-card-image {
    position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.car-card-image img { width: 100%; height: 100%; object-fit: cover; }
.car-card-sold {
    position: absolute; top: 12px; right: 12px;
    background: #c0392b; color: #fff;
    padding: 4px 12px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
}
.car-card-body { padding: 20px; }
.car-card-title {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    margin-bottom: 4px;
}
.car-card-price {
    font-size: 28px; font-weight: 700; color: var(--gold);
    margin-bottom: 16px;
}
.car-card-specs {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    font-size: 14px; color: var(--text-secondary);
    margin-bottom: 16px;
}
.car-card-specs li::before {
    content: '\2022'; color: var(--gold); margin-right: 6px;
}
.car-card-location {
    font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;
}
.car-card-contact {
    display: inline-block; font-size: 13px;
}

/* =============================================
   Channels Grid
   ============================================= */
.channels-grid {
    display: flex; justify-content: center; gap: 60px;
    margin: 40px 0;
}
.channel-item { text-align: center; }
.channel-item .channel-icon {
    width: 48px; height: 48px; margin: 0 auto 12px;
    color: var(--gold);
}
.channel-item h3 {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    margin-bottom: 6px;
}
.channel-item p { font-size: 14px; color: var(--text-secondary); }

/* =============================================
   Contact Form
   ============================================= */
.contact-form {
    max-width: 700px; margin: 40px auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .full-width { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px 16px;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-primary); font-family: var(--font-body); font-size: 16px;
    border-radius: 2px; transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--gold);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
    grid-column: 1 / -1; justify-self: center;
    margin-top: 8px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255,255,255,.3);
}

/* =============================================
   Specialists
   ============================================= */
.specialists-heading {
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 700;
    text-align: center;
    margin: 60px 0 32px;
}
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.specialist-card { text-align: center; }
.specialist-photo {
    width: 130px; height: 130px;
    border-radius: 50%; overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid var(--border);
}
.specialist-photo img { width: 100%; height: 100%; object-fit: cover; }
.specialist-name {
    font-family: var(--font-heading); font-size: 16px; font-weight: 700;
    margin-bottom: 4px;
}
.specialist-location {
    font-size: 14px; color: var(--text-secondary); margin-bottom: 8px;
}
.specialist-links { font-size: 13px; line-height: 1.8; }
.specialist-links a { display: block; }

/* =============================================
   Gallery
   ============================================= */
.gallery-grid {
    columns: 3;
    column-gap: 16px;
    margin: 40px 0;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.03); }

/* =============================================
   Register
   ============================================= */
.register-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 24px;
}
.register-content h1 {
    font-family: var(--font-heading);
    font-size: 36px; font-weight: 700;
    margin-bottom: 24px;
}
.register-content .description {
    font-size: 18px; color: var(--text-secondary);
    margin-bottom: 40px; line-height: 1.7;
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 48px 24px;
    text-align: center;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-sketch {
    max-width: 300px; margin: 0 auto 24px;
    opacity: .7;
}
.footer-email {
    display: block; color: var(--gold); font-size: 16px;
    margin-bottom: 4px;
}
.footer-phone { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.footer-social {
    display: flex; justify-content: center; gap: 16px;
    margin-bottom: 24px;
}
.footer-social a { color: var(--text-secondary); transition: color .2s; }
.footer-social a:hover { color: var(--gold); }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,.3); }

/* =============================================
   Listing Cards (template class names)
   ============================================= */
.listing-country-heading {
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 700;
    text-align: center;
    color: var(--gold);
    letter-spacing: .1em;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.car-listing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .2s;
    position: relative;
}
.car-listing-card:hover { border-color: var(--gold); }
.car-listing-card--sold { opacity: .7; }
.listing-sold-badge {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    background: #c0392b; color: #fff;
    padding: 4px 12px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
}
.listing-images {
    position: relative; aspect-ratio: 16/10; overflow: hidden;
    background: var(--bg-secondary);
}
.listing-images img { width: 100%; height: 100%; object-fit: cover; }
.listing-no-image {
    display: flex; align-items: center; justify-content: center;
    height: 100%; color: var(--text-secondary); font-size: 14px;
}
.listing-image-nav {
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 12px;
    background: rgba(0,0,0,.6); padding: 4px 12px; border-radius: 20px;
}
.listing-nav-prev, .listing-nav-next {
    background: none; border: none; color: #fff; cursor: pointer;
    font-size: 20px; padding: 0 4px;
}
.listing-image-count { font-size: 12px; color: var(--text-secondary); }
.listing-body { padding: 20px; }
.listing-title {
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    margin-bottom: 4px;
}
.listing-price {
    font-size: 28px; font-weight: 700; color: var(--gold);
    margin-bottom: 16px;
}
.listing-specs {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    font-size: 14px; color: var(--text-secondary);
    margin-bottom: 16px;
}
.listing-specs li {
    display: flex; justify-content: space-between;
}
.spec-label { color: var(--text-secondary); }
.spec-value { color: var(--text-primary); font-weight: 600; }
.listing-location {
    font-size: 14px; color: var(--text-secondary); margin-bottom: 12px;
}
.listing-contact { font-size: 13px; }
.hero-subheading {
    position: relative; z-index: 1;
    font-size: 20px; color: var(--text-secondary);
    text-align: center; margin-top: 12px;
    font-style: italic;
}
.hero-bg--dark {
    background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.9));
}

/* =============================================
   FiskerAI CTA Banner (listings page)
   ============================================= */
.fiskerai-cta-banner {
    text-align: center;
    padding: 48px 24px;
    margin-bottom: 40px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    background: rgba(197,165,90,.05);
}
.fiskerai-cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}
.fiskerai-cta-banner p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* =============================================
   Archive Notice
   ============================================= */
.archive-notice {
    text-align: center;
    padding: 16px 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.archive-notice p {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
}

/* =============================================
   Membership Page
   ============================================= */
.membership-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}
.membership-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.membership-price {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--gold);
    margin: 32px 0 16px;
}
.membership-price-note {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.membership-benefits {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}
.membership-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.membership-benefits li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
    margin: 32px 0;
}
.includes-item {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color .2s;
}
.includes-item:hover {
    border-color: var(--gold);
}
.includes-icon {
    color: var(--gold);
    margin-bottom: 16px;
}
.includes-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.includes-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.btn-join {
    font-family: var(--font-heading);
    font-size: 24px;
    padding: 16px 48px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 700;
    transition: background .2s;
}
.btn-join:hover {
    background: var(--gold-hover);
    color: #000;
}
.btn-join:disabled {
    opacity: .7;
    cursor: wait;
}
.success-check {
    margin: 0 auto 8px;
}
.success-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

/* =============================================
   FiskerAI Features Section (homepage — kept for compatibility)
   ============================================= */
.fiskerai-section {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}
.fiskerai-features {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 88px 24px;
}
.fiskerai-features-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.fiskerai-features-intro {
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 52px;
    line-height: 1.7;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: all .3s ease;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(197,165,90,.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    border-color: rgba(197,165,90,.35);
    box-shadow: 0 0 32px rgba(197,165,90,.08), 0 8px 24px rgba(0,0,0,.3);
    transform: translateY(-3px);
    color: var(--text-primary);
}
.feature-card-icon {
    margin-bottom: 20px;
    color: var(--gold);
    display: flex;
    justify-content: center;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

/* =============================================
   Membership CTA Section (homepage — kept for compatibility)
   ============================================= */
.membership-cta {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}
.membership-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 88px 24px;
    text-align: center;
}
.membership-cta-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.membership-cta-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}
.membership-cta-text strong {
    color: var(--gold);
    font-weight: 700;
}

/* =============================================
   RESPONSIVE — Tablet (768px)
   ============================================= */
@media (max-width: 768px) {
    .menu-toggle { display: block; z-index: 110; }
    .btn-join-nav.header-join { display: none; }
    .main-nav {
        display: none;
        position: fixed !important;
        top: 0 !important; left: 0 !important;
        width: 100vw !important; height: 100vh !important;
        min-height: 100vh !important;
        background: #000 !important;
        padding: 80px 32px 40px;
        z-index: 105;
        transform: none !important;
        overflow-y: auto;
    }
    .main-nav.open {
        display: flex;
        flex-direction: column;
    }
    .main-nav > ul {
        flex-direction: column; gap: 0;
        align-items: stretch;
    }
    .main-nav > ul > li {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .main-nav a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        letter-spacing: .03em;
        border-radius: 0;
    }
    .main-nav a:hover, .main-nav a.active {
        background: none;
    }
    /* Mobile "Join the Club" button */
    .mobile-join {
        display: block !important;
        text-align: center;
        padding: 14px 24px !important;
        margin-top: 32px;
        font-size: 14px !important;
        border-radius: 100px;
        width: 100%;
    }

    .hero-bg { min-height: 400px; }
    .hero-bg h1, .hero-bg h2 { font-size: 34px; letter-spacing: 1px; }
    .hero-tagline { font-size: 15px; margin-top: 12px; }
    .btn-hero-pill { font-size: 14px; padding: 12px 32px; margin-top: 24px; }

    .section-heading-lg { font-size: 32px; margin-bottom: 36px; }

    .value-pillars-inner { padding: 72px 20px; }
    .pillars-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .pillar-card { padding: 36px 24px; }

    .perks-inner { padding: 72px 20px; }
    .perks-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
    .perk-card { padding: 24px 18px; }

    .events-inner { padding: 72px 20px; }
    .qa-callout { flex-direction: column; padding: 28px 24px; }

    .community-inner { padding: 72px 20px; }
    .showcase-grid { grid-template-columns: 1fr; gap: 16px; }

    .bottom-cta-inner { padding: 72px 20px; }
    .bottom-cta h2 { font-size: 32px; }

    .image-card-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .specialists-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { columns: 2; }
    .channels-grid { flex-direction: column; gap: 24px; }
    .contact-form { grid-template-columns: 1fr; }

    .faq-section-header { flex-direction: column !important; }
    .faq-section-image { flex: none; width: 100%; }

    .schedule-day { grid-template-columns: 1fr; gap: 20px; }

    h2.section-heading { font-size: 30px; }

    .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .fiskerai-features { padding: 60px 20px; }
    .fiskerai-features-heading { font-size: 32px; }
    .feature-card { padding: 28px 20px; }

    .membership-cta-inner { padding: 60px 20px; }
    .membership-cta-heading { font-size: 32px; }

    .membership-price { font-size: 48px; }
    .includes-grid { grid-template-columns: 1fr; }
    .success-links { flex-direction: column; align-items: center; }
}

/* =============================================
   RESPONSIVE — Small mobile (480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-bg h1, .hero-bg h2 { font-size: 28px; }
    .perks-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .specialists-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 1; }
}
