:root {
  color-scheme: dark;
  --ink: #050505;
  --paper: #f4f2ed;
  --silver: #b9b9b6;
  --line: rgba(255, 255, 255, 0.2);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 42%, rgba(255,255,255,.07), transparent 22rem),
    radial-gradient(circle at 6% 88%, rgba(255,255,255,.04), transparent 18rem),
    var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0 20px;
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 210px;
  height: auto;
  filter: invert(1);
}

.header-contact {
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: .73rem;
  font-weight: 700;
  transition: color .2s ease;
}

.header-contact:hover { color: var(--silver); }

.hero {
  position: relative;
  isolation: isolate;
  width: min(1280px, calc(100% - 64px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  padding: 58px 2vw 96px;
}

.hero-copy { position: relative; z-index: 3; }

.eyebrow {
  margin: 0 0 25px;
  color: var(--silver);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
}

h1 {
  max-width: 750px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4.3rem, 8.7vw, 8.9rem);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,242,237,.7);
}

.intro {
  margin: 42px 0 6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
}

.intro-es {
  margin: 0;
  color: #9b9b98;
  font-size: .88rem;
  letter-spacing: .04em;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 35px;
  padding: 15px 21px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 100px;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .19em;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.cta svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.cta:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-mark {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(500px, 100%);
}

.hero-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: contrast(1.08);
}

.logo-halo {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(255,255,255,.08), inset 0 0 70px rgba(255,255,255,.04);
}

.record {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(255,255,255,.018),
    0 0 0 29px rgba(255,255,255,.055),
    0 0 0 72px rgba(255,255,255,.012),
    0 0 0 73px rgba(255,255,255,.045),
    0 0 0 116px rgba(255,255,255,.01),
    0 0 0 117px rgba(255,255,255,.035);
}

.record-left { width: 210px; height: 210px; left: -160px; bottom: 25px; }
.record-right { width: 350px; height: 350px; right: -225px; top: 80px; }

.coming-soon {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(540px, 70%);
  color: #aaa9a5;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.coming-soon .line { flex: 1; height: 1px; background: rgba(255,255,255,.18); }

footer {
  position: relative;
  z-index: 4;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8d8d89;
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--paper); }

@media (max-width: 800px) {
  .site-header, .hero, footer { width: min(100% - 36px, 680px); }
  .site-header { padding-top: 18px; }
  .brand img { width: 166px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 55px 0 100px;
    text-align: center;
  }
  .hero-copy { order: 2; margin-top: -14px; }
  .hero-mark { order: 1; justify-self: center; width: min(310px, 76vw); }
  .eyebrow { margin-bottom: 18px; }
  h1 { font-size: clamp(3.45rem, 18vw, 6.2rem); line-height: .83; }
  .intro { margin-top: 28px; }
  .cta { margin-top: 28px; }
  .record-left { left: -205px; bottom: 100px; }
  .record-right { right: -290px; top: 55px; }
  .coming-soon { bottom: 34px; width: 86%; }
  footer { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta { transition: none; }
}
