:root {
  --bg: #050505;
  --ink: #f3efe6;
  --muted: #9a9589;
  --line: rgba(243, 239, 230, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
}

a {
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.035;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0));
}

.logo {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.34em;
  font-weight: 500;
}

.nav nav {
  display: flex;
  gap: 22px;
}

.nav nav a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 28px 72px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 11vw, 104px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
}

.lead {
  max-width: 380px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.downloads {
  padding: 28px 28px 100px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.24em;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 400;
}

.rows {
  display: flex;
  flex-direction: column;
}

.row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.row:last-child {
  border-bottom: 1px solid var(--line);
}

.num {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.row h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
}

.row p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--ink);
  color: var(--bg);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 28px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 860px) {
  .nav,
  .hero,
  .downloads,
  footer {
    padding-left: 64px;
    padding-right: 64px;
  }

  .row {
    grid-template-columns: 64px 1fr auto;
    padding: 36px 0;
  }

  .row h3 {
    font-size: 36px;
  }
}
