@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body { font-family: 'DM Sans', sans-serif; font-weight: 300; line-height: 1.7; color: #f0f0f0; background: #0a0a0a; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.font-playfair { font-family: 'Playfair Display', serif; }
.font-dm { font-family: 'DM Sans', sans-serif; }
.font-mono { font-family: 'IBM Plex Mono', monospace; }

/* Custom Cursor */
.custom-cursor { width: 12px; height: 12px; border: 1px solid #f0f0f0; border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; mix-blend-mode: difference; transition: width 0.25s ease, height 0.25s ease; transform: translate(-50%, -50%); }
.custom-cursor.hover { width: 40px; height: 40px; }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; height: 64px; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; transition: background-color 0.4s ease, backdrop-filter 0.4s ease; }
.nav.scrolled { background-color: rgba(10,10,10,0.85); backdrop-filter: blur(12px); }
.nav-brand { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: #f0f0f0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a, .nav-links button { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em; color: #f0f0f0; background: none; border: none; position: relative; }
.nav-links a::after, .nav-links button::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%) scaleX(0); width: 100%; height: 1px; background: currentColor; transition: transform 0.3s ease; transform-origin: center; }
.nav-links a:hover::after, .nav-links button:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-cta { background: #f0f0f0 !important; color: #0a0a0a !important; border-radius: 100px; padding: 8px 20px !important; font-size: 0.6875rem !important; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500 !important; transition: background-color 0.3s ease; }
.nav-cta:hover { background: #c4a55a !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 20px; height: 1px; background: #f0f0f0; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-6px); }
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: #0a0a0a; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a, .mobile-menu button { font-family: 'DM Sans', sans-serif; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.12em; color: #f0f0f0; background: none; border: none; }

/* Hero */
.hero { position: relative; width: 100vw; height: 100vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-content { position: absolute; bottom: 0; left: 0; padding: 0 24px 80px; z-index: 3; max-width: 600px; }
.hero-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.15em; color: #8a8a8a; text-transform: uppercase; display: block; margin-bottom: 16px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 400; color: #f0f0f0; line-height: 0.95; letter-spacing: -0.03em; }
.hero-subtitle { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 1.125rem; color: #8a8a8a; line-height: 1.6; margin-top: 20px; max-width: 420px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }
.btn-primary { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; background: #f0f0f0; color: #0a0a0a; border-radius: 100px; padding: 12px 28px; border: none; transition: background-color 0.3s ease; display: inline-block; }
.btn-primary:hover { background: #c4a55a; }
.btn-secondary { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: #f0f0f0; background: none; border: none; position: relative; }
.btn-secondary::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%) scaleX(0); width: 100%; height: 1px; background: currentColor; transition: transform 0.3s ease; transform-origin: center; }
.btn-secondary:hover::after { transform: translateX(-50%) scaleX(1); }
.btn-secondary:hover { color: #c4a55a; }
.btn-outline { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; background: transparent; color: #f0f0f0; border-radius: 100px; padding: 10px 24px; border: 1px solid rgba(240,240,240,0.3); transition: all 0.3s ease; display: inline-block; }
.btn-outline:hover { background: #f0f0f0; color: #0a0a0a; }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; animation: bounce-chevron 1.5s ease-in-out infinite; }
@keyframes bounce-chevron { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Sections */
.section-light { background: #e8e6e1; color: #0a0a0a; }
.section-dark { background: #0a0a0a; color: #f0f0f0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
.section-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 20px; }
.section-light .section-label { color: #5a5a5a; }
.section-dark .section-label { color: #8a8a8a; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.section-body { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 1rem; line-height: 1.7; margin-top: 20px; }
.section-light .section-body { color: #5a5a5a; }
.section-dark .section-body { color: #8a8a8a; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-120 { padding-top: 120px; padding-bottom: 120px; }
.py-160 { padding-top: 160px; padding-bottom: 160px; }
.grid-2 { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 55% 45%; gap: 64px; } .grid-2-reversed { grid-template-columns: 45% 55%; } }
@media (max-width: 1023px) { .grid-2-reversed { display: flex; flex-direction: column-reverse; } }
.grid-3 { display: grid; gap: 16px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: 16px; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Specs */
.spec-value { font-family: 'Playfair Display', serif; font-size: 2rem; display: block; }
.spec-label { font-family: 'IBM Plex Mono', monospace; font-size: 0.625rem; text-transform: uppercase; }
.section-light .spec-value { color: #0a0a0a; }
.section-light .spec-label { color: #5a5a5a; }
.section-dark .spec-value { color: #f0f0f0; }
.section-dark .spec-label { color: #8a8a8a; }

/* Feature List */
.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-icon { width: 16px; height: 16px; border-radius: 50%; border: 1px solid; flex-shrink: 0; }
.section-light .feature-icon { border-color: #0a0a0a; }
.section-dark .feature-icon { border-color: #f0f0f0; }
.feature-text { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 400; }

/* Gallery */
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; aspect-ratio: 3/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,10,10,0.4); opacity: 0; transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 400; color: #f0f0f0; }

/* Cards */
.card-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: rgba(240,240,240,0.04); border-radius: 8px; padding: 32px; border: 1px solid rgba(240,240,240,0.06); transition: border-color 0.3s ease; }
.card:hover { border-color: rgba(196,165,90,0.3); }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; margin-bottom: 8px; color: #f0f0f0; }
.card p { font-size: 0.875rem; color: #8a8a8a; line-height: 1.7; }
.card-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #c4a55a; margin-top: 12px; }

/* Pills */
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.pill { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 400; border-radius: 100px; padding: 8px 16px; border: 1px solid rgba(10,10,10,0.15); }
.section-dark .pill { border-color: rgba(240,240,240,0.15); color: #f0f0f0; }

/* Performance Image */
.perf-image { position: relative; width: 100%; height: 70vh; }
.perf-image img { width: 100%; height: 100%; object-fit: cover; }
.perf-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.2) 50%, transparent 100%); }
.perf-text { position: absolute; bottom: 0; left: 0; padding: 0 24px 60px; }
@media (min-width: 768px) { .perf-text { padding: 0 40px 60px; } }

/* Footer */
.footer { border-top: 1px solid rgba(240,240,240,0.08); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: #f0f0f0; margin-bottom: 12px; }
.footer-col a, .footer-col button { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; font-weight: 300; color: #8a8a8a; background: none; border: none; display: block; margin-bottom: 8px; transition: color 0.3s ease; cursor: pointer; }
.footer-col a:hover, .footer-col button:hover { color: #f0f0f0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(240,240,240,0.06); }
.footer-copyright { font-family: 'IBM Plex Mono', monospace; font-size: 0.625rem; color: #5a5a5a; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: #8a8a8a; transition: color 0.3s ease; }
.footer-social a:hover { color: #f0f0f0; }

/* Forms */
.form-group { margin-bottom: 24px; }
.form-label { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 8px; }
.section-light .form-label { color: #0a0a0a; }
.section-dark .form-label { color: #f0f0f0; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 300; border: 1px solid rgba(10,10,10,0.15); border-radius: 4px; background: transparent; color: inherit; transition: border-color 0.3s ease; }
.section-dark .form-input, .section-dark .form-select, .section-dark .form-textarea { border-color: rgba(240,240,240,0.15); color: #f0f0f0; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: #c4a55a; }
.form-input::placeholder, .form-textarea::placeholder { color: #8a8a8a; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 24px; }
@media (min-width: 768px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-status { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; padding: 12px 16px; border-radius: 4px; margin-top: 16px; display: none; }
.form-status.success { display: block; background: rgba(196,165,90,0.15); color: #c4a55a; }
.form-status.error { display: block; background: rgba(220,50,50,0.15); color: #e05050; }
.form-note { font-size: 0.75rem; color: #8a8a8a; margin-top: 16px; line-height: 1.6; }
.form-note a { color: #c4a55a; text-decoration: underline; }

/* Configurator */
.config-step { display: none; }
.config-step.active { display: block; }
.config-nav { display: flex; gap: 12px; margin-top: 32px; }
.config-nav button { flex: 1; }
.color-options { display: flex; gap: 16px; flex-wrap: wrap; }
.color-option { width: 48px; height: 48px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease; position: relative; }
.color-option:hover, .color-option.selected { border-color: #c4a55a; transform: scale(1.1); }
.color-option.selected::after { content: '\2713'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: bold; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.config-preview { width: 100%; border-radius: 8px; overflow: hidden; margin-top: 24px; position: relative; }
.config-preview img { width: 100%; display: block; transition: opacity 0.3s ease; }
.config-summary { background: rgba(240,240,240,0.04); border-radius: 8px; padding: 24px; margin-top: 24px; }
.config-summary-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(240,240,240,0.06); }
.config-summary-row:last-child { border-bottom: none; font-weight: 500; color: #c4a55a; }
.config-id { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; color: #8a8a8a; margin-top: 12px; }
.step-indicator { display: flex; gap: 8px; margin-bottom: 32px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(240,240,240,0.15); }
.step-dot.active { background: #c4a55a; }
.step-dot.completed { background: rgba(196,165,90,0.4); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000; background: #141414; border-top: 1px solid rgba(240,240,240,0.08); padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; font-weight: 300; color: #8a8a8a; max-width: 600px; }
.cookie-banner a { color: #f0f0f0; text-decoration: underline; }

/* Cookie Preferences */
.cookie-prefs { position: fixed; inset: 0; z-index: 10001; background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; }
.cookie-prefs.show { display: flex; }
.cookie-prefs-inner { background: #141414; border-radius: 8px; padding: 32px; max-width: 500px; width: 90%; }
.cookie-prefs-inner h3 { font-family: 'DM Sans', sans-serif; font-size: 1.125rem; font-weight: 500; margin-bottom: 16px; color: #f0f0f0; }
.cookie-category { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(240,240,240,0.06); }
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category label { font-size: 0.875rem; color: #f0f0f0; }
.cookie-category .toggle { width: 44px; height: 24px; background: rgba(240,240,240,0.15); border-radius: 100px; cursor: pointer; position: relative; transition: background 0.3s; }
.cookie-category .toggle.active { background: #c4a55a; }
.cookie-category .toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.3s; }
.cookie-category .toggle.active::after { transform: translateX(20px); }

/* Responsive */
@media (max-width: 767px) { .nav-links { display: none; } .hamburger { display: flex; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 16px; } }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Page Header */
.page-header { padding-top: 120px; padding-bottom: 60px; text-align: center; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; color: #0a0a0a; line-height: 1.1; }
.page-header p { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 300; color: #5a5a5a; margin-top: 12px; }
.page-header.dark h1 { color: #f0f0f0; }
.page-header.dark p { color: #8a8a8a; }

/* Policy Pages */
.policy-content { max-width: 800px; }
.policy-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; margin-top: 48px; margin-bottom: 16px; color: #0a0a0a; }
.policy-content h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; margin-top: 32px; margin-bottom: 12px; color: #0a0a0a; text-transform: uppercase; letter-spacing: 0.05em; }
.policy-content p { font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; font-weight: 300; line-height: 1.8; color: #5a5a5a; margin-bottom: 16px; }
.policy-content ul { font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; font-weight: 300; line-height: 1.8; color: #5a5a5a; list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 8px; }
.policy-content a { color: #0a0a0a; text-decoration: underline; }
.policy-content table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.875rem; }
.policy-content th { text-align: left; padding: 12px 8px; font-weight: 500; border-bottom: 2px solid #0a0a0a; }
.policy-content td { padding: 12px 8px; border-bottom: 1px solid rgba(10,10,10,0.1); }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(240,240,240,0.08); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; background: none; border: none; text-align: left; }
.faq-question h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 400; color: #f0f0f0; }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { font-size: 0.875rem; color: #8a8a8a; padding-bottom: 24px; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* Hero entrance initial states */
.hero-label, .hero-subtitle, .hero-cta { opacity: 0; transform: translateY(20px); }

/* Option cards (model/interior/wheels/packages) */
.option-card { display: block; background: rgba(240,240,240,0.04); border: 1px solid rgba(240,240,240,0.08); border-radius: 8px; padding: 20px 24px; cursor: pointer; transition: border-color 0.3s ease, background 0.3s ease; margin-bottom: 12px; }
.option-card:hover { border-color: rgba(196,165,90,0.4); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card:has(input:checked) { border-color: #c4a55a; background: rgba(196,165,90,0.08); }
.option-card .option-name { font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; font-weight: 500; color: #f0f0f0; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.option-card .option-price { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; color: #c4a55a; white-space: nowrap; }
.option-card .option-desc { font-size: 0.8125rem; color: #8a8a8a; margin-top: 6px; line-height: 1.6; }
.option-grid { display: grid; gap: 12px; }
@media (min-width: 768px) { .option-grid-2 { grid-template-columns: 1fr 1fr; } }

.form-select option { color: #0a0a0a; background: #fff; }

/* Inner page hero band */
.page-band { position: relative; height: 50vh; min-height: 360px; overflow: hidden; }
.page-band img { width: 100%; height: 100%; object-fit: cover; }
.page-band .page-band-text { position: absolute; bottom: 0; left: 0; padding: 0 24px 48px; z-index: 2; }
.page-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.75), transparent 60%); }
.page-band-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 400; color: #f0f0f0; line-height: 1; }

/* Timeline */
.timeline { border-left: 1px solid rgba(240,240,240,0.12); padding-left: 32px; }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: #c4a55a; }
.timeline-item h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; color: #f0f0f0; margin-bottom: 6px; }
.timeline-item .timeline-date { font-family: 'IBM Plex Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8a8a; display: block; margin-bottom: 8px; }
.timeline-item p { font-size: 0.875rem; color: #8a8a8a; line-height: 1.7; }

/* Locations */
.location-card { background: rgba(240,240,240,0.04); border: 1px solid rgba(240,240,240,0.06); border-radius: 8px; padding: 28px; }
.location-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #f0f0f0; margin-bottom: 8px; }
.location-card p { font-size: 0.875rem; color: #8a8a8a; line-height: 1.7; }
.location-card .location-meta { font-family: 'IBM Plex Mono', monospace; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: #c4a55a; display: block; margin-bottom: 10px; }

/* News cards */
.news-card { display: block; background: rgba(240,240,240,0.04); border: 1px solid rgba(240,240,240,0.06); border-radius: 8px; overflow: hidden; transition: border-color 0.3s ease; }
.news-card:hover { border-color: rgba(196,165,90,0.3); }
.news-card .news-body { padding: 24px; }
.news-card .news-date { font-family: 'IBM Plex Mono', monospace; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: #c4a55a; }
.news-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #f0f0f0; margin: 10px 0 8px; }
.news-card p { font-size: 0.875rem; color: #8a8a8a; line-height: 1.7; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 14px 0; border-bottom: 1px solid rgba(240,240,240,0.08); font-size: 0.875rem; }
.spec-table td:first-child { color: #8a8a8a; font-family: 'IBM Plex Mono', monospace; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; }
.spec-table td:last-child { color: #f0f0f0; text-align: right; }

.img-rounded { border-radius: 8px; width: 100%; display: block; }
.mt-40 { margin-top: 40px; } .mt-24 { margin-top: 24px; }
.text-center { text-align: center; }
.maxw-720 { max-width: 720px; }
.maxw-560 { max-width: 560px; }
