:root {
  color-scheme: light;
  --ink: #1f2724;
  --muted: #68736e;
  --paper: #fffdf8;
  --panel: #ffffff;
  --forest: #184239;
  --moss: #dce7d8;
  --wine: #7a263c;
  --brass: #c79b4b;
  --line: #e6e1d7;
  --shadow: 0 24px 70px rgba(24, 66, 57, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 155, 75, 0.18), transparent 34rem),
    linear-gradient(180deg, #f7f3ea 0%, var(--paper) 28rem, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 39, 36, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand {
  display: grid;
  gap: 0.1rem;
  text-decoration: none;
}

.brand-mark {
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-line {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--forest);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.05rem;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  border: 1px solid var(--forest);
  color: #ffffff;
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(24, 66, 57, 0.18);
}

.button:hover {
  background: #102f28;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--forest);
  background: #ffffff;
}

.button-secondary:hover {
  border-color: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.4rem) 0 1.4rem;
}

.hero::before {
  position: absolute;
  inset: 2% auto auto 23%;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(199, 155, 75, 0.26);
  border-radius: 999px;
  content: "";
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(360px, 1.05fr) minmax(180px, 0.38fr);
  gap: 0.75rem;
  align-items: center;
  min-height: 600px;
}

.hero-copy-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(1rem, 2vw, 1.5rem) clamp(0rem, 1vw, 1rem);
}

.eyebrow {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 4.8vw, 4.65rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 31rem;
  color: #46514d;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.15rem 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid rgba(199, 155, 75, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-item {
  min-height: 88px;
  border-left: 1px solid rgba(199, 155, 75, 0.24);
  padding: 0.75rem 0.55rem;
  text-align: center;
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item strong {
  display: block;
  color: var(--ink);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-product-stage,
.hero-side-card {
  overflow: hidden;
  border: 1px solid rgba(31, 39, 36, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(24, 66, 57, 0.12);
}

.hero-product-stage {
  padding: clamp(0.7rem, 2vw, 1.2rem);
}

.hero-product-stage img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
}

.hero-side-stack {
  display: grid;
  gap: 0.75rem;
}

.hero-side-card {
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  padding: 0.72rem;
  text-align: center;
}

.hero-side-card h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.hero-side-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.side-icon {
  color: var(--brass);
  font-size: 1.4rem;
}

.hero-side-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.hero-side-card.gift img {
  max-height: 132px;
  border-radius: 6px;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  width: 100%;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.mini-stats strong {
  display: block;
  color: var(--brass);
  font-size: 1.2rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.section-heading p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(31, 39, 36, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f2eee6;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  border: 1px solid rgba(24, 66, 57, 0.14);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: var(--forest);
  background: var(--moss);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-body h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.product-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
}

.story-band {
  background: linear-gradient(135deg, var(--forest), #21302b 68%, #432332);
}

.story-band .section {
  color: #ffffff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.benefit {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.benefit strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #f7dfa8;
}

.benefit span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  color: var(--muted);
  text-align: center;
}

.detail-hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--forest);
  text-decoration: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.gallery {
  display: grid;
  gap: 0.75rem;
}

.main-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.main-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.thumb {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(24, 66, 57, 0.13);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.detail-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(255, 255, 255, 0.88);
}

.detail-info h1 {
  max-width: none;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  color: var(--brass);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bullet-list {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.1rem;
  color: #39443f;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
}

.spec {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #ffffff;
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--forest);
}

.aplus {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.aplus h2 {
  color: var(--forest);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.aplus-modules {
  display: grid;
  gap: 0;
}

.aplus-modules img {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.related {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.policy-page {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.policy-hero {
  margin-bottom: 1.5rem;
}

.policy-hero h1 {
  max-width: none;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.policy-hero p {
  max-width: 760px;
  color: #46514d;
  font-size: 1.04rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.policy-card {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(31, 39, 36, 0.06);
}

.policy-card h2 {
  margin-bottom: 0.65rem;
  color: var(--forest);
  font-size: 1.35rem;
}

.policy-card p,
.policy-card li {
  color: #46514d;
}

.policy-card a,
.footer a {
  color: var(--forest);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .hero-layout,
  .product-grid,
  .benefit-grid,
  .spec-strip {
    grid-template-columns: 1fr;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .feature-frame {
    min-height: auto;
  }

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

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