:root {
  --teal: #0b3b3c;
  --teal-deep: #071a1b;
  --gold: #c8a45d;
  --ivory: #f5f1e8;
  --paper: #fbfaf6;
  --ink: #102627;
  --muted: #637071;
  --line: rgba(11, 59, 60, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Noto Sans Bengali", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
body.locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--gold); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.announcement {
  height: 34px;
  background: var(--teal-deep);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.announcement i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.site-header {
  height: 86px;
  padding: 0 clamp(1rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, .94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; width: max-content; }
.brand-mark {
  width: 39px;
  height: 43px;
  display: grid;
  place-items: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand strong { display: block; font-size: .98rem; letter-spacing: .34em; line-height: 1; }
.brand small { display: block; margin-top: .42rem; color: var(--muted); font-size: .5rem; letter-spacing: .22em; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; font-size: .86rem; }
.desktop-nav a, .text-button { position: relative; }
.desktop-nav a::after, .desktop-nav .text-button::after {
  content: ""; position: absolute; left: 0; bottom: -.35rem; width: 0; height: 1px;
  background: var(--teal); transition: width .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav .text-button:hover::after { width: 100%; }
.text-button { border: 0; padding: 0; background: none; cursor: pointer; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .6rem; }
.icon-button, .cart-button, .menu-button, .close-button {
  border: 0; background: transparent; cursor: pointer;
}
.icon-button { width: 40px; height: 40px; padding: 10px; }
.icon-button svg, .cart-button svg { fill: none; stroke: currentColor; stroke-width: 1.6; }
.cart-button { display: flex; align-items: center; gap: .45rem; padding: .55rem .7rem; }
.cart-button svg { width: 21px; height: 21px; }
.cart-button > span { font-size: .82rem; }
.cart-count {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 99px; display: inline-grid; place-items: center;
  color: var(--ivory); background: var(--teal); font-size: .68rem;
}
.menu-button { display: none; width: 40px; height: 40px; }
.menu-button span { display: block; height: 1px; width: 22px; margin: 6px auto; background: var(--ink); transition: .25s; }
.mobile-nav { display: none; }

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  background: var(--teal);
  color: var(--ivory);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(4rem, 8vw, 8.5rem) clamp(1.5rem, 7vw, 7rem);
  align-self: center;
  position: relative;
}
.hero-copy::before {
  content: ""; width: 220px; height: 220px; border: 1px solid rgba(200, 164, 93, .22);
  position: absolute; border-radius: 50%; top: 7%; left: -110px;
}
.eyebrow { margin: 0 0 1.2rem; color: var(--gold); font-size: .68rem; letter-spacing: .22em; font-weight: 700; }
.hero h1, .section-heading h2, .story-copy h2, .faq-section h2, dialog h2 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(2.9rem, 5vw, 5.8rem); line-height: .98; margin: 0 0 1.7rem; }
.hero h1 em { color: var(--gold); font-weight: 400; }
.hero-text { max-width: 520px; color: rgba(245, 241, 232, .76); font-size: clamp(1rem, 1.3vw, 1.16rem); }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.button {
  min-height: 50px; border: 0; display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.4rem; cursor: pointer; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem;
  font-weight: 700; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--teal-deep); }
.button-gold:hover { background: #dab978; }
.button-dark { background: var(--teal); color: var(--ivory); }
.link-arrow { border: 0; background: transparent; color: var(--ivory); cursor: pointer; padding: .7rem 0; font-size: .86rem; border-bottom: 1px solid rgba(245,241,232,.4); }
.link-arrow span { color: var(--gold); margin-left: .4rem; }
.hero-proof { display: flex; gap: clamp(1.5rem, 4vw, 4rem); margin-top: clamp(3rem, 7vw, 6rem); padding-top: 1.5rem; border-top: 1px solid rgba(245,241,232,.16); }
.hero-proof strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.15rem; }
.hero-proof span { color: rgba(245,241,232,.53); font-size: .71rem; }
.hero-visual { position: relative; min-height: 600px; background: #dfd8cc; }
.hero-frame { height: 100%; overflow: hidden; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 40px 0 70px rgba(7,26,27,.16); pointer-events: none; }
.hero-note {
  position: absolute; left: 2rem; bottom: 2rem; z-index: 2; width: min(300px, calc(100% - 4rem));
  padding: 1rem 1.2rem; background: rgba(7,26,27,.9); display: flex; gap: 1rem; align-items: flex-start;
}
.hero-note > span { color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.hero-note p { margin: .12rem 0 0; color: rgba(245,241,232,.65); font-size: .72rem; line-height: 1.6; }
.hero-note strong { color: var(--ivory); letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; }

.category-rail {
  display: grid; grid-template-columns: 1.05fr 1fr 1fr 1fr; min-height: 118px;
  border-bottom: 1px solid var(--line); background: var(--ivory);
}
.category-rail > p { margin: 0; padding: 2.8rem clamp(1.5rem,5vw,5.5rem); color: var(--muted); font-size: .65rem; letter-spacing: .2em; }
.category-rail button {
  border: 0; border-left: 1px solid var(--line); background: transparent; padding: 1.6rem 1.8rem;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; text-align: left;
  font-size: .75rem; letter-spacing: .09em; cursor: pointer; transition: background .2s, color .2s;
}
.category-rail button span { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.category-rail button b { font-size: 1.1rem; font-weight: 400; }
.category-rail button:hover { background: var(--teal); color: var(--ivory); }

.products-section { padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5.5rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.2rem; }
.section-heading h2, .story-copy h2, .faq-section h2 { font-size: clamp(2.4rem, 4vw, 4.25rem); line-height: 1.06; margin: 0; }
.filters { display: flex; border-bottom: 1px solid var(--line); }
.filters button { border: 0; background: none; padding: .65rem 1rem; color: var(--muted); font-size: .75rem; cursor: pointer; position: relative; }
.filters button.active { color: var(--teal); font-weight: 700; }
.filters button.active::after { content: ""; height: 2px; position: absolute; inset: auto 0 -1px; background: var(--gold); }
.product-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 1.2rem; }
.product-card { min-width: 0; transition: opacity .25s, transform .25s; }
.product-card[hidden] { display: none; }
.product-image { aspect-ratio: 1 / 1.08; background: #ece9e1; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-image img { transform: scale(1.025); }
.badge {
  position: absolute; z-index: 2; left: .85rem; top: .85rem; background: var(--paper); color: var(--teal);
  padding: .38rem .55rem; font-size: .58rem; letter-spacing: .14em; font-weight: 700;
}
.product-info { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem .1rem .85rem; }
.product-category { color: var(--gold); font-size: .6rem; letter-spacing: .15em; font-weight: 700; margin: 0 0 .3rem; }
.product-info h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 1.25rem; line-height: 1.2; }
.product-info p:last-child { margin: .3rem 0 0; color: var(--muted); font-size: .75rem; }
.price { font-size: .9rem; white-space: nowrap; }
.product-controls { display: grid; grid-template-columns: 98px 1fr; border: 1px solid var(--line); min-height: 48px; }
.product-controls label { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .35rem; padding: 0 .6rem; border-right: 1px solid var(--line); }
.product-controls label span { font-size: .62rem; color: var(--muted); }
.product-controls select { border: 0; background: transparent; min-width: 0; outline: none; font-weight: 700; font-size: .76rem; }
.add-button { border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; padding: .7rem .9rem; cursor: pointer; font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.add-button:hover { background: var(--teal); color: var(--ivory); }
.add-button span { font-size: 1.1rem; font-weight: 400; }
.no-results { text-align: center; padding: 3rem; color: var(--muted); }

.material-story { display: grid; grid-template-columns: 1fr 1fr; background: var(--ivory); }
.story-image { min-height: 680px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.story-copy > p:not(.eyebrow) { color: var(--muted); max-width: 590px; margin: 1.6rem 0 2.5rem; }
.story-points { border-top: 1px solid var(--line); }
.story-points > div { display: grid; grid-template-columns: 42px 1fr 1.25fr; align-items: baseline; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.story-points span { color: var(--gold); font-family: var(--serif); }
.story-points strong { font-family: var(--serif); font-weight: 400; }
.story-points p { color: var(--muted); font-size: .77rem; margin: 0; }

.service-strip { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 clamp(1rem,5vw,5.5rem); background: var(--teal); color: var(--ivory); }
.service-strip > div { display: flex; align-items: center; gap: 1rem; padding: 2rem; border-right: 1px solid rgba(245,241,232,.15); }
.service-strip > div:last-child { border-right: 0; }
.service-strip svg { width: 29px; fill: none; stroke: var(--gold); stroke-width: 1.4; flex: none; }
.service-strip p { margin: 0; }
.service-strip strong, .service-strip span { display: block; }
.service-strip strong { font-size: .86rem; }
.service-strip span { color: rgba(245,241,232,.55); font-size: .72rem; margin-top: .2rem; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; padding: clamp(4rem,8vw,8rem) clamp(1rem,5vw,5.5rem); }
.faqs { border-top: 1px solid var(--line); }
.faqs details { border-bottom: 1px solid var(--line); padding: 1.25rem 0; }
.faqs summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 2rem; font-family: var(--serif); font-size: 1.1rem; }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary span { color: var(--gold); transition: transform .2s; font-family: var(--sans); }
.faqs details[open] summary span { transform: rotate(45deg); }
.faqs details p { color: var(--muted); margin: .8rem 3rem 0 0; font-size: .88rem; }

footer { background: var(--teal-deep); color: var(--ivory); padding: clamp(3.5rem,6vw,6rem) clamp(1rem,5vw,5.5rem) 1.5rem; }
footer .brand-mark { filter: invert(1); }
footer .brand small { color: rgba(245,241,232,.45); }
.footer-brand { display: flex; justify-content: space-between; gap: 3rem; border-bottom: 1px solid rgba(245,241,232,.14); padding-bottom: 2.5rem; }
.footer-brand > p { color: rgba(245,241,232,.5); max-width: 390px; margin: 0; font-size: .82rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 4rem; max-width: 540px; margin: 3rem 0; }
.footer-links div { display: grid; gap: .65rem; align-content: start; }
.footer-links strong { color: var(--gold); letter-spacing: .16em; font-size: .62rem; margin-bottom: .4rem; }
.footer-links a, .footer-links button { color: rgba(245,241,232,.65); font-size: .8rem; background: none; border: 0; padding: 0; width: max-content; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid rgba(245,241,232,.14); color: rgba(245,241,232,.35); font-size: .66rem; letter-spacing: .08em; }

.page-overlay { position: fixed; inset: 0; background: rgba(7,26,27,.58); z-index: 50; opacity: 0; visibility: hidden; transition: .25s; }
.page-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(470px, 100vw); background: var(--paper); z-index: 60;
  transform: translateX(102%); transition: transform .35s cubic-bezier(.25,.8,.25,1); display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header, .dialog-top { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.4rem; border-bottom: 1px solid var(--line); }
.drawer-header .eyebrow, .dialog-top .eyebrow { margin-bottom: .35rem; }
.drawer-header h2, .dialog-top h2 { margin: 0; font-size: 1.8rem; }
.drawer-header h2 .cart-count { display: inline-grid; vertical-align: middle; font-family: var(--sans); }
.close-button, .dialog-top > button { width: 40px; height: 40px; font-size: 1.7rem; font-weight: 200; }
.cart-items { flex: 1; overflow: auto; padding: 0 1.4rem; }
.cart-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 92px; height: 108px; object-fit: cover; background: #e9e7e1; }
.cart-item h3 { font-family: var(--serif); font-weight: 400; font-size: 1rem; margin: .1rem 0 .3rem; }
.cart-item p { color: var(--muted); font-size: .7rem; margin: 0; }
.item-price { font-size: .8rem; }
.quantity { display: inline-grid; grid-template-columns: 28px 32px 28px; border: 1px solid var(--line); margin-top: .85rem; }
.quantity button { border: 0; background: none; cursor: pointer; }
.quantity span { text-align: center; font-size: .72rem; padding: .3rem 0; }
.remove-item { color: var(--muted); border: 0; border-bottom: 1px solid var(--line); background: none; padding: .35rem 0 0; cursor: pointer; font-size: .65rem; }
.empty-cart { margin: auto; text-align: center; padding: 3rem 2rem; }
.empty-cart > div { color: var(--gold); font-size: 3rem; }
.empty-cart h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin: .7rem 0; }
.empty-cart p { color: var(--muted); font-size: .82rem; margin: 0 0 1.5rem; }
.cart-summary { border-top: 1px solid var(--line); padding: 1.4rem; }
.cart-summary > div { display: flex; justify-content: space-between; }
.cart-summary p { color: var(--muted); font-size: .68rem; }
.cart-summary .button { width: 100%; margin-top: .6rem; }

dialog {
  border: 0; padding: 0; background: var(--paper); color: var(--ink); box-shadow: 0 30px 100px rgba(7,26,27,.3);
}
dialog::backdrop { background: rgba(7,26,27,.68); backdrop-filter: blur(3px); }
.search-dialog { width: min(650px, calc(100vw - 2rem)); }
.search-dialog .dialog-top label { font-family: var(--serif); font-size: 1.6rem; }
.search-field { margin: 2rem; display: flex; align-items: center; border-bottom: 1px solid var(--teal); }
.search-field svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.search-field input { flex: 1; border: 0; background: none; padding: 1rem; outline: none; font-family: var(--serif); font-size: 1.5rem; }
.search-dialog > p { margin: -1rem 2rem 2rem; color: var(--muted); font-size: .75rem; }
.size-dialog { width: min(680px, calc(100vw - 2rem)); }
.size-tabs { display: flex; margin: 1.5rem 1.5rem 0; border-bottom: 1px solid var(--line); }
.size-tabs button { border: 0; padding: .7rem 1.2rem; background: none; cursor: pointer; color: var(--muted); }
.size-tabs button.active { background: var(--teal); color: var(--ivory); }
.size-panel { padding: 1rem 1.5rem; }
.size-panel table { width: 100%; border-collapse: collapse; }
.size-panel th, .size-panel td { text-align: left; padding: .9rem .7rem; border-bottom: 1px solid var(--line); font-size: .82rem; }
.size-panel th { color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; }
.size-note { margin: .2rem 1.5rem 1.5rem; color: var(--muted); font-size: .75rem; }
.checkout-dialog { width: min(960px, calc(100vw - 2rem)); max-height: calc(100vh - 2rem); overflow: auto; }
.checkout-layout { display: grid; grid-template-columns: 1.08fr .92fr; }
.checkout-fields { padding: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-fields > label { display: grid; gap: .4rem; font-size: .72rem; font-weight: 700; }
.checkout-fields > label:nth-child(4), .payment-choice { grid-column: 1 / -1; }
.checkout-fields input, .checkout-fields select, .checkout-fields textarea {
  width: 100%; border: 1px solid var(--line); background: white; padding: .8rem; outline: none; font-size: .82rem;
}
.checkout-fields input:focus, .checkout-fields select:focus, .checkout-fields textarea:focus { border-color: var(--gold); }
.payment-choice {
  display: flex !important; grid-template-columns: auto 1fr; align-items: center; padding: .9rem; border: 1px solid var(--teal); background: rgba(11,59,60,.035);
}
.payment-choice input { width: auto; }
.payment-choice span { display: grid; }
.payment-choice small { color: var(--muted); font-weight: 400; }
.order-review { background: var(--ivory); padding: 1.5rem; }
.order-review h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; margin: 0 0 1rem; }
.checkout-line { display: flex; justify-content: space-between; padding: .55rem 0; font-size: .72rem; border-bottom: 1px solid var(--line); }
.checkout-line span { color: var(--muted); }
.review-row { display: flex; justify-content: space-between; padding: .8rem 0; font-size: .78rem; }
.review-row.total { border-top: 1px solid var(--teal); margin-top: .2rem; font-size: 1rem; }
.order-review .button { width: 100%; margin-top: 1rem; }
.preview-note { color: var(--muted); text-align: center; font-size: .65rem; margin: .7rem 0 0; }
.order-success { text-align: center; padding: clamp(3rem,7vw,6rem) 2rem; }
.success-mark { width: 65px; height: 65px; display: grid; place-items: center; border-radius: 50%; margin: 0 auto 1.5rem; background: var(--teal); color: var(--gold); font-size: 1.8rem; }
.order-success .eyebrow { margin-bottom: .5rem; }
.order-success h2 { font-size: 2.6rem; margin: 0; }
.order-success > p:not(.eyebrow) { color: var(--muted); max-width: 480px; margin: 1rem auto; }
.order-success > strong { display: block; margin: 1.5rem; letter-spacing: .14em; }
.toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 140%); z-index: 90; background: var(--teal-deep); color: var(--ivory); padding: .8rem 1.1rem; font-size: .76rem; box-shadow: 0 10px 35px rgba(0,0,0,.22); transition: transform .3s; }
.toast.show { transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav {
    position: fixed; z-index: 28; inset: 120px 0 auto; background: var(--paper); padding: 1.5rem;
    border-bottom: 1px solid var(--line); flex-direction: column; gap: 1.1rem; box-shadow: 0 20px 40px rgba(7,26,27,.08);
  }
  .mobile-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 600px; }
  .hero-visual { min-height: 70vw; }
  .category-rail { grid-template-columns: repeat(3,1fr); }
  .category-rail > p { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card.featured { grid-column: span 2; }
  .product-card.featured .product-image { aspect-ratio: 1.5 / 1; }
  .material-story { grid-template-columns: 1fr; }
  .story-image { min-height: 70vw; }
  .service-strip { padding: 0; }
  .faq-section { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .announcement { gap: .55rem; font-size: .57rem; letter-spacing: .06em; }
  .announcement span:nth-of-type(2) { display: none; }
  .site-header { height: 74px; padding: 0 .9rem; }
  .brand { gap: .55rem; }
  .brand-mark { width: 30px; height: 34px; }
  .brand strong { font-size: .8rem; }
  .brand small { font-size: .39rem; }
  .cart-button > span, .icon-button { display: none; }
  .mobile-nav { inset: 108px 0 auto; }
  .hero-copy { min-height: auto; padding: 4.5rem 1.25rem 3.2rem; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-proof { margin-top: 3.5rem; }
  .hero-visual { min-height: 116vw; }
  .hero-note { left: 1rem; bottom: 1rem; }
  .category-rail { grid-template-columns: 1fr; }
  .category-rail button { border-left: 0; border-bottom: 1px solid var(--line); padding: 1.1rem 1.2rem; }
  .products-section { padding: 4.5rem 1rem; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: auto; }
  .product-card.featured .product-image, .product-image { aspect-ratio: 1 / 1.08; }
  .story-image { min-height: 115vw; }
  .story-copy { padding: 4rem 1.2rem; }
  .story-points > div { grid-template-columns: 32px 1fr; }
  .story-points p { grid-column: 2; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip > div { border-right: 0; border-bottom: 1px solid rgba(245,241,232,.15); padding: 1.35rem; }
  .faq-section { padding: 4rem 1.2rem; }
  .footer-brand { flex-direction: column; }
  .footer-bottom { gap: 1rem; flex-direction: column; }
  .cart-item { grid-template-columns: 76px 1fr auto; }
  .cart-item img { width: 76px; height: 92px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-fields > label:nth-child(4), .payment-choice { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
