:root {
  --ivory: #fbf7ef;
  --linen: #eee2d0;
  --beige: #d9cab4;
  --taupe: #8c7d6b;
  --forest: #213f32;
  --forest-soft: #315844;
  --walnut: #5d3f2d;
  --brass: #b98b49;
  --grey: #f2f1ee;
  --ink: #1b1a17;
  --muted: #6f6a61;
  --white: #fffdf8;
  --shadow: 0 20px 60px rgba(38, 29, 21, .14);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
button, input { font: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, .86);
  border-bottom: 1px solid rgba(93, 63, 45, .12);
  backdrop-filter: blur(18px);
}
.brand, .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--forest), var(--brass));
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(33, 63, 50, .22);
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: .92rem;
  font-weight: 700;
}
.primary-nav a {
  position: relative;
  padding: 10px 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(93, 63, 45, .18);
  border-radius: 999px;
  background: rgba(255, 253, 248, .7);
}
.cart-pill span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  color: var(--ivory);
  background: var(--forest);
  border-radius: 999px;
  font-size: .78rem;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(93, 63, 45, .18);
  border-radius: 999px;
  background: var(--white);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 10px 18px; font-size: .9rem; }
.btn-brass {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--walnut), var(--brass));
  box-shadow: 0 16px 34px rgba(93, 63, 45, .2);
}
.btn-ghost {
  color: var(--ivory);
  border-color: rgba(255, 253, 248, .58);
  background: rgba(255, 253, 248, .08);
  backdrop-filter: blur(8px);
}
.btn-ghost.dark {
  color: var(--forest);
  border-color: rgba(33, 63, 50, .22);
  background: transparent;
}
.btn-soft {
  color: var(--forest);
  background: var(--linen);
  border-color: rgba(93, 63, 45, .12);
}
.full { width: 100%; }
.hero {
  position: relative;
  min-height: clamp(780px, 86vh, 860px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(330px, .84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 74px) clamp(54px, 7vw, 92px);
  background: radial-gradient(circle at 82% 12%, rgba(185, 139, 73, .22), transparent 28%), linear-gradient(135deg, #fbf7ef 0%, #f3e9db 48%, #dfccb2 100%);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: -1;
  border: 1px solid rgba(93, 63, 45, .12);
  border-radius: var(--radius);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 12%;
  width: 42vw;
  height: 42vw;
  z-index: -2;
  background: linear-gradient(135deg, rgba(255, 253, 248, .52), rgba(185, 139, 73, .12));
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.hero-content {
  width: min(620px, 100%);
  color: var(--ink);
  animation: heroTextIn .7s ease both;
}
.hero-content .eyebrow {
  color: var(--walnut);
}
.hero h1 {
  max-width: 650px;
  color: #211a14;
  font-size: clamp(2.75rem, 5.2vw, 5.45rem);
  line-height: 1.02;
  letter-spacing: .005em;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 800;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: .98;
}
h1 { font-size: clamp(3rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.hero-subline {
  max-width: 600px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  color: #5f5549;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}
.hero-primary {
  color: #221811;
  background: linear-gradient(135deg, #d2a662, #f0d59d);
  border-color: rgba(93, 63, 45, .12);
  box-shadow: 0 18px 38px rgba(93, 63, 45, .18);
}
.hero-secondary {
  color: var(--walnut);
  background: rgba(255, 253, 248, .42);
  border-color: rgba(93, 63, 45, .22);
  box-shadow: 0 12px 26px rgba(93, 63, 45, .08);
}
.hero-primary:hover, .hero-secondary:hover {
  box-shadow: 0 22px 44px rgba(93, 63, 45, .18);
}
.hero-primary:focus-visible, .hero-secondary:focus-visible {
  outline: 3px solid rgba(185, 139, 73, .46);
  outline-offset: 4px;
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  max-width: 600px;
  padding-top: 8px;
}
.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4f453b;
  font-size: .92rem;
  font-weight: 800;
}
.hero-benefits i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--walnut);
  background: rgba(255, 253, 248, .62);
  border: 1px solid rgba(93, 63, 45, .12);
  border-radius: 50%;
}
.hero-visual {
  position: relative;
  min-height: 620px;
  animation: heroVisualIn .8s ease .08s both;
}
.hero-main-media, .hero-texture-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(93, 63, 45, .14);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-main-media {
  position: absolute;
  top: 18px;
  right: 0;
  width: min(82%, 710px);
  height: 560px;
}
.hero-main-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(33, 24, 17, .18));
  pointer-events: none;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: heroImageDrift 14s ease-in-out infinite alternate;
}
.hero-texture-card {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(42%, 330px);
}
.hero-texture-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.hero-texture-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px;
}
.hero-texture-card figcaption span {
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 900;
}
.hero-texture-card figcaption strong {
  color: var(--walnut);
  line-height: 1.25;
}
.hero-material-note {
  position: absolute;
  right: 6%;
  bottom: 0;
  display: grid;
  gap: 8px;
  width: min(270px, 40%);
  padding: 20px;
  background: rgba(255, 253, 248, .78);
  border: 1px solid rgba(93, 63, 45, .14);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(93, 63, 45, .12);
  backdrop-filter: blur(14px);
}
.hero-material-note span {
  color: var(--forest);
  font-size: .9rem;
  font-weight: 900;
}
.section-pad { padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 74px); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 760px) minmax(220px, 460px);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 44px;
}
.section-heading p:last-child { margin: 0; color: var(--muted); }
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 54px);
  font-size: 1.05rem;
}
.warm-band {
  background: linear-gradient(135deg, var(--linen), #f7efe2 50%, #e8d7bd);
}
.dark-band {
  color: var(--ivory);
  background: radial-gradient(circle at 20% 20%, rgba(185, 139, 73, .22), transparent 30%), linear-gradient(135deg, #172b24, #264838);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 22px;
  background: rgba(255, 253, 248, .62);
  border: 1px solid rgba(93, 63, 45, .12);
  border-radius: var(--radius);
  font-weight: 800;
}
.benefit i { color: var(--forest); font-size: 1.2rem; }
.editorial-grid, .catalog-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.editorial-card, .catalog-card, .blog-card, .legal-block, .principle {
  background: var(--white);
  border: 1px solid rgba(93, 63, 45, .12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(38, 29, 21, .07);
}
.editorial-card img, .catalog-card img, .blog-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
}
.editorial-card div, .catalog-card-body, .blog-card div {
  padding: 24px;
}
.editorial-card span, .catalog-card span, .blog-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
}
.editorial-card p, .catalog-card p, .blog-card p { color: var(--muted); }
.text-link, .button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  border: 0;
  background: none;
  padding: 0;
  font-weight: 900;
  cursor: pointer;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.scenario {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .08);
}
.materials, .seller-grid, .split-section, .checkout-grid, .cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.materials-image img, .split-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.materials-copy p, .seller-copy p, .split-copy p { color: var(--muted); font-size: 1.04rem; }
.source-note, .legal-mini {
  margin-top: 20px;
  padding: 16px;
  background: var(--grey);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
  color: var(--muted);
}
.seller-facts {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius);
}
.seller-facts p { margin: 0; }
.trust-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  padding: clamp(26px, 5vw, 58px);
  color: var(--ivory);
  background: linear-gradient(135deg, var(--walnut), #253d33);
  border-radius: var(--radius);
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-list span {
  display: flex;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 253, 248, .09);
  border-radius: var(--radius);
}
.large-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 7vw, 90px) clamp(20px, 5vw, 74px);
  color: var(--ivory);
  background: linear-gradient(90deg, #1c342b, #5d3f2d);
}
.large-cta p { max-width: 760px; margin: 12px 0 0; color: rgba(255, 253, 248, .78); }
.page-hero {
  padding: clamp(96px, 12vw, 150px) clamp(20px, 5vw, 74px) clamp(50px, 7vw, 92px);
  background: linear-gradient(135deg, var(--forest), #23352f 58%, var(--walnut));
  color: var(--ivory);
}
.page-hero div { max-width: 920px; }
.page-hero p:last-child { max-width: 760px; color: rgba(255, 253, 248, .78); font-size: 1.08rem; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-bar button, .payment-options button {
  border: 1px solid rgba(93, 63, 45, .16);
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}
.filter-bar button.active, .payment-options button.active {
  color: var(--ivory);
  background: var(--forest);
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
  color: var(--forest);
}
.price-row strong { font-size: 1.3rem; }
.price-row small { color: var(--muted); }
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cart-items, .checkout-panel {
  display: grid;
  gap: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(93, 63, 45, .12);
  border-radius: var(--radius);
}
.cart-item img {
  width: 120px;
  height: 96px;
  border-radius: var(--radius);
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.qty-control button, .remove-item {
  border: 1px solid rgba(93, 63, 45, .18);
  background: var(--white);
  border-radius: 999px;
  cursor: pointer;
}
.qty-control button { width: 34px; height: 34px; }
.remove-item { padding: 8px 12px; color: #7e2b20; }
.cart-summary, .checkout-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(93, 63, 45, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.payment-options { display: flex; flex-wrap: wrap; gap: 12px; }
.payment-options button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  justify-content: center;
}
.checkout-fields {
  display: grid;
  gap: 14px;
}
.checkout-fields label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.checkout-fields input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(93, 63, 45, .18);
  border-radius: var(--radius);
  background: var(--ivory);
}
.principles, .legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.principle, .legal-block { padding: 24px; }
.principle i { color: var(--brass); margin-bottom: 18px; }
.legal-grid { grid-template-columns: repeat(2, 1fr); }
.site-footer {
  background: #181612;
  color: rgba(255, 253, 248, .82);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 74px) 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 253, 248, .12);
}
.footer-logo { color: var(--ivory); margin-bottom: 18px; }
.footer-brand p { color: rgba(255, 253, 248, .68); }
.footer-company h2, .footer-links h3 {
  color: var(--ivory);
  font-family: var(--serif);
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.company-grid p {
  margin: 0;
  display: grid;
  gap: 4px;
  min-width: 0;
}
.company-grid strong {
  color: var(--brass);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  padding-top: 34px;
}
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255, 253, 248, .72); }
.footer-links a:hover { color: var(--brass); }
.footer-cta {
  word-break: break-word;
  padding: 13px;
  border: 1px solid rgba(255, 253, 248, .16);
  border-radius: var(--radius);
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 7, .66);
  backdrop-filter: blur(8px);
}
.modal-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}
.modal-product {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) 1.05fr;
}
.modal-product img {
  width: 100%;
  height: 100%;
  min-height: 520px;
}
.modal-copy { padding: clamp(24px, 5vw, 46px); }
.modal-copy dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(93, 63, 45, .12);
  border-bottom: 1px solid rgba(93, 63, 45, .12);
}
.modal-copy dt { font-weight: 900; color: var(--forest); }
.modal-copy dd { margin: 0; color: var(--muted); }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  transform: translateY(140%);
  transition: transform .28s ease;
  padding: 14px 18px;
  color: var(--ivory);
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.toast.is-visible { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroImageDrift {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content, .hero-visual, .hero-image {
    animation: none;
  }
}
@media (max-width: 1080px) {
  .primary-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--ivory);
    border-bottom: 1px solid rgba(93, 63, 45, .12);
  }
  body.menu-open .primary-nav { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-actions { justify-self: end; }
  .header-actions .btn-small { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: clamp(86px, 10vw, 118px);
  }
  .hero-content { width: min(720px, 100%); }
  .hero-visual {
    min-height: 560px;
  }
  .hero-main-media {
    width: min(84%, 680px);
    height: 500px;
  }
  .hero-texture-card {
    width: min(38%, 300px);
  }
  .section-heading, .trust-panel, .materials, .seller-grid, .split-section, .checkout-grid, .cart-layout, .footer-main { grid-template-columns: 1fr; }
  .editorial-grid, .catalog-grid, .blog-grid, .benefit-grid, .scenario-grid, .principles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    gap: 30px;
    padding: 94px 16px 52px;
  }
  .hero::before { inset: 12px; }
  .hero::after { display: none; }
  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
    line-height: 1.04;
  }
  .hero-subline {
    margin-top: 18px;
    font-size: 1rem;
  }
  .hero-actions, .large-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: 0;
  }
  .hero-main-media, .hero-texture-card, .hero-material-note {
    position: static;
    width: 100%;
  }
  .hero-main-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .hero-texture-card {
    display: grid;
    grid-template-columns: .42fr .58fr;
  }
  .hero-texture-card img {
    height: 100%;
    aspect-ratio: 1;
  }
  .hero-material-note {
    padding: 16px;
    background: rgba(255, 253, 248, .86);
  }
  .btn { width: 100%; }
  .intro-grid, .editorial-grid, .catalog-grid, .blog-grid, .benefit-grid, .scenario-grid, .principles, .legal-grid, .trust-list, .company-grid, .footer-links { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 86px 1fr; }
  .cart-item img { width: 86px; height: 76px; }
  .cart-item > div:last-child { grid-column: 1 / -1; }
  .modal-product { grid-template-columns: 1fr; }
  .modal-product img { min-height: 300px; aspect-ratio: 4 / 3; }
  .site-header { padding-inline: 16px; }
  .brand { font-size: 1.35rem; }
  .cart-pill { padding-inline: 10px; }
}
