/* EDITORIAL DESIGN TOKENS */
:root {
    --bg-base: #070707;
    --bg-alt: #0a0a0a;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --accent-gold: #cba25a;
    --accent-glow: rgba(203, 162, 90, 0.15); /* Warm colored highlight */
    --line-color: #222222;
    --line-color-light: #333333;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Roboto Mono', monospace;

    --gutter: 2rem;
    --frame-thickness: 1px;
    
    /* SHADOW HIERARCHY */
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-deep: 0 20px 60px rgba(0,0,0,0.8);
    --shadow-hover: 0 15px 50px rgba(203, 162, 90, 0.08); /* Glow accent */
    --inset-edge: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ATMOSPHERE & TEXTURES */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04; mix-blend-mode: overlay;
}
.ambient-glows {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; pointer-events: none; z-index: -1;
}
.glow-orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
}
.hero-orb { width: 800px; height: 800px; top: -100px; right: -200px; opacity: 0.8; }
.roster-orb { width: 1200px; height: 1200px; top: 30%; left: -400px; opacity: 0.5; }
.team-orb { width: 1000px; height: 1000px; top: 10%; right: -200px; opacity: 0.7; }
.atmospheric-haze {
    position: fixed; inset: 0; pointer-events: none; z-index: -2;
    background: radial-gradient(circle at 50% 10%, rgba(20, 20, 20, 0.6) 0%, transparent 60%);
}

.ambient-particles, .ambient-particles::before, .ambient-particles::after {
    position: fixed; inset: 0; pointer-events: none; z-index: -1;
    background-image: 
        radial-gradient(1px 1px at 15% 25%, rgba(203,162,90, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 45% 75%, rgba(203,162,90, 0.3), transparent),
        radial-gradient(1px 1px at 75% 15%, rgba(255,255,255, 0.4), transparent),
        radial-gradient(2px 2px at 85% 85%, rgba(203,162,90, 0.2), transparent),
        radial-gradient(1px 1px at 20% 90%, rgba(255,255,255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 95% 40%, rgba(203,162,90, 0.4), transparent);
}
.ambient-particles {
    background-size: 150px 150px;
    animation: premium-dust 140s linear infinite;
    top: 0; left: 0; width: 100%; height: 100%;
}
.ambient-particles::before {
    content: ''; background-size: 250px 250px;
    animation: premium-dust 200s linear infinite;
    opacity: 0.6;
}
.ambient-particles::after {
    content: ''; background-size: 350px 350px;
    animation: premium-dust 280s linear infinite;
    opacity: 0.4;
}
@keyframes premium-dust {
    0% { background-position: 0 0; }
    100% { background-position: 0 -10500px; }
}

/* FRAME BORDER (Editorial constraint) */
.site-frame {
    position: fixed;
    background: var(--line-color);
    z-index: 999;
    pointer-events: none;
    box-shadow: var(--shadow-deep);
}
.frame-top { top: 0; left: 0; width: 100%; height: var(--frame-thickness); }
.frame-bottom { bottom: 0; left: 0; width: 100%; height: var(--frame-thickness); }
.frame-left { top: 0; left: 0; width: var(--frame-thickness); height: 100%; }
.frame-right { top: 0; right: 0; width: var(--frame-thickness); height: 100%; }

/* UTILS */
.arr { display: inline-block; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
a:hover .arr { transform: translateX(8px); }

.editorial-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-main);
    letter-spacing: 1px;
    border-bottom: 1px solid var(--line-color-light);
    padding-bottom: 0.25rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-transform: uppercase;
}
/* AMBIENT HIGHLIGHTS & SHIMMERS */
.shimmer-text {
    background: linear-gradient(-60deg, var(--text-main) 40%, rgba(203, 162, 90, 0.6) 50%, var(--text-main) 60%);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer-text 12s linear infinite;
}
.shimmer-text-gold {
    background: linear-gradient(-60deg, var(--accent-gold) 40%, #ffffff 50%, var(--accent-gold) 60%);
    background-size: 300%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer-text 10s linear infinite;
}
@keyframes shimmer-text { 0% { background-position: 100% 50%; } 100% { background-position: -50% 50%; } }

.shimmer-line {
    position: relative; overflow: hidden;
}
.shimmer-line::after {
    content: ''; position: absolute; top:0; left:-100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(203, 162, 90, 0.5), transparent);
    animation: sweep-line 8s ease-in-out infinite;
}
@keyframes sweep-line { 0% { left: -100%; } 100% { left: 200%; } }

.editorial-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(203, 162, 90, 0.3);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(120deg, var(--text-main) 0%, #ffffff 20%, var(--text-main) 40%);
    background-size: 200% auto;
    color: var(--bg-base);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: shine-bg 8s linear infinite;
}
@keyframes shine-bg { to { background-position: 200% center; } }
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg); transition: none;
}
.btn-primary:hover {
    background-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 10px 25px rgba(203, 162, 90, 0.4);
    transform: translateY(-2px);
}
.btn-primary:hover::before {
    animation: shine 0.75s ease forwards;
}
.btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
@keyframes shine { 100% { left: 200%; } }

