:root {
  --milk: #f5eee5;
  --milk-deep: #e9d9c7;
  --latte: #c9a98b;
  --latte-dark: #876a54;
  --navy: #17243f;
  --navy-soft: #263654;
  --mist: #e3e8e7;
  --cyan: #5de4e6;
  --cyan-dark: #177f88;
  --rose: #d59693;
  --ink: #1d2637;
  --muted: #6f6d6b;
  --white: #fffdf9;
  --line: rgba(23, 36, 63, 0.16);
  --shadow: 0 24px 60px rgba(44, 34, 25, 0.12);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", "Microsoft YaHei", monospace;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --serif: "Songti SC", "STSong", "SimSun", serif;
  --page: min(1280px, calc(100vw - 64px));
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--cyan);
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--cyan-dark);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 14px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.notice {
  position: relative;
  z-index: 30;
  min-height: 34px;
  padding: 7px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #f8f4ed;
  font: 11px/1.4 var(--mono);
  letter-spacing: 0.12em;
}

.notice-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(93, 228, 230, 0.14);
}

.notice-code {
  position: absolute;
  right: 4vw;
  color: rgba(255, 255, 255, 0.54);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(23, 36, 63, 0.1);
  background: rgba(245, 238, 229, 0.86);
  backdrop-filter: blur(20px);
  transition: height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  box-shadow: 0 12px 30px rgba(38, 31, 24, 0.07);
}

.header-inner {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(255px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  background: var(--navy);
  border-radius: 2px 12px 2px 12px;
  transition: border-radius 180ms ease, transform 180ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(135deg);
  border-radius: 12px 2px 12px 2px;
}

.brand-mark span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

.brand-mark span:first-child {
  transform: translate(-7px, 0);
}

.brand-mark span:last-child {
  transform: translate(7px, 0);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font: 8px/1.1 var(--mono);
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  color: #3a4050;
  font-size: 13px;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--cyan-dark);
  transition: right 180ms ease;
}

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

.bag-button {
  justify-self: end;
  min-height: 42px;
  padding: 0 6px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.bag-button:hover {
  background: var(--navy);
  color: white;
}

.bag-count {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  font: 700 11px/1 var(--mono);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(76px, 9vw, 140px) 5vw clamp(70px, 8vw, 120px) max(32px, calc((100vw - min(1280px, calc(100vw - 64px))) / 2));
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: 12%;
  top: 12%;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 36, 63, 0.22);
  transform: rotate(45deg);
}

.hero-copy-inner {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--latte-dark);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.16em;
}

.eyebrow span + span {
  padding-left: 12px;
  border-left: 1px solid currentColor;
  color: var(--muted);
  font-weight: 400;
}

.eyebrow-light {
  color: var(--cyan);
}

.eyebrow-light span + span {
  color: rgba(255, 255, 255, 0.58);
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 640px;
  font-size: clamp(46px, 5vw, 78px);
}

h2 {
  font-size: clamp(40px, 4.4vw, 66px);
}

h1 em,
h2 em {
  color: var(--latte-dark);
  font-weight: 400;
  font-style: italic;
}

.hero-lede {
  max-width: 530px;
  margin: 28px 0 0;
  color: #55565e;
  font-size: 15px;
  line-height: 1.9;
}

.hero-actions,
.closing-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  border: 1px solid transparent;
  border-radius: 3px 16px 3px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, border-radius 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-3px);
  border-radius: 16px 3px 16px 3px;
}

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

.button-primary:hover,
.button-dark:hover {
  background: var(--navy-soft);
}

.button-quiet {
  padding-inline: 10px;
  color: var(--navy);
  border-bottom-color: var(--navy);
  border-radius: 0;
}

.button-quiet:hover {
  border-radius: 0;
  color: var(--cyan-dark);
  border-bottom-color: var(--cyan-dark);
}

.button-dark {
  background: var(--navy);
  color: white;
}

.button-cyan {
  background: var(--cyan);
  color: var(--navy);
}

