:root {
  --white: #ffffff;
  --off-white: #f5f5f7;
  --black: #1d1d1f;
  --grey: #6e6e73;
  --grey-light: #d2d2d7;
  --line: #e5e5e7;
  --accent: #b9623f;
  --accent-dark: #7a3f28;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.site-nav a:hover { opacity: 1; }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 20px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--accent-dark); }

/* Video backgrounds (shared) */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .bg-video { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.eyebrow {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  color: var(--white);
  font-weight: 700;
}
.hero-sub {
  max-width: 520px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.02em;
}
#spots-left { color: var(--white); font-weight: 700; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.16); }

/* Kit section */
.kit { padding: 110px 0; background: #f4f2f0; }
.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.kit-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kit-card {
  margin: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kit-card picture {
  display: block;
  width: 100%;
}
.kit-card img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.12));
}
.kit-card figcaption {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey);
}
.kit-copy h2 { font-size: 36px; margin-bottom: 18px; }
.kit-copy p { color: var(--grey); font-size: 17px; font-weight: 300; }
.kit-features {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kit-features li {
  padding-left: 22px;
  position: relative;
  color: var(--black);
  font-size: 15px;
}
.kit-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.price-line {
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  margin-top: 30px;
}
.price-line span {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
}

/* Video banner */
.video-banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.video-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.45);
}
.video-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.video-banner-inner h2 { font-size: clamp(30px, 5vw, 48px); }
.video-banner-inner p {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

/* Release steps */
.release { padding: 110px 0; background: var(--off-white); }
.release h2 { text-align: center; font-size: 34px; margin-bottom: 56px; }
.release-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px;
}
.step-num {
  display: block;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 10px; font-weight: 600; }
.step p { color: var(--grey); font-size: 14px; margin: 0; font-weight: 300; }

/* Reserve */
.reserve {
  padding: 110px 0;
  background: var(--white);
  text-align: center;
}
.reserve-inner { max-width: 560px; }
.reserve h2 { font-size: 34px; margin-bottom: 16px; }
.reserve > .container > p { color: var(--grey); margin-bottom: 36px; font-weight: 300; font-size: 17px; }
.reserve-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.reserve-form input {
  flex: 1 1 260px;
  padding: 15px 20px;
  border-radius: 24px;
  border: 1px solid var(--grey-light);
  background: var(--off-white);
  color: var(--black);
  font-size: 15px;
}
.reserve-form input:focus { outline: 2px solid var(--accent); }
.reserve-form .btn { flex: 0 0 auto; }
.reserve-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--grey);
}
.reserve-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.reserve-status.error { color: #c0392b; }
.reserve-status.success { color: #1e7e34; }

/* FAQ */
.faq { padding: 110px 0 130px; max-width: 760px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 34px; margin-bottom: 56px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item h3 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }
.faq-item p { color: var(--grey); margin: 0; font-size: 15px; font-weight: 300; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--grey);
  font-size: 13px;
}
.footer-inner a { color: var(--grey); text-decoration: none; }
.footer-inner a:hover { color: var(--black); }

@media (max-width: 880px) {
  .kit-grid { grid-template-columns: 1fr; }
  .release-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .release-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
