:root {
  color-scheme: dark;
  --bg: #000;
  --ink: #fff;
  --muted: #b6b6b6;
  --hairline: rgba(255, 255, 255, .14);
  --surface: #0a0a0a;
  --accent: #d8c8a4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--hairline);
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-lockup img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .76fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  min-height: 88svh;
  padding: 118px clamp(20px, 6vw, 84px) 68px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06), transparent 34%),
    linear-gradient(180deg, rgba(216, 200, 164, .12), transparent 42%);
  pointer-events: none;
}

.hero-mark,
.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-mark {
  display: grid;
  place-items: center;
}

.hero-mark img {
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 40px 100px rgba(0, 0, 0, .7);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 148px);
  font-weight: 400;
  line-height: .84;
}

.lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: #dedede;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.18;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
}

.button.primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(250px, .76fr) minmax(300px, 1.24fr);
  gap: clamp(30px, 5vw, 72px);
  padding: 72px clamp(20px, 6vw, 84px) 90px;
  border-top: 1px solid var(--hairline);
  background: var(--surface);
}

h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 400;
  line-height: .96;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

article {
  min-height: 210px;
  padding: 26px;
  background: #050505;
}

article span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand-lockup span {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92svh;
    padding-top: 98px;
    gap: 30px;
  }

  .hero-mark {
    order: -1;
  }

  .hero-mark img {
    width: min(72vw, 330px);
  }

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

@media (max-width: 560px) {
  nav {
    gap: 12px;
    font-size: 13px;
  }

  .brand-lockup {
    gap: 9px;
    font-size: 13px;
  }

  .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  article {
    min-height: 176px;
  }
}
