:root {
  --bg: #07090d;
  --bg-raised: #0d1219;
  --ink: #f4efe4;
  --ink-dim: #a9a9ad;
  --amber: #e0a84a;
  --line: rgba(244, 239, 228, 0.12);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 720px; }
.center { text-align: center; }

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 20px;
}

.body-text {
  color: var(--ink-dim);
  font-size: 16px;
  margin: 0 0 16px;
}

.body-text.intro { max-width: 560px; margin-left: auto; margin-right: auto; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
}
.nav .wordmark, .nav-links a {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-dim);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--amber);
  color: var(--amber) !important;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--amber); color: #1a1305 !important; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1px;
  background: var(--ink);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-cta { align-self: flex-start; }

@media (min-width: 800px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.8) 100%);
}
.sound-toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.sound-toggle:hover { background: rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.7); }
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-outline { border: 1px solid rgba(255,255,255,0.7); color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-solid { background: var(--amber); color: #1a1305; border: 1px solid var(--amber); }
.btn-solid:hover { transform: scale(1.03); }
.btn-text { color: var(--ink-dim); padding-left: 8px; padding-right: 8px; border: none; }
.btn-text:hover { color: var(--ink); }
.btn.small { font-size: 11px; padding: 10px 20px; border: 1px solid var(--line); color: var(--ink); }
.btn.small:hover { border-color: var(--ink); }

/* Sections */
.section { padding: 112px 0; }
.then-now { }
.about { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-raised); }
.about-grid { display: grid; gap: 56px; }
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.pakketten {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) {
  .pakketten { grid-template-columns: repeat(3, 1fr); }
}
.pakket {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.pakket-highlight { border-color: var(--amber); background: var(--bg-raised); }
.pakket h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 24px;
}
.pakket ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-dim);
}
.pakket li { display: flex; align-items: flex-start; gap: 10px; }
.pakket li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 8px;
  flex-shrink: 0;
}
.pakket .btn { text-align: center; }

.cta { border-top: 1px solid var(--line); }
.cta-buttons { margin-top: 40px; }

.footer { border-top: 1px solid var(--line); padding: 32px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-dim);
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

/* Mount-only reveal: opacity always 1 (screenshot-safe), only a transform shift animates in */
.reveal {
  transform: translateY(14px);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
