/* S.O.U.V.E.R.A.I.N. — Shared Styles for Sub-pages */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C472;
  --gold-dim: rgba(201,168,76,0.1);
  --gold-border: rgba(201,168,76,0.22);
  --black: #0A0A09;
  --surface: #111110;
  --border: #1E1D1B;
  --border-mid: #2A2824;
  --text-1: #F0E6CC;
  --text-2: #8A7F6A;
  --text-3: #4A4438;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text-1);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 32px;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,9,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center;
  height: 56px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold); text-decoration: none; flex-shrink: 0;
  transition: opacity 0.15s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo svg { transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.nav-logo:hover svg { transform: rotate(30deg) scale(1.1); }
.nav-links { display: flex; align-items: center; list-style: none; padding-left: 24px; }
.nav-links li a {
  display: flex; align-items: center;
  padding: 0 20px; height: 56px;
  font-size: 13px; color: var(--text-2);
  text-decoration: none;
  border-left: 1px solid var(--border);
  transition: color 0.15s;
  white-space: nowrap;
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links li a:hover { color: var(--text-1); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li:last-child a { border-right: 1px solid var(--border); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-login { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color 0.15s; }
.nav-login:hover { color: var(--text-1); }
.btn-book {
  font-size: 13px; font-weight: 600;
  background: var(--gold); color: var(--black);
  border: none; padding: 8px 16px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.15s; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
.btn-book::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg); transition: left 0.45s ease;
}
.btn-book:hover { background: var(--gold-light); }
.btn-book:hover::after { left: 160%; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  margin-left: auto; flex-shrink: 0; padding: 4px;
}
.nav-hamburger span {
  display: block; height: 1.5px;
  background: var(--text-2); border-radius: 1px;
  transition: all 0.25s; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed;
  top: 56px; left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  z-index: 199; flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 16px 24px;
  font-size: 14px; color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover { color: var(--text-1); background: var(--surface); }
.mobile-nav .mobile-nav-cta {
  background: var(--gold); color: var(--black);
  font-weight: 600; border-bottom: none;
}
.mobile-nav .mobile-nav-cta:hover { background: var(--gold-light); }

/* TICKER */
.ticker-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 100; border-top: 1px solid var(--border);
  background: rgba(10,10,9,0.96);
  height: 32px; overflow: hidden;
  display: flex; align-items: stretch;
}
.ticker-label {
  display: flex; align-items: center; padding: 0 14px;
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.12em; color: var(--gold);
  border-right: 1px solid var(--border); flex-shrink: 0;
}
.ticker-track-wrap { flex: 1; overflow: hidden; }
.ticker-track {
  display: flex; align-items: center; height: 32px;
  animation: ticker 32s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker-item {
  display: flex; align-items: center; height: 32px;
  padding: 0 20px; border-right: 1px solid var(--border);
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.07em; color: var(--text-3); gap: 8px;
  flex-shrink: 0; transition: background 0.15s;
}
.ticker-item:hover { background: rgba(201,168,76,0.06); }
.ticker-item span { color: var(--text-1); }
.ticker-item span.g { color: var(--gold); }
.ticker-item span.up { color: #50C878; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* PAGE HEADER BAND */
.page-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 48px;
}
.page-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.page-eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.page-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 0.95;
  letter-spacing: -0.01em; color: var(--text-1);
}
.page-sub {
  font-size: 14px; line-height: 1.75;
  color: var(--text-2); max-width: 420px;
}
.page-meta {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--text-3); margin-top: 20px;
}

/* CONTENT AREA */
.content-wrap {
  max-width: 1200px; margin: 0 auto;
}
.content-split {
  display: grid; grid-template-columns: 280px 1fr;
  border-bottom: 1px solid var(--border);
}
.content-sidebar {
  padding: 56px 40px; border-right: 1px solid var(--border);
}
.content-main { padding: 56px 48px; }

/* SIDEBAR NAV */
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  font-size: 13px; color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.2s;
}
.sidebar-nav li a:hover { color: var(--gold); padding-left: 6px; }
.sidebar-nav li a.active { color: var(--gold); }
.sidebar-nav li:first-child a { border-top: 1px solid var(--border); }
.sidebar-section {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-3);
  margin: 24px 0 8px;
}

