:root {
  color-scheme: light;
  --background: #efe6da;
  --foreground: #241914;
  --card: #f8f2ea;
  --card-strong: #fff8ef;
  --primary: #2a211d;
  --primary-foreground: #fff7ef;
  --secondary: #e7dbcd;
  --secondary-foreground: #40342d;
  --muted: #e8ddd0;
  --muted-foreground: #6f5e53;
  --accent: #cf4422;
  --accent-soft: rgba(207, 68, 34, 0.12);
  --border: #d8cab9;
  --ring: rgba(41, 29, 19, 0.09);
  --shadow: 0 18px 50px var(--ring);
  --shadow-soft: 0 10px 30px rgba(41, 29, 19, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--foreground);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(207, 68, 34, 0.13), transparent 25rem),
    radial-gradient(circle at 92% 24%, rgba(42, 33, 29, 0.08), transparent 24rem),
    linear-gradient(180deg, #fbf1e6 0%, var(--background) 48rem);
}

body::before {
  background-image:
    linear-gradient(rgba(36, 25, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 25, 20, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, black, transparent 66%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(207, 68, 34, 0.35);
  outline-offset: 3px;
}

.shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 24px 20px 42px;
}

.shell--narrow {
  max-width: 920px;
}

.site-header,
.panel,
.summary-strip {
  background: rgba(248, 242, 234, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header {
  align-items: center;
  border-radius: 24px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 16px;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  display: block;
  height: 58px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  padding: 11px 13px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  background: var(--secondary);
  color: var(--foreground);
  transform: translateY(-1px);
}

.button,
.nav-links .button {
  align-items: center;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary-foreground);
  display: inline-flex;
  font-size: 14px;
  font-weight: 720;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 14px 18px;
  text-decoration: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  box-shadow: var(--shadow-soft);
  opacity: 0.94;
  transform: translateY(-1px);
}

.button--small {
  min-height: 38px;
  padding: 11px 15px;
}

.button--quiet {
  background: var(--card);
  border-color: var(--border);
  color: var(--foreground);
}

.hero {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  margin-top: 18px;
}

.hero__copy,
.product-card {
  border-radius: 32px;
}

.hero__copy {
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.72), rgba(248, 242, 234, 0.86)),
    var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 580px;
  padding: clamp(30px, 5vw, 56px);
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 7.5vw, 84px);
  line-height: 0.95;
  margin: 18px 0 0;
  max-width: 780px;
}

h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.08;
  margin: 10px 0 0;
}

p,
li {
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.75;
}

.lede {
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 650px;
}

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

.product-card {
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 106, 66, 0.17), transparent 18rem),
    linear-gradient(160deg, #2a211d 0%, #17110e 100%);
  box-shadow: var(--shadow);
  color: var(--primary-foreground);
  display: flex;
  flex-direction: column;
  min-height: 580px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.product-card::after {
  background:
    linear-gradient(rgba(255, 247, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 239, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.product-card__topline {
  align-items: center;
  color: rgba(255, 247, 239, 0.7);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.product-card__brand {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: 210px;
  position: relative;
  z-index: 1;
}

.product-card__brand img {
  display: block;
  max-width: min(82%, 360px);
}

.review-panel {
  background: rgba(255, 248, 239, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  color: var(--foreground);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.review-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.review-list div {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
  grid-template-columns: 118px minmax(0, 1fr);
  padding-top: 16px;
}

.review-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.review-list dt {
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-list dd {
  color: var(--foreground);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.55;
  margin: 0;
}

.review-list a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(207, 68, 34, 0.48);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.signal-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 0.72fr 0.44fr;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.signal-row span {
  background: rgba(255, 247, 239, 0.3);
  border-radius: 999px;
  height: 8px;
}

.summary-strip {
  border-radius: 28px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
}

.summary-strip div {
  background: rgba(248, 242, 234, 0.72);
  color: var(--secondary-foreground);
  font-size: 15px;
  font-weight: 580;
  line-height: 1.55;
  min-height: 144px;
  padding: 24px;
}

.summary-strip span {
  color: var(--muted-foreground);
  display: block;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

.card {
  border-radius: 28px;
  min-height: 240px;
  padding: 28px;
}

.card h2 {
  font-size: 30px;
}

.card p:last-child {
  margin-bottom: 0;
}

.text-link {
  color: var(--foreground);
  display: inline-block;
  font-weight: 760;
  margin-top: 12px;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(207, 68, 34, 0.48);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.policy {
  border-radius: 32px;
  margin-top: 18px;
  padding: clamp(28px, 5vw, 52px);
}

.policy__logo {
  display: block;
  height: auto;
  margin-bottom: 26px;
  max-width: 220px;
  width: 48%;
}

.policy h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.policy h2 {
  font-size: 24px;
  margin-top: 34px;
}

.policy ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.notice {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 22px;
  color: var(--foreground);
  font-weight: 600;
  margin-top: 24px;
  padding: 18px;
}

.site-footer {
  color: var(--muted-foreground);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 12px;
  justify-content: space-between;
  padding: 24px 4px 0;
}

.site-footer a {
  color: inherit;
}

@media (max-width: 900px) {
  .shell {
    padding: 14px 12px 30px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .summary-strip,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .product-card {
    min-height: auto;
  }

  .product-card {
    padding: 16px;
  }

  .summary-strip div {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-radius: 22px;
    padding: 12px;
  }

  .brand__logo {
    height: 48px;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a,
  .nav-links .button {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__copy,
  .card,
  .policy {
    padding: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-card__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .product-card__brand {
    min-height: 170px;
  }

  .review-panel {
    padding: 20px;
  }

  .review-list div {
    grid-template-columns: 1fr;
  }

  .policy__logo {
    max-width: 180px;
    width: 64%;
  }
}