/* NAV */
.editorial-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(4, 4, 4, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: background 0.4s ease;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem var(--gutter);
}
.nav-brand {
    display: flex; flex-direction: column; justify-content: center;
}
.logo-link { font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 2px; line-height: 1; transition: color 0.4s ease, text-shadow 0.4s ease; }
.logo-link:hover { color: var(--accent-gold); text-shadow: 0 0 20px rgba(203,162,90,0.4); }
.nav-coord { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 3px; margin-top: 0.4rem; }
.nav-links { display: flex; gap: 4rem; margin-right: auto; padding-left: 4rem; }
.nav-links a { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 2px; color: var(--text-muted); transition: color 0.4s ease, text-shadow 0.4s ease; }
.nav-links a:hover { color: var(--accent-gold); text-shadow: 0 0 15px rgba(203,162,90,0.3); }
.nav-action { display: flex; align-items: center; }

/* MAIN CONTAINERS */
.editorial-main { padding-top: 100px; position: relative; z-index: 1; }

/* HERO SPLIT */
.hero-split {
    display: grid; grid-template-columns: 1fr 45%; min-height: calc(100vh - 70px);
    border-bottom: 1px solid var(--line-color);
    background: radial-gradient(circle at left center, rgba(10,10,10,0.8) 0%, transparent 100%);
}
.hero-typography { padding: 4rem 4rem 4rem var(--gutter); display: flex; flex-direction: column; justify-content: center; position: relative; }
.meta-data { display: flex; align-items: center; gap: 1rem; font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-gold); letter-spacing: 2px; margin-bottom: 4rem; }
.line-ext { height: 1px; width: 60px; background: var(--line-color-light); }
.massive-title {
    font-family: var(--font-heading); font-size: clamp(6rem, 12vw, 15rem); line-height: 0.85; letter-spacing: -2px; margin-bottom: 4rem; text-transform: uppercase;
    text-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.hero-bottom-lockup { max-width: 400px; margin-left: 5rem; border-left: 1px solid var(--line-color-light); padding-left: 2rem; }
.hero-caption { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }

.hero-visual {
    border-left: 1px solid var(--line-color); position: relative; padding: 2rem; display: flex; flex-direction: column;
}
.img-frame {
    flex-grow: 1; position: relative; overflow: hidden;
    box-shadow: var(--shadow-deep);
}
.img-frame::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%; pointer-events: none;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5); z-index: 1;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) contrast(1.1); transition: filter 0.8s ease, transform 0.8s ease; }
.hero-visual:hover .img-frame img { filter: grayscale(20%) contrast(1.1); transform: scale(1.02); }

.frame-mark { position: absolute; width: 15px; height: 15px; border: 1px solid var(--accent-gold); z-index: 2; }
.frame-mark.tl { top: 1rem; left: 1rem; border-right: none; border-bottom: none; }
.frame-mark.tr { top: 1rem; right: 1rem; border-left: none; border-bottom: none; }
.frame-mark.bl { bottom: 1rem; left: 1rem; border-right: none; border-top: none; }
.frame-mark.br { bottom: 1rem; right: 1rem; border-left: none; border-top: none; }

.hero-trust { margin-top: 2rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; color: var(--text-muted); display: flex; justify-content: space-between; align-items: flex-end; }
.trust-stars { color: var(--accent-gold); font-size: 1rem; text-shadow: 0 0 10px var(--accent-glow); }