/* PROSE */
.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; line-height: 1.05;
  color: var(--text-1); margin: 48px 0 16px;
  padding-top: 48px; border-top: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 {
  font-size: 15px; font-weight: 600;
  color: var(--text-1); margin: 28px 0 10px;
}
.prose p {
  font-size: 14px; line-height: 1.8;
  color: var(--text-2); margin-bottom: 16px;
}
.prose ul, .prose ol {
  padding-left: 20px; margin-bottom: 16px;
}
.prose li {
  font-size: 14px; line-height: 1.8;
  color: var(--text-2); margin-bottom: 6px;
}
.prose ul li::marker { color: var(--gold); }
.prose a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-border); transition: border-color 0.15s; }
.prose a:hover { border-color: var(--gold); }
.prose strong { color: var(--text-1); font-weight: 600; }
.prose .highlight {
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  padding: 16px 20px; margin: 24px 0;
  font-size: 13px; color: var(--text-2); line-height: 1.7;
}
.prose .highlight strong { color: var(--gold); }

/* EYEBROW */
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* BTN PRIMARY */
.btn-primary {
  font-size: 13px; font-weight: 600;
  background: var(--gold); color: var(--black);
  padding: 10px 20px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.15s; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg); transition: left 0.45s ease;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-primary:hover::after { left: 160%; }

.btn-ghost {
  font-size: 13px; color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--text-1); border-color: var(--text-2); }

/* FOOTER */
footer { border-top: 1px solid var(--border); }
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
  padding: 48px 48px 40px; gap: 48px;
  border-bottom: 1px solid var(--border);
}
.f-brand-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--gold); margin-bottom: 12px;
}
.f-brand-desc { font-size: 12px; color: var(--text-3); line-height: 1.6; }
.f-col h4 {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 14px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-col ul li a {
  font-size: 12px; color: var(--text-3);
  text-decoration: none; transition: color 0.15s;
  position: relative; display: inline-block;
}
.f-col ul li a::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.f-col ul li a:hover { color: var(--text-1); }
.f-col ul li a:hover::after { transform: scaleX(1); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.f-copy { font-size: 11px; color: var(--text-3); }
.f-bottom-links { display: flex; gap: 20px; list-style: none; }
.f-bottom-links a { font-size: 11px; color: var(--text-3); text-decoration: none; transition: color 0.15s; }
.f-bottom-links a:hover { color: var(--text-2); }

/* SECTION DIVIDER */
.section-divider { border-bottom: 1px solid var(--border); }

/* SCROLL REVEAL */
.rv { opacity: 1; transform: none; }

/* ── GUTTER MASKS (hide anything crossing the vertical lines) ── */
/* Two fixed strips covering left/right gutters, above content, below vlines */
#gutter-left, #gutter-right {
  position: fixed;
  top: 0; bottom: 0;
  width: 32px;
  background: var(--black);
  z-index: 299;
  pointer-events: none;
}
#gutter-left  { left: 0; }
#gutter-right { right: 0; }

@media (max-width: 900px) {
  #gutter-left, #gutter-right { width: 12px; }
}

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
*, *::before, *::after { cursor: none !important; }
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none;
  z-index: 99999; transform: translate(-50%, -50%);
  will-change: transform, opacity;
}
#cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#cursor-ring {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,0.55);
  background: transparent;
  transition: width 0.25s cubic-bezier(0.34,1.56,0.64,1),
              height 0.25s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.2s, opacity 0.2s;
}
body.cursor-hidden #cursor-dot,
body.cursor-hidden #cursor-ring { opacity: 0; }
body.cursor-hover #cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold-light);
}
body.cursor-hover #cursor-ring {
  width: 44px; height: 44px;
  border-color: rgba(201,168,76,0.3);
}
body.cursor-click #cursor-dot {
  width: 3px; height: 3px;
}
body.cursor-click #cursor-ring {
  width: 20px; height: 20px;
  border-color: var(--gold);
}

