:root {
  --stone: oklch(98% 0 0);
  --ink: oklch(25% 0 0);
  --muted: oklch(48% 0.02 140);
  --line: oklch(84% 0.01 140);
  --green: oklch(22% 0.04 140);
  --green-mid: oklch(60% 0.1 140);
  --gold: oklch(82% 0.16 85);
  --footer: oklch(80% 0.02 60);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--stone);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--stone);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--stone);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 2rem;
  width: auto;
  display: block;
}

.links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.links a {
  padding: 0.45rem 0.75rem;
  color: oklch(25% 0 0 / 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
}

.links a:hover {
  color: var(--green-mid);
}

.links a.current {
  color: var(--green-mid);
  font-weight: 600;
}

main {
  flex: 1;
}

.sheet {
  padding: 3.25rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 16ch;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
}

.rule {
  width: 4rem;
  height: 2px;
  margin: 1rem 0 1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lede {
  max-width: 38rem;
  margin: 0;
  color: oklch(33% 0.04 140);
  font-size: 1.05rem;
  line-height: 1.6;
}

.frame {
  margin: 1.75rem 0 0;
  overflow: hidden;
  background: var(--stone);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px oklch(22% 0.04 140 / 0.08);
}

.mat {
  margin: 0.85rem 0.85rem 0;
  padding: 0.7rem;
  background: var(--green);
  box-shadow: inset 0 0 0 1px oklch(82% 0.16 85 / 0.85);
}

video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: oklch(16% 0.03 140);
}

figcaption {
  margin: 0;
  padding: 0.7rem 1rem 0.8rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.support {
  margin: 1.35rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.35rem;
  background: var(--gold);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.button:hover {
  background: oklch(74% 0.16 85);
}

footer {
  background: var(--green);
  color: var(--footer);
}

.gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.foot {
  padding: 1.6rem 0 1.8rem;
}

.est {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.foot p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.fine {
  margin-top: 0.65rem !important;
  color: oklch(72% 0.02 140);
  font-size: 0.8rem !important;
}

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

.fine a:hover {
  color: var(--gold);
}

.fine span {
  margin: 0 0.35rem;
}

@media (max-width: 720px) {
  .links a:not(.current) {
    display: none;
  }

  .sheet {
    padding-top: 2.25rem;
  }

  .mat {
    margin: 0.55rem 0.55rem 0;
    padding: 0.45rem;
  }
}
