:root {
  --canvas: #F7F3EA;
  --paper: #FFFCF6;
  --ink: #162C24;
  --brand: #214A3A;
  --gold: #B68B44;
  --sage: #DCE5D8;
  --line: #D9D4C8;
  --muted: #5A6B62;
  --danger: #8B3A2F;
  --ok: #1F5C45;
  --max: 1200px;
  --serif: "Libre Baskerville", "Iowan Old Style", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
}
@media (max-width: 640px) {
  body { font-size: 17px; }
}

a { color: var(--brand); }
a:hover { text-decoration-thickness: 2px; }
img, video { max-width: 100%; height: auto; display: block; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--brand); color: #fff; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

.top {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.brand {
  font-weight: 750; text-decoration: none; color: var(--ink);
  letter-spacing: -0.01em; white-space: nowrap;
}
.brand span { color: var(--gold); }
.brand small {
  display: block; font-weight: 600; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
nav { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center; }
nav a {
  text-decoration: none; color: var(--muted);
  font-size: 13px; font-weight: 650;
}
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }
nav .cta {
  background: var(--brand); color: #fff !important;
  padding: 10px 14px; border-radius: 999px; font-size: 13px;
}
nav .cta:hover { filter: brightness(1.08); }

main { max-width: var(--max); margin: 0 auto; padding: 40px 20px 72px; }
.hero { padding: 28px 0 12px; max-width: 46rem; }
.eyebrow {
  display: inline-block; margin: 0 0 14px;
  font-size: 12px; font-weight: 750; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.02em; line-height: 1.18; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 14px; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin: 0 0 12px; }
h3 { font-size: 1.2rem; margin: 0 0 8px; }
.lead { color: var(--muted); font-size: 1.08rem; margin: 0 0 22px; max-width: 38em; }
.body { margin: 0 0 18px; max-width: 40em; }

.status {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 22px; padding: 10px 14px;
  background: var(--sage); border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 650; color: var(--ink);
}
.status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex: 0 0 auto;
}

.actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: none; cursor: pointer;
  background: var(--brand); color: #fff;
  font: 700 14px/1 var(--sans);
  padding: 14px 20px; border-radius: 999px;
  min-height: 48px;
}
.btn:hover { filter: brightness(1.06); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn[disabled], .btn.is-busy { opacity: 0.65; cursor: wait; }

.grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 18px 0 36px;
}
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 20px;
}
.card h3 { margin-top: 0; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card a.stretch {
  display: block; text-decoration: none; color: inherit; height: 100%;
}
.section { margin: 48px 0; }
.section .rule {
  width: 48px; height: 2px; background: var(--gold); margin: 0 0 16px; border: 0;
}

.film-shell {
  background: #0f1c17; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); margin: 18px 0 28px;
  aspect-ratio: 16 / 9; position: relative;
}
.film-poster {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(182,139,68,0.28), transparent 55%),
    linear-gradient(160deg, #1a3228 0%, #0f1c17 55%, #214A3A 100%);
  color: #F7F3EA; text-align: center; padding: 24px;
}
.film-poster h2 { color: #F7F3EA; margin-bottom: 8px; }
.film-poster p { color: rgba(247,243,234,0.78); margin: 0 0 18px; max-width: 28rem; }
.film-poster .play {
  width: 72px; height: 72px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--gold); color: #162C24;
  font: 800 18px/1 var(--sans);
  display: grid; place-items: center;
}
.film-note {
  font-size: 14px; color: var(--muted); margin: -12px 0 28px;
}

.form {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 20px; padding: 22px; max-width: 560px;
}
.field { margin: 0 0 16px; }
.field label {
  display: block; font-size: 14px; font-weight: 700; margin: 0 0 6px;
}
.field .hint { display: block; font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }
.field input[type="email"],
.field input[type="text"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  font: inherit; color: var(--ink);
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(182,139,68,0.35); border-color: var(--gold);
}
.checks {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 8px 0 4px;
}
.check {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; font-size: 14px; font-weight: 600;
}
.check input { margin-top: 3px; }
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; margin: 8px 0 16px;
}
.consent a { font-weight: 650; }
.error {
  color: var(--danger); font-size: 14px; font-weight: 650; margin: 0 0 12px;
}
.okmsg {
  color: var(--ok); font-size: 14px; font-weight: 650; margin: 0 0 12px;
}
.fine { font-size: 13px; color: var(--muted); margin: 12px 0 0; }

.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 16px; margin: 0 0 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 10px 0 0; color: var(--muted); }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px 48px;
  color: var(--muted); font-size: 14px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between;
}
.footer a { color: var(--muted); text-decoration: none; margin-right: 12px; }
.footer a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .film-poster .play { transition: none; }
}
