:root {
  color-scheme: dark;
  --ink: #07090b;
  --paper: #e9e6df;
  --muted: #959797;
  --line: rgba(255,255,255,.14);
  --ember: #d2b58b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 clamp(20px,5vw,76px);
  background:
    radial-gradient(circle at 50% 40%,rgba(232,217,188,.08),transparent 25%),
    linear-gradient(117deg,#050607 0%,#0c1013 48%,#060708 100%);
}
.ambient-light {
  position: absolute;
  left: 50%;
  bottom: -35vh;
  width: 60vw;
  height: 75vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse,rgba(246,231,199,.1),transparent 62%);
  filter: blur(30px);
}
.masthead {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  min-height: 146px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: #f5f2eb;
  font-size: clamp(20px,2vw,30px);
  font-weight: 300;
  letter-spacing: .12em;
  text-decoration: none;
  transform: scaleX(.86);
  transform-origin: center;
}
.eye-letter {
  position: relative;
  display: inline-block;
  width: .9em;
  height: .58em;
  margin: 0 .02em;
  border: 1px solid currentColor;
  border-radius: 50% 15%;
  transform: rotate(45deg);
}
.eye-letter i {
  position: absolute;
  top: 50%; left: 50%;
  width: .22em; height: .22em;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%,-50%);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 24px;
}
.main-nav a {
  position: relative;
  padding: 13px 0;
  color: #747778;
  font-size: 9px;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: .2em; bottom: 7px;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover,.main-nav a:focus-visible,.main-nav a.active { color: var(--paper); outline: none; }
.main-nav a:hover::after,.main-nav a:focus-visible::after,.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.home-main {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: auto;
  padding: clamp(42px,6vw,82px) 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cover-stage { position: relative; width: min(100%,560px); margin: 0 0 clamp(44px,6vw,76px); }
.cover-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16% 10% auto;
  height: 500px;
  background: rgba(218,199,164,.07);
  filter: blur(60px);
}
.cover-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: clamp(4px,.6vw,8px);
  border: 1px solid rgba(210,181,139,.3);
  background: rgba(210,181,139,.045);
  box-shadow: 0 36px 80px rgba(0,0,0,.58);
}
.cover-frame img { display: block; width: 100%; height: 100%; object-fit: contain; }
.home-copy { max-width: 900px; display: flex; flex-direction: column; align-items: center; }
h1 {
  margin: 0;
  font-family: Georgia,"Times New Roman",serif;
  font-weight: 400;
  font-size: clamp(48px,6.4vw,96px);
  line-height: .9;
  letter-spacing: -.045em;
}
h1 span { display: block; }
h1 span:nth-child(2) { color: #d4d0c8; font-style: italic; }
h1 .title-small {
  margin-top: 25px;
  font-family: Arial,Helvetica,sans-serif;
  font-size: clamp(19px,2.2vw,33px);
  line-height: 1.25;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.youtube-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  margin-top: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.28);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .25s ease,color .25s ease,border-color .25s ease;
}
.youtube-button:hover,.youtube-button:focus-visible { background: var(--paper); border-color: var(--paper); color: #0b0c0d; outline: none; }
.youtube-icon { width: 23px; height: 23px; fill: currentColor; }
.arrow { margin-left: 8px; font-size: 16px; }
.content-main {
  position: relative;
  z-index: 1;
  max-width: 980px;
  min-height: calc(100svh - 192px);
  margin: auto;
  padding: clamp(70px,10vw,150px) 0 100px;
}
.section-kicker { margin: 0 0 25px; color: var(--ember); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }
.content-main h1 { max-width: 850px; font-size: clamp(58px,9vw,126px); }
.content-lead { max-width: 680px; margin: 45px 0 0; color: var(--muted); font-family: Georgia,"Times New Roman",serif; font-size: clamp(18px,2vw,24px); line-height: 1.65; }
.back-link { display: inline-block; margin-top: 38px; color: #bbb7ae; font-size: 10px; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; }
.back-link:hover { color: var(--ember); }
footer {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  min-height: 80px;
  margin: auto;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5f6263;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
@media (max-width:950px) {
  .masthead { padding: 26px 0 22px; }
}
@media (max-width:560px) {
  .wordmark { font-size: 22px; }
  .main-nav { gap: 0 16px; }
  .main-nav a { font-size: 9px; }
  .home-main { padding-top: 42px; }
  .cover-stage { margin-bottom: 48px; }
  h1 { font-size: clamp(48px,15vw,74px); }
  h1 .title-small { font-size: 18px; }
  .youtube-button { width: 100%; justify-content: center; }
  footer { min-height: 95px; padding: 26px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 10px; }
}
@media (prefers-reduced-motion:no-preference) {
  .cover-stage { animation: reveal .9s ease-out both; }
  .home-copy,.content-main > * { animation: rise .75s .12s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } }
  @keyframes reveal { from { opacity: 0; transform: translateY(24px) scale(.98); } }
}
