:root {
  color-scheme: light;
  --ink: #1d211d;
  --muted: #646b63;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dfddd5;
  --sage: #5f745f;
  --clay: #b36a45;
  --charcoal: #252727;
  --shadow: 0 18px 50px rgba(31, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(37, 39, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a,
.footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--sage);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
}

.header-action,
.button.primary {
  background: var(--charcoal);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  padding: clamp(92px, 12vw, 150px) clamp(24px, 6vw, 84px) clamp(34px, 6vw, 80px) 44%;
  background: #f6f4ef;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(22, 24, 22, 0.86) 0%, rgba(22, 24, 22, 0.66) 42%, rgba(22, 24, 22, 0.04) 76%);
}

.hero-content {
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  padding-top: 64px;
  color: #fff;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d2b9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.intro,
.products,
.quality,
.about,
.contact {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  background: var(--panel);
}

.intro p:last-child,
.quality-copy p,
.about-panel p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
  max-width: 980px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(31, 34, 31, 0.04);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(223, 221, 213, 0.8);
  border-radius: 6px;
  background: #f7f7f4;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9efe6;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-card a {
  margin-top: auto;
  color: var(--clay);
  font-weight: 800;
}

.quality {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background: #eef1ea;
}

.quality-copy p {
  margin-top: 20px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 22px;
  border-left: 4px solid var(--sage);
  background: rgba(255, 255, 255, 0.7);
}

.feature-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.about {
  background: var(--paper);
}

.about-panel {
  max-width: 980px;
}

.about-panel p {
  max-width: 720px;
  margin-top: 20px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--charcoal);
  color: #fff;
}

.contact .section-label {
  color: #f2d2b9;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact .button.primary {
  background: #fff;
  color: var(--charcoal);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #171918;
  color: rgba(255, 255, 255, 0.68);
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    background: rgba(251, 250, 246, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 0;
  }

  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(22, 24, 22, 0.82) 0%, rgba(22, 24, 22, 0.56) 50%, rgba(22, 24, 22, 0.08) 100%);
  }

  .hero-image {
    object-position: center bottom;
    padding: 360px 24px 44px;
  }

  .hero-content {
    margin: 0 20px;
  }

  .intro,
  .quality {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .hero-content {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 230px;
  }

  .footer {
    flex-direction: column;
  }
}
