/* ─── NEXERX SITE STYLES (shared across all pages, cached once) ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #0B1F3A;
  --dark-2: #F4F6F9;
  --dark-3: #EBEEf4;
  --bronze: #1A4A8A;
  --bronze-light: #2560AB;
  --accent: #7BB8E8;
  --bronze-dim: rgba(26,74,138,0.08);
  --graphite: #3A4A5A;
  --graphite-light: #5A6A7A;
  --cream: #F8F9FC;
  --cream-dim: rgba(248,249,252,0.9);
  --white: #FFFFFF;
  --gray: #6B7A8D;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* SKIP LINK (accessibility) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--white); color: var(--dark);
  padding: 14px 22px; font-size: 0.8rem; font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* VISUALLY HIDDEN (accessible form labels) */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 76px;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(11,31,58,0.1); }
nav.scrolled .nav-logo { color: var(--dark); }
nav.scrolled .nav-links a { color: rgba(11,31,58,0.6); }
nav.scrolled .nav-links a:hover { color: var(--bronze); }
.nav-logo { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.15em; color: var(--white); text-decoration: none; }
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--bronze); padding: 11px 28px; text-decoration: none; transition: background 0.2s; border-radius: var(--radius-pill); }
.nav-cta:hover { background: var(--bronze-light); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; background-color: #10131a; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-bg-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, #0B1F3A 0%, #14305A 40%, #0D2244 70%, #081830 100%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,12,10,0.2) 0%, rgba(14,12,10,0.0) 30%, rgba(14,12,10,0.5) 65%, rgba(14,12,10,0.97) 100%); }
.hero-overlay::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60%; height: 50%; background: radial-gradient(ellipse at bottom left, rgba(200,150,90,0.07) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 2; padding: 0 72px 88px; }
.hero-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(4rem, 9vw, 8.5rem); font-weight: 300; line-height: 0.9; letter-spacing: -0.02em; margin-bottom: 28px; color: var(--white); }
.hero-title .x { color: var(--accent); font-style: italic; }
.hero-model { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 48px; }
.hero-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 4px; }
.hero-price-note { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-bronze { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark); background: var(--white); padding: 16px 36px; text-decoration: none; transition: background 0.2s, color 0.2s; border-radius: var(--radius-pill); }
.btn-bronze:hover { background: var(--accent); color: var(--white); }
.btn-ghost { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark); background: transparent; border: 1px solid rgba(11,31,58,0.25); padding: 16px 36px; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; border-radius: var(--radius-pill); }
.btn-ghost:hover { border-color: var(--bronze); color: var(--white); background: var(--bronze); }
.hero .btn-ghost, .cta-section .btn-ghost { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.hero .btn-ghost:hover, .cta-section .btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.1); }
.scroll-hint { position: absolute; bottom: 36px; right: 60px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.scroll-hint span { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.scroll-hint-line { width: 1px; height: 56px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: linePulse 2s ease-in-out infinite; }
@keyframes linePulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* STATS / FACTS STRIP */
.stats-strip, .facts-strip { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-inner, .facts-inner { max-width: 1300px; margin: 0 auto; display: flex; }
.stat, .fact { flex: 1; padding: 32px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat:last-child, .fact:last-child { border-right: none; }
.stat-val, .fact-val { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 300; color: var(--white); letter-spacing: -0.01em; margin-bottom: 4px; }
.fact-val { font-size: 1.5rem; }
.stat-key, .fact-key { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* SHARED TEXT */
.label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze); margin-bottom: 18px; }
.heading { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 300; line-height: 1.1; color: var(--dark); margin-bottom: 28px; }
.body-text { font-size: 0.88rem; line-height: 1.9; color: rgba(11,31,58,0.6); max-width: 620px; }

/* QUOTE */
.quote-band { background: var(--dark); padding: 80px 72px; text-align: center; }
.quote-band blockquote { font-family: var(--font-serif); font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 300; font-style: italic; line-height: 1.35; color: var(--white); max-width: 820px; margin: 0 auto 20px; }
.quote-band cite { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-style: normal; }

/* FLEET */
.fleet-section { background: var(--white); padding: 100px 72px; }
.fleet-section .label { color: var(--bronze); }
.fleet-section .heading { color: var(--dark); }
.fleet-header { max-width: 1300px; margin: 0 auto 56px; }
.fleet-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.boat-card { display: block; text-decoration: none; color: inherit; background: var(--dark-2); transition: box-shadow 0.25s ease, transform 0.25s ease; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 18px rgba(11,31,58,0.06); }
.boat-card:hover { box-shadow: 0 18px 44px rgba(11,31,58,0.14); transform: translateY(-2px); }
.boat-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--dark-3); }
.boat-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.boat-card:hover .boat-card-img img { transform: scale(1.05); }
.boat-card-body { padding: 28px 30px 32px; }
.boat-card-eyebrow { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--bronze); margin-bottom: 8px; }
.boat-card-name { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 300; color: var(--dark); margin-bottom: 10px; }
.boat-card-price { font-size: 0.82rem; color: rgba(11,31,58,0.6); margin-bottom: 18px; }
.boat-card-link { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bronze); }

