:root {
  --ink: #211713;
  --espresso: #3b241a;
  --coffee: #6d3f27;
  --copper: #b46a3f;
  --cream: #fbf4e8;
  --oat: #eee0cc;
  --stone: #d8c2ab;
  --white: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  min-height: 88px;
  padding: 18px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(251, 244, 232, 0.96);
  border-bottom: 1px solid rgba(33, 23, 19, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.logo-brand img {
  width: clamp(154px, 16vw, 230px);
  height: auto;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 14px;
  font-weight: 500;
  color: rgba(33, 23, 19, 0.78);
}

.main-nav a,
.nav-cta,
.button {
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(33, 23, 19, 0.28);
  background: rgba(255, 250, 242, 0.6);
}

.hero {
  position: relative;
  min-height: clamp(540px, 72vw, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--oat);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 244, 232, 0.94) 0%, rgba(251, 244, 232, 0.82) 34%, rgba(251, 244, 232, 0.1) 68%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 82px);
  padding: 58px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(68px, 10vw, 132px);
  color: var(--espresso);
}

.hero-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 28px;
  color: rgba(33, 23, 19, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

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

.intro,
.product-lines,
.features,
.contact-band {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(46px, 6vw, 80px);
  background: var(--white);
}

.intro h2,
.section-heading h2,
.contact-band h2 {
  margin-bottom: 0;
  color: var(--espresso);
  font-size: clamp(38px, 5vw, 76px);
}

.intro > p {
  align-self: end;
  max-width: 720px;
  margin-bottom: 4px;
  color: rgba(33, 23, 19, 0.74);
  font-size: clamp(18px, 2.1vw, 25px);
}

.product-lines {
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(58px, 8vw, 106px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.line-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 32vw);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.line-slider::-webkit-scrollbar {
  height: 9px;
}

.line-slider::-webkit-scrollbar-track {
  background: rgba(33, 23, 19, 0.08);
  border-radius: 999px;
}

.line-slider::-webkit-scrollbar-thumb {
  background: rgba(109, 63, 39, 0.48);
  border-radius: 999px;
}

.product-card {
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(33, 23, 19, 0.1);
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--oat);
}

.product-card div {
  padding: 18px 18px 22px;
}

.product-card p {
  margin-bottom: 8px;
  color: var(--copper);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.product-card h3,
.feature h3 {
  margin-bottom: 9px;
  color: var(--espresso);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
}

.product-card span,
.feature p {
  color: rgba(33, 23, 19, 0.68);
  font-size: 14px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: rgba(33, 23, 19, 0.14);
}

.feature {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(26px, 4vw, 44px);
  background: var(--cream);
}

.feature p {
  max-width: 310px;
  margin-bottom: 0;
}

.contact-band {
  padding-top: clamp(58px, 8vw, 108px);
  padding-bottom: clamp(66px, 8vw, 116px);
  text-align: center;
  background: var(--espresso);
}

.contact-band .eyebrow {
  color: var(--stone);
}

.contact-band h2 {
  width: min(760px, 100%);
  margin: 0 auto 26px;
  color: var(--white);
}

.contact-band .button.primary {
  color: var(--espresso);
  background: var(--white);
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 680px;
    align-items: end;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(251, 244, 232, 0.96) 0%, rgba(251, 244, 232, 0.85) 44%, rgba(251, 244, 232, 0.05) 78%);
  }

  .hero-copy {
    margin: 0 auto;
    padding-bottom: 42px;
  }

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

  .line-slider {
    grid-auto-columns: minmax(254px, 82vw);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
    gap: 14px;
  }

  .logo-brand img {
    width: 156px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 16px;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: clamp(56px, 19vw, 82px);
  }

  .intro h2,
  .section-heading h2,
  .contact-band h2 {
    font-size: 38px;
  }

  .section-heading {
    display: block;
  }
}
