:root {
  --bg: #d6d1c7;      /* warm sand */
  --ink: #1b1a17;
  --soft: #6a665d;
  --line: rgba(27, 26, 23, 0.22);
  --max: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* shared tiny utilitarian type */
.mark, .menu a, .label, .foot, .list, .link {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 400;
}

/* TOP BAR */
.top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  background: var(--bg);
}
.menu { display: flex; gap: 24px; }
.menu a { color: var(--soft); transition: color 0.2s ease; }
.menu a:hover { color: var(--ink); }

/* HERO */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: 16vh 26px 7vh;
  text-align: center;
}
.hero h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(2rem, 6.5vw, 4.4rem);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--soft);
  margin-top: 22px;
}

/* STAGE — the focal piece, centered */
.stage {
  max-width: 940px; margin: 0 auto;
  padding: 0 26px 14vh;
  text-align: center;
}
.stage .video { margin-bottom: 24px; }
.stage .link { color: var(--soft); }
.stage .link:hover { color: var(--ink); border-color: var(--ink); }

/* BLOCKS */
.block {
  max-width: var(--max); margin: 0 auto;
  padding: 9vh 26px;
  border-top: 1px solid var(--line);
}
.label { display: block; color: var(--soft); margin-bottom: 28px; }

.text {
  font-size: 1rem;
  max-width: 460px;
  color: var(--ink);
}

.list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.list li { color: var(--ink); }

.link { color: var(--ink); border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.link:hover { border-color: var(--ink); }

/* VIDEO */
.video {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9; overflow: hidden;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(27, 26, 23, 0.18);
  margin-bottom: 22px;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* FOOTER */
.foot {
  max-width: var(--max); margin: 0 auto;
  padding: 40px 26px 56px;
  display: flex; justify-content: space-between;
  color: var(--soft);
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .menu { gap: 16px; }
  .menu a, .mark { font-size: 0.6rem; letter-spacing: 0.1em; }
  .hero { padding: 16vh 22px 12vh; }
}
