:root {
  color: #17120f;
  background: #fffaf4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 255, 255, 0.98) 420px),
    #fffaf4;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 106px;
  height: 74px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: #6c6258;
  font-size: 0.78rem;
  line-height: 1.25;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 28px);
  font-weight: 800;
  color: #372d25;
}

nav a {
  padding: 8px 0;
}

nav a:hover {
  color: #d92222;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(30px, 5vw, 62px) clamp(18px, 5vw, 72px) 28px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #b51f1f;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-text,
.intro > p,
.split-copy p,
.contact-copy p,
.service-band p {
  color: #4f463d;
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  background: #d92222;
  color: #fff;
  box-shadow: 0 16px 28px rgba(217, 34, 34, 0.22);
}

.button.secondary {
  border-color: rgba(23, 18, 15, 0.18);
  background: #fff;
}

.button.full {
  width: 100%;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid #17120f;
  border-radius: 8px;
  box-shadow: 20px 20px 0 #2e7d32;
}

.hero-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(250px, 70%);
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(23, 18, 15, 0.2);
}

.hero-card span,
.tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: #2e7d32;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(23, 18, 15, 0.1);
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
  background: #17120f;
  color: #fff;
}

.proof-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 84px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.proof-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #f7c84b;
  font-size: 0.78rem;
  font-weight: 950;
}

.proof-strip div:last-child {
  border-right: 0;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 15, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(23, 18, 15, 0.06);
}

.product-card.featured {
  grid-column: span 2;
  flex-direction: column;
}

.product-card.featured img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-body p {
  color: #574d44;
  line-height: 1.55;
}

.product-body ul,
.cut-list ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.product-body li {
  position: relative;
  padding-left: 18px;
  color: #332923;
  font-weight: 800;
}

.product-body li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #2e7d32;
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #f3f8ef;
}

.split-copy {
  position: sticky;
  top: 112px;
}

.cut-list {
  display: grid;
  gap: 14px;
}

.cut-list article {
  padding: 24px;
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: 8px;
  background: #fff;
}

.cut-list h3 {
  margin-bottom: 14px;
}

.cut-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(23, 18, 15, 0.1);
  color: #4f463d;
  font-weight: 800;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #17120f;
  color: #fff;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #f7c84b;
  font-weight: 950;
}

.service-band p {
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  background: #fff;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(23, 18, 15, 0.12);
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: 0 18px 36px rgba(23, 18, 15, 0.08);
}

.contact-panel a:not(.button),
.contact-panel span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
  color: #332923;
  font-weight: 850;
  line-height: 1.35;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(23, 18, 15, 0.1);
  background: #fffaf4;
  color: #4f463d;
}

.footer-brand .brand-logo {
  width: 96px;
  height: 68px;
}

@media (max-width: 1040px) {
  .hero,
  .intro,
  .split,
  .service-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .split-copy {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 90px;
    height: 62px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.9rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-media img {
    border-width: 5px;
    box-shadow: 10px 10px 0 #2e7d32;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

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

  .proof-strip div {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .product-card.featured {
    grid-column: auto;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
