:root {
  --ink: #3a1a28;
  --night: #321320;
  --night-soft: #f6e7e9;
  --wine: #b23362;
  --wine-deep: #7b2145;
  --rose: #dc5c81;
  --rose-soft: #c8798e;
  --champagne: #c4937d;
  --paper: #fff8f7;
  --paper-deep: #e8cbd0;
  --muted: #80616d;
  --line: rgba(76, 34, 53, 0.18);
  --line-dark: rgba(58, 26, 40, 0.16);
  --display: "Playfair Display", Georgia, serif;
  --body: "DM Sans", "Segoe UI", Arial, sans-serif;
  --shadow: 0 24px 64px rgba(91, 29, 50, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose-soft);
  outline-offset: 3px;
}
::selection { color: var(--paper); background: var(--wine); }
.site-shell { min-height: 100vh; background: #fff5f3; }
.section-wrap { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }

.masthead { position: absolute; inset: 0 0 auto; z-index: 5; color: var(--ink); }
.masthead-inner {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 21px 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(58, 26, 40, 0.2);
}
.wordmark {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
.masthead-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(58, 26, 40, 0.74);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}
.announcement-line { max-width: 330px; overflow: hidden; color: rgba(58, 26, 40, 0.62); text-overflow: ellipsis; white-space: nowrap; }
.meta-rule { width: 28px; height: 1px; display: inline-block; background: var(--champagne); }

.hero {
  position: relative;
  height: clamp(560px, calc(100svh - 64px), 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: #edcdd5;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(58, 26, 40, 0.18);
  pointer-events: none;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: #edcdd5; }
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(1.09) contrast(1.01) brightness(1.07) sepia(0.02);
  transform: scale(1.07);
  animation: hero-breathe 11s ease-out both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 238, 240, 0.74) 0%, rgba(250, 222, 228, 0.68) 44%, rgba(244, 204, 215, 0.48) 61%, rgba(244, 204, 215, 0.08) 80%),
    linear-gradient(0deg, rgba(255, 236, 239, 0.16) 0%, rgba(255, 248, 247, 0.02) 57%),
    linear-gradient(110deg, rgba(220, 92, 129, 0.12), rgba(255, 248, 247, 0.04) 60%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 64px));
  margin: 39px auto 0;
  padding-left: 27px;
  animation: hero-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-content::before {
  content: "";
  position: absolute;
  inset: 3px auto 4px 0;
  width: 1px;
  background: linear-gradient(180deg, var(--champagne), rgba(216, 174, 99, 0.08));
  transform-origin: top;
  animation: line-reveal 1.1s 0.15s ease both;
}
.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--rose-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--display);
  font-size: 82px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}
