:root {
  --bg: #080808;
  --bg-soft: #0e0e0e;
  --text: #f4f1ea;
  --muted: #a8a39a;
  --gold: #c5a56a;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  background: var(--text);
  color: #000;
  padding: .75rem 1rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  mix-blend-mode: difference;
}
.wordmark,
.contact-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
}
.contact-link { border-bottom: 1px solid currentColor; padding-bottom: .25rem; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.025), transparent 34%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  animation: reveal 1.8s cubic-bezier(.2,.65,.2,1) both;
}
.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .48em;
  font-size: .66rem;
  animation: reveal 1.8s .15s both;
}
h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: .9;
  font-weight: 400;
  letter-spacing: .12em;
  transform: translateX(.06em);
  text-shadow: 0 0 40px rgba(255,255,255,.04);
}
.subtitle {
  margin: 1.6rem 0 0;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: .18em;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .23;
  z-index: 1;
  pointer-events: none;
}
.ambient-one {
  width: 48vw;
  aspect-ratio: 1;
  left: -12vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(197,165,106,.34), transparent 70%);
  animation: driftOne 18s ease-in-out infinite alternate;
}
.ambient-two {
  width: 42vw;
  aspect-ratio: 1;
  right: -8vw;
  bottom: -10vh;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
  animation: driftTwo 22s ease-in-out infinite alternate;
}
.grain {
  position: absolute;
  inset: -50%;
  opacity: .035;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 1px;
  height: 54px;
  background: rgba(255,255,255,.16);
  overflow: hidden;
}
.scroll-cue span {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--gold);
  animation: scroll 2.2s ease-in-out infinite;
}

.statement {
  min-height: 70vh;
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: 6rem 2rem;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.statement p { margin: 0; }
.statement > p:first-child {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 5vw, 5.5rem);
  letter-spacing: .04em;
}
.muted { color: var(--muted); font-size: .95rem; letter-spacing: .08em; }
.email {
  justify-self: center;
  margin-top: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(197,165,106,.45);
  padding-bottom: .35rem;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(22px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes driftOne { to { transform: translate(10vw, 7vh) scale(1.08); } }
@keyframes driftTwo { to { transform: translate(-8vw, -6vh) scale(.92); } }
@keyframes scroll { 0% { transform: translateY(-110%); } 50%,100% { transform: translateY(230%); } }
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-4%); }
  60% { transform: translate(4%,4%); }
  80% { transform: translate(-4%,-2%); }
}

@media (max-width: 700px) {
  .site-header { padding: 1.25rem; }
  h1 { font-size: clamp(3.4rem, 18vw, 6.2rem); letter-spacing: .07em; }
  .subtitle { letter-spacing: .1em; }
  footer { align-items: flex-start; flex-direction: column; padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
