:root {
  --bg: #f2ece4;
  --text: #4a3f35;
  --muted: #9b8b7a;
  --white: #faf8f5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  padding: 36px 48px;
  display: flex;
  justify-content: center;
}
nav img { height: 240px; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 48px;
  padding: 40px 80px 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text);
}
h1 em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 380px;
}
.hero-image img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

/* ── Story ── */
.story {
  background: var(--white);
  padding: 96px 48px;
}
.story-inner {
  max-width: 660px;
  margin: 0 auto;
}
.story-lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 48px;
  color: var(--text);
}
.story-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 28px;
}
.story-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 36px;
  padding-left: 24px;
  border-left: 1px solid #d8cfc6;
}
.story-list span {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}
.story-highlight {
  font-family: var(--serif) !important;
  font-size: 21px !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  line-height: 1.6 !important;
}
.story-closing {
  font-family: var(--serif) !important;
  font-size: 19px !important;
  color: var(--text) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}
.story-closing em { font-style: italic; }

/* ── Products ── */
.products {
  padding: 96px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.products-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
  text-align: center;
}
.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}
.product-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-row img {
  width: 100%;
  display: block;
  border-radius: 3px;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.product-info h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.product-info p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ── Distributor ── */
.distributor {
  background: var(--text);
  padding: 96px 48px;
  text-align: center;
}
.distributor-inner {
  max-width: 580px;
  margin: 0 auto;
}
.distributor .eyebrow {
  color: #9b8b7a;
  margin-bottom: 20px;
}
.distributor h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: #faf8f5;
  margin-bottom: 28px;
  line-height: 1.2;
}
.distributor p {
  font-size: 15px;
  line-height: 1.8;
  color: #9b8b7a;
  margin-bottom: 20px;
}
.dist-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 40px;
  border: 1px solid #9b8b7a;
  color: #faf8f5;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dist-btn:hover {
  background: #9b8b7a;
  color: var(--text);
}

/* ── Footer ── */
footer {
  background: var(--text);
  padding: 72px 48px;
  text-align: center;
}
.footer-logo {
  height: 216px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
footer p {
  color: #b8a898;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.6;
}
.footer-domain {
  margin-top: 10px;
  color: #6a5a4a !important;
  font-size: 11px !important;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  nav { padding: 28px 24px; }
  nav img { height: 180px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 32px 24px 64px;
    gap: 36px;
  }
  .hero-image { order: -1; }
  .hero-sub { max-width: none; }

  .story { padding: 64px 24px; }

  .products { padding: 64px 24px; }
  .product-list { grid-template-columns: 1fr; }
  .product-row img { max-width: 100%; }

  .distributor { padding: 64px 24px; }

  footer { padding: 56px 24px; }
}
