:root {
  --bg: #f6f1eb;
  --surface: #fffdfa;
  --surface-soft: #f3ece3;
  --text: #1f1a16;
  --muted: #6f665d;
  --border: rgba(31, 26, 22, 0.12);
  --accent: #c98f2c;
  --accent-dark: #8f6520;
  --shadow: 0 24px 60px rgba(31, 26, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 235, 0.9);
  border-bottom: 1px solid var(--border);
}

.header-inner,
.footer-inner,
.hero-grid,
.split-grid,
.compliance-grid,
.contact-panel,
.info-band {
  display: grid;
  gap: 24px;
}

.header-inner {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 76px;
}

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

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

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav {
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-nav a:hover,
.contact-details a:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 96px 0 36px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.content-block h2,
.contact-panel h2,
.simple-page h1 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  max-width: 12ch;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead {
  margin: 20px 0 0;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

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

.button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.button.primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts,
.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-facts li,
.feature-list li {
  position: relative;
  padding-left: 18px;
}

.hero-facts li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-media img,
.media-stack img,
.product-card img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 4 / 5;
}

.section {
  padding: 36px 0;
}

.section-tight {
  padding-top: 18px;
}

.section-muted {
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(31, 26, 22, 0.05);
  border-bottom: 1px solid rgba(31, 26, 22, 0.05);
}

.info-band,
.contact-panel {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.content-block h2,
.contact-panel h2,
.simple-page h1 {
  font-size: clamp(1.9rem, 2vw, 2.7rem);
}

.cards {
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.product-card,
.contact-details,
.legal-copy,
.content-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card,
.content-block,
.legal-copy {
  padding: 24px;
}

.card h3,
.product-copy h3,
.legal-copy h2 {
  margin: 0 0 10px;
}

.card p,
.content-block p,
.compliance-copy p,
.contact-panel p,
.legal-copy p {
  margin: 0;
  color: var(--muted);
}

.split-grid,
.compliance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 4 / 4.4;
}

.product-copy {
  padding: 18px 18px 20px;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

.label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.simple-page {
  padding: 56px 0 72px;
}

.legal-copy {
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .compliance-grid,
  .info-band,
  .contact-panel,
  .three-up,
  .product-grid,
  .two-up,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    padding-top: 88px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}
