:root {
  --bg: #061018;
  --bg-2: #0a1721;
  --ink: #f6f0e6;
  --muted: rgba(246, 240, 230, .68);
  --line: rgba(246, 240, 230, .16);
  --paper: #f3eee5;
  --paper-2: #e8ddcf;
  --dark-text: #0b1720;
  --dark-muted: rgba(11, 23, 32, .66);
  --gold: #d9b06d;
  --gold-2: #f4d497;
  --navy: #071a29;
  --radius: 28px;
  --max: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: rgba(217,176,109,.35); color: var(--ink); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .065;
  mix-blend-mode: soft-light;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.32) 0 1px, transparent 1px), radial-gradient(circle at 70% 60%, rgba(255,255,255,.2) 0 1px, transparent 1px);
  background-size: 46px 46px, 31px 31px;
}

.cursor-glow {
  position: fixed;
  z-index: 81;
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  background: radial-gradient(circle, rgba(217,176,109,.14), transparent 63%);
  transition: opacity .35s ease;
  will-change: transform;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 20px;
  background: #061018;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
body.is-loaded .page-loader { opacity: 0; visibility: hidden; }
.loader-mark {
  letter-spacing: .44em;
  font-size: clamp(12px, 2vw, 18px);
  color: var(--gold-2);
  transform: translateX(.22em);
}
.loader-line {
  width: min(280px, 54vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}
.loader-line span {
  display: block;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: loaderMove 1.5s infinite var(--ease);
}
@keyframes loaderMove { from { transform: translateX(-100%); } to { transform: translateX(250%); } }

.container {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
}
.section-dark { background: var(--bg); color: var(--ink); }
.section-light { background: var(--paper); color: var(--dark-text); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(5, 13, 20, .78), rgba(5, 13, 20, .16), transparent);
  transition: background .45s ease, height .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}
.site-header.is-scrolled {
  height: 66px;
  background: rgba(5, 13, 20, .74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1;
}
.brand-kicker { color: var(--gold-2); font-size: 11px; letter-spacing: .4em; }
.nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); color: rgba(255,255,255,.74); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.nav a { transition: color .25s ease; }
.nav a:hover { color: var(--gold-2); }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(244,212,151,.38);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255,255,255,.04);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero-bg, .hero-bg img, .deck-bg, .deck-bg img, .cta-bg, .cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img, .deck-bg img, .cta-bg img { object-fit: cover; transform: scale(1.02); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(217,176,109,.12), transparent 28%),
    linear-gradient(90deg, rgba(5,13,20,.86), rgba(5,13,20,.38) 46%, rgba(5,13,20,.16)),
    linear-gradient(0deg, rgba(5,13,20,.9), rgba(5,13,20,.08) 46%, rgba(5,13,20,.55));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100vw - 48px));
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow.dark { color: #9b7138; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}
h1 { margin-bottom: 24px; font-size: clamp(54px, 10vw, 136px); line-height: .83; max-width: 980px; }
h2 { margin-bottom: 22px; font-size: clamp(38px, 6vw, 82px); line-height: .92; }
h3 { margin-bottom: 12px; font-size: clamp(27px, 3.4vw, 42px); line-height: 1; }
p { color: var(--muted); font-size: clamp(16px, 1.35vw, 19px); line-height: 1.65; }
.section-light p { color: var(--dark-muted); }
.hero-copy { max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { color: #071018; background: linear-gradient(135deg, #fff5df, var(--gold-2)); }
.btn-ghost { border: 1px solid rgba(255,255,255,.22); color: var(--ink); background: rgba(255,255,255,.04); }
.scroll-cue {
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-cue i {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, var(--gold-2), transparent);
  animation: cue 1.8s infinite var(--ease);
}
@keyframes cue { 0%, 100% { transform: scaleY(.45); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

.cinema-section {
  position: relative;
  height: 540vh;
  min-height: 2600px;
}
.cinema-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #050b11;
  isolation: isolate;
}
.cinema-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050b11;
  transform: translate3d(0,0,0) scale(1.005);
  will-change: transform;
}
.cinema-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2,8,13,.88), rgba(2,8,13,.28) 48%, rgba(2,8,13,.12)),
    radial-gradient(circle at 74% 48%, rgba(217,176,109,.14), transparent 36%);
}
.sea-overlay {
  background:
    linear-gradient(90deg, rgba(2,8,13,.25), rgba(2,8,13,.18) 44%, rgba(2,8,13,.82)),
    radial-gradient(circle at 28% 42%, rgba(217,176,109,.14), transparent 36%);
}
.cinema-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 180px rgba(0,0,0,.74);
  pointer-events: none;
}
.cinema-copy {
  position: absolute;
  z-index: 4;
  left: clamp(22px, 6vw, 92px);
  bottom: clamp(80px, 11vh, 150px);
  width: min(560px, calc(100vw - 44px));
  min-height: 330px;
}
.right-copy { left: auto; right: clamp(22px, 6vw, 92px); text-align: right; }
.cinema-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity .55s var(--ease), transform .65s var(--ease);
  pointer-events: none;
}
.cinema-panel.is-active {
  opacity: 1;
  transform: translate3d(0,0,0);
  pointer-events: auto;
}
.cinema-panel .chapter {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}
.cinema-panel h2 { font-size: clamp(42px, 6.6vw, 94px); max-width: 720px; text-wrap: balance; }
.cinema-panel p:not(.chapter) { max-width: 520px; }
.right-copy .cinema-panel p:not(.chapter) { margin-left: auto; }
.cinema-ui {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 4vw, 56px);
  right: clamp(22px, 4vw, 56px);
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.cinema-progress {
  height: 1px;
  background: rgba(255,255,255,.2);
  overflow: hidden;
}
.cinema-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--gold-2), #fff1c7);
  will-change: transform;
}
.cinema-count {
  min-width: 78px;
  font-family: ui-serif, Georgia, serif;
  color: var(--gold-2);
  font-size: 26px;
}
.cinema-count em { color: rgba(255,255,255,.48); font-size: 13px; font-style: normal; }