.button-cyan:hover {
  background: #84f2ef;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
  color: white;
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-full {
  width: 100%;
}

.hero-facts {
  max-width: 520px;
  margin: 54px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--navy);
  font: 700 14px/1.2 var(--mono);
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: var(--milk-deep);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(78%, 690px);
  aspect-ratio: 1;
  border-radius: 48% 48% 12% 48%;
  background: rgba(255, 253, 249, 0.48);
  transform: rotate(13deg);
  box-shadow: 0 0 0 1px rgba(23, 36, 63, 0.06);
}

.visual-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.52;
  background-image: linear-gradient(rgba(23, 36, 63, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 36, 63, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 74%);
}

.hero-image {
  width: min(78%, 720px);
  filter: drop-shadow(0 34px 36px rgba(74, 53, 37, 0.18));
  transform: translateY(1%);
  animation: hero-in 750ms cubic-bezier(.2, .75, .22, 1) both;
}

@keyframes hero-in {
  from { opacity: 0; clip-path: polygon(0 100%, 100% 74%, 100% 100%, 0 100%); transform: translateY(8%); }
  to { opacity: 1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translateY(1%); }
}

.shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.shape-one {
  top: 12%;
  left: 12%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 18px solid var(--cyan);
  opacity: 0.72;
}

.shape-two {
  right: 9%;
  bottom: 17%;
  width: 46px;
  height: 46px;
  background: var(--navy);
  transform: rotate(45deg);
}

.glass-card {
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 40px rgba(70, 51, 34, 0.12);
  backdrop-filter: blur(14px);
}

.batch-card {
  position: absolute;
  left: 7%;
  bottom: 13%;
  min-width: 220px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  border-radius: 3px 22px 3px 22px;
}

.batch-label,
.hero-price > span {
  color: var(--latte-dark);
  font: 700 9px/1.4 var(--mono);
  letter-spacing: 0.13em;
}

.batch-card strong {
  margin-top: 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.batch-card > span:last-child {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.hero-price {
  position: absolute;
  top: 11%;
  right: 7%;
  width: 124px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50% 8px 50% 50%;
  text-align: center;
}

.hero-price strong {
  color: var(--navy);
  font: 700 32px/1.3 var(--mono);
}

.hero-price strong small,
.hero-price strong span {
  font-size: 10px;
}

.scroll-cue {
  position: absolute;
  right: 4%;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(23, 36, 63, 0.64);
  font: 8px/1 var(--mono);
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 34px;
  background: var(--navy);
  animation: scroll-line 1.7s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(.35); opacity: .35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ticker-track {
  width: max-content;
  min-height: 46px;
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  margin-inline: 32px;
  color: var(--navy);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.2em;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-dark);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(94px, 10vw, 150px);
}

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

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  align-items: end;
  gap: 70px;
}

.heading-row > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.85;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px 42px 6px 42px;
  background: rgba(255, 253, 249, 0.48);
  box-shadow: var(--shadow);
}

.featured-image {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #e3c7b4;
  isolation: isolate;
}

.featured-image::before,
.featured-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(23, 36, 63, .18);
}

.featured-image::before {
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .14), 0 0 0 61px rgba(23, 36, 63, .08);
}

.featured-image::after {
  width: 42px;
  height: 42px;
  top: 12%;
  right: 12%;
  transform: rotate(45deg);
  background: var(--cyan);
  border: 0;
}

.featured-image img {
  width: min(67%, 530px);
  filter: drop-shadow(0 32px 30px rgba(77, 45, 35, .19));
  transition: transform 300ms ease;
}

.featured-story:hover .featured-image img {
  transform: translateY(-8px) rotate(-1deg);
}

.edition-tag {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 30px;
  padding: 8px 12px;
  background: var(--navy);
  color: white;
  font: 9px/1 var(--mono);
  letter-spacing: .13em;
}

.featured-number {
  position: absolute;
  right: 26px;
  bottom: -30px;
  color: rgba(255, 255, 255, .4);
  font: 700 clamp(120px, 15vw, 230px)/1 var(--mono);
}