/* SERVICES BOARD */
.departure-board { border-bottom: 1px solid var(--line-color); position: relative; }
.board-header { padding: 6rem var(--gutter) 4rem; border-bottom: 1px solid var(--line-color); }
.section-idx { display: block; font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent-gold); margin-bottom: 1rem; }
.section-title { font-family: var(--font-heading); font-size: 4rem; line-height: 1; letter-spacing: 1px; text-shadow: var(--shadow-soft); }
.board-interactive { display: grid; grid-template-columns: 60% 40%; }
.board-list { display: flex; flex-direction: column; }

.board-row {
    display: grid; grid-template-columns: 80px 1.5fr 2fr 80px 100px; align-items: center;
    border-bottom: 1px solid var(--line-color); padding: 2rem var(--gutter);
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    cursor: pointer; position: relative; overflow: hidden;
}
/* MOUSE TRACKING GLOW */
.board-row::before, .roster-editorial-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(203, 162, 90, 0.06), transparent 40%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none; z-index: 0;
}
.board-row:hover::before, .roster-editorial-card:hover::before { opacity: 1; }
.board-row:hover {
    background: var(--bg-alt);
    box-shadow: var(--inset-edge), var(--shadow-hover);
    transform: translateX(10px);
    border-left: 2px solid var(--accent-gold);
}

.b-col-id, .b-col-name, .b-col-desc, .b-col-price, .b-col-act { position: relative; z-index: 1; transition: color 0.4s ease; }
.b-col-id { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }
.b-col-name { font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 1px; }
.b-col-desc { font-size: 0.9rem; color: var(--text-muted); padding-right: 2rem; }
.b-col-price { font-family: var(--font-mono); font-size: 1.1rem; }
.b-col-act a { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-gold); letter-spacing: 2px; transition: text-shadow 0.3s; }
.board-row:hover .b-col-name { color: var(--accent-gold); text-shadow: 0 0 15px rgba(203,162,90,0.3); }

.board-visual-target {
    border-left: 1px solid var(--line-color); padding: 2rem; display: flex; align-items: center; justify-content: center;
    background: #050505; box-shadow: inset 20px 0 50px rgba(0,0,0,0.8);
}
.target-frame {
    width: 100%; aspect-ratio: 4/5; position: relative;
    border: 1px solid var(--line-color-light);
    box-shadow: var(--shadow-deep); overflow: hidden;
}
.target-frame::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 80px rgba(0,0,0,0.7); z-index: 2;
}
.target-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: opacity 0.4s ease, transform 0.4s ease; }

/* PHILOSOPHY */
.philosophy-section { border-bottom: 1px solid var(--line-color); position: relative; }
.phil-container { display: grid; grid-template-columns: 1fr 1fr; padding: 8rem 0; }
.phil-large-text { padding: 0 4rem 0 var(--gutter); }
.phil-large-text h2 { font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: 1.1; margin-top: 1rem; text-shadow: var(--shadow-soft); }
.phil-details { padding: 0 var(--gutter) 0 4rem; border-left: 1px solid var(--line-color); display: flex; flex-direction: column; gap: 6rem; position: relative; z-index: 1;}
.phil-block { max-width: 400px; padding: 2rem; transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease; border-radius: 4px; border: 1px solid transparent; }
.phil-block:hover { background: var(--bg-alt); transform: translateY(-5px); border-color: var(--line-color); box-shadow: var(--inset-edge), var(--shadow-soft); }
.offset-block { margin-left: auto; }
.cap-number { display: block; font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent-gold); margin-bottom: 1rem; text-shadow: 0 0 10px var(--accent-glow); }
.phil-block h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; letter-spacing: 1px; }
.phil-block p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

.bleed-image { position: relative; width: 100%; height: 60vh; border-top: 1px solid var(--line-color); box-shadow: var(--shadow-deep); }
.bleed-image::after { content: ''; position: absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); pointer-events:none; }
.bleed-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) contrast(1.1); }
.bleed-caption {
    position: absolute; bottom: 2rem; right: 2rem; background: rgba(10,10,10,0.85); backdrop-filter: blur(10px);
    padding: 1rem 1.5rem; border: 1px solid var(--line-color); display: flex; flex-direction: column; gap: 0.5rem;
    font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; box-shadow: var(--shadow-soft); z-index: 2;
}