.intro-band { padding: clamp(82px, 11vw, 150px) 0; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .9fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: center;
}
.copy-block p { max-width: 620px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.stat-grid div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(11,23,32,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.34);
}
.stat-grid strong {
  display: block;
  margin-bottom: 30px;
  font-family: ui-serif, Georgia, serif;
  font-size: 40px;
  font-weight: 500;
}
.stat-grid span { color: var(--dark-muted); font-size: 14px; line-height: 1.45; }

.image-story { padding: clamp(86px, 11vw, 150px) 0; }
.image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}
.story-image, .feature-image, .fleet-card picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 90px rgba(0,0,0,.26);
}
.story-image img, .feature-image img, .fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-image:hover img, .feature-image:hover img, .fleet-card:hover img { transform: scale(1.04); }
.story-card {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  backdrop-filter: blur(10px);
}
.premium-list { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid rgba(255,255,255,.12); }
.premium-list li {
  padding: 14px 0;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.premium-list li::before { content: "—"; color: var(--gold-2); margin-right: 10px; }

.interior-section { padding: clamp(86px, 11vw, 150px) 0; }
.split-feature {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.feature-copy { max-width: 520px; }
.feature-image { min-height: 460px; }

.deck-section {
  position: relative;
  min-height: 85svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px 0;
}
.deck-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,13,20,.92), rgba(5,13,20,.22) 55%, rgba(5,13,20,.6)), linear-gradient(90deg, rgba(5,13,20,.78), transparent 62%);
}
.deck-content { position: relative; z-index: 2; max-width: 680px; margin-left: max(calc((100vw - var(--max)) / 2), 24px); }
.deck-content h2 { max-width: 720px; }
.deck-content p { max-width: 560px; }

