/* ========================================
   Big Muddy Touring — Styles
   ======================================== */

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

:root {
    --bg-deep: #0d1117;
    --bg-surface: #151b23;
    --bg-card: #1c2330;
    --bg-card-hover: #232b3a;
    --text-cream: #fef5e7;
    --text-muted: #a0977d;
    --text-dim: #6b6455;
    --accent-teal: #2b8a8a;
    --accent-amber: #d4a574;
    --accent-rust: #a0522d;
    --accent-copper: #b87333;
    --accent-gold: #c9a84c;
    --accent-green: #2dd4a0;
    --border: rgba(212, 165, 116, 0.12);
    --border-hover: rgba(212, 165, 116, 0.25);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
    --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-deep);
    color: var(--text-cream);
    font-family: 'Lora', Georgia, serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--grain);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

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

a:hover {
    color: var(--accent-copper);
}

strong {
    color: var(--accent-amber);
    font-weight: 600;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-cream);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-family: 'Lora', serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

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

.nav-cta {
    background: var(--accent-teal) !important;
    color: var(--text-cream) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background: #339e9e !important;
    transform: translateY(-1px);
}

.nav-plan {
    border: 1px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition) !important;
}

.nav-plan:hover {
    background: var(--accent-gold) !important;
    color: #1a1a1a !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-cream);
    transition: all 0.3s;
}

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

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(43, 138, 138, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.3) 0%, rgba(13, 17, 23, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-teal);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--text-cream);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--accent-amber);
    margin-bottom: 0.5rem;
    font-style: italic;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.85s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-amber), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-teal);
    color: var(--text-cream);
}

.btn-primary:hover {
    background: #339e9e;
    color: var(--text-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 138, 138, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-cream);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    background: rgba(254, 245, 231, 0.05);
    color: var(--text-cream);
    border-color: var(--accent-amber);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   Engine Grid (Revenue Streams)
   ======================================== */
.section--engine {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

.engine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.engine-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    transition: all var(--transition);
}

.engine-item:hover {
    border-color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.engine-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-teal);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.engine-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-cream);
}

/* ========================================
   Sections
   ======================================== */
.section {
    position: relative;
    padding: clamp(5rem, 12vw, 8rem) 0;
    overflow: hidden;
}

.section--dark {
    background: var(--bg-surface);
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-teal);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: var(--text-cream);
}

.section-location {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent-amber);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.8;
}

.section-host {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--accent-amber);
    margin-bottom: 1.5rem;
}

.center-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.center-block .section-lead {
    margin-top: 1rem;
}

/* ========================================
   Section Hero Images
   ======================================== */
.section-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    overflow: hidden;
    z-index: 0;
}

.section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 17, 23, 0.2) 0%,
            rgba(13, 17, 23, 0.6) 50%,
            var(--bg-deep) 100%);
}

/* ========================================
   Split Layout
   ======================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.split-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 520px;
}

/* --- Stats --- */
.stat-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--accent-amber);
    display: block;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Photo Cards --- */
.photo-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 1.5rem;
}

.photo-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-card:hover .photo-card-img {
    transform: scale(1.05);
}

.photo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(13, 17, 23, 0.9) 0%, transparent 100%);
}

.photo-card-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-cream);
}

.photo-card-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Photo Gallery Layouts --- */
.photo-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.photo-gallery .photo-card {
    margin-bottom: 0;
    aspect-ratio: auto;
    min-height: 280px;
}

.photo-gallery--duo {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 3rem;
}

.photo-gallery--duo .photo-card {
    min-height: 320px;
}

.photo-card--wide {
    grid-column: span 1;
}

.photo-card--tall {
    aspect-ratio: 3/4;
    margin-bottom: 1.5rem;
}

/* --- Merch Product Grid --- */
.merch-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.merch-photo-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    text-align: center;
}

.merch-photo-item:hover {
    border-color: var(--accent-amber);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.merch-photo-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--bg-surface);
    transition: transform 0.5s ease;
}

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

.merch-photo-label {
    display: block;
    padding: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* --- Merch Collections --- */
.merch-collections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* --- Feature Cards --- */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-cream);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Route Map
   ======================================== */
.route-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.route-stop {
    text-align: center;
    padding: 1rem 1.5rem;
}

.route-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-teal);
    margin: 0 auto 0.75rem;
    box-shadow: 0 0 12px rgba(43, 138, 138, 0.4);
}