.boat-card-future { background: var(--dark); border-radius: var(--radius-lg); }
.boat-card-future .boat-card-img { position: relative; }
.boat-card-future .boat-card-img::after { content: 'Arriving 2027'; position: absolute; top: 14px; left: 14px; background: rgba(11,31,58,0.75); backdrop-filter: blur(4px); color: var(--white); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 12px; border-radius: var(--radius-pill); }
.boat-card-future .boat-card-eyebrow { color: var(--accent); }
.boat-card-future .boat-card-name { color: var(--white); }
.boat-card-future-note { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.boat-card-future .boat-card-link { color: var(--accent); }

/* ORIGIN */
.origin-section { background: var(--white); padding: 120px 72px; color: var(--dark); }
.origin-section .label { color: var(--bronze); }
.origin-section .heading { color: var(--dark); }
.origin-section .body-text { color: rgba(11,31,58,0.6); }
.origin-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.origin-pillars { display: flex; flex-direction: column; gap: 10px; margin-top: 48px; }
.origin-pillar { background: var(--dark-2); border-left: 3px solid var(--bronze); padding: 24px 28px; display: flex; align-items: flex-start; gap: 20px; border-radius: var(--radius-md); }
.origin-num { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--bronze); flex-shrink: 0; min-width: 32px; }
.origin-pillar-text h4 { font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; letter-spacing: 0.05em; }
.origin-pillar-text p { font-size: 0.73rem; line-height: 1.6; color: var(--gray); }
.origin-visual { position: relative; height: 480px; background: var(--dark); overflow: hidden; border-radius: var(--radius-lg); }
.origin-visual img { width:100%; height:100%; object-fit: cover; opacity: 0.7; }
.origin-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,31,58,0.65) 0%, transparent 60%, rgba(11,31,58,0.45) 100%); }
.origin-tag { position: absolute; bottom: 32px; left: 32px; }
.origin-tag-city { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--white); letter-spacing: 0.05em; }
.origin-tag-country { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* EQUIPMENT */
.equip-section { background: var(--white); padding: 110px 72px; }
.equip-inner { max-width: 1300px; margin: 0 auto; }
.equip-head { max-width: 700px; margin-bottom: 56px; }
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.equip-col { display: flex; flex-direction: column; gap: 14px; }
.equip-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.82rem; line-height: 1.5; color: rgba(11,31,58,0.7); }
.equip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); flex-shrink: 0; margin-top: 7px; }

/* GALLERY */
.gallery-section { background: var(--white); padding: 100px 72px; }
.gallery-inner { max-width: 1300px; margin: 0 auto; }
.gallery-head { max-width: 700px; margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-item { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--dark-3); border-radius: var(--radius-md); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(11,31,58,0.94); display: flex; align-items: center; justify-content: center; padding: 40px; z-index: 400; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,0.45); transform: scale(0.94); transition: transform 0.3s ease; object-fit: contain; }
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close { position: absolute; top: 28px; right: 32px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 1.6rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; z-index: 2; }
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, opacity 0.2s ease; z-index: 2; }
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-nav:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 640px) {
  .lightbox { padding: 20px; }
  .lightbox-close { top: 16px; right: 16px; width: 38px; height: 38px; font-size: 1.4rem; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-counter { bottom: 12px; }
}

/* SPECIFICATIONS */
.specs-section { background: var(--dark-2); padding: 100px 72px; }
.specs-inner { max-width: 1300px; margin: 0 auto; }
.specs-head { max-width: 700px; margin-bottom: 48px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(11,31,58,0.1); background: var(--white); border-radius: var(--radius-md); overflow: hidden; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 28px; border-right: 1px solid rgba(11,31,58,0.08); border-bottom: 1px solid rgba(11,31,58,0.08); }
.spec-row:nth-child(3n) { border-right: none; }
.spec-k { font-size: 0.72rem; color: var(--gray); }
.spec-v { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--dark); }