.fleet { padding: clamp(86px, 11vw, 160px) 0; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.fleet-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  border: 1px solid rgba(11,23,32,.1);
  border-radius: 28px;
  overflow: hidden;
  background: #fffaf1;
  box-shadow: 0 18px 60px rgba(11,23,32,.1);
}
.fleet-card picture { border-radius: 0; box-shadow: none; }
.fleet-card div { padding: 24px; }
.fleet-card span {
  display: inline-block;
  margin-bottom: 13px;
  color: #8e6832;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.fleet-card h3 { font-size: 32px; letter-spacing: -.035em; }
.fleet-card p { font-size: 15px; line-height: 1.55; }

.final-cta {
  position: relative;
  min-height: 96svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(217,176,109,.17), transparent 36%), linear-gradient(0deg, rgba(5,13,20,.96), rgba(5,13,20,.25) 45%, rgba(5,13,20,.7));
}
.final-content { position: relative; z-index: 2; max-width: 820px; padding: 120px 0; }
.final-content p { max-width: 640px; margin-left: auto; margin-right: auto; }
.final-content .btn { margin-top: 22px; }
.site-footer { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-inner strong { color: var(--gold-2); letter-spacing: .22em; font-size: 12px; }
.footer-inner p { margin: 6px 0 0; font-size: 13px; color: rgba(255,255,255,.54); }

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0);
}

@media (pointer: fine) {
  body:hover .cursor-glow { opacity: 1; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .site-header { height: 66px; }
  .cinema-section { height: 430vh; min-height: 2100px; }
  .cinema-sticky { min-height: 100svh; }
  .cinema-copy, .right-copy {
    left: 22px;
    right: 22px;
    bottom: 86px;
    text-align: left;
    min-height: 300px;
  }
  .right-copy .cinema-panel p:not(.chapter) { margin-left: 0; }
  .cinema-overlay, .sea-overlay {
    background: linear-gradient(0deg, rgba(2,8,13,.9), rgba(2,8,13,.12) 55%, rgba(2,8,13,.38));
  }
  .two-col, .image-story-grid, .split-feature, .fleet-grid { grid-template-columns: 1fr; }
  .split-feature .feature-copy { order: 1; }
  .split-feature .feature-image { order: 2; }
  .feature-image { min-height: auto; }
}

@media (max-width: 640px) {
  :root { --radius: 20px; }
  .container { width: min(100% - 32px, var(--max)); }
  .brand { font-size: 13px; letter-spacing: .24em; }
  .nav-cta { padding: 10px 13px; font-size: 10px; }
  .hero { padding: 100px 0 76px; align-items: end; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,13,20,.92), rgba(5,13,20,.2) 58%, rgba(5,13,20,.52)); }
  h1 { font-size: clamp(48px, 16vw, 72px); }
  h2 { font-size: clamp(36px, 12vw, 56px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .scroll-cue { display: none; }
  .cinema-copy { min-height: 330px; }
  .cinema-panel h2 { font-size: clamp(38px, 13vw, 58px); }
  .cinema-ui { left: 18px; right: 18px; bottom: 24px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-grid div { min-height: 126px; }
  .fleet-card { grid-template-rows: 210px 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cinema-video, .hero-bg img, .deck-bg img, .cta-bg img { transform: none !important; }
}


/* ===== MARITIME SONAR INTRO + SOUND POLISH ===== */
body.is-intro-open {
  overflow: hidden;
}

.intro-experience {
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #02080d;
  color: var(--ink);
  transition: opacity .9s var(--ease), visibility .9s var(--ease), transform .9s var(--ease);
}

body.has-entered .intro-experience {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
}

.intro-bg,
.intro-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-bg img {
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(9px) saturate(.72) brightness(.46);
  opacity: .36;
}

.intro-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(217,176,109,.12), transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(118,183,235,.13), transparent 38%),
    linear-gradient(90deg, rgba(2,8,13,.96), rgba(2,8,13,.48), rgba(2,8,13,.96)),
    linear-gradient(180deg, rgba(2,8,13,.78), rgba(2,8,13,.42) 42%, rgba(2,8,13,.94));
}

.maritime-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(rgba(136,198,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136,198,255,.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 50%, black 0 28%, transparent 72%);
}

.sonar-compass {
  position: absolute;
  width: min(760px, 78vw);
  height: min(760px, 78vw);
  border-radius: 50%;
  border: 1px solid rgba(247,240,231,.055);
  filter: drop-shadow(0 0 44px rgba(118,183,235,.08));
}

.sonar-compass::before,
.sonar-compass::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(247,240,231,.09), transparent);
}