.featured-copy {
  padding: clamp(48px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.product-kicker,
.product-info p {
  margin: 0;
  color: var(--latte-dark);
  font: 700 9px/1.4 var(--mono);
  letter-spacing: .14em;
}

.featured-copy h3 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.25;
}

.featured-copy > p:not(.product-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.taste-notes {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.taste-notes li {
  display: grid;
  grid-template-columns: minmax(70px, 1fr) 62px;
  align-items: center;
  gap: 10px;
  color: #5f6269;
  font: 10px/1 var(--mono);
}

.taste-notes li::before {
  content: "";
  grid-column: 1;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(to right, var(--cyan-dark) var(--level), var(--mist) var(--level));
}

.taste-notes li {
  grid-auto-flow: dense;
}

.taste-notes li span {
  display: none;
}

.featured-bottom {
  margin-top: 42px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.price {
  color: var(--navy);
  font: 700 32px/1 var(--mono);
}

.price small,
.product-info strong small {
  margin-right: 2px;
  font-size: 12px;
}

.collection {
  padding-top: 20px;
}

.collection-head {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.collection-head h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.filter-button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, .32);
  color: #62636a;
  font-size: 11px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.filter-button:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
}

.filter-button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

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

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

.product-card.is-hidden {
  display: none;
}

.product-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 4px 26px 4px 26px;
  isolation: isolate;
}

.product-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 36, 63, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, .1);
}

.product-image img {
  width: 74%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(49, 36, 26, .16));
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.045) rotate(-1.5deg);
}

.image-warm { background: #e6cbbb; }
.image-blue { background: #cbd8db; }
.image-pink { background: #e8d1d0; }
.image-navy { background: var(--navy); }
.image-mocha { background: #c1a28e; }
.image-mist { background: #dfe2dd; }

.product-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  background: rgba(255, 253, 249, .72);
  color: var(--navy);
  font: 700 8px/1 var(--mono);
  letter-spacing: .11em;
  backdrop-filter: blur(8px);
}

.badge-light {
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: white;
}

.quick-add {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font: 400 25px/1 var(--mono);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.quick-add:hover {
  transform: rotate(90deg);
  background: var(--navy);
  color: white;
}

.quick-add-light {
  border-color: white;
  background: var(--cyan);
}

.product-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.product-info h3 {
  margin: 5px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.product-info strong {
  color: var(--navy);
  font: 700 19px/1 var(--mono);
  white-space: nowrap;
}

.product-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.gift-story {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: white;
}

.gift-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: linear-gradient(135deg, #dac0a7 0%, #b4947a 100%);
}

.gift-visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 8%;
  border: 1px solid rgba(23, 36, 63, .2);
  border-radius: 50%;
}

.gift-visual::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 20%;
  border: 1px dashed rgba(23, 36, 63, .18);
  border-radius: 50%;
}

.gift-visual > img {
  width: min(62%, 520px);
  filter: drop-shadow(0 45px 30px rgba(40, 29, 23, .23));
  transform: rotate(-4deg);
}

.gift-orbit {
  position: absolute;
  inset: 14%;
  animation: orbit 20s linear infinite;
}

.gift-orbit span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--cyan);
  transform: rotate(45deg);
}

.gift-orbit span:first-child { top: 3%; left: 45%; }
.gift-orbit span:nth-child(2) { bottom: 18%; left: 2%; width: 10px; height: 10px; }
.gift-orbit span:last-child { right: 2%; top: 44%; width: 24px; height: 24px; background: var(--navy); }

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.gift-note {
  position: absolute;
  left: 8%;
  bottom: 8%;
  max-width: 260px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 2px 20px 2px 20px;
  color: var(--navy);
}

.gift-note span {
  color: var(--latte-dark);
  font: 700 8px/1 var(--mono);
  letter-spacing: .14em;
}

.gift-note strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
}

.gift-copy {
  padding: clamp(76px, 8vw, 130px) clamp(48px, 8vw, 130px);
  align-self: center;
}

.gift-copy h2,
.closing h2 {
  color: white;
}

.gift-copy h2 em,
.closing h2 em {
  color: #d8bda4;
}

.gift-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .66);
  line-height: 1.9;
}

