/* ============================================
   ANALOG DRIVERS' CLUB
   Premium Editorial Design System
   DARK THEME THROUGHOUT
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors - BVCC Dark Theme throughout */
    --color-bg: #1A1918;
    --color-bg-alt: #252423;
    --color-bg-dark: #1A1918;
    --color-text: #FAFAF8;
    --color-text-muted: #A8A8A8;
    --color-text-light: #888888;
    --color-accent: #FA2223;
    --color-accent-hover: #D91E1F;
    --color-white: #FFFFFF;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-dark: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Type Scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
    --text-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
    --text-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
    --text-lg: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
    --text-2xl: clamp(1.75rem, 1.4rem + 1.75vw, 3rem);
    --text-3xl: clamp(2.25rem, 1.75rem + 2.5vw, 4.5rem);
    --text-4xl: clamp(3rem, 2rem + 5vw, 7rem);
    
    /* Spacing - TIGHT for minimal dead space */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --section-padding: 3rem;  /* Consistent section padding */
    
    /* Layout */
    --container-max: 1400px;
    --container-padding: clamp(1.5rem, 4vw, 4rem);
    
    /* Transitions - minimal, no animations */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-normal: 200ms;
    --duration-slow: 300ms;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Selection */
::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    display: block;
    width: 180px;
    height: auto;
    margin: 0 auto var(--space-md);
}

.loader-text {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.loader-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    animation: loaderLine 1.5s var(--ease-in-out) infinite;
}

