:root {
  color-scheme: dark;
  --ink: #0f0f0d;
  --black: #171715;
  --black-soft: #1f1e1a;
  --gold: #d0ad71;
  --gold-bright: #f1d798;
  --gold-dim: #8f744a;
  --bone: #efefed;
  --ash: #bcb5aa;
  --line: rgba(208, 173, 113, 0.38);
  --shadow: rgba(0, 0, 0, 0.48);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 2%, rgba(208, 173, 113, 0.16), transparent 30rem),
    radial-gradient(circle at 15% 70%, rgba(208, 173, 113, 0.1), transparent 22rem),
    linear-gradient(180deg, #111110 0%, #191815 45%, #0f0f0d 100%);
  color: var(--bone);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 82%);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.wordmark,
.nav-links {
  display: flex;
  align-items: center;
}

.wordmark {
  gap: 12px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark__sigil {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.05rem;
}

.nav-links {
  gap: 22px;
}

.nav-links a {
  color: var(--ash);
  font-size: 0.94rem;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.98fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
  width: min(100% - 32px, var(--max));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) 0 clamp(52px, 7vw, 92px);
}

.hero__copy {
  position: relative;
}

.hero__copy::before {
  display: block;
  width: 96px;
  height: 2px;
  margin-bottom: 28px;
  content: "";
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.hero__line,
.section-heading p,
.contact p,
.site-footer {
  color: var(--ash);
}

.hero__line {
  max-width: 31rem;
  margin: 0 0 12px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 100%;
  font-size: clamp(2.85rem, 4vw, 3.25rem);
  text-transform: uppercase;
  overflow-wrap: normal;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5.4vw, 5.2rem);
}

.hero__lede {
  max-width: 38rem;
  margin: 24px 0 0;
  color: var(--bone);
  font-size: clamp(1.08rem, 1.9vw, 1.34rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #171715;
  box-shadow: 0 20px 48px var(--shadow);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
}

.hero__mark {
  position: relative;
  justify-self: center;
  width: min(100%, 560px);
}

.hero__mark::before,
.hero__mark::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero__mark::before {
  inset: -18px;
  border: 1px solid rgba(208, 173, 113, 0.28);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.hero__mark::after {
  inset: 18px;
  border: 1px solid rgba(208, 173, 113, 0.2);
}

.hero__mark img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--black);
}

.section-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0;
  border-top: 1px solid rgba(208, 173, 113, 0.22);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
}

.intro__text {
  grid-column: 2;
}

.intro p,
.section-heading p,
.contact p {
  max-width: 48rem;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.quote {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
}

.listen {
  display: grid;
  gap: 34px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
}

.section-heading h2 {
  max-width: 12ch;
}

.section-heading p {
  margin-top: 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.platform-card {
  display: grid;
  min-height: 156px;
  padding: 22px;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(208, 173, 113, 0.1), transparent),
    rgba(18, 18, 16, 0.78);
  color: var(--gold-bright);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.platform-card:hover,
.platform-card:focus-visible {
  border-color: var(--gold-bright);
  transform: translateY(-4px);
}

.platform-card__logo {
  width: 52px;
  height: 52px;
  color: var(--gold);
  fill: currentColor;
}

.platform-card span {
  align-self: end;
  color: var(--bone);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.mail-link {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.mail-link:hover,
.mail-link:focus-visible {
  background: rgba(208, 173, 113, 0.1);
}

.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(208, 173, 113, 0.22);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__copy {
    order: 2;
  }

  .hero__mark {
    order: 1;
    width: min(100%, 520px);
  }

  .intro__text {
    grid-column: auto;
  }

  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    min-height: 0;
  }

  .wordmark {
    max-width: 15ch;
  }

  .nav-links {
    gap: 14px;
    padding-top: 9px;
  }

  .hero {
    width: min(100% - 24px, var(--max));
    padding-top: 18px;
  }

  .hero__mark::before {
    inset: -8px;
  }

  .hero__mark::after {
    inset: 10px;
  }

  .hero__actions {
    display: grid;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.35rem);
    overflow-wrap: anywhere;
  }

  .button,
  .mail-link {
    width: 100%;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    grid-template-columns: auto 1fr;
    min-height: 86px;
    justify-items: start;
    text-align: left;
  }

  .platform-card span {
    align-self: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .platform-card {
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
  }
}
