* {
  box-sizing: border-box;
}

:root {
  --paper: #f7f6f2;
  --sand: #ddd9cd;
  --ink: #050505;
  --muted: #6f6b63;
  --line: rgba(5, 5, 5, 0.18);
  --green: #173b2b;
  --orange: #ff8500;
  --header: 76px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header);
  display: grid;
  grid-template-columns: 180px 1fr 206px 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.78);
  backdrop-filter: blur(16px);
}

.topbar > * {
  min-height: var(--header);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}

.brand-cell {
  padding: 0 30px;
}

.brand-cell img {
  width: 112px;
  height: auto;
}

.nav-cell {
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  color: #3f3b34;
  font-size: 0.96rem;
  font-weight: 570;
}

.how-cell,
.cart-cell {
  justify-content: center;
  font-weight: 650;
}

.cart-cell {
  border-right: 0;
}

.cart-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: -8px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.page-hero {
  min-height: 100svh;
  padding: calc(var(--header) + 34px) 30px 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--sand);
}

.hero-copy {
  display: grid;
  align-content: space-between;
  min-height: calc(100svh - var(--header) - 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 9vw, 11rem);
  line-height: 0.84;
  letter-spacing: 0;
  font-weight: 680;
}

.lead {
  max-width: 560px;
  color: #5f5b53;
  font-size: clamp(1.04rem, 1.55vw, 1.3rem);
  line-height: 1.46;
}

.hero-media {
  min-height: 520px;
  align-self: stretch;
  border-left: 1px solid var(--line);
  overflow: hidden;
  background: #d7d1c1;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  font-weight: 740;
}

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

.band {
  padding: clamp(70px, 8vw, 120px) 30px;
  border-top: 1px solid var(--line);
}

.band.dark {
  background: #11140f;
  color: #fff;
}

.band.dark .eyebrow,
.band.dark p {
  color: rgba(255, 255, 255, 0.62);
}

.section-head {
  max-width: 1320px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.6vw, 5.8rem);
  line-height: 0.9;
  font-weight: 640;
}

.section-head p {
  color: var(--muted);
  line-height: 1.5;
}

.grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tile {
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f7f3;
  overflow: hidden;
}

.tile img,
.tile video {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.tile-copy {
  padding: 22px;
}

.tile-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.04;
}

.tile-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.wide-feature {
  max-width: 1320px;
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  border: 1px solid var(--line);
  background: #f6f4ee;
}

.wide-feature img,
.wide-feature video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-copy {
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  align-content: center;
}

.wide-copy h2 {
  font-size: clamp(2.4rem, 5vw, 6.4rem);
  line-height: 0.9;
  font-weight: 620;
}

.stat-strip {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  min-height: 190px;
  padding: 24px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.stat strong {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1;
  font-weight: 620;
}

.stat span {
  margin-top: 12px;
  color: var(--muted);
}

.page-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 30px;
  border-top: 1px solid var(--line);
  background: #f7f7f8;
}

.page-footer img {
  width: min(280px, 45vw);
}

.page-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr 68px;
  }

  .brand-cell {
    padding: 0 18px;
  }

  .nav-cell,
  .how-cell {
    display: none;
  }

  .page-hero,
  .section-head,
  .wide-feature {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 7rem);
  }

  .hero-media {
    min-height: 430px;
    border-left: 0;
  }

  .grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

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