.sonar-compass::after {
  transform: rotate(90deg);
}

.sonar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(136,198,255,.12);
}

.sonar-ring-a { inset: 12%; }
.sonar-ring-b { inset: 29%; border-color: rgba(217,176,109,.12); }
.sonar-ring-c { inset: 46%; border-color: rgba(247,240,231,.10); }

.sonar-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(243,210,145,.70), rgba(118,183,235,.20), transparent);
  animation: sonarSweep 8s linear infinite;
}

.sonar-sweep::after {
  content: "";
  position: absolute;
  left: 0;
  top: -80px;
  width: 170px;
  height: 160px;
  transform-origin: left center;
  background: conic-gradient(from -22deg at left center, rgba(118,183,235,.13), transparent 22deg);
  opacity: .75;
}

.sonar-blip {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(243,210,145,.95);
  box-shadow: 0 0 24px rgba(243,210,145,.72);
  animation: blipPulse 2.8s ease-in-out infinite;
}

.blip-a { left: 64%; top: 30%; }
.blip-b { left: 34%; top: 62%; animation-delay: .7s; }
.blip-c { left: 73%; top: 66%; animation-delay: 1.2s; }

.intro-content {
  position: relative;
  z-index: 3;
  width: min(740px, calc(100vw - 42px));
  text-align: center;
  padding: 20px 0;
}

.intro-content::before,
.intro-content::after {
  content: "";
  display: block;
  width: min(460px, 70vw);
  height: 1px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, transparent, rgba(243,210,145,.72), rgba(118,183,235,.18), transparent);
}

.intro-content::after {
  margin: 28px auto 0;
  opacity: .42;
}

.intro-kicker {
  margin: 0 0 18px;
  color: rgba(243,210,145,.88);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.intro-brand {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.intro-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 9.2vw, 118px);
  line-height: .84;
  letter-spacing: -.055em;
  color: rgba(247,240,231,.96);
  text-shadow: 0 24px 80px rgba(0,0,0,.48);
}

.intro-brand em {
  font-style: normal;
  color: rgba(247,240,231,.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 520px;
  margin: 0 auto 30px;
  color: rgba(247,240,231,.68);
  font-size: 16px;
  line-height: 1.75;
}

.intro-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.intro-actions .btn {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 10px;
  letter-spacing: .16em;
}

.intro-actions .btn-ghost {
  background: rgba(255,255,255,.045);
  border-color: rgba(247,240,231,.20);
}

.intro-coordinates {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 4vw, 60px);
  bottom: clamp(22px, 4vw, 54px);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(247,240,231,.36);
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.sound-toggle {
  position: fixed;
  z-index: 160;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(247,240,231,.84);
  background: rgba(4,12,18,.68);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: 0 16px 50px rgba(0,0,0,.28);
}

.sound-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255,255,255,.38);
}

.sound-toggle.is-on .sound-dot {
  background: var(--gold-2);
  box-shadow: 0 0 18px rgba(243,210,147,.70);
}

/* Small header polish while keeping the early-version shape */
.site-header {
  width: min(1180px, calc(100% - 36px));
  background: rgba(4,12,18,.58);
  border-color: rgba(255,255,255,.14);
}

.site-header.is-scrolled {
  background: rgba(4,12,18,.82);
}

@keyframes sonarSweep {
  to { transform: rotate(360deg); }
}

@keyframes blipPulse {
  0%, 100% { transform: scale(.75); opacity: .40; }
  50% { transform: scale(1.42); opacity: 1; }
}