/* ── VERTICAL OUTER LINES ──────────────────────────────── */
body::before, body::after {
  content: '';
  position: fixed;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201,168,76,0.06) 8%,
    rgba(201,168,76,0.18) 30%,
    rgba(201,168,76,0.22) 50%,
    rgba(201,168,76,0.18) 70%,
    rgba(201,168,76,0.06) 92%,
    transparent 100%
  );
  z-index: 300;
  pointer-events: none;
  animation: vline-pulse 5s ease-in-out infinite;
}
body::before { left: 32px; animation-delay: 0s; }
body::after  { right: 32px; animation-delay: 2.5s; }

@keyframes vline-pulse {
  0%   { opacity: 0.5; }
  30%  { opacity: 1; }
  60%  { opacity: 0.65; }
  100% { opacity: 0.5; }
}

/* Corner accent nodes on the vertical lines */
.vline-node {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 301;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: vnode-blink 4s ease-in-out infinite;
}
.vline-node-left-top    { left: 32px; top: 25vh; animation-delay: 0s; }
.vline-node-left-mid    { left: 32px; top: 50vh; animation-delay: 1s; }
.vline-node-left-bot    { left: 32px; top: 75vh; animation-delay: 2s; }
.vline-node-right-top   { right: 32px; top: 25vh; animation-delay: 0.5s; transform: translate(50%, -50%); }
.vline-node-right-mid   { right: 32px; top: 50vh; animation-delay: 1.5s; transform: translate(50%, -50%); }
.vline-node-right-bot   { right: 32px; top: 75vh; animation-delay: 2.5s; transform: translate(50%, -50%); }

@keyframes vnode-blink {
  0%, 100% { opacity: 0.15; box-shadow: 0 0 0px var(--gold); }
  50%       { opacity: 0.9;  box-shadow: 0 0 6px rgba(201,168,76,0.6); }
}

@media (max-width: 900px) {
  body::before { left: 12px; }
  body::after  { right: 12px; }
  .vline-node-left-top, .vline-node-left-mid, .vline-node-left-bot { left: 12px; }
  .vline-node-right-top, .vline-node-right-mid, .vline-node-right-bot { right: 12px; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .btn-book { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .page-header-inner { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 16px; }
  .page-h1 { font-size: 44px; }
  .content-split { grid-template-columns: 1fr; }
  .content-sidebar { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .content-main { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 32px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .f-bottom-links { justify-content: center; }
}
@media (max-width: 600px) {
  .page-h1 { font-size: 36px; }
  .page-header-inner { padding: 40px 16px 32px; }
  .content-sidebar { padding: 28px 16px; }
  .content-main { padding: 32px 16px; }
  .footer-top { grid-template-columns: 1fr; padding: 32px 16px; gap: 28px; }
  .footer-bottom { padding: 16px; }
  .nav-inner { padding: 0 16px; }
}

/* ── PAGE SEPARATOR ────────────────────────────────────── */
.page-separator {
  position: relative;
  margin: 0 33px;
  height: 28px;
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 7px,
    rgba(201,168,76,0.18) 7px,
    rgba(201,168,76,0.18) 8px
  );
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  overflow: visible;
}
.page-separator .sep-tl,
.page-separator .sep-tr,
.page-separator .sep-bl,
.page-separator .sep-br {
  position: absolute;
  width: 10px; height: 10px;
  pointer-events: none;
}
.page-separator .sep-tl { top: -5px; left: -1px;  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.page-separator .sep-tr { top: -5px; right: -1px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.page-separator .sep-bl { bottom: -5px; left: -1px;  border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.page-separator .sep-br { bottom: -5px; right: -1px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