.hero .eyebrow { color: var(--wine); }
.hero h1 em { color: var(--wine); font-style: italic; font-weight: 400; }
.hero-description {
  max-width: 450px;
  margin: 22px 0 23px;
  color: rgba(58, 26, 40, 0.82);
  font-size: 15px;
  line-height: 1.65;
}
.text-arrow-button {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid var(--champagne);
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}
.text-arrow-button:hover .arrow-mark, .sticky-cta:hover span:last-child, .checkout-button:hover span { transform: translate(3px, -3px); }
.arrow-mark, .sticky-cta span:last-child, .checkout-button span {
  display: inline-block;
  color: var(--champagne);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.hero-footer {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100% - 1180px) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(58, 26, 40, 0.7);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-line { width: 45px; height: 1px; background: var(--champagne); }

.intro { padding-top: 62px; padding-bottom: 64px; background: #fff5f3; }
.intro-kicker { display: flex; gap: 18px; align-items: center; color: var(--muted); font-size: 10px; font-weight: 600; text-transform: uppercase; }
.section-index { color: var(--champagne); font-family: var(--display); font-size: 12px; font-style: italic; }
.intro-copy { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 88px; margin-top: 24px; align-items: end; }
.intro h2, .collection h2, .closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 57px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.intro h2 em { color: var(--wine); font-style: italic; font-weight: 400; }
.intro-side { max-width: 440px; padding-bottom: 2px; }
.intro-side p { margin: 0; color: #76505c; font-size: 15px; line-height: 1.7; }
.intro-note { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--ink); font-size: 11px; font-weight: 600; }
.note-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 5px rgba(161, 47, 87, 0.1); }

.feature-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--night-soft); }
.feature-grid { width: min(1180px, calc(100% - 64px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-item { min-height: 146px; padding: 22px 28px 21px 0; border-right: 1px solid var(--line); }
.feature-item + .feature-item { padding-left: 28px; }
.feature-item:last-child { border-right: 0; }
.feature-number { display: block; color: var(--wine); font-family: var(--display); font-size: 11px; font-style: italic; }
.feature-item h3 { margin: 23px 0 5px; font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: 0; }
.feature-item p { margin: 0; color: #77535e; font-size: 12px; }

.collection { padding: 66px 0 60px; color: var(--ink); background: linear-gradient(180deg, #faecee 0%, #fff8f7 100%); }
.collection-head { display: grid; grid-template-columns: 1fr minmax(270px, 380px); gap: 64px; align-items: end; }
.section-index-dark { display: block; margin-bottom: 17px; color: var(--wine); }
.dark-eyebrow { color: var(--wine); }
.collection .dark-eyebrow { color: var(--wine); }
.collection h2 { font-size: 60px; color: var(--ink); }
.collection-lede { margin: 0 0 2px; color: #795561; font-size: 14px; line-height: 1.65; }
.category-switch { width: min(1180px, calc(100% - 64px)); margin: 31px auto 0; display: flex; border-bottom: 1px solid rgba(66, 25, 38, 0.18); }
.category-tab {
  position: relative;
  min-width: 145px;
  padding: 0 0 11px;
  border: 0;
  color: #9b7480;
  background: transparent;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
}
.category-tab + .category-tab { margin-left: 34px; }
.category-tab::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: var(--rose); transition: width 0.25s ease; }
.category-tab[aria-selected="true"] { color: var(--ink); font-style: italic; }
.category-tab[aria-selected="true"]::after { width: 100%; }
.category-description { width: min(1180px, calc(100% - 64px)); margin: 12px auto 0; color: #80606a; font-size: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 27px; }
.product-card { position: relative; min-width: 0; padding-bottom: 14px; border-bottom: 1px solid rgba(66, 25, 38, 0.16); animation: rise-in 0.5s ease both; }
.product-media { position: relative; overflow: hidden; aspect-ratio: 1 / 0.97; background: var(--paper-deep); }
.product-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(145deg, rgba(255, 220, 227, 0.22), transparent 46%, rgba(217, 79, 123, 0.12)); pointer-events: none; }
.product-media::after { content: ""; position: absolute; inset: 8px; z-index: 2; border: 1px solid rgba(66, 25, 38, 0.12); pointer-events: none; }
.product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  filter: saturate(1.08) contrast(0.98) brightness(1.08) sepia(0.03);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}
.product-card:hover .product-media img { filter: saturate(1.13) contrast(1.04) brightness(1.06); transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 3; padding: 5px 8px; color: var(--paper); background: var(--rose); font-size: 9px; font-weight: 700; }
.add-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 233, 229, 0.55);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(111, 16, 45, 0.92);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.add-button:hover { color: var(--paper); background: var(--rose); transform: rotate(8deg) scale(1.05); }
.add-button:disabled { cursor: not-allowed; opacity: 0.45; }
.product-details { padding-top: 14px; }
.product-topline { display: flex; gap: 10px; flex-wrap: wrap; align-items: baseline; justify-content: space-between; }
.product-name { flex: 1 1 150px; margin: 0; font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: 0; line-height: 1.2; }
.product-price { color: var(--wine); font-family: var(--display); font-size: 17px; font-weight: 600; white-space: nowrap; }
.product-price del { margin-right: 5px; color: #a98590; font-family: var(--body); font-size: 10px; font-weight: 400; }
.product-description { min-height: 40px; margin: 7px 0 11px; color: #795762; font-size: 12px; line-height: 1.55; }
.product-specs { display: flex; gap: 6px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.product-specs li { padding: 4px 7px; border: 1px solid rgba(66, 25, 38, 0.17); color: #76545f; font-size: 9px; }
.stock-line { display: block; margin-top: 9px; color: #98727d; font-size: 9px; text-transform: uppercase; }
.collection-foot { display: flex; justify-content: space-between; margin-top: 31px; padding-top: 13px; border-top: 1px solid rgba(66, 25, 38, 0.16); color: #8d6873; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.collection-foot strong { color: var(--ink); }

.closing { display: grid; grid-template-columns: 0.78fr 1fr; gap: 64px; padding-top: 76px; padding-bottom: 78px; align-items: center; }
.closing-mark { color: rgba(232, 160, 167, 0.78); font-family: var(--display); font-size: 76px; font-style: italic; line-height: 1; }
.closing h2 { margin-top: 7px; }
.closing { background: #fff5f3; }
.closing p { max-width: 410px; margin: 15px 0 0; color: #76515d; font-size: 14px; line-height: 1.65; }
.site-footer { display: flex; justify-content: space-between; padding-top: 18px; padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); color: var(--muted); background: #fff5f3; font-size: 9px; font-weight: 600; text-transform: uppercase; }
.site-footer span:first-child { color: var(--ink); font-family: var(--display); font-style: italic; }

.bottom-dock {
  position: fixed;
  inset: auto 0 calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 20;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.bottom-dock::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 250px;
  height: 70px;
  border-radius: 50%;
  background: rgba(181, 22, 69, 0.12);
  filter: blur(21px);
  transform: translateX(-50%);
  animation: dock-halo 5.2s ease-in-out infinite;
  pointer-events: none;
}
.sticky-cta {
  position: relative;
  z-index: 1;
  width: min(232px, calc(100vw - 84px));
  min-width: 0;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 14px 61px 14px 20px;
  border: 1px solid rgba(244, 233, 229, 0.4);
  color: var(--paper);
  background: var(--wine);
  box-shadow: 0 15px 38px rgba(117, 34, 66, 0.28), 0 0 0 1px rgba(181, 22, 69, 0.16);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  animation: cta-nudge 4.2s ease-in-out infinite;
  pointer-events: auto;
}
.sticky-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.2) 50%, transparent 75%); transform: translateX(-120%); animation: cta-shimmer 4.8s ease-in-out infinite; }
.sticky-cta > span { position: relative; z-index: 1; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta span:last-child { flex: 0 0 auto; color: var(--champagne); font-size: 18px; }
.sticky-cta.cta-ink { background: var(--ink); }
.sticky-cta.cta-outline { border-color: var(--rose-soft); color: var(--paper); background: rgba(20, 12, 16, 0.88); backdrop-filter: blur(8px); }
.cart-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(104px, -50%);
  pointer-events: auto;
}
.cart-orbit::before { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(232, 160, 167, 0.38); border-radius: 50%; animation: cart-ring 3s ease-out infinite; pointer-events: none; }
.cart-fab {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(214, 180, 122, 0.9);
  border-radius: 50%;
  color: var(--paper);
  background: var(--wine-deep);
  box-shadow: 0 13px 32px rgba(91, 29, 50, 0.32), 0 0 0 6px rgba(217, 79, 123, 0.16);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.cart-fab:hover { background: var(--rose); box-shadow: 0 15px 36px rgba(91, 29, 50, 0.38), 0 0 0 8px rgba(217, 79, 123, 0.2); }
.cart-fab.has-items { box-shadow: 0 15px 36px rgba(91, 29, 50, 0.38), 0 0 0 7px rgba(217, 79, 123, 0.24); }
.cart-fab.is-catching { animation: cart-catch 0.58s cubic-bezier(0.2, 0.8, 0.2, 1); }
.cart-icon { position: relative; width: 19px; height: 16px; display: block; border: 1.7px solid currentColor; border-top: 0; border-radius: 2px 2px 5px 5px; }
.cart-icon::before { content: ""; position: absolute; left: 3px; top: -6px; width: 8px; height: 7px; border-top: 1.7px solid currentColor; transform: skew(-20deg); }
.cart-icon::after { content: "•  •"; position: absolute; left: 2px; bottom: -12px; font-size: 12px; letter-spacing: 2px; }
.cart-count { position: absolute; top: -5px; right: -5px; min-width: 22px; height: 22px; display: grid; place-items: center; padding: 0 5px; border: 2px solid var(--wine-deep); border-radius: 20px; color: var(--ink); background: var(--champagne); font-size: 10px; font-weight: 700; }
.cart-count.is-pop { animation: count-pop 0.48s cubic-bezier(0.2, 0.8, 0.2, 1); }
.drawer-overlay { position: fixed; inset: 0; z-index: 25; background: rgba(14, 6, 10, 0.68); backdrop-filter: blur(4px); }
.cart-drawer { position: fixed; inset: 0 0 0 auto; z-index: 30; width: min(430px, 100%); height: 100dvh; display: flex; flex-direction: column; padding: 28px 27px 23px; color: var(--ink); background: var(--paper); box-shadow: -20px 0 70px rgba(91, 29, 50, 0.2); transform: translateX(105%); transition: transform 0.38s cubic-bezier(0.2, 0.75, 0.2, 1); }
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid var(--line-dark); }
.drawer-head h2 { margin: 2px 0 0; font-family: var(--display); font-size: 34px; font-weight: 500; letter-spacing: 0; }
.drawer-head h2 span { color: #96868b; font-family: var(--body); font-size: 14px; }
.icon-button { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--ink); background: transparent; }
.close-button { font-size: 24px; font-weight: 300; line-height: 1; }
.cart-items { overflow-y: auto; padding-right: 4px; }
.cart-row { display: grid; grid-template-columns: 72px 1fr auto; gap: 13px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.cart-row-image { width: 72px; height: 72px; overflow: hidden; background: #ead8d4; }
.cart-row-image img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(0.88) contrast(1.04); }
.cart-row-name { margin: 0; font-family: var(--display); font-size: 16px; font-weight: 500; line-height: 1.2; }
.cart-row-meta { margin: 4px 0 7px; color: #8c7c81; font-size: 10px; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid var(--line-dark); }
.quantity-control button { width: 25px; height: 25px; padding: 0; border: 0; color: var(--ink); background: transparent; }
.quantity-control span { width: 24px; font-size: 11px; text-align: center; }
.cart-row-price { align-self: start; color: var(--wine); font-family: var(--display); font-size: 14px; font-weight: 600; white-space: nowrap; }
.remove-item { display: block; margin-top: 6px; padding: 0; border: 0; color: #96868b; background: transparent; font-size: 9px; text-decoration: underline; text-underline-offset: 3px; }
.cart-empty { display: none; min-height: 230px; place-items: center; align-content: center; text-align: center; }
.cart-empty.is-visible { display: grid; }
.empty-mark { color: var(--wine); font-family: var(--display); font-size: 28px; font-style: italic; }
.cart-empty p { margin: 10px 0 16px; color: #827278; font-size: 13px; }
.small-outline-button { padding: 9px 13px; border: 1px solid var(--line-dark); color: var(--ink); background: transparent; font-size: 10px; font-weight: 600; }
.drawer-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-dark); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; }
.cart-total-row strong { color: var(--wine); font-family: var(--display); font-size: 24px; }
.shipping-note { margin: 6px 0 13px; color: #89797e; font-size: 10px; }
.checkout-button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 0; color: var(--paper); background: var(--wine-deep); font-family: var(--display); font-size: 15px; font-weight: 500; }
.checkout-hint { margin: 8px 0 0; color: #a29397; font-size: 9px; text-align: center; }

.toast { position: fixed; z-index: 50; left: 50%; bottom: calc(84px + env(safe-area-inset-bottom, 0px)); max-width: min(360px, calc(100% - 32px)); padding: 11px 15px; border: 1px solid rgba(244, 233, 229, 0.25); color: var(--paper); background: #35121f; box-shadow: var(--shadow); font-size: 11px; opacity: 0; pointer-events: none; transform: translate(-50%, 10px); transition: opacity 0.25s ease, transform 0.25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.empty-products { grid-column: 1 / -1; margin: 0; color: rgba(244, 233, 229, 0.62); }

@keyframes hero-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes line-reveal { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes hero-breathe { from { transform: scale(1.105); } to { transform: scale(1.07); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cta-nudge { 0%, 68%, 100% { transform: translateY(0); } 72% { transform: translateY(-3px); } 77% { transform: translateY(1px); } 81% { transform: translateY(-1px); } 85% { transform: translateY(0); } }
@keyframes cta-shimmer { 0%, 62% { transform: translateX(-120%); } 82%, 100% { transform: translateX(120%); } }
@keyframes dock-halo { 0%, 100% { opacity: 0.62; transform: translateX(-50%) scale(0.94); } 50% { opacity: 0.95; transform: translateX(-50%) scale(1.06); } }
@keyframes cart-ring { 0% { opacity: 0.7; transform: scale(0.88); } 72%, 100% { opacity: 0; transform: scale(1.12); } }
@keyframes cart-catch { 0% { transform: scale(1) rotate(0); } 35% { transform: scale(1.15) rotate(-6deg); } 70% { transform: scale(0.96) rotate(3deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes count-pop { 0% { transform: scale(1); } 45% { transform: scale(1.32); } 100% { transform: scale(1); } }
.cart-flight { position: fixed; z-index: 22; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(214, 180, 122, 0.95); border-radius: 50%; color: var(--paper); background: var(--rose); box-shadow: 0 8px 20px rgba(17, 6, 11, 0.42), 0 0 0 7px rgba(181, 22, 69, 0.16); font-family: var(--display); font-size: 20px; font-weight: 600; line-height: 1; pointer-events: none; transform-origin: center; }

@media (max-width: 820px) {
  .section-wrap, .feature-grid, .category-switch, .category-description { width: calc(100% - 32px); }
  .masthead-inner { width: calc(100% - 32px); padding: 17px 0 14px; }
  .masthead .wordmark { color: var(--paper); text-shadow: 0 1px 10px rgba(58, 26, 40, 0.28); }
  .wordmark { font-size: 17px; }
  .masthead-meta span:last-child, .meta-rule, .announcement-line { display: none; }
  .hero { height: max(532px, calc(100svh - 42px)); min-height: 532px; align-items: flex-end; }
  .hero::after { inset: 8px; }
  .hero-media img { object-position: 72% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(255, 241, 241, 0.58) 0%, rgba(252, 225, 231, 0.42) 48%, rgba(238, 181, 197, 0.14) 72%, rgba(255, 244, 245, 0.02) 100%), linear-gradient(115deg, rgba(220, 92, 129, 0.12), transparent 65%); }
  .hero-content { width: calc(100% - 32px); margin: 0 auto 130px; padding-left: 19px; }
  .hero h1 { max-width: 520px; font-size: 55px; line-height: 0.98; }
  .hero-description { max-width: 410px; margin: 16px 0 18px; font-size: 13px; line-height: 1.55; }
  .hero-footer { display: none; }
  .intro { padding-top: 52px; padding-bottom: 55px; }
  .intro-copy { grid-template-columns: 1fr; gap: 22px; margin-top: 18px; }
  .intro h2, .collection h2, .closing h2 { font-size: 44px; }
  .intro-side p { font-size: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item, .feature-item + .feature-item { min-height: 0; padding: 19px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-item:last-child { border-bottom: 0; }
  .feature-item h3 { margin: 10px 0 3px; font-size: 19px; }
  .collection { padding: 55px 0 52px; }
  .collection-head { grid-template-columns: 1fr; gap: 14px; }
  .collection h2 { font-size: 46px; }
  .category-switch { margin-top: 28px; }
  .category-tab { min-width: 0; flex: 1; font-size: 17px; }
  .category-tab + .category-tab { margin-left: 22px; }
  .category-description { margin-top: 11px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 11px; margin-top: 22px; }
  .product-media { aspect-ratio: 1 / 1.08; }
  .product-badge { top: 9px; left: 9px; padding: 4px 6px; font-size: 8px; }
  .add-button { right: 9px; bottom: 9px; width: 44px; height: 44px; }
  .product-details { padding-top: 10px; }
  .product-topline { display: block; }
  .product-name { font-size: 17px; }
  .product-price { display: block; margin-top: 3px; font-size: 15px; }
  .product-description { min-height: 41px; margin: 5px 0 8px; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 12px; }
  .product-specs { gap: 4px; }
  .product-specs li { padding: 4px 6px; font-size: 10px; }
  .product-specs li:nth-child(n + 3) { display: none; }
  .stock-line { margin-top: 7px; font-size: 10px; }
  .collection-foot { margin-top: 28px; font-size: 9px; }
  .closing { grid-template-columns: 1fr; gap: 17px; padding-top: 54px; padding-bottom: 58px; }
  .closing-mark { font-size: 52px; }
  .site-footer { display: block; padding-bottom: 102px; line-height: 1.9; }
  .site-footer span { display: block; }
  .bottom-dock { bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .sticky-cta { width: min(226px, calc(100vw - 84px)); min-height: 54px; padding-top: 12px; padding-bottom: 12px; }
  .cart-orbit { transform: translate(98px, -50%); }
  .cart-fab { width: 54px; height: 54px; }
  .toast { bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
  .quantity-control button { width: 36px; height: 36px; }
  .quantity-control span { width: 32px; font-size: 12px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 47px; }
  .hero-description { max-width: 310px; }
  .collection h2 { font-size: 41px; }
  .product-grid { gap: 16px 9px; }
  .product-name { font-size: 16px; }
  .product-specs { display: none; }
  .stock-line { margin-top: 5px; }
  .collection-foot { display: block; line-height: 1.9; }
}

@media (max-width: 380px) and (max-height: 650px) {
  .hero-content { margin-bottom: 110px; }
  .sticky-cta { width: min(220px, calc(100vw - 84px)); padding-left: 15px; padding-right: 57px; }
  .cart-orbit { transform: translate(98px, -50%); }
  .cart-fab { width: 52px; height: 52px; }
}

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