:root {
  --ink: #13221a;
  --muted: #5e6f64;
  --leaf: #1f6f3d;
  --leaf-dark: #0d3d22;
  --mint: #e8f4dc;
  --clay: #a65c2a;
  --copper: #c96b2c;
  --cream: #fbfaf4;
  --line: #dce7d6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(19, 34, 26, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}

body.cart-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 231, 214, 0.78);
  background: rgba(251, 250, 244, 0.88);
  backdrop-filter: blur(18px);
}

.nav-links,
.cart-button,
.hero-actions,
.stats-row,
.product-meta,
.cart-header,
.cart-total,
.quantity-control,
.cta-section {
  display: flex;
  align-items: center;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.cart-button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  justify-self: end;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

.cart-count {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 76px) clamp(18px, 5vw, 76px) 44px;
  background:
    linear-gradient(110deg, rgba(232, 244, 220, 0.95) 0%, rgba(251, 250, 244, 0.72) 48%, rgba(255, 255, 255, 0.45) 100%),
    radial-gradient(circle at 88% 18%, rgba(201, 107, 44, 0.18), transparent 28%);
}

.hero-mobile-bg,
.hero-mobile-media,
.hero-slider-dots {
  display: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.primary {
  color: var(--white);
  background: var(--leaf-dark);
  box-shadow: 0 14px 30px rgba(13, 61, 34, 0.2);
}

.secondary {
  color: var(--leaf-dark);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.stats-row {
  align-items: stretch;
  gap: 12px;
  max-width: 720px;
}

.stats-row div {
  min-width: 0;
  flex: 1;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  margin-bottom: 5px;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-slide {
  min-width: 0;
  flex: 1;
}

.hero-media {
  position: relative;
  overflow: hidden;
  max-width: 85%;
  justify-self: end;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #9ad7f5;
}

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

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--leaf-dark);
}

.product-strip div {
  display: flex;
  gap: 18px;
  min-height: 110px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--leaf-dark);
}

.product-strip span {
  color: #9ed35c;
  font-weight: 900;
}

.product-strip p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.shop-section,
.benefits-section,
.details-section,
.cta-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.shop-section {
  padding-top: clamp(42px, 6vw, 84px);
  padding-bottom: clamp(46px, 6vw, 88px);
}

.shop-section .section-heading {
  margin-bottom: 18px;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-bottom: 34px;
}

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

.shop-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 6% 18%, rgba(201, 107, 44, 0.08), transparent 28%),
    radial-gradient(circle at 88% 86%, rgba(31, 111, 61, 0.08), transparent 30%);
  overflow: hidden;
}

.shop-story::before,
.shop-story::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.shop-story::before {
  right: -54px;
  top: -54px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 107, 44, 0.2);
  border-radius: 50%;
}

.shop-story::after {
  left: -68px;
  bottom: -78px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(31, 111, 61, 0.16);
  border-radius: 50%;
}

.shop-story-accents {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-story-accents span {
  position: absolute;
  border-radius: 999px;
}

.shop-story-accents span:nth-child(1) {
  top: 20px;
  right: 148px;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 107, 44, 0.38), transparent);
}

.shop-story-accents span:nth-child(2) {
  bottom: 22px;
  left: 110px;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(31, 111, 61, 0.28), transparent);
}

.shop-story-accents span:nth-child(3) {
  right: 116px;
  bottom: 44px;
  width: 8px;
  height: 8px;
  background: rgba(201, 107, 44, 0.42);
  box-shadow: 0 0 0 4px rgba(201, 107, 44, 0.1);
}

.shop-story-copy h3 {
  margin-bottom: 10px;
}

.shop-story-copy {
  position: relative;
  z-index: 1;
}

.shop-story-copy p {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.shop-story-copy p:last-child {
  margin-bottom: 0;
}

.material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.material-chips li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(232, 244, 220, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
}

.craft-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.95;
}

.craft-strip i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 111, 61, 0.2), rgba(201, 107, 44, 0.28));
}

.shop-story-media {
  position: relative;
  align-self: stretch;
  min-height: clamp(280px, 30vw, 380px);
  max-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.shop-story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 111, 61, 0.12), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(201, 107, 44, 0.14), transparent 36%);
  pointer-events: none;
}

.shop-story-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  pointer-events: none;
}

.shop-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-card,
.benefit-grid article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(19, 34, 26, 0.07);
}

.product-card {
  overflow: hidden;
}

.product-card.featured {
  border-color: rgba(201, 107, 44, 0.55);
  box-shadow: 0 24px 60px rgba(166, 92, 42, 0.16);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--copper);
  font-size: 0.75rem;
  font-weight: 900;
}

.product-image {
  aspect-ratio: 1.1 / 0.82;
  overflow: hidden;
  padding: 18px;
  background: var(--white);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-content {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.product-kicker {
  margin: 0;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content p:not(.product-kicker) {
  color: var(--muted);
  line-height: 1.55;
}

.product-toggle {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.84);
  font-weight: 900;
  cursor: pointer;
}

.product-toggle:hover {
  border-color: rgba(31, 111, 61, 0.5);
}

.product-details {
  display: grid;
  gap: 12px;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 260ms ease, opacity 180ms ease, transform 180ms ease, margin-top 180ms ease;
}

.product-card.is-expanded .product-details {
  max-height: 620px;
  margin-top: 2px;
  opacity: 1;
  transform: translateY(0);
}

.product-description {
  margin: 0;
  color: var(--muted);
}

.product-meta {
  justify-content: space-between;
  gap: 16px;
}

.product-meta span {
  font-size: 2rem;
  font-weight: 950;
}

.product-meta small {
  color: var(--muted);
  font-weight: 800;
}

.product-options {
  display: grid;
  gap: 12px;
}

.product-options > label,
.product-options fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-options > label > span,
.product-options legend {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-options select {
  width: 100%;
  min-height: 44px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--cream);
  cursor: pointer;
}

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

.product-options legend {
  grid-column: 1 / -1;
}

.product-options fieldset label {
  position: relative;
  min-width: 0;
}

.product-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-options fieldset span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--cream);
  cursor: pointer;
  font-weight: 900;
}

