:root {
  --ink: #19211f;
  --muted: #68716d;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --line: #dde1d8;
  --accent: #315f4f;
  --accent-2: #b85f48;
  --soft: #edf0e8;
  --shadow: 0 22px 70px rgba(25, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 251, 247, 0.9);
  border-bottom: 1px solid rgba(221, 225, 216, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 15px;
}

.cart-button,
.primary-link,
.product-buy button,
.pay-button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 70px));
  padding: clamp(42px, 8vw, 86px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.78), rgba(13, 18, 16, 0.36) 48%, rgba(13, 18, 16, 0.08)),
    linear-gradient(0deg, rgba(251, 251, 247, 0.88), rgba(251, 251, 247, 0) 18%);
}

.hero-content {
  align-self: center;
  width: min(650px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1b4a2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.primary-link,
.pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.benefits {
  display: grid;
  gap: 12px;
}

.benefits span {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
  font-weight: 700;
}

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

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

.product-card {
  display: grid;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(25, 33, 31, 0.07);
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-info {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.product-info p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-buy strong {
  font-size: 18px;
}

.product-buy button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.cart-panel.is-open {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 20, 0.44);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto auto;
  width: min(470px, 100%);
  height: 100%;
  padding: 24px;
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  font-size: 34px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cart-item button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.cart-empty {
  margin: 18px 0;
  color: var(--muted);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.checkout {
  display: grid;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout h3 {
  margin-bottom: 0;
}

.checkout label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.checkout input,
.checkout textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.payment-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.pay-button {
  width: 100%;
}

.checkout-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.checkout-consent input {
  width: auto;
  margin-top: 3px;
}

.checkout-consent a {
  color: var(--accent);
}

.site-footer {
  margin-top: 40px;
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer .eyebrow {
  color: #f1b4a2;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

.site-footer a:hover {
  text-decoration-color: #f1b4a2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-copy {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #f1b4a2;
}

.cookie-banner button {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.legal-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(280px, 36vh, 420px);
  padding: clamp(36px, 6vw, 80px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
}

.legal-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("https://images.unsplash.com/photo-1570451488142-71d08e1511e3?auto=format&fit=crop&w=2200&q=70");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.legal-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.82), rgba(13, 18, 16, 0.45) 55%, rgba(13, 18, 16, 0.18)),
    linear-gradient(0deg, rgba(13, 18, 16, 0.4), rgba(13, 18, 16, 0));
}

.legal-hero-inner {
  width: min(820px, 100%);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.legal-back:hover {
  color: #f1b4a2;
}

.legal-hero .eyebrow {
  color: #f1b4a2;
}

.legal-hero h1 {
  margin: 4px 0 14px;
  max-width: 18ch;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
}

.legal-hero .meta {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 100px);
  font-size: 16px;
  line-height: 1.7;
  color: #2a3331;
}

.legal-body h2 {
  position: relative;
  margin: 44px 0 16px;
  padding-top: 18px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.legal-body h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.legal-body > h2:first-child,
.legal-body > .legal-card + h2 {
  margin-top: 8px;
}

.legal-body p {
  margin: 0 0 16px;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--accent-2);
}

.legal-body .meta {
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.legal-card {
  margin: 0 0 32px;
  padding: 24px 26px;
  background: var(--soft);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
}

.legal-card dl {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 12px 24px;
  margin: 0;
}

.legal-card dt {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-card dd {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.legal-card a {
  color: var(--accent);
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cookie-banner button {
    width: 100%;
  }

  .legal-card dl {
    grid-template-columns: 1fr;
  }

  .legal-card dt {
    margin-top: 6px;
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 670px;
  }

  .intro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav a {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .product-buy button {
    width: 100%;
  }

  .cart-drawer {
    padding: 18px;
  }
}