/* PRICE LIST */
.pricelist-section { background: var(--dark-2); padding: 110px 72px; }
.pricelist-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricelist-frame { margin-top: 48px; background: var(--white); border: 1px solid rgba(11,31,58,0.1); box-shadow: 0 24px 64px rgba(11,31,58,0.12); display: inline-block; max-width: 100%; border-radius: var(--radius-lg); overflow: hidden; }
.pricelist-frame img { display: block; width: 100%; max-width: 640px; height: auto; }
.pricelist-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.download-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); border: 1px solid var(--bronze); padding: 14px 28px; text-decoration: none; transition: background 0.2s, color 0.2s; background: transparent; border-radius: var(--radius-pill); }
.download-btn:hover { background: var(--bronze); color: var(--white); }
.download-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.pricelist-note { margin-top: 20px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.pricelist-note a { color: var(--bronze); }

/* CTA / CONTACT */
.cta-section { background: var(--dark); padding: 120px 72px; }
.cta-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cta-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 40px; }
.cta-list-item { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.cta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink:0; }
.cta-section .label { color: var(--accent); }
.cta-section .heading { color: var(--white); }
.cta-section .body-text { color: rgba(255,255,255,0.5); }
.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 48px; border-radius: var(--radius-lg); }
.form-heading { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 300; margin-bottom: 6px; color: var(--white); }
.form-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 32px; }
.fg { margin-bottom: 12px; }
.fg input, .fg select, .fg textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 13px 16px; font-family: var(--font-sans); font-size: 0.82rem; outline: none; transition: border-color 0.2s; appearance: none; border-radius: var(--radius-sm); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(255,255,255,0.3); }
.fg select option { background: var(--dark); }
.fg textarea { resize: vertical; min-height: 96px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-btn { width: 100%; padding: 16px; background: var(--white); color: var(--dark); border: none; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s; margin-top: 8px; border-radius: var(--radius-pill); }
.form-btn:hover { background: var(--bronze-light); color: var(--white); }
.form-btn:disabled { cursor: default; opacity: 0.85; }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 72px 36px; }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.f-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.15em; color: var(--white); margin-bottom: 14px; }
.f-logo em { color: var(--accent); font-style: normal; }
.f-desc { font-size: 0.77rem; line-height: 1.75; color: var(--gray); margin-bottom: 20px; }
.f-origin { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.f-col-title { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-links a { font-size: 0.79rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: var(--accent); }
.footer-bottom { max-width: 1300px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.f-legal { font-size: 0.62rem; color: rgba(255,255,255,0.18); }
.f-cert { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); opacity: 0.6; }

/* HAMBURGER */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform 0.3s, opacity 0.3s, background 0.3s; transform-origin: center; }
nav.scrolled .nav-hamburger span { background: var(--dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 150; flex-direction: column; align-items: center; justify-content: center; gap: 36px; opacity: 0; transition: opacity 0.3s ease; }
.mobile-nav.open { opacity: 1; }
.mobile-nav a { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--white); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.mobile-nav a:hover { color: rgba(255,255,255,0.5); }
.mobile-nav .mobile-cta { margin-top: 16px; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark); background: var(--white); padding: 16px 40px; border-radius: var(--radius-pill); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .scroll-hint-line { animation: none; }
}

/* TABLET */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 40px 64px; }
  .origin-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 40px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 40px; }
  .fleet-section { padding: 80px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .origin-visual { height: 360px; }
  .quote-band { padding: 72px 40px; }
  .gallery-section { padding: 80px 40px; }
  .specs-section { padding: 80px 40px; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .spec-row:nth-child(3n) { border-right: 1px solid rgba(11,31,58,0.08); }
  .spec-row:nth-child(2n) { border-right: none; }
  .equip-section { padding: 80px 40px; }
  .equip-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricelist-section { padding: 80px 40px; }
}

/* MOBILE */
@media (max-width: 640px) {
  nav { padding: 0 20px; height: 64px; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px 48px; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; margin-bottom: 12px; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.5rem); margin-bottom: 16px; }
  .hero-model { font-size: 0.65rem; letter-spacing: 0.2em; margin-bottom: 24px; }
  .hero-price { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-bronze, .btn-ghost { text-align: center; padding: 15px 24px; }
  .scroll-hint { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 33.333%; min-width: 0; padding: 20px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }
  .stat:nth-child(3n) { border-right: none; }
  .facts-inner { flex-wrap: wrap; }
  .fact { flex: 0 0 50%; padding: 20px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .fact:nth-child(2n) { border-right: none; }
  .stat-val { font-size: 1.4rem; }
  .stat-key { font-size: 0.5rem; letter-spacing: 0.15em; }
  .quote-band { padding: 56px 20px; }
  .quote-band blockquote br { display: none; }
  .fleet-section { padding: 60px 20px; }
  .fleet-header { margin-bottom: 32px; }
  .fleet-grid { grid-template-columns: 1fr; gap: 24px; }
  .origin-section { padding: 60px 20px; }
  .origin-inner { padding: 0; gap: 36px; }
  .origin-visual { height: 280px; }
  .origin-pillars { margin-top: 28px; }
  .origin-pillar { padding: 18px 20px; gap: 14px; }
  .gallery-section { padding: 60px 20px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .specs-section { padding: 60px 20px; }
  .specs-grid { grid-template-columns: 1fr; }
  .spec-row { border-right: none !important; padding: 14px 20px; }
  .equip-section { padding: 60px 20px; }
  .equip-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricelist-section { padding: 60px 20px; }
  .cta-section { padding: 60px 20px; }
  .cta-inner { padding: 0; gap: 48px; }
  .contact-form { padding: 28px 20px; }
  .fg-row { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .heading { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .body-text { font-size: 0.84rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.8rem; }
  .stat { flex: 0 0 50%; }
  .stat:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat:nth-child(2n) { border-right: none; }
}
