:root {
  --navy: #0b1a2b;
  --navy-2: #122a44;
  --ink: #0c1b33;
  --muted: #6b7280;
  --line: rgba(255, 255, 255, 0.35);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(11, 26, 43, 0.55) 0%, rgba(14, 34, 64, 0.45) 45%, rgba(8, 18, 36, 0.65) 100%),
    url('../img/hero-bg.jpg') center / cover no-repeat;
}

.topbar {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
}

.hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 72px);
  letter-spacing: 0.005em;
  text-align: center;
  line-height: 1.05;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.stay {
  padding: 120px 24px;
  text-align: center;
  background: #fff;
}
.stay h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  letter-spacing: 0.005em;
}
.stay .rule {
  width: 80px;
  height: 2px;
  background: #d1d5db;
  margin: 24px auto 0;
}

.site-footer {
  padding: 24px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid #f1f5f9;
}
.site-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title { transition: opacity 600ms ease; }
}