.gift-options {
  margin-block: 46px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.gift-options > div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 44px 120px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.gift-options span {
  color: var(--cyan);
  font: 700 10px/1 var(--mono);
}

.gift-options h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
}

.gift-options p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.delivery {
  padding-bottom: 80px;
}

.delivery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.delivery-head .eyebrow {
  margin-bottom: 10px;
}

.delivery-head h2 {
  text-align: right;
  font-size: clamp(38px, 4vw, 58px);
}

.steps {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 330px;
  padding: 24px 30px 28px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--line);
}

.steps li + li {
  border-left: 1px solid var(--line);
}

.step-number {
  color: var(--latte-dark);
  font: 700 10px/1 var(--mono);
}

.step-icon {
  width: 74px;
  height: 74px;
  margin: 34px 0 36px;
  position: relative;
  border: 1px solid var(--navy);
  border-radius: 50% 4px 50% 50%;
}

.step-icon::before,
.step-icon::after,
.step-icon span::before,
.step-icon span::after {
  content: "";
  position: absolute;
  background: var(--navy);
}

.step-icon::before {
  width: 28px;
  height: 1px;
  left: 22px;
  top: 30px;
}

.step-icon::after {
  width: 1px;
  height: 28px;
  top: 17px;
  left: 36px;
}

.step-icon span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 33px;
  top: 27px;
  background: var(--cyan-dark);
}

.icon-whisk::before {
  width: 2px;
  height: 35px;
  top: 14px;
  left: 36px;
  transform: rotate(-18deg);
}

.icon-whisk::after {
  width: 19px;
  height: 25px;
  left: 26px;
  top: 32px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: transparent;
  transform: rotate(-18deg);
}

.icon-box::before {
  width: 31px;
  height: 25px;
  left: 20px;
  top: 27px;
  border: 1px solid var(--navy);
  background: transparent;
}

.icon-box::after {
  width: 31px;
  height: 1px;
  left: 20px;
  top: 35px;
}

.icon-home::before {
  width: 28px;
  height: 24px;
  left: 22px;
  top: 32px;
  border: 1px solid var(--navy);
  background: transparent;
}

.icon-home::after {
  width: 22px;
  height: 22px;
  left: 25px;
  top: 21px;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
  background: transparent;
  transform: rotate(45deg);
}

.steps h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
}

.steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.delivery-tip {
  margin-top: 38px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: 3px 22px 3px 22px;
  background: var(--mist);
}

.delivery-tip > span {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
}

.delivery-tip p {
  margin: 0;
  color: #5f6268;
  font-size: 12px;
}

.delivery-tip strong {
  margin-right: 16px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 15px;
}

.taste-lab {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.taste-copy h2 {
  font-size: clamp(40px, 4.2vw, 60px);
}

.taste-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
}

.taste-buttons {
  margin-top: 34px;
  display: grid;
  gap: 8px;
}

.taste-button {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 2px 16px 2px 16px;
  background: transparent;
  color: #67666a;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.taste-button:hover {
  transform: translateX(5px);
}

.taste-button.is-active {
  background: var(--navy);
  color: white;
}

.taste-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,255,255,.08);
}

