:root {
  --ink: #17201a;
  --muted: #5f6b63;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: #d9d6cd;
  --green: #315f46;
  --red: #a63d32;
  --gold: #d8a441;
  --shadow: 0 24px 70px rgba(23, 32, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(23, 32, 26, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  font-weight: 800;
  background: var(--gold);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
  border-radius: 8px;
}

.nav-cta {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 6vw, 84px) 56px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 13, 0.9) 0%, rgba(10, 18, 13, 0.66) 42%, rgba(10, 18, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0) 24%);
}

.hero-content {
  position: relative;
  max-width: 740px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.feature-band,
.products,
.about,
.contact {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.product-list article,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 32, 26, 0.08);
}

.feature-card {
  min-height: 230px;
  padding: 28px;
}

.card-index {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--green);
  font-weight: 800;
}

.feature-card p,
.product-list p,
.about p,
.contact p {
  color: var(--muted);
}

.products {
  background: #fff;
}

.compact {
  margin-bottom: 26px;
}

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

.product-list article {
  padding: 26px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #eef2ea;
}

.about p {
  margin: 0;
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 28px;
  align-items: center;
  background: var(--green);
  color: #fff;
}

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

.contact p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 28px;
  color: var(--ink);
}

.contact-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(20px, 3vw, 28px);
}

.contact-card small {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 116px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 18, 13, 0.88) 0%, rgba(10, 18, 13, 0.68) 58%, rgba(10, 18, 13, 0.26) 100%),
      linear-gradient(0deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0) 22%);
  }

  .feature-grid,
  .product-list,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .card-index {
    margin-bottom: 24px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
