:root {
  --f-paper: #f4efe4;
  --f-paper-2: #e7decc;
  --f-ink: #16201a;
  --f-ink-2: #4d5a4e;
  --f-sage: #7a8c5c;
  --f-ember: #d6be7d;
  --f-moss: #334331;
  --f-white: #fffaf0;
  --f-display: "Spectral", Georgia, serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r-ink: #0a0e0a;
  --r-fog: #8b928a;
  --r-lime: #8fc74b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--f-paper);
  color: var(--f-ink);
  font-family: var(--f-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.roamad-band {
  background: var(--r-ink);
  color: var(--r-fog);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 10px 24px;
  text-align: center;
  text-transform: uppercase;
}

.roamad-band strong {
  color: var(--r-lime);
  font-weight: 500;
}

.site-nav {
  background: rgba(244, 239, 228, 0.94);
  border-bottom: 1px solid rgba(22, 32, 26, 0.22);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 20px 32px;
}

.wordmark {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.nav-links a,
.nav-cta,
.button,
.eyebrow,
.fine,
.product-meta,
.stat-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--f-ink-2);
  padding-bottom: 4px;
  text-decoration: none;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--f-ink);
  border-bottom: 1px solid var(--f-sage);
}

.nav-cta,
.button {
  align-items: center;
  background: var(--f-ink);
  border: 1px solid var(--f-ink);
  color: var(--f-paper);
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--f-ink);
}

.container {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 32px;
}

.narrow {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 32px;
}

.hero {
  padding: 78px 0 92px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.eyebrow {
  color: var(--f-sage);
  display: inline-flex;
  gap: 12px;
  margin-bottom: 22px;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  margin-top: 0.78em;
  width: 32px;
}

h1,
h2,
h3,
.drop-title,
.quote {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.95;
  margin-bottom: 26px;
  max-width: 860px;
}

h1 em,
h2 em,
.drop-title em,
.quote em {
  color: var(--f-sage);
  font-style: italic;
  font-weight: 300;
}

.lede {
  color: var(--f-ink-2);
  font-family: var(--f-display);
  font-size: clamp(21px, 2.2vw, 29px);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 30px;
  max-width: 670px;
}

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

.hero-image {
  border: 1px solid var(--f-ink);
  background: var(--f-paper-2);
  padding: 12px;
}

.hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.section {
  border-top: 1px solid rgba(22, 32, 26, 0.28);
  padding: 86px 0;
}

.section.alt {
  background: var(--f-paper-2);
}

.section.dark {
  background: var(--f-ink);
  color: var(--f-paper);
}

.section.dark .eyebrow,
.section.dark h2 em {
  color: var(--f-ember);
}

.section.dark p,
.section.dark .fine {
  color: #c9cdbf;
}

h2 {
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 900px;
}

.section p {
  color: var(--f-ink-2);
  font-size: 16.5px;
  max-width: 720px;
}

.grid-3 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.card,
.product-card,
.note-card {
  background: var(--f-white);
  border: 1px solid rgba(22, 32, 26, 0.28);
}

.card {
  padding: 30px;
}

.card h3,
.product-card h3,
.note-card h3 {
  font-size: 29px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.card p,
.product-card p,
.note-card p {
  color: var(--f-ink-2);
  font-size: 14.5px;
}

.product-card {
  text-decoration: none;
}

.product-card img {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(22, 32, 26, 0.28);
  object-fit: cover;
  width: 100%;
}

.product-copy {
  padding: 24px;
}

.product-meta {
  color: var(--f-sage);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.split {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: 1fr 1fr;
}

.split img {
  border: 1px solid var(--f-ink);
  width: 100%;
}

.stats {
  border-top: 1px solid rgba(22, 32, 26, 0.28);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
}

.stat {
  border-right: 1px solid rgba(22, 32, 26, 0.28);
  padding: 26px 18px 22px 0;
}

.stat:last-child {
  border-right: 0;
}

.stat-value {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  color: var(--f-sage);
  margin-top: 10px;
}

.drop-title {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  margin-bottom: 24px;
}

.drop-hero {
  background: var(--f-moss);
  color: var(--f-paper);
  padding: 82px 0;
}

.drop-hero p {
  color: #d5dacb;
}

.drop-list {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.drop-row {
  align-items: center;
  background: var(--f-white);
  border: 1px solid rgba(22, 32, 26, 0.26);
  display: grid;
  gap: 26px;
  grid-template-columns: 180px 1fr auto;
  padding: 18px;
}

.drop-row img {
  aspect-ratio: 1;
  object-fit: cover;
}

.drop-row h3 {
  font-family: var(--f-display);
  font-size: 31px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}

.drop-row p {
  font-size: 14.5px;
  max-width: 620px;
}

.tag {
  background: rgba(122, 140, 92, 0.15);
  border: 1px solid rgba(122, 140, 92, 0.32);
  color: var(--f-ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 8px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.journal {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 46px;
}

.note-card {
  padding: 34px;
}

.quote {
  color: var(--f-paper);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.footer {
  background: var(--f-ink);
  border-top: 1px solid var(--f-ember);
  color: var(--f-paper);
  padding: 64px 0 34px;
}

.footer-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer .wordmark {
  color: var(--f-paper);
  display: inline-block;
  margin-bottom: 10px;
}

.footer p,
.footer a,
.footer li {
  color: #c9cdbf;
  font-size: 13px;
  list-style: none;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer h4 {
  color: var(--f-ember);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(214, 190, 125, 0.24);
  color: #9fa997;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10px;
  gap: 12px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  margin-top: 48px;
  padding-top: 20px;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .journal {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .drop-row .tag {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .roamad-band {
    padding: 6px 12px;
    font-size: 8px;
    line-height: 1.35;
    letter-spacing: 0.11em;
  }

  .site-nav {
    position: static;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 18px;
  }

  .wordmark {
    font-size: 24px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .nav-links a {
    padding-bottom: 2px;
  }

  .nav-links a,
  .nav-cta {
    font-size: 8.5px;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    display: none;
  }

  .container,
  .narrow {
    padding: 0 22px;
  }

  .hero,
  .section,
  .drop-hero {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(48px, 18vw, 74px);
  }

  .grid-3,
  .footer-grid,
  .stats,
  .drop-row {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(22, 32, 26, 0.22);
  }
}