/* THE FLEET TRACK */
.fleet-index { border-bottom: 1px solid var(--line-color); position: relative; }
.roster-track { display: flex; flex-direction: column; }
.roster-editorial-card { display: grid; grid-template-columns: 1fr 400px; border-bottom: 1px solid var(--line-color); transition: background 0.4s ease; cursor: pointer; }
.roster-editorial-card:last-child { border-bottom: none; }
.roster-editorial-card:hover { background: var(--bg-alt); box-shadow: var(--inset-edge); }
.roster-huge-name {
    font-family: var(--font-heading); font-size: clamp(4rem, 8vw, 10rem); line-height: 1; padding: 2rem var(--gutter);
    display: flex; align-items: center; color: var(--line-color-light); transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s ease;
    position: relative; z-index: 1;
}
.roster-editorial-card:hover .roster-huge-name { color: var(--text-main); text-shadow: 0 10px 30px rgba(0,0,0,0.8); transform: translateX(20px); }
.roster-card-content {
    border-left: 1px solid var(--line-color); padding: 2rem; display: flex; flex-direction: column; background: var(--bg-alt);
    position: relative; z-index: 1; transition: box-shadow 0.4s ease;
}
.roster-editorial-card:hover .roster-card-content { box-shadow: -20px 0 50px rgba(0,0,0,0.5); }
.r-img-box {
    flex-grow: 1; border: 1px solid var(--line-color-light); margin-bottom: 1.5rem; overflow: hidden; box-shadow: var(--shadow-deep);
}
.r-img-box img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s ease, transform 0.4s ease; }
.roster-editorial-card:hover .r-img-box img { filter: grayscale(0%); transform: scale(1.05); }
.r-meta { display: flex; justify-content: space-between; align-items: center; }
.r-title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }
.r-book { font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent-gold); font-weight: bold; transition: text-shadow 0.3s; }
.roster-editorial-card:hover .r-book { text-shadow: 0 0 10px rgba(203,162,90,0.5); }

/* REVIEWS EDITORIAL */
.reviews-editorial { padding: 10rem var(--gutter); border-bottom: 1px solid var(--line-color); text-align: center; background: radial-gradient(circle at center, #111 0%, #050505 100%); position: relative; }
.quote-canvas { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.floating-stars { font-size: 1.5rem; color: var(--accent-gold); letter-spacing: 5px; margin-bottom: 3rem; display: block; text-shadow: 0 0 20px var(--accent-glow); }
.massive-quote { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 4rem); line-height: 1.2; margin-bottom: 4rem; text-shadow: var(--shadow-soft); }
.quote-author { display: flex; flex-direction: column; gap: 0.5rem; }
.mono-name { font-family: var(--font-mono); font-size: 1rem; color: var(--accent-gold); letter-spacing: 2px; text-shadow: 0 0 10px rgba(203,162,90,0.2); }
.mono-status { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 2px; }

/* TERMINAL / FOOTER */
/* INSTAGRAM GALLERY */
.ig-gallery-section { border-bottom: 1px solid var(--line-color); background: var(--bg-base); position: relative; }
.ig-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; padding: 6rem var(--gutter) 4rem;}
.ig-title-lockup { display: flex; flex-direction: column; }
.ig-link { font-size: 1rem; color: var(--accent-gold); border-bottom-color: var(--accent-gold); margin-bottom: 1rem; text-shadow: 0 0 10px rgba(203,162,90,0.3); }
.ig-link:hover { text-shadow: 0 0 20px rgba(203,162,90,0.6); }

.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-color); border-top: 1px solid var(--line-color); }
.ig-post { position: relative; aspect-ratio: 1; overflow: hidden; display: block; background: var(--bg-base); }
.ig-post img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) sepia(20%) hue-rotate(320deg); transition: filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ig-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; backdrop-filter: blur(2px); }
.ig-icon { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-main); letter-spacing: 2px; text-transform: uppercase; border: 1px solid var(--line-color-light); padding: 0.75rem 1.5rem; transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s, color 0.4s; background: rgba(0,0,0,0.5); }