.dot-pink { background: #dc9695; }
.dot-brown { background: #9f755f; }
.dot-green { background: #839c79; }

.taste-result {
  min-height: 510px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border-radius: 4px 34px 4px 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.taste-result-visual {
  position: relative;
  overflow: hidden;
  background: #e4c6b5;
}

.taste-result-visual::before {
  content: "";
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  left: 16%;
  top: 17%;
  border: 1px solid rgba(23,36,63,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.14);
}

.taste-result-visual span {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: inset -10px -12px 0 rgba(111, 55, 60, .13), 0 18px 26px rgba(70,42,36,.18);
  transform: translate(-50%, -50%);
  transition: all 240ms cubic-bezier(.2,.8,.2,1);
}

.taste-result-visual span:first-child {
  width: 145px;
  height: 72px;
  border-radius: 50% 50% 18% 18%;
  transform: translate(-50%, -25%);
}

.taste-result-visual span:nth-child(2) {
  width: 130px;
  height: 70px;
  border-radius: 50% 50% 15% 15%;
  transform: translate(-50%, -92%);
  background: #f4e8da;
}

.taste-result-visual span:last-child {
  width: 20px;
  height: 20px;
  transform: translate(28px, -105px);
  background: #b54e59;
}

.taste-result.is-rich .taste-result-visual { background: #b28f7b; }
.taste-result.is-rich .taste-result-visual span:first-child { width: 155px; height: 155px; border-radius: 50% 50% 12% 12%; background: #56362f; transform: translate(-50%, -42%); }
.taste-result.is-rich .taste-result-visual span:nth-child(2) { width: 112px; height: 42px; border-radius: 50%; background: #aa7960; transform: translate(-50%, -155%); }
.taste-result.is-rich .taste-result-visual span:last-child { width: 24px; height: 24px; background: #d8b998; transform: translate(38px, -83px) rotate(45deg); border-radius: 3px; }

.taste-result.is-tea .taste-result-visual { background: #cad1c0; }
.taste-result.is-tea .taste-result-visual span:first-child { width: 150px; height: 84px; border-radius: 50%; background: #e4cfa7; transform: translate(-50%, -25%); }
.taste-result.is-tea .taste-result-visual span:nth-child(2) { width: 150px; height: 84px; border-radius: 50%; background: #b0bd93; transform: translate(-50%, -88%); }
.taste-result.is-tea .taste-result-visual span:last-child { width: 18px; height: 36px; background: #728b5c; transform: translate(24px, -103px) rotate(42deg); border-radius: 100% 0 100% 0; }

.taste-result > div:last-child {
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-label {
  color: var(--latte-dark);
  font: 700 9px/1.2 var(--mono);
  letter-spacing: .14em;
}

.taste-result h3 {
  margin: 12px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.35;
}

.taste-result p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.taste-result a {
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 9vw, 140px);
  border-top: 1px solid var(--line);
}

.faq-head h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.faq-list {
  border-top: 1px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 76px;
  padding: 24px 52px 24px 4px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--navy);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  content: "";
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details > p {
  margin: -6px 0 0;
  padding: 0 50px 28px 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.closing {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  text-align: center;
  isolation: isolate;
}

.closing::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(54vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 91px rgba(255,255,255,.07);
}

.closing-inner {
  max-width: 820px;
  padding: 90px 28px;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.closing-inner > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255,255,255,.62);
}

.closing-actions {
  justify-content: center;
}

.closing-shape {
  position: absolute;
  z-index: -1;
  background: var(--cyan);
}

.closing-shape-one {
  left: 9%;
  top: 21%;
  width: 42px;
  height: 42px;
  transform: rotate(45deg);
}

.closing-shape-two {
  right: 10%;
  bottom: 18%;
  width: 64px;
  height: 64px;
  border: 16px solid var(--cyan);
  border-radius: 50%;
  background: transparent;
}

.reveal {
  opacity: 1;
  transform: none;
  clip-path: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  clip-path: polygon(0 18px, 100% 0, 100% 100%, 0 100%);
  transition: opacity 480ms ease, transform 480ms cubic-bezier(.2,.8,.2,1), clip-path 480ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bag-dialog {
  width: min(480px, 100%);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: -30px 0 70px rgba(11, 19, 36, .2);
  animation: bag-in 220ms cubic-bezier(.2,.8,.2,1);
}

.bag-dialog::backdrop {
  background: rgba(12, 22, 42, .56);
  backdrop-filter: blur(3px);
}

@keyframes bag-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.bag-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.bag-head {
  padding: 28px 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.bag-head span {
  color: var(--latte-dark);
  font: 700 9px/1 var(--mono);
  letter-spacing: .14em;
}

.bag-head h2 {
  margin-top: 5px;
  font-size: 34px;
}

.dialog-close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 21px;
  width: 18px;
  height: 1px;
  background: var(--navy);
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.bag-body {
  overflow: auto;
  padding: 12px 26px;
}

.bag-empty {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bag-empty > span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50% 5px 50% 50%;
  color: var(--cyan-dark);
  font: 28px/1 var(--mono);
}

.bag-empty h3 {
  margin: 22px 0 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
}

.bag-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.bag-item {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.bag-item-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 3px 15px 3px 15px;
  background: var(--milk-deep);
  color: var(--navy);
  font: 700 20px/1 var(--serif);
}

.bag-item h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 15px;
}

.bag-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font: 10px/1.3 var(--mono);
}

.bag-item-controls {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.bag-item-controls strong {
  color: var(--navy);
  font: 700 13px/1 var(--mono);
}

.bag-remove {
  padding: 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  cursor: pointer;
}

.bag-footer {
  padding: 22px 26px max(26px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--milk);
}

.bag-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bag-total span {
  font-size: 12px;
}

.bag-total strong {
  color: var(--navy);
  font: 700 25px/1 var(--mono);
}

.bag-footer > p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 26px;
  max-width: min(400px, calc(100vw - 32px));
  padding: 13px 18px;
  border-radius: 3px 14px 3px 14px;
  background: var(--navy);
  color: white;
  box-shadow: 0 15px 35px rgba(13, 22, 42, .25);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1120px) {
  :root { --page: min(100% - 48px, 1040px); }

  .header-inner { grid-template-columns: 1fr auto auto; }
  .site-nav { gap: 18px; }
  .brand-copy small { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 600px; }
  .hero-copy { padding-left: 5vw; }
  .featured-story { grid-template-columns: 1.15fr .85fr; }
  .featured-copy { padding: 46px; }
  .product-image { min-height: 350px; }
  .gift-copy { padding-inline: 56px; }
  .taste-result { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --page: min(100% - 40px, 820px); }
  html { scroll-padding-top: 80px; }
  .notice-code { display: none; }
  .site-header, .site-header.is-scrolled { height: 68px; }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    width: 17px;
    height: 1px;
    background: var(--navy);
    transition: transform 180ms ease;
  }
  .menu-toggle > span:nth-child(2) { transform: translateY(-4px); }
  .menu-toggle > span:nth-child(3) { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    padding: 28px max(24px, 5vw) 34px;
    display: grid;
    gap: 0;
    background: rgba(245, 238, 229, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 35px rgba(44, 34, 25, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 18px; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 90px max(24px, 6vw) 80px; }
  .hero-copy-inner { max-width: 680px; }
  .hero-visual { min-height: 680px; }
  .hero-image { width: min(72%, 600px); }
  .heading-row { grid-template-columns: 1fr; gap: 26px; }
  .heading-row > p { max-width: 580px; }
  .featured-story { grid-template-columns: 1fr; }
  .featured-image { min-height: 580px; }
  .featured-copy { padding: 56px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-image { min-height: 410px; }
  .gift-story { grid-template-columns: 1fr; }
  .gift-visual { min-height: 700px; }
  .gift-copy { padding: 90px max(32px, 8vw) 100px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(3) { border-left: 0; }
  .taste-lab { grid-template-columns: 1fr; }
  .taste-copy { max-width: 620px; }
  .taste-buttons { max-width: 520px; }
  .taste-result { min-height: 540px; }
  .faq { grid-template-columns: 1fr; }
  .faq-head { max-width: 620px; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 32px); }
  .notice { min-height: 32px; font-size: 9px; letter-spacing: .08em; }
  .site-header, .site-header.is-scrolled { height: 62px; }
  .header-inner { gap: 7px; }
  .brand { gap: 8px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-copy strong { font-size: 14px; }
  .menu-toggle { width: 38px; height: 38px; }
  .site-nav { inset: 100% 0 auto; }
  .bag-button { min-height: 38px; padding-left: 12px; gap: 8px; }
  .bag-button > span:first-child { display: none; }
  .bag-count { min-width: 28px; height: 28px; }
  .hero-copy { min-height: 620px; padding: 72px 22px 62px; }
  .hero-copy::before { width: 30px; top: 7%; }
  h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-lede { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .button-quiet { width: fit-content !important; align-self: center; }
  .hero-facts { margin-top: 42px; }
  .hero-facts div + div { padding-left: 12px; }
  .hero-facts dt { font-size: 12px; }
  .hero-facts dd { font-size: 9px; }
  .hero-visual { min-height: 530px; }
  .hero-visual::before { width: 86%; }
  .hero-image { width: 90%; }
  .hero-price { width: 96px; right: 5%; top: 8%; }
  .hero-price strong { font-size: 25px; }
  .batch-card { left: 5%; bottom: 8%; min-width: 190px; padding: 14px 16px; }
  .scroll-cue { display: none; }
  .shape-one { width: 48px; height: 48px; border-width: 12px; }
  .shape-two { width: 30px; height: 30px; }
  .section { padding-block: 84px; }
  .section-heading { margin-bottom: 38px; }
  h2 { font-size: clamp(36px, 11vw, 50px); }
  .heading-row { gap: 20px; }
  .featured-story { min-height: 0; border-radius: 4px 28px 4px 28px; }
  .featured-image { min-height: 390px; }
  .featured-image img { width: 76%; }
  .featured-copy { padding: 36px 24px 40px; }
  .featured-copy h3 { font-size: 31px; }
  .featured-bottom { align-items: stretch; flex-direction: column; }
  .featured-bottom .button { width: 100%; }
  .collection { padding-top: 10px; }
  .collection-head { align-items: stretch; flex-direction: column; gap: 24px; }
  .filter-group { justify-content: flex-start; flex-wrap: nowrap; margin-right: -16px; padding-right: 16px; overflow-x: auto; scrollbar-width: none; }
  .filter-group::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; }
  .product-grid { grid-template-columns: 1fr; gap: 44px; }
  .product-image { min-height: 410px; }
  .gift-visual { min-height: 520px; }
  .gift-visual > img { width: 72%; }
  .gift-note { max-width: 220px; left: 5%; bottom: 5%; }
  .gift-copy { padding: 74px 24px 82px; }
  .gift-options > div { grid-template-columns: 34px 1fr; gap: 10px; }
  .gift-options p { grid-column: 2; }
  .gift-copy .button { width: 100%; }
  .delivery-head { align-items: flex-start; flex-direction: column; }
  .delivery-head h2 { text-align: left; }
  .steps { grid-template-columns: 1fr; margin-top: 50px; }
  .steps li { min-height: 260px; padding: 24px 22px; }
  .steps li + li { border-left: 0; border-top: 0; }
  .step-icon { margin: 26px 0 24px; }
  .delivery-tip { align-items: flex-start; padding: 20px; }
  .delivery-tip strong { display: block; margin: 0 0 6px; }
  .taste-lab { gap: 48px; }
  .taste-result { min-height: 630px; grid-template-columns: 1fr; grid-template-rows: 1.15fr .85fr; }
  .taste-result > div:last-child { padding: 30px 26px; }
  .faq { gap: 48px; }
  .faq-list summary { min-height: 70px; font-size: 15px; }
  .closing { min-height: 600px; }
  .closing-inner { padding-inline: 20px; }
  .closing-actions { flex-direction: column; align-items: stretch; }
  .closing-shape-one { left: 6%; top: 13%; width: 30px; height: 30px; }
  .closing-shape-two { right: 6%; bottom: 12%; width: 48px; height: 48px; border-width: 12px; }
  .bag-dialog { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; clip-path: none; }
  .ticker-track { transform: none; }
}

@media (forced-colors: active) {
  .brand-mark,
  .quick-add,
  .button,
  .filter-button,
  .taste-button {
    border: 1px solid ButtonText;
  }
}
