:root {
  --ink: #171817;
  --muted: #6f706d;
  --paper: #f5f0e8;
  --paper-2: #ebe4d8;
  --white: #fffdf8;
  --olive: #596147;
  --olive-dark: #343a2a;
  --rust: #a75a3b;
  --line: rgba(23, 24, 23, .14);
  --line-strong: rgba(23, 24, 23, .25);
  --shadow-sm: 0 10px 30px rgba(31, 29, 24, .08);
  --shadow-lg: 0 28px 80px rgba(31, 29, 24, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --header-height: 74px;
  --bottom-nav-height: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans Bengali", "Hind Siliguri", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(89, 97, 71, .42);
  outline-offset: 3px;
}

.hidden,
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  text-align: center;
}

.announcement span {
  flex: 0 0 auto;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-pill);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(245, 240, 232, .86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 24, 23, .06);
}

.site-header.header-hidden {
  transform: translateY(-105%);
}

.header-shell {
  width: min(1380px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.brand-name {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #484a46;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transition: right .25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.icon-button {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  transition: background .18s ease, transform .18s ease;
}

.icon-button:hover {
  background: rgba(23, 24, 23, .06);
}

.icon-button:active,
.cart-button:active,
.primary-button:active,
.secondary-button:active,
.filter-button:active {
  transform: scale(.97);
}

.icon-button svg,
.cart-button svg,
.filter-button svg {
  width: 22px;
  height: 22px;
}

.cart-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 15px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}

.cart-button:hover {
  background: var(--olive-dark);
}

.count-badge {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.icon-button .count-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  background: var(--rust);
  color: white;
  border: 2px solid var(--paper);
  padding: 0 4px;
  font-size: 9px;
}

.hero {
  position: relative;
  width: min(1440px, 100%);
  min-height: calc(100svh - var(--header-height) - 36px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: 56px;
  padding: 70px clamp(32px, 5vw, 90px) 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--olive);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.style-lab h2,
.story-copy h2,
.delivery-card h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.hero h1 {
  font-size: clamp(58px, 6.2vw, 102px);
}

.hero h1 em,
.style-lab h2 em,
.final-cta h2 em {
  color: var(--olive);
  font-weight: 400;
}

.hero-lead {
  max-width: 540px;
  margin: 30px 0 0;
  color: #595a56;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.primary-button {
  background: var(--ink);
  color: white;
}

.primary-button:hover {
  background: var(--olive-dark);
}

.primary-button svg {
  width: 20px;
  height: 20px;
  transition: transform .22s var(--ease);
}

.primary-button:hover svg {
  transform: translateX(4px);
}

.primary-button.compact {
  min-height: 48px;
  padding-inline: 20px;
}

.primary-button.full {
  width: 100%;
}

.primary-button.grow {
  flex: 1;
}

.primary-button.light {
  background: var(--paper);
  color: var(--ink);
}

.primary-button.light:hover {
  background: white;
}

.secondary-button {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: var(--ink);
  background: rgba(23, 24, 23, .04);
}

.text-button {
  min-height: 46px;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: #646661;
  font-size: 12px;
  font-weight: 700;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-assurances span {
  color: var(--olive);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% 8% 5% 10%;
  z-index: -4;
  border-radius: 49% 51% 42% 58% / 52% 39% 61% 48%;
  background: #ded7ca;
}

.hero-visual::after {
  content: "SUTRO";
  position: absolute;
  left: -3%;
  bottom: 1%;
  z-index: -5;
  color: rgba(23, 24, 23, .045);
  font-family: Arial, sans-serif;
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(23, 24, 23, .13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  top: 60px;
  left: 70px;
  transform: rotate(-14deg);
}

.hero-orbit-two {
  width: 390px;
  height: 610px;
  top: 20px;
  right: 70px;
  transform: rotate(27deg);
}

.hero-product {
  position: absolute;
  display: grid;
  place-items: center;
}

.hero-product .product-art {
  width: 100%;
  height: 100%;
}

.hero-product-main {
  width: min(390px, 50vw);
  aspect-ratio: .77;
  left: 50%;
  top: 50%;
  transform: translate(-46%, -50%) rotate(-2deg);
  filter: drop-shadow(0 30px 32px rgba(23, 24, 23, .2));
}

.hero-product-small {
  width: 180px;
  aspect-ratio: .78;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 28px;
  background: rgba(255, 253, 248, .55);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-product-top {
  top: 8%;
  right: 1%;
  transform: rotate(7deg);
}

.hero-product-bottom {
  left: 0;
  bottom: 6%;
  transform: rotate(-8deg);
}

.hero-note {
  position: absolute;
  right: 2%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  padding: 13px 18px;
  border-left: 2px solid var(--rust);
  background: rgba(245, 240, 232, .78);
  backdrop-filter: blur(10px);
}

.hero-note span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  left: clamp(32px, 5vw, 90px);
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 17px;
  height: 17px;
}

.promise-strip {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.promise-strip div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
}

.promise-strip div + div {
  border-left: 1px solid var(--line);
}

.promise-strip strong {
  color: var(--rust);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.promise-strip span {
  font-weight: 800;
}

.shop-section {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.style-lab h2,
.story-copy h2,
.delivery-card h2,
.final-cta h2 {
  font-size: clamp(48px, 5.4vw, 80px);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-chip {
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.category-chip:hover {
  border-color: var(--line-strong);
}

.category-chip[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.filter-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease;
}

.results-summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 2px 20px;
}

.results-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.clear-filter {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--rust);
  cursor: pointer;
  font-weight: 800;
}

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

.product-card {
  min-width: 0;
}

.product-card-button {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: .8;
  overflow: hidden;
  border-radius: 5px;
  background: var(--product-bg, #e9e3da);
}

.product-image-wrap::after {
  content: "View product";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 10px);
  min-width: 120px;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  background: rgba(23, 24, 23, .9);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s ease, transform .25s var(--ease);
}

.product-card-button:hover .product-image-wrap::after,
.product-card-button:focus-visible .product-image-wrap::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-image-wrap .product-art {
  width: 100%;
  height: 100%;
  transform: scale(.92);
  transition: transform .4s var(--ease);
}

.product-card-button:hover .product-art {
  transform: scale(.98) rotate(-1deg);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, .86);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.wishlist-toggle {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 248, .86);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform .18s ease, background .18s ease;
}

.wishlist-toggle:hover {
  transform: scale(1.05);
}

.wishlist-toggle svg {
  width: 19px;
  height: 19px;
}

.wishlist-toggle[aria-pressed="true"] {
  background: var(--rust);
  color: white;
}

.wishlist-toggle[aria-pressed="true"] svg {
  fill: currentColor;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 2px 0;
}

.product-meta h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.product-meta p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.product-price {
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.product-color-dots {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.product-color-dots span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 0 1px rgba(23, 24, 23, .18);
}

.empty-state {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed var(--line-strong);
  text-align: center;
}

.empty-state > div {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 36px;
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.empty-state p {
  max-width: 430px;
  color: var(--muted);
}

.empty-state .secondary-button {
  margin-top: 15px;
}

.style-lab {
  width: min(1440px, 100%);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  background: var(--olive-dark);
  color: white;
  overflow: hidden;
}

.style-lab-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(52px, 7vw, 110px);
}

.style-lab .eyebrow {
  color: #c7cfb6;
}

.style-lab h2 {
  font-size: clamp(58px, 6vw, 90px);
}

.style-lab h2 em {
  color: #d7c6ad;
}

.style-lab-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.85;
}

.style-swatches {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}

.style-swatch,
.detail-swatch {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.style-swatch::after,
.detail-swatch::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 0 0 1px rgba(0, 0, 0, .14);
}

.style-swatch[aria-checked="true"] {
  border-color: rgba(255, 255, 255, .8);
}

.style-lab .primary-button {
  background: white;
  color: var(--ink);
}

.style-stage {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .16), transparent 38%),
    linear-gradient(145deg, #d9d0c1, #b8ad9e);
  overflow: hidden;
}

.style-stage::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(23, 24, 23, .16);
  border-radius: 50%;
}

.style-stage::after {
  content: "SUTRO";
  position: absolute;
  bottom: -36px;
  color: rgba(23, 24, 23, .08);
  font-family: Arial, sans-serif;
  font-size: clamp(100px, 14vw, 210px);
  font-weight: 900;
  letter-spacing: -.08em;
}

.style-product {
  position: relative;
  z-index: 2;
  width: min(470px, 70%);
  aspect-ratio: .8;
  filter: drop-shadow(0 32px 28px rgba(23, 24, 23, .22));
}

.style-product .product-art {
  width: 100%;
  height: 100%;
  animation: productIn .55s var(--ease);
}

@keyframes productIn {
  from { opacity: .2; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stage-label {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.stage-label span {
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.stage-label strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

.style-stage > p {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.story-section,
.delivery-section {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: 140px 0;
}

.story-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #c5b6a4;
}

.fabric {
  position: absolute;
  filter: drop-shadow(0 28px 24px rgba(23, 24, 23, .14));
}

.fabric-one {
  width: 74%;
  height: 110%;
  left: -16%;
  top: -5%;
  border-radius: 50% 18% 44% 8%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 5px),
    linear-gradient(155deg, #3c4a35, #6d785c);
  transform: rotate(12deg);
}

.fabric-two {
  width: 66%;
  height: 94%;
  right: -10%;
  bottom: -5%;
  border-radius: 20% 50% 12% 44%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 6px),
    linear-gradient(145deg, #9c553a, #c88668);
  transform: rotate(-11deg);
}

.fabric-stitch {
  position: absolute;
  left: 46%;
  top: 0;
  width: 2px;
  height: 100%;
  border-left: 2px dashed rgba(255, 255, 255, .45);
  transform: rotate(8deg);
}

.story-image > span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.story-copy {
  max-width: 610px;
}

.story-intro {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.story-points {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.story-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.story-points article > span {
  color: var(--rust);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.story-points h3,
.story-points p {
  margin: 0;
}

.story-points h3 {
  font-size: 17px;
}

.story-points p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.delivery-section {
  padding-top: 30px;
}

.delivery-card {
  padding: clamp(38px, 5vw, 72px);
  background: var(--white);
  border: 1px solid rgba(23, 24, 23, .08);
  box-shadow: var(--shadow-sm);
}

.delivery-card h2 {
  font-size: clamp(46px, 4.8vw, 72px);
}

.delivery-steps {
  margin-top: 42px;
}

.delivery-steps div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 72px;
  border-top: 1px solid var(--line);
}

.delivery-steps div:last-child {
  border-bottom: 1px solid var(--line);
}

.delivery-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--rust);
  font-family: Georgia, serif;
  font-style: italic;
}

.delivery-steps p,
.demo-note {
  margin: 0;
}

.demo-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.delivery-map {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 50% 50% 47% 53% / 40% 44% 56% 60%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .48), transparent 22%),
    linear-gradient(145deg, #6b7357, #343a2a);
}

.delivery-map::before,
.delivery-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.delivery-map::before {
  width: 360px;
  height: 360px;
  left: -60px;
  top: 80px;
}

.delivery-map::after {
  width: 420px;
  height: 420px;
  right: -130px;
  bottom: 20px;
}

.map-line {
  position: absolute;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, .55);
  transform-origin: left;
}

.line-one {
  width: 55%;
  left: 22%;
  top: 42%;
  transform: rotate(18deg);
}

.line-two {
  width: 48%;
  left: 25%;
  top: 59%;
  transform: rotate(-13deg);
}

.map-point {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .12);
}

.map-point span {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.point-one {
  left: 22%;
  top: 40%;
}

.point-two {
  right: 20%;
  bottom: 25%;
}

.delivery-box {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 160px;
  height: 130px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  background: #d4c4ae;
  color: var(--ink);
  box-shadow: 0 24px 40px rgba(0, 0, 0, .18);
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .08em;
}

.delivery-box::before,
.delivery-box::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .45);
}

.delivery-box::before {
  width: 18px;
  height: 100%;
}

.delivery-box::after {
  width: 100%;
  height: 18px;
}

.final-cta {
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.final-cta .eyebrow {
  color: #bdc5ad;
}

.final-cta h2 {
  max-width: 1050px;
  font-size: clamp(52px, 7vw, 104px);
}

.final-cta h2 em {
  color: #d8c7ae;
}

.final-cta .primary-button {
  margin-top: 38px;
}

.site-footer {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 calc(34px + env(safe-area-inset-bottom));
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding-bottom: 64px;
}

.footer-top > div:first-child > p {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 64px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 7px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  min-height: 36px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: var(--ink);
}

.mobile-bottom-nav {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 195;
  background: rgba(18, 18, 17, .48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s ease;
}

.overlay.visible {
  opacity: 1;
}

.product-view,
.checkout-view,
.success-view {
  position: fixed;
  inset: 0;
  z-index: 220;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
}

.product-view {
  padding: 22px;
}

.product-view-shell {
  position: relative;
  width: min(1180px, 100%);
  min-height: calc(100dvh - 44px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  animation: viewIn .34s var(--ease);
}

@keyframes viewIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.close-button,
.back-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 240, 232, .92);
  transition: transform .18s ease, background .18s ease;
}

.close-button:hover,
.back-button:hover {
  background: var(--paper-2);
}

.close-button svg,
.back-button svg {
  width: 21px;
  height: 21px;
}

.product-view-shell > .close-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
}

.product-detail-art {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 60px;
  background: #ded7ca;
  overflow: hidden;
}

.product-detail-art .product-art {
  width: min(520px, 92%);
  aspect-ratio: .8;
  filter: drop-shadow(0 34px 32px rgba(23, 24, 23, .2));
}

.product-detail-content {
  align-self: center;
  padding: 74px clamp(34px, 5vw, 72px) 48px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--rust);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-detail-content h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.product-detail-price {
  margin: 18px 0 0;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.product-description {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.option-group {
  margin-top: 30px;
}

.option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.option-heading strong {
  font-size: 14px;
}

.option-heading span {
  color: var(--muted);
  font-size: 12px;
}

.option-heading button {
  min-height: 40px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.detail-swatches,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-swatch[aria-checked="true"] {
  border-color: var(--ink);
}

.size-option {
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.size-option[aria-checked="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.inline-error {
  margin: 8px 0 0;
  color: #a6382d;
  font-size: 12px;
}

.product-details-accordion {
  border-top: 1px solid var(--line);
}

.product-details-accordion:first-of-type {
  margin-top: 34px;
}

.product-details-accordion:last-of-type {
  border-bottom: 1px solid var(--line);
}

.product-details-accordion summary {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding-right: 26px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.product-details-accordion summary::-webkit-details-marker {
  display: none;
}

.product-details-accordion summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.product-details-accordion[open] summary::after {
  content: "−";
}

.product-details-accordion ul,
.product-details-accordion p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-details-accordion ul {
  padding-left: 20px;
}

.product-purchase-bar {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.quantity-control {
  min-width: 132px;
  height: 52px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.quantity-control button {
  width: 44px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.quantity-control output {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.sheet {
  position: fixed;
  z-index: 230;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overscroll-behavior: contain;
}

.cart-sheet {
  inset: 0 0 0 auto;
  width: min(480px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  animation: sheetFromRight .32s var(--ease);
}

@keyframes sheetFromRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.sheet-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.sheet-header p,
.sheet-header h2 {
  margin: 0;
}

.sheet-header p {
  color: var(--muted);
  font-size: 11px;
}

.sheet-header h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.sheet-content {
  overflow-y: auto;
  padding: 10px 22px;
}

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

.cart-item-art {
  width: 88px;
  aspect-ratio: .82;
  display: grid;
  place-items: center;
  background: #e4ded4;
}

.cart-item-art .product-art {
  width: 90%;
  height: 90%;
}

.cart-item-content h3,
.cart-item-content p {
  margin: 0;
}

.cart-item-content h3 {
  font-size: 14px;
  line-height: 1.4;
}

.cart-item-content p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.cart-item-controls button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.cart-item-controls output {
  min-width: 26px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.cart-item-side strong {
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.remove-cart-item {
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
}

.cart-empty {
  align-self: center;
  justify-self: center;
  max-width: 320px;
  padding: 50px 24px;
  text-align: center;
}

.cart-empty > div {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--paper-2);
  font-family: Georgia, serif;
  font-size: 30px;
  font-style: italic;
}

.cart-empty h3,
.cart-empty p {
  margin: 0;
}

.cart-empty p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.cart-empty .secondary-button {
  margin-top: 22px;
}

.cart-footer {
  padding: 20px 22px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
}

.price-row strong {
  font-family: Arial, sans-serif;
}

.price-row.muted {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
}

.cart-footer > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.compact-sheet {
  inset: auto 0 0;
  width: min(680px, 100%);
  max-height: min(84dvh, 760px);
  margin: 0 auto;
  border-radius: 28px 28px 0 0;
  overflow-y: auto;
  animation: sheetFromBottom .32s var(--ease);
}

@keyframes sheetFromBottom {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.search-box {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.search-box svg {
  width: 22px;
  height: 22px;
  color: var(--muted);
}

.search-box input {
  flex: 1;
  min-width: 0;
  height: 56px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-suggestions {
  min-height: 190px;
  padding: 0 22px 28px;
}

.search-suggestion {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.search-suggestion strong {
  font-size: 14px;
}

.search-suggestion span {
  color: var(--muted);
  font-size: 11px;
}

.search-hint {
  padding: 24px 0;
  color: var(--muted);
  text-align: center;
}

.sort-options {
  padding: 8px 22px 30px;
}

.sort-options button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.sort-options span {
  display: flex;
  flex-direction: column;
}

.sort-options strong {
  font-size: 14px;
}

.sort-options small {
  margin-top: 2px;
  color: var(--muted);
}

.sort-options i {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.sort-options button[aria-checked="true"] i {
  border: 6px solid var(--ink);
}

.guide-content {
  padding: 22px 22px 34px;
}

.guide-content > p {
  margin: 0 0 20px;
  color: var(--muted);
}

.size-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.size-table [role="row"] {
  min-height: 48px;
  display: grid;
  grid-template-columns: .7fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}

.size-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.size-table [role="row"]:first-child {
  background: var(--paper-2);
}

.size-table span,
.size-table strong {
  font-size: 12px;
}

.guide-tip {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--paper-2);
}

.guide-tip p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.policy-content ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.checkout-view {
  padding: 0;
}

.checkout-shell {
  width: min(1180px, calc(100% - 36px));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 24px 0 60px;
  animation: viewIn .3s var(--ease);
}

.checkout-header {
  min-height: 80px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.checkout-header p,
.checkout-header h2 {
  margin: 0;
}

.checkout-header p {
  color: var(--muted);
  font-size: 10px;
}

.checkout-header h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.demo-pill {
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: start;
  padding-top: 54px;
}

.checkout-form,
.order-summary {
  min-width: 0;
}

.form-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.form-intro > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: Georgia, serif;
  font-style: italic;
}

.form-intro h3,
.form-intro p {
  margin: 0;
}

.form-intro h3 {
  font-size: 18px;
}

.form-intro p {
  color: var(--muted);
  font-size: 12px;
}

.checkout-form > label {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
}

.checkout-form > label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 54px;
  margin-top: 7px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  outline: 0;
  resize: vertical;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.checkout-form textarea {
  min-height: 86px;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 4px rgba(89, 97, 71, .1);
}

.checkout-form label.invalid input,
.checkout-form label.invalid select,
.checkout-form label.invalid textarea {
  border-color: #aa4237;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: #9b382f;
  font-size: 11px;
  font-weight: 600;
}

.demo-security-note {
  display: flex;
  gap: 12px;
  padding: 17px;
  border-radius: var(--radius-sm);
  background: var(--paper-2);
}

.demo-security-note svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--olive);
}

.demo-security-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.order-summary {
  position: sticky;
  top: 24px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.checkout-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-item .cart-item-art {
  width: 68px;
}

.checkout-item h4,
.checkout-item p {
  margin: 0;
}

.checkout-item h4 {
  font-size: 12px;
}

.checkout-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.checkout-item > strong {
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.summary-totals {
  padding: 18px 0 8px;
}

.summary-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.summary-totals strong {
  color: var(--ink);
  font-family: Arial, sans-serif;
}

.summary-totals .grand-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.summary-totals .grand-total strong {
  font-size: 20px;
}

.order-disclaimer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.success-view {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(89, 97, 71, .14), transparent 36%),
    var(--paper);
}

.success-card {
  width: min(520px, 100%);
  padding: clamp(34px, 7vw, 62px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: viewIn .35s var(--ease);
}

.success-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--olive);
  color: white;
}

.success-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.2;
}

.success-card h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}

.success-card > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.success-reference {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 26px 0;
  padding: 16px;
  border: 1px dashed var(--line-strong);
  background: var(--paper);
}

.success-reference span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.success-reference strong {
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .06em;
}

.toast-region {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 999;
  width: min(420px, calc(100% - 32px));
  transform: translateX(-50%);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: rgba(23, 24, 23, .94);
  color: white;
  box-shadow: var(--shadow-lg);
  animation: toastIn .3s var(--ease), toastOut .25s ease 2.5s forwards;
}

.toast + .toast {
  margin-top: 8px;
}

.toast span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  font-size: 12px;
}

.toast p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateY(8px); }
}

.product-art {
  position: relative;
  overflow: visible;
}

.product-art svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
    gap: 24px;
  }

  .hero-product-main {
    width: 340px;
  }

  .hero-product-small {
    width: 150px;
  }

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

@media (max-width: 960px) {
  :root {
    --header-height: 64px;
  }

  .desktop-nav,
  .wishlistButton {
    display: none;
  }

  .header-shell {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 26px 84px;
  }

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

  .hero h1 {
    font-size: clamp(64px, 10vw, 92px);
  }

  .hero-visual {
    min-height: 590px;
    margin-top: -20px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .style-lab {
    grid-template-columns: 1fr;
  }

  .style-stage {
    min-height: 680px;
    order: -1;
  }

  .style-lab-copy {
    padding: 80px 34px;
  }

  .story-section,
  .delivery-section {
    grid-template-columns: 1fr;
  }

  .story-image,
  .delivery-map {
    min-height: 560px;
  }

  .product-view-shell {
    grid-template-columns: 1fr;
  }

  .product-detail-art {
    min-height: 620px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 58px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 8px);
  }

  body {
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
  }

  .announcement {
    min-height: 32px;
    padding-block: 5px;
    font-size: 10px;
  }

  .announcement p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-shell {
    width: calc(100% - 22px);
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .brand-name {
    font-size: 14px;
  }

  .header-actions {
    gap: 2px;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .header-actions .icon-button:nth-child(2),
  .cart-button span:not(.count-badge) {
    display: none;
  }

  .cart-button {
    min-width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .cart-button .count-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    border: 2px solid var(--paper);
    padding: 0 4px;
    font-size: 9px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 32px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 34px 18px 30px;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    order: 1;
    margin-bottom: 10px;
  }

  .hero h1 {
    order: 2;
    font-size: clamp(46px, 14vw, 64px);
    line-height: .98;
  }

  .hero-lead {
    order: 3;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    order: 5;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 18px;
  }

  .hero-actions .primary-button {
    min-height: 50px;
  }

  .hero-actions .text-button {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 0;
  }

  .hero-actions .text-button::before {
    content: "?";
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 20px;
  }

  .hero-assurances {
    order: 6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 16px;
  }

  .hero-assurances li {
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 8px 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 9px;
    line-height: 1.25;
    text-align: center;
  }

  .hero-visual {
    order: 4;
    min-height: 270px;
    margin: 2px -4px 0;
  }

  .hero-visual::before {
    inset: 3% 9% 4%;
  }

  .hero-visual::after {
    bottom: 5%;
    font-size: 88px;
  }

  .hero-orbit-one {
    width: 240px;
    height: 240px;
    top: 14px;
    left: 50%;
    transform: translateX(-50%) rotate(-14deg);
  }

  .hero-orbit-two {
    width: 190px;
    height: 280px;
    top: 0;
    right: 12%;
  }

  .hero-product-main {
    width: 190px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
  }

  .hero-product-small {
    width: 92px;
    padding: 6px;
    border-radius: 15px;
  }

  .hero-product-top {
    top: 7%;
    right: 0;
  }

  .hero-product-bottom {
    left: 1%;
    bottom: 4%;
  }

  .hero-note {
    right: 2%;
    bottom: 4%;
    padding: 8px 10px;
  }

  .hero-note span {
    font-size: 7px;
  }

  .hero-note strong {
    font-size: 14px;
  }

  .promise-strip {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  .promise-strip div {
    min-height: 58px;
    padding: 12px 6px;
  }

  .promise-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .shop-section,
  .story-section,
  .delivery-section,
  .site-footer {
    width: calc(100% - 36px);
  }

  .shop-section {
    padding: 80px 0 78px;
  }

  .section-heading h2,
  .style-lab h2,
  .story-copy h2,
  .delivery-card h2,
  .final-cta h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .section-heading > p {
    font-size: 14px;
  }

  .shop-toolbar {
    margin-top: 32px;
    align-items: flex-start;
  }

  .category-chips {
    flex: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 2px 8px;
    margin: 0 -2px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .category-chips::-webkit-scrollbar {
    display: none;
  }

  .category-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .filter-button {
    flex: 0 0 auto;
  }

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

  .product-image-wrap {
    border-radius: 3px;
  }

  .product-image-wrap::after {
    display: none;
  }

  .product-tag {
    top: 8px;
    left: 8px;
    padding: 4px 6px;
    font-size: 7px;
  }

  .wishlist-toggle {
    top: 6px;
    right: 6px;
    width: 38px;
    height: 38px;
  }

  .product-meta {
    display: block;
    padding-top: 10px;
  }

  .product-meta h3 {
    min-height: 39px;
    font-size: 13px;
  }

  .product-meta p {
    font-size: 10px;
  }

  .product-price {
    display: block;
    margin-top: 6px;
    font-size: 12px;
  }

  .product-color-dots {
    margin-top: 7px;
  }

  .product-color-dots span {
    width: 10px;
    height: 10px;
  }

  .style-lab {
    min-height: 0;
  }

  .style-stage {
    min-height: 460px;
  }

  .style-stage::before {
    width: 340px;
    height: 340px;
  }

  .style-product {
    width: min(300px, 74%);
  }

  .style-stage::after {
    bottom: -18px;
    font-size: 92px;
  }

  .stage-label {
    top: 20px;
    left: 20px;
  }

  .style-stage > p {
    right: 20px;
    bottom: 20px;
    font-size: 20px;
  }

  .style-lab-copy {
    padding: 62px 18px 72px;
  }

  .style-lab-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .style-swatch,
  .detail-swatch {
    width: 46px;
    height: 46px;
  }

  .story-section,
  .delivery-section {
    gap: 42px;
    padding: 80px 0;
  }

  .story-image,
  .delivery-map {
    min-height: 400px;
  }

  .story-intro {
    font-size: 14px;
  }

  .story-points article {
    grid-template-columns: 42px 1fr;
  }

  .delivery-section {
    padding-top: 8px;
  }

  .delivery-card {
    padding: 32px 22px;
  }

  .delivery-map {
    border-radius: 42% 58% 47% 53% / 45% 44% 56% 55%;
  }

  .delivery-box {
    width: 124px;
    height: 102px;
    font-size: 25px;
  }

  .final-cta {
    min-height: 540px;
    padding: 76px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 46px;
  }

  .footer-links {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 180;
    height: var(--bottom-nav-height);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(23, 24, 23, .94);
    color: rgba(255, 255, 255, .64);
    box-shadow: 0 18px 50px rgba(23, 24, 23, .28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-width: 0;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 2px;
    border: 0;
    border-radius: 17px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
  }

  .mobile-bottom-nav a.active,
  .mobile-bottom-nav button.active {
    background: rgba(255, 255, 255, .1);
    color: white;
  }

  .mobile-bottom-nav svg {
    width: 21px;
    height: 21px;
  }

  .mobile-cart-icon {
    position: relative;
  }

  .mobile-cart-icon b {
    position: absolute;
    top: -8px;
    right: -13px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border-radius: 50%;
    background: var(--rust);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 9px;
  }

  .product-view {
    padding: 0;
    background: var(--white);
  }

  .product-view-shell {
    min-height: 100dvh;
    display: block;
    box-shadow: none;
  }

  .product-view-shell > .close-button {
    position: fixed;
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
    background: rgba(255, 253, 248, .92);
    box-shadow: var(--shadow-sm);
  }

  .product-detail-art {
    min-height: 50dvh;
    padding: 34px 24px 14px;
  }

  .product-detail-art .product-art {
    width: min(340px, 86%);
  }

  .product-detail-content {
    padding: 28px 18px calc(105px + env(safe-area-inset-bottom));
  }

  .product-detail-content h2 {
    font-size: 38px;
  }

  .product-description {
    font-size: 13px;
  }

  .product-purchase-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 7;
    margin: 0;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, .94);
    box-shadow: 0 -10px 30px rgba(23, 24, 23, .08);
    backdrop-filter: blur(14px);
  }

  .quantity-control {
    min-width: 118px;
  }

  .cart-sheet {
    inset: auto 0 0;
    width: 100%;
    height: min(88dvh, 760px);
    border-radius: 28px 28px 0 0;
    animation-name: sheetFromBottom;
  }

  .sheet-header {
    min-height: 82px;
    padding: 15px 16px;
  }

  .sheet-content {
    padding-inline: 16px;
  }

  .cart-footer {
    padding-inline: 16px;
  }

  .cart-item {
    grid-template-columns: 76px 1fr auto;
    gap: 10px;
  }

  .cart-item-art {
    width: 76px;
  }

  .compact-sheet {
    max-height: 88dvh;
  }

  .checkout-shell {
    width: calc(100% - 30px);
    padding-top: calc(10px + env(safe-area-inset-top));
    padding-bottom: 35px;
  }

  .checkout-header {
    min-height: 68px;
  }

  .checkout-layout {
    gap: 34px;
    padding-top: 30px;
  }

  .order-summary {
    margin: 0 -2px;
    padding: 22px 16px;
  }

  .success-view {
    padding: 16px;
  }

  .success-card {
    padding: 38px 24px;
  }

  .success-card h2 {
    font-size: 36px;
  }

  .toast-region {
    bottom: calc(var(--bottom-nav-height) + 18px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero-visual {
    min-height: 245px;
  }

  .hero-product-main {
    width: 170px;
  }

  .hero-product-small {
    width: 80px;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-assurances li {
    font-size: 8px;
  }

  .product-grid {
    gap-inline: 8px;
  }

  .product-meta h3 {
    font-size: 12px;
  }

  .product-purchase-bar {
    gap: 8px;
  }

  .quantity-control {
    min-width: 104px;
    grid-template-columns: 36px 1fr 36px;
  }

  .quantity-control button {
    width: 36px;
  }

  .primary-button.grow {
    padding-inline: 15px;
    font-size: 13px;
  }
}

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

@media (hover: none) {
  .product-image-wrap::after {
    display: none;
  }
}
