:root {
  --ink: #15130f;
  --graphite: #25221d;
  --muted: #70695f;
  --paper: #fbf7ef;
  --cream: #fffdf7;
  --sand: #eadfce;
  --line: #ddd0be;
  --clay: #b97958;
  --rose: #d8a4a0;
  --moss: #879274;
  --shadow: 0 28px 72px rgba(31, 26, 19, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

.topbar {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  background: var(--graphite);
  color: #efe7da;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(251, 247, 239, .88);
  border-bottom: 1px solid rgba(221, 208, 190, .82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, #fff 0 10%, transparent 11%),
    conic-gradient(from 140deg, var(--moss), #8292a0, var(--rose), var(--clay), var(--moss));
  box-shadow: inset 0 0 0 1px rgba(21, 19, 15, .15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #514b43;
  font-weight: 720;
  font-size: 14px;
}

.button,
button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  font-weight: 780;
  cursor: pointer;
  white-space: nowrap;
}

.button.light {
  background: rgba(255, 253, 247, .84);
  color: var(--ink);
  border: 1px solid rgba(21, 19, 15, .14);
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 4vw, 58px) clamp(54px, 7vw, 90px);
  background:
    radial-gradient(circle at 22% 18%, rgba(216, 164, 160, .22), transparent 28%),
    linear-gradient(135deg, #fbf2e7, #e9ddcd 58%, #d0bda8);
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 860;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .94;
  font-weight: 800;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  font-weight: 800;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.08;
}
.lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #49433b;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(18px, 4vw, 58px);
}

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

.card,
.policy-block,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 26px;
}

.card p,
.policy-block p,
.form-panel p,
.table-row span,
.small-copy {
  color: var(--muted);
  line-height: 1.58;
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  align-content: space-between;
}
.product-card img {
  aspect-ratio: 1.2 / .82;
  object-fit: cover;
  background: var(--sand);
}
.product-body { padding: 24px; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 22px;
}
.price {
  font-size: 28px;
  font-weight: 860;
}
.compare {
  color: var(--muted);
  text-decoration: line-through;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pill {
  border-radius: 999px;
  padding: 8px 10px;
  background: #efe5d7;
  color: #5c554b;
  font-size: 12px;
  font-weight: 760;
}

.table {
  border-top: 1px solid var(--line);
}
.table-row {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.notice {
  border-radius: var(--radius);
  padding: 26px;
  background:
    radial-gradient(circle at 14% 20%, rgba(216, 164, 160, .24), transparent 28%),
    linear-gradient(135deg, #fff8ee, #eadfce);
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
label {
  display: grid;
  gap: 8px;
  color: #514b43;
  font-size: 13px;
  font-weight: 760;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 253, 247, .88);
  color: var(--ink);
  font: inherit;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.full { grid-column: 1 / -1; }

.newsletter {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 164, 160, .24), transparent 28%),
    linear-gradient(135deg, #fff8ee, #eadfce);
  border: 1px solid var(--line);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.newsletter input {
  border-radius: 999px;
  min-width: 270px;
}

.footer {
  padding: 48px clamp(18px, 4vw, 58px);
  background: #11100d;
  color: var(--cream);
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 44px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.footer p,
.footer small,
.footer a {
  color: #c9bbae;
  line-height: 1.5;
}
.footer h3 {
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer a:hover { color: var(--cream); }
.footer small {
  display: block;
  margin-top: 18px;
  font-size: 12px;
}

@media (max-width: 960px) {
  .nav {
    height: auto;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 12px;
  }
  .nav-links {
    width: 100%;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter-form { justify-content: flex-start; }
}

@media (max-width: 620px) {
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .footer-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .newsletter input {
    min-width: 0;
    width: 100%;
  }
}