@keyframes loaderLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: background-color var(--duration-normal) var(--ease-smooth),
                padding var(--duration-normal) var(--ease-smooth),
                backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.nav.scrolled {
    background-color: rgba(26, 25, 24, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
}

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

.nav-logo {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.nav-logo-img {
    height: 28px;
    width: auto;
    display: block;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.nav.scrolled .nav-logo-img {
    opacity: 1;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--duration-fast) var(--ease-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75em 1.5em !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all var(--duration-fast) var(--ease-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav.scrolled .nav-cta {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.nav-cta:hover {
    background: var(--color-white) !important;
    color: var(--color-text) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--color-white) !important;
    color: var(--color-bg-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--color-white);
    transition: all var(--duration-fast) var(--ease-smooth);
}

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

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translateY(5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translateY(-5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-link {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--color-white);
    text-decoration: none;
    padding: var(--space-sm) 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25em 2.5em;
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(250, 34, 35, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTION TAGS
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 2px;
    background: var(--color-accent);
}

.section-title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.section-title em {
    font-style: italic;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12vh;
    overflow: hidden;
    background: #000000;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 var(--container-padding);
    text-align: center;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.tag-text {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Car - positioned at bottom, full width, black bg image */
.hero-car {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.hero-car::after {
    display: none;
}

.hero-car-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.about-content .section-tag {
    margin-bottom: var(--space-sm);
}

.about-content .section-title {
    margin-bottom: var(--space-md);
}

.about-lead {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.location-content .section-tag {
    margin-bottom: var(--space-sm);
}

.location-content .section-title {
    margin-bottom: var(--space-md);
}

.location-lead {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.location-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.location-image {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.fleet-header {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.fleet-intro {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

/* Simple 3-image gallery for Fleet Philosophy */
.fleet-gallery.fleet-gallery-simple {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Fleet acquisition text - below gallery */
.fleet-acquisition {
    text-align: center;
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin: var(--space-lg) auto;
    max-width: 700px;
}

.fleet-gallery-simple .gallery-item {
    grid-column: span 1 !important;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
}

.fleet-gallery-simple .gallery-image-wrapper {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.fleet-gallery-simple .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fleet-gallery-simple .gallery-info {
    display: none;
}

.fleet-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fleet-list-title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.fleet-intro-text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.fleet-car-list {
    text-align: left;
    margin-bottom: var(--space-md);
}

.fleet-car-list p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.fleet-details p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    text-align: left;
}

.fleet-note {
    font-size: var(--text-sm);
    font-style: italic;
    margin-top: var(--space-md);
}

/* ============================================
   WAITLIST SECTION
   ============================================ */
.waitlist {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.waitlist-header {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.waitlist-intro {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.waitlist-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: var(--space-xl);
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.waitlist-form select {
    width: 100%;
    padding: 1em 1.25em;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: #1A1918;
    background: #FFFFFF;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
}

.waitlist-form select:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* ============================================
   FOOTER UPDATES
   ============================================ */
.footer-logo-img {
    width: 180px;
    height: auto;
    margin-bottom: var(--space-sm);
}

/* ============================================
   FLEET SECTION (was COLLECTION)
   ============================================ */
.fleet {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.fleet-header {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.fleet-intro {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: var(--space-sm);
}

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg);
    padding: 0 var(--container-padding);
    max-width: 1600px;
    margin: 0 auto var(--space-xl);
}

.fleet-details {
    max-width: 800px;
    margin: var(--space-xl) auto 0;
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.fleet-details p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.fleet-note {
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--color-text-light);
}

/* ============================================
   COLLECTION SECTION
   ============================================ */
.collection {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.collection-header {
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.collection-intro {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

.collection-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg);
    padding: 0 var(--container-padding);
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* No hover effects per client request */
.gallery-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item-large {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 8;
}

.gallery-image-wrapper {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.gallery-item-large .gallery-image-wrapper {
    padding-bottom: 120%;
}

.gallery-item-wide .gallery-image-wrapper {
    padding-bottom: 50%;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(26, 25, 24, 0.95), rgba(26, 25, 24, 0.6));
}

/* No hover effects per client request */
.gallery-item:hover .gallery-info {
    background: linear-gradient(to top, rgba(26, 25, 24, 0.95), rgba(26, 25, 24, 0.6));
}

.gallery-year {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.gallery-name {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.gallery-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    opacity: 1;
    line-height: 1.6;
}

/* No hover effects per client request */
.gallery-item:hover .gallery-desc {
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
}

.quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote p {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.quote cite {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* ============================================
   MEMBERSHIP SECTION
   ============================================ */
.membership {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.membership-content .section-tag {
    margin-bottom: var(--space-sm);
}

.membership-content .section-title {
    margin-bottom: var(--space-md);
}

.membership-lead {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.membership-requirements,
.membership-benefits {
    margin-bottom: var(--space-md);
}

.membership-requirements h4,
.membership-benefits h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.membership-requirements ul,
.membership-benefits ul {
    list-style: none;
}

.membership-requirements li,
.membership-benefits li {
    position: relative;
    padding-left: var(--space-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.membership-requirements li::before,
.membership-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.membership-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
}

.membership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide membership caption - creates dead space */
.membership-caption {
    display: none;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.events-header {
    margin-bottom: var(--space-lg);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--color-border);
    margin-bottom: var(--space-xl);
}

.event-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-lg) 0;
    background: var(--color-bg-alt);
}

/* No hover effects per client request */
.event-item:hover {
    background: var(--color-bg-alt);
}

.event-date {
    text-align: center;
}

.event-month {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.event-day {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1;
}

.event-title {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.event-location {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.event-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.status-badge {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5em 1em;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.status-limited {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

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

.events-footer p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info p {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.contact-details {
    margin-top: var(--space-xl);
}

.contact-link {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: var(--space-md);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.contact-link:hover {
    color: var(--color-accent);
}

.contact-address {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.8;
}

.contact-form {
    background: var(--color-bg-alt);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.form-group label .required {
    color: var(--color-accent);
    display: inline;
    margin-left: 0.2em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1em 1.25em;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: #1A1918;
    background: #FFFFFF;
    border: 2px solid var(--color-border);
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group select {
    width: 100%;
    padding: 1em 1.25em;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: #1A1918;
    background: #FFFFFF;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: 0;
    align-items: start;
}

/* ============================================
   WAITLIST SECTION
   ============================================ */
.waitlist {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.waitlist-header {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.waitlist-intro {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

.waitlist-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: var(--space-xl);
    border-radius: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.footer-links {
    display: flex;
    gap: var(--space-2xl);
}

.footer-col h5 {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.footer-col a {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color var(--duration-fast) var(--ease-smooth);
}

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

.footer-contact p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

/* ============================================
   NO SCROLL ANIMATIONS - All content visible
   ============================================ */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0s; }
.reveal-delay-2 { transition-delay: 0s; }
.reveal-delay-3 { transition-delay: 0s; }
.reveal-delay-4 { transition-delay: 0s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .collection-gallery {
        gap: var(--space-sm);
    }
    
    .gallery-item {
        grid-column: span 6;
    }
    
    .gallery-item-large {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    .gallery-item-wide {
        grid-column: span 12;
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .location-grid,
    .membership-grid {
        gap: var(--space-lg);
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 6vh;
        height: 100vh;
        height: 100svh;
        min-height: 100vh;
        min-height: 100svh;
    }
    
    .hero-content {
        margin-top: 20vh;
    }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .fleet-gallery.fleet-gallery-simple {
        grid-template-columns: 1fr !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form {
        padding: var(--space-lg);
    }
    
    .collection-gallery {
        grid-template-columns: 1fr;
        padding: 0 var(--container-padding);
    }
    
    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }
    
    .gallery-item-large .gallery-image-wrapper,
    .gallery-item-wide .gallery-image-wrapper {
        padding-bottom: 75%;
    }
    
    .gallery-info {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(26, 25, 24, 0.95) 60%, transparent);
    }
    
    .gallery-desc {
        opacity: 1;
    }
    
    .event-item {
        grid-template-columns: 80px 1fr;
        gap: var(--space-md);
    }
    
    .event-status {
        grid-column: 2;
        margin-top: var(--space-sm);
    }
    
    .footer-grid {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1.25rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .quote p {
        font-size: var(--text-xl);
    }
    
    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-date {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .event-month,
    .event-day {
        display: inline;
    }
    
    .event-status {
        grid-column: 1;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .nav,
    .loader,
    .mobile-menu,
    .hero-scroll {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: var(--color-text);
    }
}