.route-dot--home {
    width: 18px;
    height: 18px;
    background: var(--accent-amber);
    box-shadow: 0 0 16px rgba(212, 165, 116, 0.5);
}

.route-stop h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.route-detail {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

.route-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-teal), var(--accent-amber));
    opacity: 0.4;
}

/* --- Fleet Cards --- */
.fleet-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.fleet-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.fleet-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fleet-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.fleet-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Records — Deal Highlights
   ======================================== */
.deal-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.deal-item {
    display: flex;
    flex-direction: column;
}

.deal-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--accent-amber);
}

.deal-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* --- Campaign Phases --- */
.campaign-phases {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.campaign-phases h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.phase {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.phase-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.phase--foundation {
    background: rgba(43, 138, 138, 0.15);
    color: var(--accent-teal);
    border: 1px solid rgba(43, 138, 138, 0.3);
}

.phase--release {
    background: rgba(212, 165, 116, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.phase--momentum {
    background: rgba(45, 212, 160, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(45, 212, 160, 0.3);
}

.phase-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- MelodyVault Panel --- */
.melodyvault-panel {
    background: var(--bg-card);
    border: 1px solid var(--accent-teal);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(43, 138, 138, 0.08);
    border-bottom: 1px solid rgba(43, 138, 138, 0.2);
}

.mv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px rgba(45, 212, 160, 0.5);
}

.mv-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-cream);
    letter-spacing: 0.05em;
}

.mv-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-left: auto;
}

.mv-features {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mv-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.mv-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.mv-feature h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    color: var(--text-cream);
    font-weight: 700;
}

.mv-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Records Features --- */
.records-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.record-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    transition: all var(--transition);
}

.record-feature:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.record-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.record-feature h4 {
    font-size: 0.9rem;
    color: var(--text-cream);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.record-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Signed Artists --- */
.signed-artists {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.signed-artists h3 {
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.artist-tag {
    background: var(--bg-card-hover);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--text-cream);
    font-family: 'Lora', serif;
}

.artist-tag--upcoming {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    border-style: dashed;
}

/* ========================================
   Radio
   ======================================== */
.radio-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.radio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

.radio-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.radio-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-amber);
}

.radio-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   Merch
   ======================================== */
.merch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.merch-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}

.merch-item:hover {
    border-color: var(--accent-amber);
    transform: translateY(-2px);
}

.merch-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    color: var(--accent-amber);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.merch-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.merch-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Production Packages
   ======================================== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card--featured {
    border-color: var(--accent-teal);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(43, 138, 138, 0.08) 100%);
}

.package-card--featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-teal);
    color: var(--text-cream);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.package-tier {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.package-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-amber);
    margin-bottom: 0.5rem;
}

.package-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.package-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Network
   ======================================== */
.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.network-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

.network-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.network-card--owned {
    border-color: var(--accent-teal);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(43, 138, 138, 0.06) 100%);
}

.network-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.network-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.network-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- State Headers --- */
.network-card--state-header {
    grid-column: 1 / -1;
    background: transparent;
    border: none;
    padding: 1.5rem 0 0.25rem;
}

.network-card--state-header:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.network-state {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

/* ========================================
   Contact
   ======================================== */
.section--contact {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(43, 138, 138, 0.06) 0%, transparent 60%),
        var(--bg-surface);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--text-cream);
}

.contact-item a:hover {
    color: var(--accent-amber);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-cream);
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
}

.footer-owners {
    color: var(--accent-amber) !important;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-copy p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay {
    transition-delay: 0.2s;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .engine-grid,
    .fleet-cards,
    .radio-features,
    .package-grid,
    .network-grid {
        grid-template-columns: 1fr 1fr;
    }

    .photo-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .merch-photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .merch-collections {
        grid-template-columns: 1fr 1fr;
    }

    .route-map {
        flex-direction: column;
    }

    .route-line {
        width: 2px;
        height: 30px;
    }

    .deal-highlights {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

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

    .nav-toggle {
        display: flex;
    }

    .engine-grid,
    .fleet-cards,
    .radio-features,
    .package-grid,
    .network-grid {
        grid-template-columns: 1fr;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery,
    .photo-gallery--duo {
        grid-template-columns: 1fr;
    }

    .merch-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .merch-collections {
        grid-template-columns: 1fr;
    }

    .stat-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .deal-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .phase {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .section-hero-img {
        height: 250px;
    }
}