.product-options input:checked + span {
  color: var(--white);
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
}

.product-button {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.benefits-section {
  color: var(--white);
  background: #10281c;
}

.benefits-section .eyebrow {
  color: #9ed35c;
}

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

.benefit-grid article {
  min-height: 240px;
  padding: 28px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.benefit-icon {
  display: inline-grid;
  min-width: 54px;
  min-height: 38px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #cfeaa4;
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.details-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.details-media img {
  width: 100%;
  height: 620px;
  object-fit: contain;
}

.details-copy {
  max-width: 720px;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list span {
  color: var(--muted);
  font-weight: 800;
}

.wide {
  width: 100%;
}

.cta-section {
  justify-content: space-between;
  gap: clamp(22px, 4vw, 48px);
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 61, 34, 0.98), rgba(31, 111, 61, 0.92) 48%, rgba(166, 92, 42, 0.98)),
    radial-gradient(circle at 12% 30%, rgba(216, 240, 169, 0.22), transparent 34%);
}

.cta-copy {
  max-width: 720px;
}

.cta-copy h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.7vw, 4.9rem);
}

.cta-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.6;
}

.cta-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
  flex: 0 0 min(360px, 34vw);
}

.cta-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 30px rgba(19, 34, 26, 0.18);
}

.cta-section .eyebrow {
  color: #d7f0a9;
}

.shop-section .status-line {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: flex-end;
  background: rgba(19, 34, 26, 0.54);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100vw);
  min-height: 100vh;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
}

.cart-header,
.cart-footer {
  padding: 22px;
}

.cart-header {
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 1.55rem;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  padding: 22px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

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

.cart-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.quantity-control {
  gap: 10px;
}

.quantity-control button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
  font-weight: 900;
}

.cart-empty {
  display: none;
  padding: 22px;
  color: var(--muted);
}

.cart-empty.visible {
  display: block;
}

.cart-footer {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.cart-total {
  justify-content: space-between;
  font-size: 1.25rem;
}

.checkout-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

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

  .hero,
  .details-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media img,
  .details-media img {
    height: auto;
  }

  .hero-media {
    max-width: 100%;
    justify-self: stretch;
  }

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

  .shop-story {
    grid-template-columns: 1fr;
  }

  .shop-story-media {
    min-height: 220px;
    max-height: none;
  }

  .shop-story::before,
  .shop-story::after,
  .shop-story-accents {
    display: none;
  }

  .craft-strip {
    flex-wrap: wrap;
    gap: 8px;
  }

  .craft-strip i {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .cart-icon {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 0.96;
  }

  .hero {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 18px 16px 26px;
    border-bottom: 1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(232, 244, 220, 0.84) 0%, rgba(251, 250, 244, 0.96) 38%, rgba(255, 255, 255, 1) 100%);
  }

  .hero-mobile-bg {
    display: none;
  }

  .hero-copy {
    display: grid;
    gap: 12px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 2px;
    color: var(--clay);
  }

  .hero-copy h1 {
    margin-bottom: 8px;
    color: var(--ink);
    text-shadow: none;
    font-size: clamp(1.95rem, 10.5vw, 2.65rem);
  }

  .hero-text {
    max-width: 100%;
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    border: 1px solid rgba(19, 34, 26, 0.08);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-media {
    display: none;
  }

  .hero-mobile-media {
    display: block;
  }

  .hero-mobile-media img {
    width: 100%;
    max-height: min(62vh, 420px);
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: center 38%;
    border-radius: 10px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .hero-actions {
    margin: 4px 0 0;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 5px);
    min-height: 46px;
    padding: 0 14px;
    white-space: normal;
    text-align: center;
  }

  .stats-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, calc(100% - 18px));
    gap: 10px;
    margin-top: 14px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .stats-row::-webkit-scrollbar {
    display: none;
  }

  .stats-row .stat-slide {
    scroll-snap-align: start;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
  }

  .hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .hero-slider-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: rgba(13, 61, 34, 0.25);
    padding: 0;
    cursor: pointer;
  }

  .hero-slider-dot.is-active {
    background: var(--leaf-dark);
  }

  .product-strip div {
    min-height: 96px;
    padding: 20px 16px;
    gap: 14px;
  }

  .shop-section,
  .benefits-section,
  .details-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.3rem);
    line-height: 1.03;
  }

  .shop-story {
    gap: 14px;
    padding: 14px;
  }

  .cta-section {
    display: grid;
  }

  .cta-actions {
    justify-items: stretch;
    width: 100%;
  }

  .cta-link {
    width: 100%;
  }

  .product-content,
  .benefit-grid article {
    padding: 20px;
  }

  .spec-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 420px) {
  .hero-actions .button {
    flex-basis: 100%;
  }

  .product-strip p {
    font-size: 0.98rem;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .stats-row {
    scroll-behavior: auto;
  }
}