@media (max-width: 760px) {
  .intro-content {
    width: calc(100vw - 34px);
  }

  .intro-brand span {
    font-size: clamp(54px, 18vw, 86px);
  }

  .intro-copy {
    font-size: 14px;
    max-width: 360px;
  }

  .intro-actions .btn {
    width: 100%;
  }

  .intro-coordinates {
    display: none;
  }

  .sonar-compass {
    width: 105vw;
    height: 105vw;
    opacity: .72;
  }

  .intro-bg img {
    transform: scale(1.15);
    filter: blur(7px) saturate(.75) brightness(.42);
  }

  .sound-toggle {
    bottom: 14px;
    right: 14px;
    min-height: 42px;
    padding-inline: 13px;
    font-size: 10px;
  }
}



/* ===== HEADER 1:1 AUS REFERENZVERSION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(5, 13, 20, .78), rgba(5, 13, 20, .16), transparent);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition: background .45s ease, height .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(5, 13, 20, .74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1;
  min-width: 0;
  text-transform: none;
}

.brand-kicker {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .4em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(255,255,255,.74);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav a {
  color: inherit;
  transition: color .25s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--gold-2);
}

.nav a::after {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: 12px 18px;
  border: 1px solid rgba(244,212,151,.38);
  border-radius: 999px;
  font-size: 12px;
  font-weight: inherit;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255,255,255,.04);
  box-shadow: none;
  text-shadow: none;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.nav-cta:hover {
  color: var(--ink);
  border-color: rgba(244,212,151,.68);
  background: rgba(244,212,151,.12);
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: .25em;
  }

  .brand-kicker {
    font-size: 9px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 10px;
  }
}


/* ===== FINAL HEADER FULL-WIDTH FIX ===== */
/* Important: old limited-width rules are neutralized here. Header now behaves like the original reference: full viewport width, transparent top gradient, no pill. */
html body .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  height: var(--header-h) !important;
  min-height: 0 !important;
  z-index: 90 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding: 0 clamp(18px, 4vw, 56px) !important;
  margin: 0 !important;
  color: var(--ink) !important;
  background: linear-gradient(180deg, rgba(5, 13, 20, .78), rgba(5, 13, 20, .16), transparent) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
}

html body .site-header.is-scrolled {
  height: 66px !important;
  background: rgba(5, 13, 20, .74) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

html body .site-header .brand {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .32em !important;
  line-height: 1 !important;
}

html body .site-header .brand-kicker {
  color: var(--gold-2) !important;
  font-size: 11px !important;
  letter-spacing: .4em !important;
}

html body .site-header .nav {
  flex: 0 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(18px, 3vw, 38px) !important;
  min-width: 0 !important;
  color: rgba(255,255,255,.74) !important;
  font-size: 13px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

html body .site-header .nav a {
  color: inherit !important;
  white-space: nowrap !important;
  transition: color .25s ease !important;
}

html body .site-header .nav a:hover {
  color: var(--gold-2) !important;
}

html body .site-header .nav a::after {
  display: none !important;
}

html body .site-header .nav-cta {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 12px 18px !important;
  border: 1px solid rgba(244,212,151,.38) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: inherit !important;
  letter-spacing: .14em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  color: var(--gold-2) !important;
  background: rgba(255,255,255,.04) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

html body .site-header .nav-cta:hover {
  color: var(--ink) !important;
  border-color: rgba(244,212,151,.68) !important;
  background: rgba(244,212,151,.12) !important;
}

@media (max-width: 760px) {
  html body .site-header {
    height: 70px !important;
    padding: 0 18px !important;
  }

  html body .site-header.is-scrolled {
    height: 64px !important;
  }

  html body .site-header .brand {
    font-size: 12px !important;
    letter-spacing: .25em !important;
  }

  html body .site-header .brand-kicker {
    font-size: 9px !important;
  }

  html body .site-header .nav {
    display: none !important;
  }

  html body .site-header .nav-cta {
    padding: 10px 13px !important;
    font-size: 10px !important;
  }
}