.ig-post:hover { z-index: 2; box-shadow: var(--shadow-deep); }
.ig-post:hover img { filter: grayscale(0%) sepia(0%); transform: scale(1.05); }
.ig-post:hover .ig-overlay { opacity: 1; }
.ig-post:hover .ig-icon { transform: translateY(0); border-color: var(--accent-gold); color: var(--accent-gold); text-shadow: 0 0 10px rgba(203,162,90,0.5); }

.terminal-grid { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-alt); }
.terminal-block { padding: 6rem var(--gutter); position: relative; }
.map-block { border-right: 1px solid var(--line-color); display: flex; flex-direction: column; }
.coord-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-gold); letter-spacing: 2px; margin-bottom: 2rem; text-shadow: 0 0 10px var(--accent-glow); }
.address-huge { font-family: var(--font-heading); font-size: 3rem; line-height: 1.1; margin-bottom: 3rem; text-shadow: var(--shadow-soft); }
.terminal-map {
    flex-grow: 1; min-height: 300px; position: relative; border: 1px solid var(--line-color); 
    filter: grayscale(100%) invert(90%) contrast(1.2); box-shadow: var(--shadow-deep); overflow: hidden;
}
.terminal-map iframe { width: 100%; height: 100%; border: none; }
.map-overlay { position: absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; background: rgba(10,10,10,0.5); box-shadow: inset 0 0 50px rgba(0,0,0,0.8); }

.info-block { display: flex; flex-direction: column; gap: 4rem; }
.mono-title { display: block; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 2rem; border-bottom: 1px solid var(--line-color); padding-bottom: 1rem; }
.hour-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.9rem; margin-bottom: 1rem; transition: color 0.3s, text-shadow 0.3s, transform 0.3s; }
.hour-row:hover { color: var(--accent-gold); text-shadow: 0 0 10px rgba(203,162,90,0.3); transform: translateX(5px); }
.hour-row.closed { color: var(--text-muted); text-shadow: none; pointer-events: none; }

.contact-data { margin-bottom: 2rem; }
.mono-link { font-family: var(--font-heading); font-size: 2.5rem; letter-spacing: 1px; transition: color 0.3s, text-shadow 0.3s; }
.mono-link:hover { color: var(--accent-gold); text-shadow: 0 0 20px rgba(203,162,90,0.4); }
.massive-cta { margin-top: auto; padding-top: 4rem; border-top: 1px solid var(--line-color); text-align: right; }
.massive-cta h2 { font-family: var(--font-heading); font-size: 4rem; line-height: 1; margin-bottom: 2rem; text-shadow: var(--shadow-soft); }
.huge-btn { padding: 1.25rem 2.5rem; font-size: 1.25rem; font-weight: bold; }

.footer-bottom-line {
    border-top: 1px solid var(--line-color); padding: 2rem var(--gutter); display: flex; justify-content: space-between;
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; background: var(--bg-base);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .ambient-glows { display: none; } /* Better performance on mobile */
    .hero-split { grid-template-columns: 1fr; }
    .hero-visual { border-left: none; border-top: 1px solid var(--line-color); min-height: 50vh; }
    .nav-inner { padding: 1.5rem var(--gutter); }
    .nav-links { display: none; }
    .departure-board .board-interactive { grid-template-columns: 1fr; }
    .board-visual-target { display: none; }
    .phil-container { grid-template-columns: 1fr; gap: 4rem; }
    .phil-details { border-left: none; padding: 0 var(--gutter); }
    .offset-block { margin-left: 0; margin-top: 2rem; }
    .roster-editorial-card { grid-template-columns: 1fr; }
    .roster-huge-name { font-size: 12vw; border-bottom: 1px solid var(--line-color); padding: 1rem var(--gutter); }
    .roster-editorial-card:hover .roster-huge-name { transform: translateX(10px); }
    .roster-card-content { border-left: none; }
    .terminal-grid { grid-template-columns: 1fr; }
    .map-block { border-right: none; border-bottom: 1px solid var(--line-color); }
    .board-row { grid-template-columns: auto 1fr auto; gap: 1rem; }
    .b-col-desc, .b-col-price { display: none; }
}
