:root {
  --black: #080808;
  --black-soft: #101010;
  --paper: #f3f0ea;
  --ink: #151515;
  --muted: #67625b;
  --gold: #c99a43;
  --gold-light: #e7c471;
  --line-light: rgba(10,10,10,.14);
  --line-dark: rgba(255,255,255,.15);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: white;
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

img { max-width: 100%; display: block; }

.wrap {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.narrow { max-width: 830px; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px 0 82px;
  background:
    radial-gradient(circle at 50% 28%, rgba(201,154,67,.13), transparent 30%),
    radial-gradient(circle at 50% 65%, rgba(255,255,255,.025), transparent 35%),
    var(--black);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.record-stage {
  position: relative;
  width: min(390px, 74vw);
  aspect-ratio: 1;
  margin-bottom: 18px;
  filter: drop-shadow(0 34px 50px rgba(0,0,0,.65));
}

.record-stage::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: -10px;
  height: 25px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  filter: blur(15px);
}

.record {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    repeating-radial-gradient(
      circle at center,
      #121212 0 2px,
      #1b1b1b 3px 4px,
      #0e0e0e 5px 8px
    );
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 0 70px rgba(0,0,0,.9);
  animation: vinyl-spin 32s linear infinite;
}

.record::before {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 1px solid rgba(231,196,113,.07);
  box-shadow:
    0 0 0 15px rgba(255,255,255,.012),
    0 0 0 43px rgba(255,255,255,.01),
    0 0 0 72px rgba(255,255,255,.012);
}

.record-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      from 12deg,
      transparent 0 15%,
      rgba(255,255,255,.08) 19%,
      transparent 24% 52%,
      rgba(201,154,67,.07) 57%,
      transparent 63% 100%
    );
  mix-blend-mode: screen;
}

.record-grooves {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px dashed rgba(201,154,67,.12);
  box-shadow:
    0 0 0 24px rgba(201,154,67,.025),
    0 0 0 48px rgba(255,255,255,.012);
}

.record-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 37%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  background: #030303;
  border: 1px solid rgba(231,196,113,.45);
  box-shadow:
    0 0 0 7px rgba(201,154,67,.08),
    0 0 35px rgba(201,154,67,.15);
}

.record-label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wordmark {
  margin: 0 0 30px;
  letter-spacing: .42em;
  padding-left: .42em;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  font-weight: 500;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.12;
}

h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(3.05rem, 7vw, 6.8rem);
}

h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.intro {
  max-width: 670px;
  color: #bdb7ad;
  margin: 30px 0 0;
  font-size: 1.1rem;
}

.section { padding: 110px 0; }

.light {
  background: var(--paper);
  color: var(--ink);
}

.dark {
  background: var(--black-soft);
  color: #f5f2eb;
}

.kicker {
  margin: 0 0 20px;
  color: #8b672d;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.kicker.gold { color: var(--gold-light); }

h2 {
  margin: 0 0 42px;
  font-size: clamp(2.55rem, 5vw, 5rem);
}

.light p { color: #403d38; }

.section-lede {
  max-width: 720px;
  font-size: 1.16rem;
  margin: -20px 0 58px;
}

.dark-lede { color: #aaa49b; }

.belief {
  margin-top: 42px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.42;
  color: #211f1b !important;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.pillars article {
  min-height: 305px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background .25s ease;
}

.pillars article:hover {
  background: rgba(201,154,67,.045);
}

.pillars span {
  color: #837b70;
  font-size: .75rem;
}

.pillars h3 {
  margin: 52px 0 14px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.pillars p {
  color: #aaa49b;
  margin-bottom: 0;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.people article {
  padding: 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.people h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.people .role {
  margin: 0 0 28px;
  color: #9a702e;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.people p:not(.role) { font-size: .96rem; }

.building {
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(201,154,67,.13), transparent 35%),
    var(--black);
  padding: 125px 0;
}

.building h2 {
  color: white;
  margin-bottom: 26px;
}

.building-lede {
  color: #aaa49b;
  font-size: 1.12rem;
}

.interest {
  margin: 46px 0 22px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-gold {
  background: var(--gold);
  color: var(--black);
}

.button-gold:hover { background: var(--gold-light); }

.button-outline {
  color: var(--gold-light);
  background: transparent;
}

.button-outline:hover {
  background: rgba(201,154,67,.09);
}

.direct-email {
  display: inline-block;
  margin-top: 25px;
  color: #837d73;
  font-size: .9rem;
  text-decoration: none;
}

.direct-email:hover { color: var(--gold-light); }

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
  background: #050505;
  color: #79746c;
  font-size: .78rem;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@keyframes vinyl-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .pillars, .people { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: auto; padding: 62px 0 78px; }
  .record-stage { width: 280px; }
  .wordmark { letter-spacing: .28em; padding-left: .28em; }
  .section { padding: 78px 0; }
  .pillars, .people { grid-template-columns: 1fr; }
  .pillars article { min-height: 245px; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  footer .wrap { flex-direction: column; }
}

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