:root {
  color-scheme: light;
  --paper: #f2ecde;
  --paper-soft: #faf6ed;
  --paper-deep: #e5dfcf;
  --olive: #273126;
  --olive-soft: #394536;
  --olive-mist: #dde1d4;
  --copper: #98442b;
  --copper-soft: #d8926b;
  --muted: #68695f;
  --line: rgba(39, 49, 38, 0.2);
  --shadow: 0 24px 60px rgba(63, 54, 36, 0.12);
  --radius: 14px;
  --radius-small: 10px;
  --pill: 999px;
  --container: 1280px;
  --header-height: 88px;
  --font-display: Cambria, "Times New Roman", serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  color: var(--olive);
  font-family: var(--font-body);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

[data-content-error] {
  width: min(var(--container), calc(100% - 64px));
  margin: 14px auto 0;
  color: var(--copper);
  font-weight: 700;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  min-width: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius-small);
  background: var(--olive);
  color: var(--paper-soft);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 237, 0.96);
}

.site-nav {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand categories actions";
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  border-bottom: 2px solid var(--olive);
}

.brand-link {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.brand-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.brand-link:active {
  transform: translateY(1px) scale(0.99);
}

.brand-logo-horizontal {
  position: relative;
  display: block;
  flex: none;
  overflow: hidden;
  width: 272px;
  height: 76px;
}

.brand-logo-horizontal img {
  position: absolute;
  max-width: none;
  width: 371px;
  height: 185px;
  transform: translate(-51px, -53px);
}

.brand-logo-mark {
  display: none;
}

.category-nav {
  grid-area: categories;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.category-nav a {
  position: relative;
  flex: none;
  padding: 11px clamp(12px, 1.25vw, 20px);
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.78vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}

.category-nav a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: rgba(39, 49, 38, 0.48);
  transform: translateY(-50%);
}

.category-nav a::after {
  content: "";
  position: absolute;
  right: clamp(12px, 1.25vw, 20px);
  bottom: 2px;
  left: clamp(12px, 1.25vw, 20px);
  height: 3px;
  border-radius: var(--pill);
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 220ms var(--ease);
}

.category-nav a:hover,
.category-nav a[aria-current="page"] {
  color: var(--copper);
}

.category-nav a:hover::after,
.category-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.category-nav a:active {
  transform: translateY(1px);
}

@media (min-width: 1181px) {
  .site-nav {
    min-height: 88px;
    grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
    grid-template-areas: "categories-start brand actions";
    gap: clamp(16px, 1.5vw, 30px);
    border-bottom-width: 1px;
    box-shadow: inset 0 -3px 0 var(--copper);
  }

  .category-nav--start {
    grid-area: categories-start;
    justify-content: flex-start;
  }

  .brand-link--capybara {
    grid-area: brand;
    width: 68px;
    height: 68px;
    justify-self: center;
  }

  .brand-link--capybara .brand-logo-horizontal {
    display: none;
  }

  .brand-logo-mark {
    display: block;
    width: 68px;
    height: 68px;
    overflow: hidden;
    border: 1px solid var(--copper);
    border-radius: 50%;
    background: #06182c;
  }

  .brand-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-actions {
    min-width: 0;
    gap: clamp(10px, 1vw, 16px);
  }

  .category-nav--end {
    justify-content: flex-end;
  }

  .category-nav--start a,
  .category-nav--end a {
    padding-right: clamp(8px, 0.75vw, 12px);
    padding-left: clamp(8px, 0.75vw, 12px);
    font-size: clamp(0.64rem, 0.7vw, 0.74rem);
  }

  .category-nav--start a::after,
  .category-nav--end a::after {
    right: clamp(8px, 0.75vw, 12px);
    left: clamp(8px, 0.75vw, 12px);
  }

  .cart-pill {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.84rem;
  }
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cart-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 18px;
  border: 1px solid var(--olive);
  border-radius: var(--pill);
  background: var(--olive);
  color: var(--paper-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.cart-pill svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.cart-pill:hover,
.cart-pill[aria-current="page"] {
  background: var(--olive-soft);
}

.cart-pill:hover {
  transform: translateY(-2px);
}

.cart-pill:active {
  transform: translateY(1px) scale(0.98);
}

.button,
.add-button,
.category-tab {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.button {
  padding: 14px 22px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--paper-soft);
}

.button--copper {
  border-color: var(--copper);
  background: var(--copper);
}

.button--outline {
  background: transparent;
  color: var(--olive);
}

.button:hover,
.add-button:hover,
.category-tab:hover {
  transform: translateY(-2px);
}

.button:active,
.add-button:active,
.category-tab:active {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--olive);
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 39;
  overflow-y: auto;
  padding: 20px clamp(20px, 5vw, 40px) 40px;
  background: var(--paper-soft);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 7vw, 2.8rem);
  text-align: left;
}

.mobile-nav a[aria-current="page"] {
  color: var(--copper);
}

.home-hero {
  border-bottom: 1px solid var(--line);
}

.home-hero-motion {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.home-hero-motion .home-hero-grid {
  position: relative;
  z-index: 1;
}

.home-hero-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.34;
}

.home-hero-glow--one {
  top: -26%;
  left: 33%;
  width: min(48vw, 660px);
  aspect-ratio: 1;
  background: var(--copper-soft);
}

.home-hero-glow--two {
  right: -11%;
  bottom: -34%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  background: var(--olive-mist);
}

.home-hero-steam {
  position: absolute;
  width: 90px;
  height: 240px;
  border-inline-start: 1px solid rgb(250 246 237 / 0.48);
  border-radius: 50%;
  opacity: 0.12;
  transform-origin: bottom center;
  animation: hero-steam 7s ease-in-out infinite alternate;
}

.home-hero-steam--one {
  top: 21%;
  right: 34%;
}

.home-hero-steam--two {
  top: 38%;
  right: 18%;
  height: 190px;
  animation-delay: -3.5s;
}

@keyframes hero-steam {
  from {
    opacity: 0.08;
    transform: translateY(20px) rotate(-6deg);
  }

  to {
    opacity: 0.46;
    transform: translateY(-34px) rotate(8deg);
  }
}

.home-hero-grid {
  display: grid;
  align-items: stretch;
  column-gap: clamp(2rem, 4vw, 5rem);
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  min-height: calc(100dvh - var(--header-height));
  max-height: 780px;
}

.home-hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(36px, 5vw, 76px) 56px 0;
}

.home-hero-copy h1,
.menu-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.home-hero-copy h1 {
  font-size: clamp(3.6rem, 5.1vw, 4.5rem);
}

.home-hero-copy h1 span {
  display: block;
}

.home-hero-copy p,
.menu-hero-copy p {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-featured-menu {
  padding: clamp(84px, 10vw, 144px) 0;
  background: var(--paper-soft);
}

.home-featured-menu__heading {
  max-width: 620px;
  margin-bottom: clamp(38px, 5vw, 72px);
}

.home-featured-menu__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.7vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.home-featured-menu__heading p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.home-featured-menu__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(245px, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  min-height: clamp(520px, 48vw, 680px);
}

.home-featured-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  color: #fffdf8;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 18px 42px rgb(48 42 31 / 0.12);
}

.home-featured-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgb(18 20 15 / 0.02) 24%, rgb(18 20 15 / 0.82) 100%);
}

.home-featured-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.home-featured-card__copy {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2.25vw, 32px);
  transition: transform 420ms ease;
}

.home-featured-card__category,
.home-featured-card__description,
.home-featured-card__footer {
  margin: 0;
  font-family: var(--font-sans);
}

.home-featured-card__category {
  margin-bottom: 10px;
  color: rgb(255 253 248 / 0.76);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-featured-card h3 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.home-featured-card__description {
  max-width: 32ch;
  margin-top: 12px;
  color: rgb(255 253 248 / 0.84);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  font-size: 0.76rem;
  font-weight: 800;
}

.home-featured-card__footer span:last-child {
  color: rgb(255 253 248 / 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-featured-card--egg {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home-featured-card--caramel {
  grid-column: 2;
  grid-row: 1;
}

.home-featured-card--peach {
  grid-column: 3;
  grid-row: 1;
}

.home-featured-card--croissant {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.home-featured-card:hover img,
.home-featured-card:focus-visible img {
  transform: scale(1.055);
}

.home-featured-card:hover .home-featured-card__copy,
.home-featured-card:focus-visible .home-featured-card__copy {
  transform: translateY(-6px);
}

.home-featured-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.home-day-rhythm {
  padding: clamp(96px, 11vw, 164px) 0;
  background: var(--paper-deep);
}

.home-day-rhythm__heading {
  max-width: 680px;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.home-day-rhythm__heading h2,
.home-cta h2,
.catalogue-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.7vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.home-day-rhythm__heading p,
.home-cta p {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.home-day-rhythm__heading p {
  color: var(--muted);
}

.home-cta p {
  color: inherit;
  opacity: 0.8;
}

.home-day-rhythm__moments {
  display: grid;
  border-top: 1px solid rgb(39 49 38 / 0.18);
}

.home-day-rhythm__moment {
  display: grid;
  grid-template-columns: minmax(82px, 0.32fr) minmax(0, 1.2fr) minmax(240px, 0.78fr);
  grid-template-areas: "time media copy";
  column-gap: clamp(24px, 4vw, 72px);
  align-items: center;
  min-height: clamp(320px, 30vw, 440px);
  padding: clamp(26px, 3.5vw, 52px) 0;
  border-bottom: 1px solid rgb(39 49 38 / 0.18);
}

.home-day-rhythm__moment--midday {
  grid-template-areas: "time copy media";
}

.home-day-rhythm__time {
  grid-area: time;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding-top: 4px;
  border-right: 1px solid rgb(164 73 43 / 0.45);
  color: var(--copper);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-day-rhythm__media {
  grid-area: media;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper-soft);
}

.home-day-rhythm__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.home-day-rhythm__copy {
  grid-area: copy;
  max-width: 30rem;
}

.home-day-rhythm__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.home-day-rhythm__copy p {
  max-width: 31ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.home-day-rhythm__action {
  margin: clamp(42px, 6vw, 76px) 0 0 clamp(82px, 10.4vw, 214px);
}

.home-day-rhythm__action .button--outline {
  border-color: var(--ink);
  color: var(--ink);
}

.date-ritual {
  padding: clamp(96px, 11vw, 164px) 0;
  background: var(--paper);
}

.date-ritual__intro {
  margin: 0 0 clamp(44px, 7vw, 86px);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.date-ritual__chapter {
  display: grid;
  grid-template-columns: minmax(72px, .22fr) minmax(0, 1.12fr) minmax(260px, .78fr);
  column-gap: clamp(24px, 4vw, 68px);
  align-items: center;
  padding: clamp(34px, 5vw, 74px) 0;
  border-top: 1px solid rgb(39 49 38 / .18);
}

.date-ritual__chapter--coffee {
  grid-template-areas: "number visual copy";
}

.date-ritual__chapter--bakery {
  grid-template-areas: "number copy visual";
}

.date-ritual__number {
  grid-area: number;
  align-self: stretch;
  margin: 0;
  padding-right: 18px;
  border-right: 1px solid rgb(164 73 43 / .42);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.date-ritual__visual {
  grid-area: visual;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.date-ritual__copy {
  grid-area: copy;
  max-width: 32rem;
}

.date-ritual__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 4.6vw, 5.5rem);
  letter-spacing: -.06em;
  line-height: .92;
}

.date-ritual__copy p {
  max-width: 34ch;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.date-ritual__action {
  margin-top: 28px;
}

.date-ritual__visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.date-ritual__visual--desserts {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--olive);
}

.date-ritual__visual--desserts img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.date-ritual__visual--desserts img:first-child {
  grid-row: 1 / -1;
  aspect-ratio: 4 / 3;
}

.date-ritual__visual--desserts img:not(:first-child) {
  aspect-ratio: 4 / 3;
}

.home-cta {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.home-cta h2 {
  max-width: 720px;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.about-page {
  overflow: clip;
}

.about-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-hero {
  padding: 38px 0 120px;
  border-bottom: 1px solid var(--line);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: stretch;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}

.about-hero-copy .breadcrumb {
  margin-bottom: auto;
}

.about-hero-copy h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 6.3vw, 6.3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.about-hero-copy > p:not(.about-kicker) {
  max-width: 48ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--copper);
  font-weight: 750;
  transition: gap 200ms var(--ease), opacity 200ms var(--ease);
}

.text-link:hover {
  gap: 16px;
  opacity: 0.76;
}

.about-hero-media {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--olive);
}

.about-hero-media figure,
.about-world-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.about-hero-media-main {
  grid-row: 1 / 3;
}

.about-hero-media--espresso-film {
  position: relative;
  display: block;
  isolation: isolate;
  margin: 0;
  background: #06182c;
}

.about-hero-media--espresso-film::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgb(6 24 44 / 0.04), rgb(6 24 44 / 0.2));
}

.about-hero-media--espresso-film video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition: transform 700ms var(--ease);
}

.about-hero-media--espresso-film:hover video {
  transform: scale(1.018);
}

.about-hero-media img,
.about-world-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.about-hero-media figure:hover img,
.about-world-gallery figure:hover img {
  transform: scale(1.025);
}

.about-symbols {
  padding: 132px 0 146px;
}

.about-symbols-grid {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: start;
}

.about-logo-panel {
  position: sticky;
  top: 132px;
}

.about-logo-panel h2,
.about-world-heading h2,
.about-manifesto h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.about-logo-panel__mark {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin-top: 48px;
}

.about-symbol-list {
  border-top: 1px solid var(--olive);
}

.about-symbol-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--line);
}

.about-symbol-list article > span {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}

.about-symbol-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-symbol-list p {
  max-width: 46ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-world {
  padding: 124px 0 136px;
  background: var(--olive-soft);
  color: var(--paper-soft);
}

.about-world-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.about-world-heading .about-kicker {
  grid-column: 1 / -1;
  margin-bottom: -24px;
  color: var(--copper-soft);
}

.about-world-heading h2 {
  max-width: 860px;
}

.about-world-heading > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: rgba(250, 246, 237, 0.74);
  line-height: 1.7;
}

.about-world-gallery {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.about-world-gallery-main {
  grid-row: 1 / 3;
}

.about-world-gallery--latte-film {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.about-world-gallery--latte-film .about-world-gallery-main {
  grid-column: 1;
  grid-row: 1;
}

.about-world-gallery-main--latte-film {
  position: relative;
  isolation: isolate;
  background: #06182c;
}

.about-world-gallery-main--latte-film::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgb(6 24 44 / 0.14), transparent 38%, rgb(6 24 44 / 0.08));
}

.about-world-gallery-main--latte-film video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition: transform 700ms var(--ease);
}

.about-world-gallery-main--latte-film:hover video {
  transform: scale(1.018);
}

.about-manifesto {
  padding: 140px 0 154px;
  border-bottom: 1px solid var(--line);
}

.about-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(220px, 4fr) minmax(0, 8fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.about-manifesto-reading-corner {
  align-self: start;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.about-manifesto-reading-corner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.about-manifesto h2 {
  max-width: 900px;
  font-size: clamp(4.5rem, 7.8vw, 8rem);
}

.about-manifesto-grid > div > p {
  max-width: 50ch;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.store-page {
  overflow: clip;
}

.store-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.store-hero {
  padding: 38px 0 120px;
  border-bottom: 1px solid var(--line);
}

.store-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: stretch;
}

.store-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}

.store-hero-copy .breadcrumb {
  margin-bottom: auto;
}

.store-hero-copy h1,
.store-details-copy h2,
.store-services h2,
.store-contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.store-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(4.5rem, 6.3vw, 6.3rem);
}

.store-hero-copy > p:not(.store-kicker) {
  max-width: 48ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 34px;
}

.store-actions .text-link {
  margin-top: 0;
}

.store-hero-media {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--olive);
}

.store-hero-media figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.store-hero-media-main {
  grid-row: 1 / 3;
}

.store-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.store-hero-media figure:hover img {
  transform: scale(1.025);
}

.store-details {
  padding: 132px 0 148px;
}

.store-details-grid {
  display: grid;
  grid-template-columns: minmax(250px, 4fr) minmax(0, 8fr);
  gap: clamp(54px, 8vw, 116px);
  align-items: start;
}

.store-number {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin: -18px 0 0;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(9rem, 18vw, 15rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.store-details-copy h2,
.store-services h2 {
  font-size: clamp(4rem, 6.8vw, 7rem);
}

.store-details-copy address {
  max-width: 38ch;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.08rem;
  font-style: normal;
  line-height: 1.7;
}

.store-facts {
  margin: 54px 0 0;
  border-top: 1px solid var(--olive);
}

.store-facts > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--line);
}

.store-facts dt,
.store-facts dd {
  margin: 0;
}

.store-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.store-facts dd {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.store-facts a {
  border-bottom: 1px solid currentColor;
  transition: color 180ms var(--ease), opacity 180ms var(--ease);
}

.store-facts a:hover {
  color: var(--copper);
}

.store-services {
  padding: 126px 0 140px;
  background: var(--olive-soft);
  color: var(--paper-soft);
}

.store-services-grid {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: start;
}

.store-services header {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.store-services .store-kicker {
  color: var(--copper-soft);
}

.store-service-list {
  border-top: 1px solid rgba(250, 246, 237, 0.72);
}

.store-service-list article {
  display: grid;
  grid-template-columns: 66px minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 36px 0 40px;
  border-bottom: 1px solid rgba(250, 246, 237, 0.22);
}

.store-service-list article > span {
  color: var(--copper-soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.store-service-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.store-service-list p {
  max-width: 34ch;
  margin: 0;
  color: rgba(250, 246, 237, 0.72);
  line-height: 1.7;
}

.store-contact {
  padding: 136px 0 150px;
  border-bottom: 1px solid var(--line);
}

.store-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(54px, 8vw, 116px);
  align-items: end;
}

.store-contact h2 {
  max-width: 760px;
  font-size: clamp(4.4rem, 7.2vw, 7.4rem);
}

.store-contact-grid > div:last-child > p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.menu-hero {
  padding: 48px 0 0;
  border-bottom: 1px solid var(--line);
}

.menu-hero-grid {
  display: grid;
  align-items: stretch;
  column-gap: clamp(2rem, 4vw, 5rem);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 560px;
}

.menu-hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(32px, 5vw, 72px) 58px 0;
}

.menu-hero-copy h1 {
  max-width: 520px;
  font-size: clamp(3.8rem, 6.4vw, 5.9rem);
}

.menu-hero-copy h1 span {
  display: block;
}

.catalogue {
  padding: 0 0 120px;
}

.catalogue-controls-wrap {
  position: sticky;
  top: 80px;
  z-index: 25;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 236, 222, 0.97);
}

.catalogue-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: center;
  min-height: 92px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  padding: 12px 4px 12px 0;
  scrollbar-width: thin;
}

.category-tab {
  flex: 0 0 auto;
  padding: 11px 17px;
  border: 1px solid var(--olive);
  background: transparent;
  text-decoration: none;
}

.category-tab[aria-pressed="true"] {
  background: var(--olive);
  color: var(--paper-soft);
}

.category-tab[aria-current="true"] {
  background: var(--olive);
  color: var(--paper-soft);
}

.search-field {
  position: relative;
  display: grid;
  gap: 7px;
}

.search-field label {
  font-size: 0.78rem;
  font-weight: 750;
}

.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 11px 78px 11px 14px;
  border: 1px solid var(--olive);
  border-radius: var(--radius-small);
  background: var(--paper-soft);
  color: var(--olive);
  font-size: 1rem;
}

.search-field input::placeholder {
  color: #6f7067;
  opacity: 1;
}

.clear-search {
  position: absolute;
  right: 8px;
  bottom: 7px;
  min-height: 34px;
  padding: 6px 10px;
  border: 0;
  border-radius: var(--pill);
  background: var(--paper-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.clear-search[hidden] {
  display: none;
}

.catalogue-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 76px 0 36px;
}

.catalogue-heading h2 {
  font-size: clamp(3.1rem, 6vw, 6.4rem);
}

.catalogue-heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
}

.category-layout {
  display: block;
}

.featured-product {
  margin-bottom: clamp(48px, 6vw, 76px);
}

.compact-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 28px;
}

.menu-category-sections {
  display: grid;
  gap: clamp(80px, 12vw, 170px);
}

.menu-category-section {
  scroll-margin-top: calc(var(--header-height) + 34px);
}

.menu-category-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.62fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: 40px;
}

.menu-category-heading > div {
  padding-bottom: clamp(16px, 3vw, 42px);
  border-bottom: 1px solid var(--olive);
}

.menu-category-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-category-heading h3 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  line-height: 0.88;
}

.menu-category-heading span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.menu-category-heading img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.menu-category-section:nth-child(even) .menu-category-heading > div {
  order: 2;
}

.menu-category-section:nth-child(even) .menu-category-heading img {
  order: 1;
}

@media (max-width: 767px) {
  .menu-category-sections {
    gap: 88px;
  }

  .menu-category-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .menu-category-heading > div,
  .menu-category-section:nth-child(even) .menu-category-heading > div {
    order: 1;
    padding-bottom: 22px;
  }

  .menu-category-heading img,
  .menu-category-section:nth-child(even) .menu-category-heading img {
    order: 2;
    aspect-ratio: 5 / 4;
  }
}

.product-card {
  min-width: 0;
}

.product-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
}

.product-info h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.72rem);
  font-weight: 500;
  line-height: 1.08;
}

.product-info p {
  margin: 8px 0 0;
  color: var(--copper);
  font-size: 1.02rem;
  font-weight: 800;
}

.add-button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--paper-soft);
  font-size: 0.84rem;
}

.product-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--copper);
  border-radius: var(--radius);
}

.product-card--featured .product-media {
  aspect-ratio: 16 / 10;
}

.product-card--featured .product-info {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 56px);
}

.product-card--featured .product-info h3 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.product-card--featured .product-info p {
  font-size: 1.35rem;
}

.product-card--featured .add-button {
  margin-top: 28px;
}

.product-page {
  padding: 38px 0 112px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--copper);
  font-weight: 700;
}

.product-detail,
.product-loading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.product-detail-media {
  margin: 0;
  padding: 14px;
  aspect-ratio: 1.1;
  overflow: hidden;
  border: 1px solid var(--copper);
  border-radius: var(--radius);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.product-detail-copy {
  min-width: 0;
  padding: 24px 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-detail-copy h1,
.product-not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.2vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.product-detail-price {
  margin: 30px 0 0;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.product-order-panel {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.quantity-row {
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.quantity-stepper {
  width: 164px;
  display: grid;
  grid-template-columns: 48px 68px 48px;
  overflow: hidden;
  border: 1px solid var(--olive);
  border-radius: var(--radius-small);
}

.quantity-stepper button,
.quantity-stepper output {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--olive);
  font-size: 1.15rem;
}

.quantity-stepper output {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.quantity-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.product-add-button {
  width: min(100%, 430px);
  margin-top: 26px;
}

.product-vat-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-loading .product-loading-media {
  aspect-ratio: 1.1;
}

.product-loading-copy {
  display: grid;
  gap: 18px;
}

.product-loading-copy span {
  height: 16px;
  border-radius: var(--pill);
  background: var(--paper-deep);
}

.product-loading-copy span:first-child {
  width: 42%;
}

.product-loading-copy span:nth-child(2) {
  width: 92%;
  height: 72px;
}

.product-loading-copy span:nth-child(3) {
  width: 34%;
  height: 48px;
}

.product-loading-copy span:last-child {
  width: 76%;
  height: 48px;
}

.product-not-found {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 760px;
}

.product-not-found p {
  max-width: 560px;
  margin: 20px 0 30px;
  color: var(--muted);
  line-height: 1.7;
}

.related-products {
  padding: 100px 0 120px;
  border-top: 1px solid var(--olive);
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.related-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.menu-empty,
.menu-error {
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: start;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-empty h3,
.menu-error h3,
.cart-empty h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.menu-empty p,
.menu-error p,
.cart-empty p {
  margin: 10px 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.menu-loading {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.skeleton-card {
  aspect-ratio: 0.82;
  border-radius: var(--radius);
  background: linear-gradient(100deg, var(--paper-deep) 20%, var(--paper-soft) 40%, var(--paper-deep) 60%);
  background-size: 200% 100%;
  animation: skeleton 1.4s linear infinite;
}

@keyframes skeleton {
  to {
    background-position-x: -200%;
  }
}

.menu-note {
  margin: 48px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-page {
  min-height: calc(100dvh - var(--header-height));
  padding: 38px 0 112px;
}

.cart-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.cart-page-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.cart-page-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.clear-cart-button,
.cart-page-remove {
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--copper);
  font-weight: 700;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.clear-cart-button:hover,
.cart-page-remove:hover {
  opacity: 0.7;
}

.clear-cart-button:active,
.cart-page-remove:active {
  transform: translateY(1px);
}

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.9fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: start;
}

.cart-page-items {
  border-top: 1px solid var(--line);
}

.cart-page-item {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cart-page-item-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius-small);
  background: var(--paper-deep);
}

.cart-page-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--ease);
}

.cart-page-item-media:hover img {
  transform: scale(1.025);
}

.cart-page-item-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.cart-page-item-price {
  margin: 18px 0 0;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.cart-page-line-total {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.cart-page-item-actions {
  display: grid;
  gap: 20px;
  justify-items: end;
}

.cart-page-quantity {
  display: grid;
  grid-template-columns: 48px 62px 48px;
  overflow: hidden;
  border: 1px solid var(--olive);
  border-radius: var(--radius-small);
}

.cart-page-quantity button,
.cart-page-quantity span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
}

.cart-page-quantity span {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 750;
}

.cart-page-quantity button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.cart-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-top: 48px;
  border-top: 1px solid var(--olive);
}

.cart-summary-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cart-summary strong {
  display: block;
  margin-top: 18px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 5.8rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.cart-summary-note {
  max-width: 36ch;
  margin: 28px 0 32px;
  color: var(--muted);
  line-height: 1.65;
}

.cart-summary .button {
  width: 100%;
}

.cart-page-empty,
.cart-page-error {
  min-height: 650px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.cart-empty-zero {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(8rem, 17vw, 13.5rem);
  font-variant-numeric: tabular-nums;
  line-height: 0.72;
}

.cart-empty-ornament {
  width: min(100%, 470px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 42px 0 28px;
}

.cart-empty-ornament::before,
.cart-empty-ornament::after {
  content: "";
  height: 1px;
  background: var(--olive);
}

.cart-empty-ornament span::before {
  content: "◆";
  color: var(--copper);
  font-size: 0.75rem;
}

.cart-page-empty h1,
.cart-page-error h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.cart-page-empty p,
.cart-page-error p {
  max-width: 45ch;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cart-page-empty .button,
.cart-page-error .button {
  min-width: 190px;
}

.cart-page-loading-title {
  width: min(560px, 72%);
  height: 92px;
}

.cart-page-loading-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, 0.9fr);
  gap: clamp(56px, 7vw, 96px);
  margin-top: 52px;
}

.cart-page-loading-items {
  height: 470px;
}

.cart-page-loading-summary {
  height: 330px;
}

.cart-summary-actions {
  display: grid;
  gap: 14px;
}

.cart-summary-actions .text-link {
  justify-self: start;
  margin-top: 0;
}

.checkout-page {
  min-height: calc(100dvh - var(--header-height));
  padding: 38px 0 118px;
}

.checkout-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: end;
  margin: 32px 0 68px;
}

.checkout-kicker,
.checkout-summary-kicker {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.checkout-heading h1,
.checkout-confirmation h2,
.checkout-empty h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.checkout-heading h1 {
  max-width: 780px;
  font-size: clamp(4.4rem, 7vw, 7rem);
}

.checkout-progress {
  max-width: 28rem;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--olive);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--olive);
  list-style: none;
}

.checkout-steps li {
  position: relative;
  padding: 16px 8px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.checkout-steps li::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 12px;
  left: 0;
  height: 3px;
  border-radius: var(--pill);
  background: transparent;
}

.checkout-steps li[aria-current="step"] {
  color: var(--copper);
}

.checkout-steps li[aria-current="step"]::before {
  background: var(--copper);
}

.checkout-steps span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.checkout-loading,
.checkout-form {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(310px, 0.95fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: start;
}

.checkout-loading-main {
  height: 620px;
  aspect-ratio: auto;
}

.checkout-loading-summary {
  height: 430px;
  aspect-ratio: auto;
}

.checkout-main {
  display: grid;
  gap: 76px;
}

.checkout-section {
  min-width: 0;
  margin: 0;
  padding: 34px 0 0;
  border: 0;
  border-top: 1px solid var(--olive);
}

.checkout-section legend {
  width: 100%;
  padding: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.checkout-section legend span {
  margin-right: 16px;
  color: var(--copper);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.checkout-modes {
  border-top: 1px solid var(--line);
}

.checkout-mode {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 27px 18px 29px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), padding 200ms var(--ease);
}

.checkout-mode input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkout-mode:hover,
.checkout-mode:has(input:checked) {
  padding-left: 18px;
  background: var(--olive);
  color: var(--paper-soft);
}

.checkout-mode:focus-within {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.checkout-mode-index {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.checkout-mode:has(input:checked) .checkout-mode-index {
  color: var(--copper-soft);
}

.checkout-mode strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.checkout-mode small {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-mode:hover small,
.checkout-mode:has(input:checked) small {
  color: rgba(250, 246, 237, 0.72);
}

.checkout-payment-options {
  border-top: 1px solid var(--line);
}

.checkout-payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 108px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), padding 200ms var(--ease);
}

.checkout-payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkout-payment-option:hover,
.checkout-payment-option:has(input:checked) {
  padding-left: 18px;
  background: var(--olive);
  color: var(--paper-soft);
}

.checkout-payment-option:focus-within {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.checkout-payment-index {
  align-self: start;
  padding-top: 2px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.checkout-payment-option:has(input:checked) .checkout-payment-index {
  color: var(--copper-soft);
}

.checkout-payment-copy {
  display: grid;
  gap: 7px;
}

.checkout-payment-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.checkout-payment-copy small {
  color: var(--muted);
  line-height: 1.55;
}

.checkout-payment-option:hover small,
.checkout-payment-option:has(input:checked) small {
  color: rgba(250, 246, 237, 0.72);
}

.checkout-payment-status {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-review-qr[hidden],
.checkout-verification[hidden],
[data-payment-verify][hidden] {
  display: none;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
}

.checkout-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.checkout-field--full {
  grid-column: 1 / -1;
}

.checkout-field > span {
  font-size: 0.82rem;
  font-weight: 750;
}

.checkout-field > span small {
  color: var(--muted);
  font-weight: 500;
}

.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  width: 100%;
  border: 1px solid var(--olive);
  border-radius: var(--radius-small);
  background: var(--paper-soft);
  color: var(--olive);
}

.checkout-field input,
.checkout-field select {
  min-height: 52px;
  padding: 12px 14px;
}

.checkout-field select {
  cursor: pointer;
}

.checkout-field textarea {
  min-height: 126px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.checkout-field input[aria-invalid="true"],
.checkout-field textarea[aria-invalid="true"] {
  border-color: var(--copper);
}

.checkout-field > small:not(.field-error) {
  color: var(--muted);
  font-size: 0.74rem;
}

.field-error {
  min-height: 1.15em;
  margin: 10px 0 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.checkout-field .field-error {
  margin: 0;
}

.checkout-disclosure {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
}

.checkout-disclosure > summary,
.checkout-promotion > summary,
.checkout-summary-order > summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  color: var(--olive);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.checkout-disclosure > summary::-webkit-details-marker,
.checkout-promotion > summary::-webkit-details-marker,
.checkout-summary-order > summary::-webkit-details-marker {
  display: none;
}

.checkout-disclosure > summary::after,
.checkout-promotion > summary::after,
.checkout-summary-order > summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.checkout-disclosure[open] > summary::after,
.checkout-promotion[open] > summary::after,
.checkout-summary-order[open] > summary::after {
  content: "−";
}

.checkout-disclosure > summary span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.checkout-disclosure > .checkout-field {
  padding: 0 0 18px;
}

.checkout-delivery-method {
  margin-top: 4px;
}

.checkout-delivery-method > summary {
  min-height: 38px;
  color: var(--muted);
  font-size: 0.76rem;
}

.checkout-delivery-method > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.checkout-map-link {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: -6px;
  color: var(--copper);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-map-link:hover {
  color: var(--olive);
}

.checkout-delivery-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.34);
  color: var(--olive);
}

.checkout-delivery-result strong {
  font-size: 0.92rem;
  line-height: 1.45;
}

.checkout-delivery-result span {
  flex: 0 0 auto;
  color: var(--copper);
  font-size: 0.86rem;
  font-weight: 800;
}

.checkout-delivery-result[data-state="loading"] {
  border-color: var(--copper);
}

.checkout-delivery-result[data-state="error"] {
  border-color: var(--copper);
  color: var(--copper);
}

.checkout-recalculate-button {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--copper);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.checkout-recalculate-button:hover {
  color: var(--olive);
}

.checkout-recalculate-button:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-top: 34px;
  border-top: 1px solid var(--olive);
}

.checkout-summary-order {
  margin-top: 2px;
  border-top: 1px solid var(--line);
}

.checkout-summary-order > summary {
  min-height: 62px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.checkout-summary-order > summary strong {
  margin-left: 8px;
  color: var(--copper);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-summary-order-icon {
  display: none;
}

.checkout-summary-items {
  border-top: 1px solid var(--line);
}

.checkout-order-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-order-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.checkout-order-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.05;
}

.checkout-order-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.checkout-order-item > strong {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.checkout-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 0;
}

.checkout-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-summary-line strong {
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.checkout-summary-total strong {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 0.9;
}

.checkout-summary-note {
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.checkout-summary .button {
  width: 100%;
}

.checkout-back-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.checkout-empty {
  min-height: 580px;
  display: grid;
  align-content: center;
  justify-items: start;
  border-top: 1px solid var(--olive);
}

.checkout-empty-index {
  margin: 0 0 30px;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 13rem);
  line-height: 0.7;
}

.checkout-empty h2 {
  font-size: clamp(3.6rem, 7vw, 6.6rem);
}

.checkout-empty > p:not(.checkout-empty-index) {
  max-width: 45ch;
  margin: 22px 0 30px;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-confirmation {
  padding: 34px 0 20px;
  border-top: 1px solid var(--olive);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.checkout-confirmation-heading {
  display: grid;
  grid-template-columns: minmax(220px, 4fr) minmax(0, 8fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.checkout-confirmation-index {
  margin: -12px 0 0;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 13rem);
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.checkout-confirmation h2 {
  max-width: 850px;
  font-size: clamp(4.2rem, 7vw, 7rem);
}

.checkout-confirmation-heading > div > p:last-child {
  max-width: 50ch;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(310px, 5fr);
  gap: clamp(54px, 8vw, 112px);
  margin-top: 84px;
}

.checkout-review-facts {
  margin: 0;
  border-top: 1px solid var(--olive);
}

.checkout-review-facts > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(0, 1fr);
  gap: 30px;
  padding: 24px 0 27px;
  border-bottom: 1px solid var(--line);
}

.checkout-review-facts dt,
.checkout-review-facts dd {
  margin: 0;
}

.checkout-review-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.checkout-review-facts dd {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.15;
}

.checkout-review-order {
  padding-top: 22px;
  border-top: 1px solid var(--olive);
}

.checkout-review-order > p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 0;
}

.checkout-review-line {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-review-line strong {
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.checkout-review-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-review-total strong {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.checkout-review-qr {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.checkout-review-qr > img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
  background: var(--paper-soft);
}

.checkout-review-qr figcaption {
  display: grid;
  gap: 6px;
}

.checkout-review-qr figcaption strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.checkout-review-qr figcaption span {
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.checkout-review-qr figcaption small {
  max-width: 40ch;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-verification {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-top: 72px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--olive);
  border-bottom: 1px solid var(--line);
}

.checkout-verification h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.checkout-verification[data-state="pending"] h3 {
  color: var(--copper);
}

.checkout-verification [data-payment-verification-copy] {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-verification .button {
  width: min(100%, 360px);
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.checkout-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 56px 0 0 calc(33.333% + clamp(48px, 8vw, 112px) / 3);
}

.confirm-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--olive);
  box-shadow: var(--shadow);
}

.confirm-dialog::backdrop {
  background: rgba(24, 30, 24, 0.62);
}

.confirm-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.confirm-dialog-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.confirm-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.cart-dialog {
  width: min(580px, calc(100% - 28px));
  max-height: min(760px, 88dvh);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--olive);
  box-shadow: var(--shadow);
}

.cart-dialog::backdrop {
  background: rgba(24, 30, 24, 0.62);
}

.cart-shell {
  display: grid;
  max-height: inherit;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.cart-header,
.cart-footer {
  padding: 22px 24px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.dialog-close {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: transparent;
  font-weight: 700;
}

.cart-items {
  overflow-y: auto;
  padding: 0 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 92px;
  height: 92px;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.cart-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.cart-item p {
  margin: 5px 0 12px;
  color: var(--copper);
  font-weight: 800;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-control button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: transparent;
}

.quantity-control .remove-item {
  width: auto;
  margin-left: auto;
  padding: 6px 10px;
  border: 0;
  color: var(--copper);
  font-weight: 700;
}

.cart-empty {
  min-height: 240px;
  display: grid;
  place-content: center;
}

.cart-footer {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.cart-footer .button {
  width: 100%;
}

.site-footer {
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: block;
  width: max-content;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.footer-brand:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.footer-logo-horizontal {
  position: relative;
  display: block;
  overflow: hidden;
  width: 220px;
  height: 62px;
}

.footer-logo-horizontal img {
  position: absolute;
  max-width: none;
  width: 300px;
  height: 150px;
  transform: translate(-41px, -43px);
}

.footer-links p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  font-weight: 700;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 150px;
  }

  .site-nav {
    min-height: 150px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand"
      "categories actions";
    gap: 4px 22px;
    padding: 2px 0 10px;
  }

  .brand-link {
    justify-self: center;
  }

  .category-nav {
    justify-self: center;
  }

  .compact-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .site-nav {
    min-height: 88px;
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand actions";
    gap: 16px;
    padding: 0;
  }

  .category-nav {
    display: none;
  }

  .brand-link {
    justify-self: start;
  }

  .brand-logo-horizontal {
    width: 220px;
    height: 62px;
  }

  .brand-logo-horizontal img {
    width: 300px;
    height: 150px;
    transform: translate(-41px, -43px);
  }

  .menu-toggle {
    display: block;
  }

  .home-hero-grid,
  .menu-hero-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .home-hero-grid {
    min-height: auto;
  }

  .home-hero-copy,
  .menu-hero-copy {
    padding: 64px 0 50px;
  }

  .home-hero-copy h1,
  .menu-hero-copy h1 {
    max-width: 670px;
  }

  .home-cta-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .catalogue-controls {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 0;
  }

  .category-tabs {
    order: 2;
  }

  .search-field {
    order: 1;
  }

  .category-layout {
    grid-template-columns: 1fr;
  }

  .featured-product {
    position: static;
  }

  .product-card--featured {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    align-items: stretch;
  }

  .product-card--featured .product-info {
    display: flex;
    align-self: stretch;
  }

  .product-detail,
  .product-loading {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-detail-media,
  .product-loading .product-loading-media {
    aspect-ratio: 4 / 3;
  }

  .product-detail-copy {
    max-width: 720px;
    padding: 0;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-grid,
  .about-symbols-grid,
  .about-manifesto-grid,
  .store-hero-grid,
  .store-details-grid,
  .store-services-grid,
  .store-contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    min-height: 520px;
    padding-bottom: 18px;
  }

  .about-hero-copy .breadcrumb {
    margin-bottom: auto;
  }

  .about-hero-media {
    min-height: 580px;
  }

  .store-hero-copy {
    min-height: 520px;
    padding-bottom: 18px;
  }

  .store-hero-copy .breadcrumb {
    margin-bottom: auto;
  }

  .store-hero-media {
    min-height: 580px;
  }

  .store-number,
  .store-services header {
    position: static;
  }

  .store-number {
    margin-bottom: 18px;
  }

  .store-services h2,
  .store-contact h2 {
    max-width: 760px;
  }

  .store-service-list article {
    grid-template-columns: 66px minmax(190px, 0.45fr) minmax(0, 1fr);
  }

  .about-logo-panel {
    position: static;
  }

  .about-logo-panel h2 {
    max-width: 760px;
  }

  .about-logo-panel__mark {
    width: min(54vw, 340px);
  }

  .about-world-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-world-heading .about-kicker {
    grid-column: auto;
    margin-bottom: -8px;
  }

  .about-world-gallery {
    min-height: 600px;
  }

  .cart-page-layout,
  .cart-page-loading-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .cart-page-item {
    grid-template-columns: 160px minmax(0, 1fr) auto;
  }

  .cart-summary {
    position: static;
    width: min(100%, 620px);
  }

  .checkout-heading,
  .checkout-loading,
  .checkout-form,
  .checkout-confirmation-heading,
  .checkout-review-grid {
    grid-template-columns: 1fr;
  }

  .checkout-heading {
    gap: 40px;
  }

  .checkout-steps {
    width: min(100%, 620px);
  }

  .checkout-summary {
    position: static;
    width: min(100%, 620px);
  }

  .checkout-confirmation-index {
    margin: 0 0 10px;
  }

  .checkout-review-grid {
    margin-top: 64px;
  }

  .checkout-confirmation-actions {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: min(100% - 28px, 640px);
  }

  .site-nav {
    min-height: 80px;
  }

  .cart-label {
    display: none;
  }

  .brand-logo-horizontal {
    width: clamp(132px, 42vw, 158px);
    height: auto;
    aspect-ratio: 220 / 62;
  }

  .brand-logo-horizontal img {
    width: 136.3637%;
    height: auto;
    transform: translate(-13.6667%, -28.6667%);
  }

  .cart-pill {
    min-width: 60px;
    min-height: 42px;
    padding: 9px 12px;
  }

  .mobile-nav {
    inset: var(--header-height) 0 0;
  }

  .menu-hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
    line-height: 0.96;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.55rem, 12.2vw, 4rem);
    line-height: 0.96;
  }

  .home-hero-copy h1 span {
    white-space: normal;
  }

  .home-hero-motion .home-hero-copy {
    padding-bottom: 38px;
  }

  .home-hero-motion .home-hero-glow--one {
    top: 28%;
    left: -22%;
    width: 72vw;
  }

  .home-hero-motion .home-hero-steam {
    right: 20%;
  }

  .home-day-rhythm,
  .date-ritual,
  .home-featured-menu {
    padding: 84px 0;
  }

  .home-featured-menu__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .home-featured-card,
  .home-featured-card--egg,
  .home-featured-card--caramel,
  .home-featured-card--peach,
  .home-featured-card--croissant {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .home-featured-card h3 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .home-day-rhythm__heading {
    margin-bottom: 50px;
  }

  .home-day-rhythm__moment,
  .home-day-rhythm__moment--midday {
    grid-template-columns: 1fr;
    grid-template-areas:
      "time"
      "media"
      "copy";
    gap: 22px;
    min-height: 0;
    padding: 36px 0;
  }

  .home-day-rhythm__time {
    align-items: center;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgb(164 73 43 / 0.45);
  }

  .home-day-rhythm__media img {
    aspect-ratio: 4 / 3;
  }

  .home-day-rhythm__action {
    margin-left: 0;
  }

  .home-day-rhythm__action .button {
    width: 100%;
  }

  .date-ritual__intro {
    margin-bottom: 50px;
  }

  .date-ritual__chapter,
  .date-ritual__chapter--coffee,
  .date-ritual__chapter--bakery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "visual"
      "copy";
    gap: 22px;
    padding: 36px 0;
  }

  .date-ritual__number {
    align-self: auto;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgb(164 73 43 / .45);
  }

  .date-ritual__action {
    width: 100%;
  }

  .catalogue-controls-wrap {
    top: 72px;
  }

  .catalogue-heading {
    align-items: start;
    flex-direction: column;
    padding-top: 76px;
  }

  .product-grid,
  .menu-loading,
  .compact-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }

  .product-info {
    display: grid;
  }

  .add-button {
    justify-self: start;
  }

  .product-card--featured {
    grid-template-columns: 1fr;
  }

  .product-card--featured .product-media {
    aspect-ratio: 4 / 3;
  }

  .product-card--featured .product-info {
    display: flex;
    padding: 26px 14px 14px;
  }

  .product-page {
    padding: 26px 0 84px;
  }

  .breadcrumb {
    margin-bottom: 26px;
    font-size: 0.8rem;
  }

  .product-detail,
  .product-loading {
    gap: 34px;
  }

  .product-detail-media,
  .product-loading .product-loading-media {
    aspect-ratio: 1;
  }

  .back-link {
    margin-bottom: 28px;
  }

  .product-detail-copy h1,
  .product-not-found h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .product-order-panel {
    margin-top: 32px;
  }

  .related-products {
    padding: 82px 0 92px;
  }

  .related-heading {
    display: grid;
    align-items: start;
    margin-bottom: 34px;
  }

  .related-heading h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .about-hero {
    padding: 26px 0 88px;
  }

  .store-hero {
    padding: 26px 0 88px;
  }

  .about-hero-grid {
    gap: 42px;
  }

  .store-hero-grid {
    gap: 42px;
  }

  .about-hero-copy {
    min-height: 470px;
  }

  .store-hero-copy {
    min-height: 470px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.8rem, 16vw, 5.8rem);
  }

  .store-hero-copy h1 {
    font-size: clamp(3.8rem, 16vw, 5.8rem);
  }

  .about-hero-media {
    min-height: 500px;
  }

  .store-hero-media {
    min-height: 500px;
  }

  .store-details {
    padding: 92px 0 104px;
  }

  .store-details-grid {
    gap: 34px;
  }

  .store-number {
    font-size: clamp(7.8rem, 30vw, 11rem);
  }

  .store-details-copy h2,
  .store-services h2 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }

  .store-facts {
    margin-top: 42px;
  }

  .store-services {
    padding: 90px 0 100px;
  }

  .store-services-grid {
    gap: 48px;
  }

  .store-service-list article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px 18px;
    padding: 30px 0 34px;
  }

  .store-service-list h3,
  .store-service-list p {
    grid-column: 2;
  }

  .store-contact {
    padding: 96px 0 108px;
  }

  .store-contact-grid {
    gap: 36px;
  }

  .store-contact h2 {
    font-size: clamp(3.8rem, 15vw, 5.6rem);
  }

  .about-symbols {
    padding: 92px 0 104px;
  }

  .about-symbols-grid {
    gap: 54px;
  }

  .about-logo-panel h2,
  .about-world-heading h2 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }

  .about-symbol-list article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 32px 0 36px;
  }

  .about-world {
    padding: 90px 0 100px;
  }

  .about-world-heading {
    margin-bottom: 38px;
  }

  .about-world-gallery {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .about-world-gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-world-gallery-main img {
    aspect-ratio: 16 / 10;
  }

  .about-world-gallery--latte-film {
    min-height: 0;
  }

  .about-world-gallery--latte-film .about-world-gallery-main {
    grid-column: 1 / -1;
  }

  .about-world-gallery-main--latte-film video {
    aspect-ratio: 16 / 10;
  }

  .about-world-gallery figure:not(.about-world-gallery-main) img {
    aspect-ratio: 1;
  }

  .about-manifesto {
    padding: 96px 0 108px;
  }

  .about-manifesto-grid {
    gap: 28px;
  }

  .about-manifesto-reading-corner {
    aspect-ratio: 4 / 5;
  }

  .about-manifesto-reading-corner__image {
    object-position: center 60%;
  }

  .about-manifesto h2 {
    font-size: clamp(3.8rem, 15vw, 5.8rem);
  }

  .cart-page {
    min-height: calc(100dvh - var(--header-height));
    padding: 26px 0 84px;
  }

  .checkout-page {
    padding: 26px 0 88px;
  }

  .checkout-heading {
    margin: 28px 0 54px;
  }

  .checkout-heading h1 {
    font-size: clamp(3.7rem, 15vw, 5.6rem);
  }

  .checkout-main {
    gap: 58px;
  }

  .checkout-section {
    padding-top: 28px;
  }

  .checkout-section legend {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .checkout-mode {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 9px 16px;
    padding: 24px 12px 26px 0;
  }

  .checkout-mode:hover,
  .checkout-mode:has(input:checked) {
    padding-left: 12px;
  }

  .checkout-mode strong,
  .checkout-mode small {
    grid-column: 2;
  }

  .checkout-payment-option {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 9px 16px;
    padding: 22px 12px 24px 0;
  }

  .checkout-payment-option:hover,
  .checkout-payment-option:has(input:checked) {
    padding-left: 12px;
  }

  .checkout-payment-copy,
  .checkout-payment-status {
    grid-column: 2;
  }

  .checkout-payment-status {
    margin-top: 5px;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .checkout-field--full {
    grid-column: auto;
  }

  .checkout-confirmation h2 {
    font-size: clamp(3.7rem, 15vw, 5.6rem);
  }

  .checkout-review-facts > div {
    grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
    gap: 20px;
  }

  .checkout-verification {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cart-page-heading {
    align-items: start;
    margin-bottom: 22px;
  }

  .cart-page-heading h1 {
    font-size: clamp(3.4rem, 14vw, 5.2rem);
  }

  .cart-page-layout,
  .cart-page-loading-grid {
    gap: 48px;
  }

  .cart-page-item {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 20px;
  }

  .cart-page-item-actions {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: initial;
  }

  .cart-page-item-copy h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .cart-page-item-price {
    margin-top: 12px;
    font-size: 1.7rem;
  }

  .cart-summary {
    padding-top: 32px;
  }

  .cart-page-empty,
  .cart-page-error {
    min-height: 570px;
  }

  .cart-empty-ornament {
    margin: 34px 0 24px;
  }

  .cart-page-empty h1,
  .cart-page-error h1 {
    font-size: clamp(3.1rem, 13vw, 4.8rem);
  }

  .cart-page-loading-title {
    height: 72px;
  }

  .confirm-dialog {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 479px) {
  .home-hero-copy h1 {
    max-inline-size: 11ch;
    font-size: clamp(2.2rem, 11.2vw, 3rem);
  }

  .home-hero-motion .home-hero-steam {
    display: none;
  }

  .hero-actions,
  .home-cta-actions,
  .store-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-grid,
  .menu-loading,
  .compact-product-grid {
    grid-template-columns: 1fr;
  }

  .date-ritual__visual--desserts {
    grid-template-columns: 1fr;
  }

  .date-ritual__visual--desserts img,
  .date-ritual__visual--desserts img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .catalogue-heading h2 {
    font-size: 3.2rem;
  }

  .product-card--featured .product-info {
    display: grid;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    min-height: 430px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.45rem, 17vw, 4.9rem);
  }

  .store-hero-copy {
    min-height: 430px;
  }

  .store-hero-copy h1 {
    font-size: clamp(3.45rem, 17vw, 4.9rem);
  }

  .about-hero-media {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .store-hero-media {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .about-hero-media-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .store-hero-media-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-hero-media-main img {
    aspect-ratio: 4 / 3;
  }

  .about-hero-media--espresso-film {
    min-height: 0;
  }

  .about-hero-media--espresso-film video {
    aspect-ratio: 4 / 3;
  }

  .store-hero-media-main img {
    aspect-ratio: 4 / 3;
  }

  .about-hero-media figure:not(.about-hero-media-main) img {
    aspect-ratio: 1;
  }

  .store-hero-media figure:not(.store-hero-media-main) img {
    aspect-ratio: 1;
  }

  .store-facts > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-service-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-service-list h3,
  .store-service-list p {
    grid-column: 1;
  }

  .about-logo-panel__mark {
    width: min(78vw, 320px);
  }

  .about-symbol-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-symbol-list h3 {
    font-size: 2.35rem;
  }

  .about-world-gallery {
    grid-template-columns: 1fr;
  }

  .about-world-gallery-main {
    grid-column: auto;
  }

  .about-world-gallery-main img,
  .about-world-gallery figure:not(.about-world-gallery-main) img {
    aspect-ratio: 4 / 3;
  }

  .about-world-gallery--latte-film .about-world-gallery-main {
    grid-column: auto;
  }

  .about-world-gallery-main--latte-film video {
    aspect-ratio: 4 / 3;
  }

  .about-actions {
    display: grid;
  }

  .checkout-steps li {
    font-size: 0.68rem;
  }

  .checkout-steps span {
    font-size: 1rem;
  }

  .checkout-order-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .checkout-order-item img {
    width: 56px;
    height: 56px;
  }

  .checkout-review-facts > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .checkout-confirmation-actions {
    display: grid;
  }

  .cart-page-heading {
    display: grid;
    gap: 18px;
  }

  .clear-cart-button {
    justify-self: start;
  }

  .cart-page-item {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0 22px;
  }

  .cart-page-item-actions {
    grid-column: 1 / -1;
  }

  .cart-page-quantity {
    grid-template-columns: 44px 56px 44px;
  }

  .cart-page-quantity button,
  .cart-page-quantity span {
    min-height: 44px;
  }

  .cart-page-line-total {
    font-size: 0.76rem;
  }

  .cart-summary strong {
    font-size: 4rem;
  }

  .cart-page-empty,
  .cart-page-error {
    min-height: 520px;
  }

  .cart-page-empty .button,
  .cart-page-error .button {
    min-width: 0;
  }

  .confirm-dialog-actions {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .cart-item img {
    width: 76px;
    height: 76px;
  }
}

.reservation-page {
  min-height: calc(100dvh - var(--header-height));
  padding: 38px 0 118px;
}

.reservation-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: end;
  margin: 32px 0 72px;
}

.reservation-kicker {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reservation-heading h1,
.reservation-confirmation h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.reservation-heading h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 7vw, 7rem);
  text-wrap: balance;
}

.reservation-branch-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--olive);
}

.reservation-branch-facts > div {
  padding: 17px 12px 0 0;
}

.reservation-branch-facts dt,
.reservation-branch-facts dd {
  margin: 0;
}

.reservation-branch-facts dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.reservation-branch-facts dd {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.reservation-form {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(310px, 0.95fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: start;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.reservation-main {
  display: grid;
  gap: 76px;
}

.reservation-section {
  min-width: 0;
  margin: 0;
  padding: 34px 0 0;
  border: 0;
  border-top: 1px solid var(--olive);
}

.reservation-section legend {
  width: 100%;
  padding: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.reservation-section legend span {
  margin-right: 16px;
  color: var(--copper);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.reservation-agreement {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 62ch;
  cursor: pointer;
  line-height: 1.65;
}

.reservation-agreement input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--copper);
}

.reservation-agreement input:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.reservation-agreement input[aria-invalid="true"] {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.reservation-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-top: 34px;
  border-top: 1px solid var(--olive);
}

.reservation-summary h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.reservation-summary dl {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.reservation-summary dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.reservation-summary dt,
.reservation-summary dd {
  margin: 0;
}

.reservation-summary dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.reservation-summary dd {
  line-height: 1.5;
}

.reservation-summary > p:not(.reservation-kicker) {
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.reservation-summary .button {
  width: 100%;
}

.reservation-back-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.reservation-form[hidden],
.reservation-confirmation[hidden] {
  display: none;
}

.reservation-confirmation {
  padding: 34px 0 20px;
  border-top: 1px solid var(--olive);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.reservation-confirmation > header {
  display: grid;
  grid-template-columns: minmax(220px, 4fr) minmax(0, 8fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.reservation-confirmation-index {
  margin: -12px 0 0;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: clamp(8rem, 15vw, 13rem);
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.reservation-confirmation h2 {
  max-width: 850px;
  font-size: clamp(4.2rem, 7vw, 7rem);
}

.reservation-confirmation > header > div > p:last-child {
  max-width: 54ch;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.reservation-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(54px, 8vw, 112px);
  margin: 84px 0 0;
  border-top: 1px solid var(--olive);
}

.reservation-review > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0 27px;
  border-bottom: 1px solid var(--line);
}

.reservation-review dt,
.reservation-review dd {
  margin: 0;
}

.reservation-review dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.reservation-review dd {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.reservation-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 56px 0 0;
}

@media (max-width: 960px) {
  .reservation-heading,
  .reservation-form,
  .reservation-confirmation > header {
    grid-template-columns: 1fr;
  }

  .reservation-heading {
    gap: 40px;
  }

  .reservation-summary {
    position: static;
    width: min(100%, 620px);
  }

  .reservation-confirmation-index {
    margin: 0 0 10px;
  }
}

@media (max-width: 720px) {
  .reservation-heading h1 {
    font-size: clamp(3.9rem, 17vw, 5.8rem);
  }

  .reservation-branch-facts {
    grid-template-columns: 1fr;
  }

  .reservation-branch-facts > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .reservation-branch-facts dd {
    margin-top: 0;
  }

  .reservation-review {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .reservation-confirmation h2 {
    font-size: clamp(3.7rem, 15vw, 5.6rem);
  }
}

@media (max-width: 479px) {
  .reservation-page {
    padding-top: 24px;
  }

  .reservation-heading {
    margin: 26px 0 52px;
  }

  .reservation-main {
    gap: 58px;
  }

  .reservation-section legend {
    font-size: 2.1rem;
  }

  .reservation-review > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reservation-confirmation-actions {
    display: grid;
  }
}

.contact-page .reservation-summary h2 {
  max-width: 13ch;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-review-message {
  grid-column: 1 / -1;
}

.contact-review-message dd {
  max-width: 70ch;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.tracking-page .reservation-heading h1 {
  max-width: 900px;
}

.tracking-page .reservation-summary h2 {
  max-width: 12ch;
}

.tracking-privacy {
  max-width: 740px;
  padding-top: 34px;
  border-top: 1px solid var(--olive);
}

.tracking-privacy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.tracking-privacy > p:last-child {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.tracking-result .reservation-review dd {
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

@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;
  }

}

/* Immersive prototype: standalone preview, deliberately isolated from commerce pages. */
.immersive-body {
  min-width: 0;
  background: #10170f;
  color: var(--paper-soft);
}

.immersive-page {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: clip;
  background:
    radial-gradient(circle at 62% 42%, rgb(152 68 43 / 0.32), transparent 23%),
    radial-gradient(circle at 18% 82%, rgb(221 225 212 / 0.12), transparent 28%),
    #10170f;
}

.immersive-canvas,
.immersive-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.immersive-canvas {
  opacity: 0.92;
}

.immersive-vignette {
  background:
    radial-gradient(circle at center, transparent 25%, rgb(5 9 5 / 0.12) 70%, rgb(5 9 5 / 0.62) 100%),
    linear-gradient(90deg, rgb(5 9 5 / 0.46), transparent 42%, rgb(5 9 5 / 0.28));
}

.immersive-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100% - 64px, 1440px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 34px 0 28px;
}

.immersive-brand {
  display: grid;
  width: 102px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(250 246 237 / 0.5);
  border-radius: 50%;
  background: var(--paper-soft);
  box-shadow: 0 20px 56px rgb(0 0 0 / 0.32);
}

.immersive-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersive-copy {
  align-self: center;
  max-width: 800px;
  padding: clamp(84px, 13vw, 188px) 0;
  animation: immersive-rise 900ms var(--ease) both;
}

.immersive-copy h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.84;
  text-wrap: balance;
}

.immersive-copy p {
  max-width: 42ch;
  margin: 30px 0 0;
  color: rgb(250 246 237 / 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.immersive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.immersive-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid rgb(250 246 237 / 0.62);
  border-radius: var(--pill);
  font-size: 0.92rem;
  font-weight: 750;
  transition: transform 240ms var(--ease), background-color 240ms var(--ease), color 240ms var(--ease);
}

.immersive-button:hover {
  transform: translateY(-3px);
}

.immersive-button--primary {
  border-color: var(--copper-soft);
  background: var(--copper-soft);
  color: #10170f;
}

.immersive-button--quiet:hover {
  background: var(--paper-soft);
  color: #10170f;
}

.immersive-status {
  margin: 0;
  color: rgb(250 246 237 / 0.55);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes immersive-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .immersive-shell {
    width: min(100% - 28px, 640px);
    padding: 22px 0 24px;
  }

  .immersive-brand {
    width: 78px;
  }

  .immersive-copy {
    padding: 64px 0;
  }

  .immersive-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.7rem, 17vw, 6.2rem);
    line-height: 0.88;
  }
}

@media (max-width: 479px) {
  .immersive-actions {
    display: grid;
  }

  .immersive-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .immersive-canvas {
    display: none;
  }

  .immersive-copy {
    animation: none;
  }

  .immersive-button:hover {
    transform: none;
  }
}

/* Product Journey C: standalone, product-led preview. */
.ciao-body {
  min-width: 0;
  overflow-x: clip;
  background: #f7f0e2;
  color: #263226;
}

.ciao-page {
  --ciao-ink: #263226;
  --ciao-cream: #f7f0e2;
  --ciao-copper: #a64c2d;
  --ciao-rule: rgb(38 50 38 / 0.2);
  --ciao-quiet: rgb(38 50 38 / 0.72);
  min-height: 100dvh;
  overflow: clip;
  background: var(--ciao-cream);
}

.ciao-page :focus-visible {
  outline-color: var(--ciao-copper);
  outline-offset: 5px;
}

.ciao-topbar {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  padding: 26px 0;
}

.ciao-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ciao-brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(38 50 38 / 0.38);
  border-radius: 50%;
  object-fit: cover;
}

.ciao-topbar__order {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 17px;
  border: 1px solid var(--ciao-ink);
  border-radius: var(--pill);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.ciao-topbar__order:hover {
  background: var(--ciao-ink);
  color: var(--ciao-cream);
  transform: translateY(-2px);
}

.ciao-opening {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  min-height: 100dvh;
  padding: 130px max(32px, calc((100vw - 1376px) / 2)) 62px;
  isolation: isolate;
}

.ciao-opening::before {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: -7%;
  width: min(64vw, 840px);
  aspect-ratio: 1;
  border: 1px solid rgb(166 76 45 / 0.24);
  border-radius: 50%;
  content: "";
}

.ciao-opening::after {
  position: absolute;
  z-index: -1;
  right: 18%;
  bottom: 16%;
  width: min(28vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(212 139 93 / 0.2);
  content: "";
  filter: blur(4px);
}

.ciao-opening__copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: clamp(20px, 3vw, 56px) 0;
}

.ciao-eyebrow,
.ciao-chapter__kicker {
  margin: 0;
  color: var(--ciao-copper);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ciao-opening h1 {
  max-width: 10ch;
  margin: 19px 0 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7.5vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.83;
}

.ciao-opening__lede {
  max-width: 42ch;
  margin: 28px 0 0;
  color: var(--ciao-quiet);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.7;
}

.ciao-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ciao-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid var(--ciao-ink);
  border-radius: var(--pill);
  font-size: 0.88rem;
  font-weight: 750;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.ciao-button:hover {
  transform: translateY(-3px);
}

.ciao-button--primary {
  border-color: var(--ciao-ink);
  background: var(--ciao-ink);
  color: var(--ciao-cream);
}

.ciao-button--primary:hover {
  background: var(--ciao-copper);
  border-color: var(--ciao-copper);
}

.ciao-button--secondary:hover {
  background: rgb(38 50 38 / 0.08);
}

.ciao-opening__visual {
  --ciao-pointer-x: 0px;
  --ciao-pointer-y: 0px;
  position: relative;
  width: min(100%, 740px);
  margin: 0 0 0 auto;
}

.ciao-opening__visual::before,
.ciao-chapter__visual::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: 6%;
  bottom: 8%;
  left: 6%;
  border-radius: 50% 50% 42% 42%;
  background: var(--ciao-scene, #e7c9a9);
  content: "";
}

.ciao-opening__visual img,
.ciao-chapter__visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transform: translate3d(var(--ciao-pointer-x), var(--ciao-pointer-y), 0) scale(1.01);
  transition: transform 560ms var(--ease), opacity 560ms var(--ease), filter 560ms var(--ease);
  will-change: transform;
}

.ciao-opening__visual figcaption,
.ciao-chapter__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 5%;
  margin: 0;
  color: var(--ciao-ink);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.42rem);
  font-style: italic;
  line-height: 1.2;
  transform: rotate(-7deg);
}

.ciao-rail {
  position: sticky;
  z-index: 4;
  top: 14px;
  display: flex;
  width: min(100% - 64px, 1050px);
  margin: -1px auto 0;
  overflow-x: auto;
  border: 1px solid var(--ciao-rule);
  border-radius: var(--pill);
  background: rgb(247 240 226 / 0.94);
  box-shadow: 0 8px 25px rgb(59 48 29 / 0.06);
  scrollbar-width: none;
}

.ciao-rail::-webkit-scrollbar {
  display: none;
}

.ciao-rail a {
  position: relative;
  flex: 1 0 auto;
  padding: 15px 17px;
  color: var(--ciao-quiet);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms var(--ease);
}

.ciao-rail a[aria-current="true"] {
  color: var(--ciao-copper);
}

.ciao-rail a[aria-current="true"]::after {
  position: absolute;
  right: 32%;
  bottom: 7px;
  left: 32%;
  height: 2px;
  border-radius: var(--pill);
  background: currentColor;
  content: "";
}

.ciao-chapter {
  --ciao-scene: #d7dfce;
  display: grid;
  grid-template-columns: minmax(270px, 0.83fr) minmax(360px, 1.17fr);
  align-items: center;
  gap: clamp(34px, 7vw, 142px);
  min-height: 100dvh;
  padding: clamp(116px, 13vw, 166px) max(32px, calc((100vw - 1296px) / 2)) clamp(84px, 10vw, 138px);
  scroll-margin-top: 82px;
}

.ciao-chapter[data-ciao-tone="espresso"] {
  --ciao-scene: #e6b77d;
}

.ciao-chapter[data-ciao-tone="tea"] {
  --ciao-scene: #cfdcc0;
}

.ciao-chapter[data-ciao-tone="bakery"] {
  --ciao-scene: #edd5ae;
}

.ciao-chapter__copy {
  max-width: 470px;
}

.ciao-chapter h2,
.ciao-moods h2,
.ciao-closing h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.ciao-chapter h2 {
  max-width: 8ch;
  font-size: clamp(3.5rem, 6vw, 7.4rem);
}

.ciao-chapter__description {
  max-width: 36ch;
  margin: 25px 0 0;
  color: var(--ciao-quiet);
  font-size: 1rem;
  line-height: 1.72;
}

.ciao-chapter__price {
  margin: 22px 0 0;
  color: var(--ciao-copper);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ciao-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--ciao-ink);
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 200ms var(--ease), gap 200ms var(--ease);
}

.ciao-link:hover {
  gap: 15px;
  color: var(--ciao-copper);
}

.ciao-chapter__visual {
  --ciao-pointer-x: 0px;
  --ciao-pointer-y: 0px;
  position: sticky;
  top: clamp(92px, 12vh, 142px);
  width: min(100%, 680px);
  margin: 0;
  justify-self: end;
}

.ciao-chapter--reverse {
  grid-template-columns: minmax(360px, 1.17fr) minmax(270px, 0.83fr);
}

.ciao-chapter--reverse .ciao-chapter__copy {
  grid-column: 2;
  grid-row: 1;
}

.ciao-chapter--reverse .ciao-chapter__visual {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.ciao-enhanced .ciao-chapter:not(.is-visible) .ciao-chapter__copy {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

.ciao-enhanced .ciao-chapter:not(.is-visible) .ciao-chapter__visual img {
  opacity: 0;
  filter: saturate(0.72);
}

.ciao-chapter__copy {
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.ciao-moods {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 7vw, 116px);
  width: min(100% - 64px, 1296px);
  margin: 0 auto;
  padding: clamp(86px, 12vw, 164px) 0;
  border-top: 1px solid var(--ciao-rule);
}

.ciao-moods h2 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 5.2vw, 6.4rem);
}

.ciao-moods__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  overflow: hidden;
  border: 1px solid var(--ciao-rule);
  background: var(--ciao-rule);
  border-radius: 4px;
}

.ciao-moods__links a {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  background: var(--ciao-cream);
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}

.ciao-moods__links a:hover {
  background: var(--ciao-ink);
  color: var(--ciao-cream);
}

.ciao-moods__links span {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.ciao-moods__links small {
  color: var(--ciao-copper);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ciao-closing {
  width: min(100% - 64px, 1376px);
  margin: 0 auto 32px;
  padding: clamp(44px, 7vw, 94px);
  border-radius: clamp(20px, 3vw, 44px);
  background:
    radial-gradient(circle at 83% 7%, rgb(216 146 107 / 0.3), transparent 23%),
    #273126;
  color: var(--ciao-cream);
}

.ciao-closing__brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 4vw, 52px);
}

.ciao-closing__brand img {
  width: clamp(78px, 9vw, 126px);
  border: 1px solid rgb(247 240 226 / 0.48);
  border-radius: 50%;
}

.ciao-closing .ciao-eyebrow {
  color: #e8a37f;
}

.ciao-closing h2 {
  max-width: 13ch;
  font-size: clamp(3.1rem, 5.2vw, 6.7rem);
}

.ciao-closing__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: clamp(48px, 7vw, 90px) 0 0 auto;
  color: rgb(247 240 226 / 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

.ciao-closing__details p {
  margin: 0;
}

.ciao-closing .ciao-actions {
  margin-top: 32px;
}

.ciao-closing .ciao-button--primary {
  border-color: #e8a37f;
  background: #e8a37f;
  color: #273126;
}

.ciao-closing .ciao-button--secondary {
  border-color: rgb(247 240 226 / 0.64);
  color: var(--ciao-cream);
}

.ciao-closing .ciao-button--secondary:hover {
  background: var(--ciao-cream);
  color: var(--ciao-ink);
}

@media (max-width: 900px) {
  .ciao-opening {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  }

  .ciao-chapter,
  .ciao-chapter--reverse {
    grid-template-columns: minmax(240px, 0.8fr) minmax(290px, 1.2fr);
    gap: 46px;
  }

  .ciao-chapter--reverse .ciao-chapter__copy {
    grid-column: 2;
  }

  .ciao-chapter--reverse .ciao-chapter__visual {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .ciao-topbar {
    width: min(100% - 32px, 640px);
    padding: 17px 0;
  }

  .ciao-brand span {
    display: none;
  }

  .ciao-topbar__order {
    min-height: 40px;
    padding-inline: 14px;
  }

  .ciao-opening {
    display: block;
    min-height: 0;
    padding: 119px 16px 64px;
  }

  .ciao-opening__copy {
    max-width: 580px;
    margin: 0 auto;
  }

  .ciao-opening h1 {
    max-width: 9ch;
    font-size: clamp(3.55rem, 15vw, 6rem);
    line-height: 0.86;
  }

  .ciao-opening__visual {
    width: min(100%, 540px);
    margin: 30px auto 0;
  }

  .ciao-rail {
    position: relative;
    top: auto;
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .ciao-rail a {
    padding: 13px 15px;
  }

  .ciao-chapter,
  .ciao-chapter--reverse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    min-height: 0;
    padding: 78px 16px;
    scroll-margin-top: 18px;
  }

  .ciao-chapter__copy,
  .ciao-chapter--reverse .ciao-chapter__copy {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    max-width: 540px;
  }

  .ciao-chapter h2 {
    max-width: 10ch;
    font-size: clamp(3.35rem, 14vw, 5.4rem);
  }

  .ciao-chapter__visual,
  .ciao-chapter--reverse .ciao-chapter__visual {
    position: relative;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    order: 2;
    width: min(100%, 540px);
    margin: 0 auto;
  }

  .ciao-moods {
    display: block;
    width: calc(100% - 32px);
    padding: 78px 0;
  }

  .ciao-moods__links {
    margin-top: 35px;
  }

  .ciao-closing {
    width: calc(100% - 32px);
    margin-bottom: 16px;
    padding: 38px 25px;
  }

  .ciao-closing__details {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 44px;
  }
}

@media (max-width: 479px) {
  .ciao-actions {
    display: grid;
  }

  .ciao-button {
    width: 100%;
  }

  .ciao-moods__links {
    grid-template-columns: 1fr;
  }

  .ciao-moods__links a {
    min-height: 118px;
  }

  .ciao-closing__brand {
    display: block;
  }

  .ciao-closing__brand img {
    margin-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ciao-page,
  .ciao-page * {
    scroll-behavior: auto !important;
  }

  .ciao-topbar__order:hover,
  .ciao-button:hover,
  .ciao-opening__visual img,
  .ciao-chapter__visual img,
  .ciao-enhanced .ciao-chapter:not(.is-visible) .ciao-chapter__copy {
    transform: none !important;
  }

  .ciao-enhanced .ciao-chapter:not(.is-visible) .ciao-chapter__copy,
  .ciao-enhanced .ciao-chapter:not(.is-visible) .ciao-chapter__visual img {
    opacity: 1 !important;
    filter: none !important;
  }
}

/* A Slower Day: standalone story preview. */
.story-body { min-width: 0; overflow-x: clip; background: #18251d; color: #f3f0e7; }
.story-page { --story-ink: #18251d; --story-paper: #f3f0e7; --story-copper: #d3835e; --story-muted: rgb(243 240 231 / .7); --story-x: 0px; --story-y: 0px; min-height: 100dvh; background: var(--story-ink); }
.story-page :focus-visible { outline-color: var(--story-copper); outline-offset: 5px; }
.story-header { position: absolute; z-index: 2; top: 0; right: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: min(100% - 64px, 1360px); margin: auto; padding: 22px 0; }
.story-brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-family: var(--font-display); font-weight: 700; }
.story-brand img { width: 42px; height: 42px; border: 1px solid rgb(243 240 231 / .52); border-radius: 50%; object-fit: cover; }
.story-nav { display: flex; gap: 28px; font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.story-nav a { color: var(--story-muted); transition: color 180ms var(--ease); }
.story-nav a:hover { color: var(--story-paper); }
.story-order { justify-self: end; padding: 11px 17px; border: 1px solid rgb(243 240 231 / .7); border-radius: var(--pill); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background-color 180ms var(--ease), color 180ms var(--ease); }
.story-order:hover { background: var(--story-paper); color: var(--story-ink); }
.story-hero { position: relative; display: grid; grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr); align-items: center; min-height: 100dvh; padding: 110px max(32px, calc((100vw - 1296px) / 2)) 56px; overflow: clip; isolation: isolate; }
.story-hero::before { position: absolute; z-index: 0; width: min(54vw, 760px); height: min(54vw, 760px); right: -16%; bottom: -23%; border-radius: 50%; background: rgb(211 131 94 / .17); content: ""; filter: blur(5px); animation: story-atmosphere 9s ease-in-out infinite alternate; }
.story-hero__copy { position: relative; z-index: 1; max-width: 570px; animation: story-hero-enter 900ms var(--ease) 120ms both; }
.story-hero__copy > p:first-child, .story-place, .story-closing > div > p { margin: 0; color: var(--story-copper); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.story-hero h1 { max-width: 8ch; margin: 18px 0 0; font-family: var(--font-display); font-size: clamp(4.2rem, 7.7vw, 8rem); font-weight: 500; letter-spacing: -.075em; line-height: .84; }
.story-hero__lede { max-width: 35ch; margin: 26px 0 0; color: var(--story-muted); line-height: 1.7; }
.story-button { display: inline-flex; min-height: 51px; align-items: center; justify-content: center; margin-top: 30px; padding: 11px 20px; border: 1px solid var(--story-copper); border-radius: var(--pill); background: var(--story-copper); color: var(--story-ink); font-size: .86rem; font-weight: 800; transition: transform 200ms var(--ease), background-color 200ms var(--ease); }
.story-button:hover { background: #e5a380; transform: translateY(-3px); }
.story-hero__visual { position: relative; z-index: 1; width: min(100%, 740px); margin: 0 0 0 auto; animation: story-hero-enter 1150ms var(--ease) 240ms both; }
.story-hero__visual::before, .story-chapter__image::before { position: absolute; z-index: 0; inset: 9%; border: 1px solid rgb(211 131 94 / .4); border-radius: 48% 48% 42% 42%; content: ""; }
.story-hero__visual img, .story-chapter__image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1; object-fit: contain; transform: translate3d(var(--story-x), var(--story-y), 0); transition: transform 520ms var(--ease), opacity 560ms var(--ease); will-change: transform; }
.story-chapter { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr); align-items: center; gap: clamp(36px, 8vw, 140px); min-height: 100dvh; padding: 100px max(32px, calc((100vw - 1220px) / 2)); }
.story-chapter--midday { grid-template-columns: minmax(360px, 1.2fr) minmax(260px, .8fr); background: #1e3025; }
.story-chapter__copy { max-width: 430px; }
.story-chapter h2, .story-receive h2, .story-closing h2 { margin: 16px 0 0; font-family: var(--font-display); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.story-chapter h2 { max-width: 8ch; font-size: clamp(3.5rem, 5.7vw, 6.8rem); }
.story-chapter__copy > p:not(.story-place):not(.story-price) { margin: 25px 0 0; color: var(--story-muted); line-height: 1.75; }
.story-price { margin: 22px 0 0; color: var(--story-copper); font-size: .8rem; font-weight: 800; letter-spacing: .08em; }
.story-link { display: inline-flex; margin-top: 23px; padding-bottom: 6px; border-bottom: 1px solid var(--story-paper); font-size: .88rem; font-weight: 750; transition: color 180ms var(--ease), border-color 180ms var(--ease); }
.story-link:hover { border-color: var(--story-copper); color: var(--story-copper); }
.story-chapter__image { position: sticky; top: 100px; width: min(100%, 670px); margin: 0; justify-self: end; transition: clip-path 700ms var(--ease); }
.story-chapter--midday .story-chapter__image { justify-self: start; }
.story-enhanced .story-chapter:not(.is-visible) .story-chapter__copy { opacity: 0; transform: translateY(26px); }
.story-enhanced .story-chapter:not(.is-visible) .story-chapter__image { clip-path: inset(0 0 100% 0); }
.story-enhanced .story-chapter:not(.is-visible) .story-chapter__image img { opacity: 0; }
.story-chapter__copy { transition: opacity 560ms var(--ease), transform 560ms var(--ease); }
@keyframes story-hero-enter { from { opacity: 0; transform: translate3d(0, 34px, 0) scale(.97); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes story-atmosphere { from { transform: translate3d(-3%, 5%, 0) scale(.92); opacity: .42; } to { transform: translate3d(4%, -6%, 0) scale(1.08); opacity: .88; } }
.story-receive { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(36px, 8vw, 150px); width: min(100% - 64px, 1220px); margin: auto; padding: 120px 0; border-top: 1px solid rgb(243 240 231 / .17); }
.story-receive h2 { max-width: 7ch; font-size: clamp(3rem, 5vw, 6rem); }
.story-receive > div { display: grid; gap: 26px; }
.story-receive p { display: grid; gap: 7px; margin: 0; }
.story-receive strong { color: var(--story-copper); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.story-receive span { color: var(--story-muted); line-height: 1.6; }
.story-closing { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(24px, 5vw, 70px); width: min(100% - 64px, 1360px); margin: 0 auto 32px; padding: clamp(38px, 7vw, 90px); border: 1px solid rgb(243 240 231 / .28); border-radius: 28px; }
.story-closing > img { width: clamp(78px, 10vw, 130px); border: 1px solid rgb(243 240 231 / .45); border-radius: 50%; }
.story-closing h2 { max-width: 11ch; font-size: clamp(3rem, 5.3vw, 6.5rem); }
.story-closing address { margin-top: 32px; color: var(--story-muted); font-style: normal; line-height: 1.7; }
.story-closing address a { color: var(--story-paper); }
.story-closing__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.story-closing__actions .story-button { margin-top: 28px; }
.story-button--quiet { border-color: rgb(243 240 231 / .65); background: transparent; color: var(--story-paper); }
.story-button--quiet:hover { background: var(--story-paper); color: var(--story-ink); }

/* Preview E: Hover Image Reveal */
.hover-body { min-width: 0; overflow-x: clip; background: #18251d; color: #f3f0e7; }
.hover-page { --hover-ink: #18251d; --hover-ink-soft: #223326; --hover-paper: #f3f0e7; --hover-copper: #d3835e; --hover-muted: rgb(243 240 231 / .68); --hover-line: rgb(243 240 231 / .2); --hover-x: 0px; --hover-y: 0px; min-height: 100dvh; background: var(--hover-ink); }
.hover-page :focus-visible { outline-color: var(--hover-copper); outline-offset: 5px; }
.hover-header { position: relative; z-index: 4; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; width: min(100% - 64px, 1360px); min-height: 78px; margin: 0 auto; border-bottom: 1px solid var(--hover-line); }
.hover-brand { display: block; width: 220px; height: 58px; overflow: hidden; }
.hover-brand__logo { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; }
.hover-brand__logo img { position: absolute; top: -41px; left: -39px; width: 298px; max-width: none; height: 149px; }
.hover-header__nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 42px); }
.hover-header__nav a { color: var(--hover-muted); font-size: .76rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; transition: color 180ms var(--ease); }
.hover-header__nav a:hover { color: var(--hover-paper); }
.hover-header__order, .hover-menu__all { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 1px solid var(--hover-copper); border-radius: var(--pill); background: var(--hover-copper); color: var(--hover-ink); font-size: .76rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; transition: transform 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease); }
.hover-header__order { min-width: 108px; padding: 10px 16px; }
.hover-header__order:hover, .hover-menu__all:hover { background: #e5a380; transform: translateY(-2px); }
.hover-header__order:active, .hover-menu__all:active { transform: translateY(0) scale(.98); }
.hover-menu { position: relative; display: grid; grid-template-columns: minmax(330px, .83fr) minmax(390px, 1.17fr); align-items: center; gap: clamp(44px, 7vw, 128px); width: min(100% - 64px, 1360px); min-height: calc(100dvh - 78px); margin: auto; padding: clamp(64px, 7vw, 112px) 0; overflow: clip; isolation: isolate; }
.hover-menu::before { position: absolute; z-index: 0; right: -11%; bottom: -29%; width: min(50vw, 680px); aspect-ratio: 1; border-radius: 50%; background: rgb(211 131 94 / .16); content: ""; filter: blur(5px); }
.hover-menu__copy { position: relative; z-index: 2; max-width: 620px; animation: hover-menu-enter 820ms var(--ease) 80ms both; }
.hover-menu__eyebrow { margin: 0; color: var(--hover-copper); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hover-menu h1 { max-width: 10ch; margin: 17px 0 0; font-family: var(--font-display); font-size: clamp(3.8rem, 6.7vw, 7.2rem); font-weight: 500; letter-spacing: -.07em; line-height: .87; }
.hover-menu__lede { max-width: 34ch; margin: 23px 0 0; color: var(--hover-muted); line-height: 1.7; }
.hover-menu__list { display: grid; margin-top: clamp(36px, 5vw, 60px); }
.hover-menu__option { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 20px; min-height: 68px; padding: 12px 0; border-bottom: 1px solid var(--hover-line); color: var(--hover-paper); transition: color 260ms var(--ease), transform 340ms var(--ease), opacity 260ms var(--ease); }
.hover-menu__option:first-child { border-top: 1px solid var(--hover-line); }
.hover-menu__option span { font-family: var(--font-display); font-size: clamp(1.5rem, 2.3vw, 2.45rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.hover-menu__option small { color: var(--hover-copper); font-size: .66rem; font-weight: 800; letter-spacing: .075em; line-height: 1.3; text-align: right; text-transform: uppercase; }
.hover-menu__option:hover, .hover-menu__option.is-active { color: var(--hover-copper); transform: translateX(10px); }
.hover-page.is-enhanced .hover-menu__option:not(.is-active) { opacity: .42; }
.hover-page.is-enhanced .hover-menu__option:hover { opacity: 1; }
.hover-menu__all { margin-top: 28px; padding: 10px 18px; }
.hover-menu__stage { position: relative; z-index: 1; width: min(100%, 720px); aspect-ratio: 1; margin: 0 0 0 auto; transform: translate3d(var(--hover-x), var(--hover-y), 0); transition: transform 460ms cubic-bezier(.16, 1, .3, 1); will-change: transform; animation: hover-menu-enter 1060ms var(--ease) 180ms both; }
.hover-menu__stage::before { position: absolute; z-index: 0; inset: 9%; border: 1px solid rgb(211 131 94 / .46); border-radius: 46% 52% 42% 56%; content: ""; transform: rotate(-8deg); }
.hover-menu__image { position: absolute; z-index: 1; inset: 0; display: grid; margin: 0; opacity: 0; visibility: hidden; transform: translate3d(0, 46px, 0) scale(.96); transition: opacity 420ms var(--ease), transform 700ms var(--ease), visibility 0s linear 700ms; }
.hover-menu__image.is-active { opacity: 1; visibility: visible; transform: translate3d(0, 0, 0) scale(1); transition-delay: 0s; }
.hover-menu__image img { width: 100%; height: 100%; object-fit: contain; }
.hover-menu__image figcaption { align-self: end; justify-self: start; max-width: calc(100% - 32px); margin: 0 0 18px 18px; padding: 8px 11px; border: 1px solid rgb(243 240 231 / .3); border-radius: var(--radius-small); background: rgb(24 37 29 / .86); color: var(--hover-paper); font-size: .78rem; font-weight: 750; }
.hover-visit { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(150px, .7fr) auto; gap: 24px; width: min(100% - 64px, 1360px); margin: 0 auto; padding: 26px 0; border-top: 1px solid var(--hover-line); }
.hover-visit p { display: grid; gap: 4px; margin: 0; }
.hover-visit strong { color: var(--hover-copper); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.hover-visit span, .hover-visit a, .hover-footer { color: var(--hover-muted); font-size: .9rem; line-height: 1.5; }
.hover-visit a { align-self: center; color: var(--hover-paper); font-weight: 750; transition: color 180ms var(--ease); }
.hover-visit a:hover { color: var(--hover-copper); }
.hover-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: min(100% - 64px, 1360px); margin: auto; padding: 24px 0 32px; }
.hover-footer p { margin: 0; }
.hover-footer a { color: var(--hover-paper); font-weight: 750; transition: color 180ms var(--ease); }
.hover-footer a:hover { color: var(--hover-copper); }
@keyframes hover-menu-enter { from { opacity: 0; transform: translate3d(0, 28px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }

@media (max-width: 920px) {
  .hover-header__nav { display: none; }
  .hover-header { grid-template-columns: 1fr auto; }
}

@media (max-width: 767px) {
  .hover-header, .hover-menu, .hover-visit, .hover-footer { width: min(100% - 36px, 560px); }
  .hover-header { min-height: 70px; }
  .hover-brand { width: 183px; height: 50px; }
  .hover-brand__logo img { top: -34px; left: -33px; width: 249px; height: 125px; }
  .hover-header__order { min-width: 0; min-height: 40px; padding: 8px 13px; font-size: .67rem; }
  .hover-menu { grid-template-columns: 1fr; gap: 36px; min-height: auto; padding: 52px 0 64px; }
  .hover-menu::before { right: -30%; bottom: 0; width: 420px; }
  .hover-menu__stage { order: -1; width: min(100%, 480px); margin: 0; transform: none !important; animation-delay: 0s; }
  .hover-menu__stage::before { inset: 7%; }
  .hover-menu__image { transform: none; transition: opacity 360ms var(--ease), visibility 0s linear 360ms; }
  .hover-menu__image.is-active { transform: none; }
  .hover-menu h1 { max-width: 9ch; font-size: clamp(3.2rem, 14vw, 4.8rem); }
  .hover-menu__list { margin-top: 32px; }
  .hover-menu__option { min-height: 62px; gap: 14px; }
  .hover-menu__option:hover, .hover-menu__option.is-active { transform: none; }
  .hover-menu__option span { font-size: clamp(1.45rem, 7vw, 2rem); }
  .hover-menu__option small { max-width: 16ch; font-size: .58rem; }
  .hover-page.is-enhanced .hover-menu__option:not(.is-active) { opacity: 1; }
  .hover-visit { grid-template-columns: 1fr; gap: 17px; padding: 26px 0; }
  .hover-footer { padding-bottom: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .hover-menu__copy, .hover-menu__stage, .hover-menu__image, .hover-menu__option { animation: none; transition: none; }
  .hover-page.is-enhanced .hover-menu__stage { transform: none; }
}

.originkit-coverflow-shell {
  width: 100%;
  height: min(72vw, 560px);
  min-height: 420px;
  min-width: 0;
  overflow: hidden;
}

.originkit-coverflow-shell--home {
  align-self: stretch;
}

/* Menu order hub and live promotions */
.order-hub {
  position: relative;
  z-index: 30;
  border-block: 1px solid #24405d;
  background: #071a30;
  color: #fff6e6;
  box-shadow: 0 14px 36px rgb(7 26 48 / .14);
}

.order-hub__top {
  display: grid;
  grid-template-columns: minmax(226px, .85fr) minmax(300px, 1.5fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 112px;
}

.order-hub__categories {
  position: relative;
}

.order-hub__categories > summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 13px;
  padding: 12px 20px;
  border: 1px solid rgb(226 182 92 / .55);
  border-radius: 15px;
  background: #fff6e6;
  color: #071a30;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.order-hub__categories > summary::-webkit-details-marker {
  display: none;
}

.order-hub__categories > summary::before {
  width: 24px;
  height: 16px;
  border-block: 2px solid currentColor;
  background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
  content: "";
}

.order-hub__categories > summary::after {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms var(--ease);
}

.order-hub__categories[open] > summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.order-hub__categories .category-tabs {
  position: absolute;
  z-index: 5;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: min(360px, calc(100vw - 36px));
  max-height: min(60vh, 490px);
  gap: 6px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgb(226 182 92 / .58);
  border-radius: 16px;
  background: #fff6e6;
  box-shadow: 0 22px 45px rgb(0 0 0 / .28);
}

.order-hub__categories .category-tab {
  width: 100%;
  border-color: rgb(7 26 48 / .18);
  border-radius: 10px;
  color: #071a30;
  text-align: left;
}

.order-hub__categories .category-tab:hover,
.order-hub__categories .category-tab:focus-visible {
  border-color: #a75f2e;
  background: #f5e5c5;
}

.order-hub__categories .category-tab[aria-current="true"],
.order-hub__categories .category-tab[aria-pressed="true"] {
  border-color: #a75f2e;
  background: #a75f2e;
  color: #fff6e6;
}

.order-hub__search {
  gap: 0;
}

.order-hub__search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.order-hub__search input {
  min-height: 58px;
  border-color: rgb(255 246 230 / .34);
  border-radius: 15px;
  background: rgb(255 246 230 / .09);
  color: #fff6e6;
}

.order-hub__search input:focus {
  border-color: #e2b65c;
  outline-color: #e2b65c;
  background: rgb(255 246 230 / .14);
}

.order-hub__search input::placeholder {
  color: rgb(255 246 230 / .72);
}

.order-hub__search .clear-search {
  bottom: 12px;
  right: 12px;
  background: #e2b65c;
  color: #071a30;
}

.order-hub__cart {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid #e2b65c;
  border-radius: var(--pill);
  color: #fff6e6;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.order-hub__cart svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.order-hub__cart:hover,
.order-hub__cart:focus-visible {
  background: #e2b65c;
  color: #071a30;
  transform: translateY(-2px);
}

.order-hub__utilities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 26px;
  min-height: 43px;
  align-items: center;
  padding-bottom: 17px;
}

.order-hub__utilities a {
  color: rgb(255 246 230 / .86);
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
}

.order-hub__utilities a::before {
  margin-right: 10px;
  color: #e2b65c;
  content: "•";
}

.order-hub__utilities a:hover,
.order-hub__utilities a:focus-visible {
  color: #e2b65c;
}

.menu-promotions {
  padding-block: clamp(42px, 6vw, 76px);
}

.menu-promotions__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.menu-promotions__heading p {
  margin: 0 0 7px;
  color: #a75f2e;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.menu-promotions__heading h2 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: .96;
}

.menu-promotions__heading > span {
  max-width: 26ch;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.5;
}

.menu-promotions__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-promotion-card {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 166px;
  padding: 19px;
  border: 1px solid rgb(7 26 48 / .16);
  border-radius: 18px;
  background: linear-gradient(138deg, #fffaf0 0%, #f5e5c5 100%);
  box-shadow: 0 13px 28px rgb(7 26 48 / .08);
}

.menu-promotion-card h3,
.menu-promotion-card p {
  margin: 0;
}

.menu-promotion-card h3 {
  color: #071a30;
  font-size: 1.08rem;
}

.menu-promotion-card > p:not(.menu-promotion-card__eyebrow) {
  color: #565c5b;
  font-size: .84rem;
  line-height: 1.42;
}

.menu-promotion-card h3 code {
  display: inline-flex;
  width: fit-content;
  padding: 6px 8px;
  border: 1px dashed #a75f2e;
  border-radius: 7px;
  color: #7f3d1d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.menu-promotion-card__eyebrow {
  color: #a75f2e;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.menu-promotion-card button {
  justify-self: start;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #a75f2e;
  border-radius: var(--pill);
  background: #a75f2e;
  color: #fff6e6;
  font-size: .76rem;
  font-weight: 850;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.menu-promotion-card button:hover,
.menu-promotion-card button:focus-visible {
  background: #071a30;
  border-color: #071a30;
  transform: translateY(-1px);
}

.promotion-card__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  border: 1px dashed rgb(7 26 48 / .25);
  border-radius: 14px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .order-hub__top {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 1.25fr) auto;
    gap: 13px;
  }

  .order-hub__cart {
    padding-inline: 16px;
  }

  .menu-promotions__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .order-hub__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 0;
    padding-block: 16px;
  }

  .order-hub__search {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .order-hub__categories,
  .order-hub__cart {
    grid-row: 2;
  }

  .order-hub__categories > summary,
  .order-hub__cart,
  .order-hub__search input {
    min-height: 52px;
  }

  .order-hub__categories .category-tabs {
    width: min(100%, 360px);
  }

  .order-hub__utilities {
    flex-wrap: nowrap;
    gap: 20px;
    min-height: 50px;
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: none;
  }

  .order-hub__utilities::-webkit-scrollbar {
    display: none;
  }

  .order-hub__utilities a {
    flex: 0 0 auto;
  }

  .menu-promotions__heading {
    display: grid;
    gap: 12px;
  }

  .menu-promotions__heading h2 {
    max-width: 14ch;
  }

  .menu-promotions__list {
    display: flex;
    gap: 13px;
    overflow-x: auto;
    padding-bottom: 7px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .menu-promotion-card {
    flex: 0 0 min(85vw, 330px);
    scroll-snap-align: start;
  }
}

@media (max-width: 440px) {
  .order-hub__categories > summary {
    width: 100%;
    padding-inline: 14px;
  }

  .order-hub__cart {
    gap: 6px;
    padding-inline: 13px;
  }

  .order-hub__cart span:not([data-cart-count]) {
    display: none;
  }
}

/* Cart promotion controls */
.cart-promotion {
  display: grid;
  gap: 8px;
  margin-top: 23px;
  padding-top: 19px;
  border-top: 1px solid rgb(7 26 48 / .14);
}

.cart-promotion label {
  color: #071a30;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.cart-promotion__entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.cart-promotion input {
  min-width: 0;
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid rgb(7 26 48 / .35);
  border-radius: 9px;
  background: #fffaf0;
  color: #071a30;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.cart-promotion input:focus {
  border-color: #a75f2e;
  outline-color: #a75f2e;
}

.cart-promotion__entry button,
.cart-promotion__clear {
  min-height: 42px;
  border: 1px solid #a75f2e;
  border-radius: 9px;
  background: #a75f2e;
  color: #fff6e6;
  font-size: .78rem;
  font-weight: 850;
}

.cart-promotion__entry button {
  padding-inline: 12px;
}

.cart-promotion__clear {
  justify-self: start;
  min-height: 30px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: #7f3d1d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-promotion__feedback {
  min-height: 1.25em;
  margin: 0;
  color: #626861;
  font-size: .8rem;
  line-height: 1.45;
}

.cart-summary-discount,
.cart-summary-final {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 13px;
  color: #43514d;
  font-size: .9rem;
}

.cart-summary-discount strong {
  color: #a75f2e;
}

.cart-summary-final {
  padding-top: 15px;
  border-top: 1px solid rgb(7 26 48 / .14);
  color: #071a30;
  font-weight: 850;
}

.cart-summary-final strong {
  font-size: 1.28rem;
}

/* Checkout promotion controls */
.checkout-promotion {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.checkout-promotion > summary {
  min-height: 50px;
  color: var(--copper);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-promotion__content {
  display: grid;
  gap: 8px;
  padding: 0 0 4px;
/* Remote branch retained for merge traceability:
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
*/
}

.checkout-promotion label {
  color: #a75f2e;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-promotion__entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-promotion input {
  min-width: 0;
  min-height: 41px;
  padding: 8px 10px;
  border: 1px solid rgb(7 26 48 / .35);
  border-radius: 8px;
  background: #fffaf0;
  color: #071a30;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.checkout-promotion input:focus {
  border-color: #a75f2e;
  outline-color: #a75f2e;
}

.checkout-promotion__entry button {
  min-height: 41px;
  padding-inline: 11px;
  border: 1px solid #071a30;
  border-radius: 8px;
  background: #071a30;
  color: #fff6e6;
  font-size: .75rem;
  font-weight: 850;
}

.checkout-promotion [data-checkout-promotion-feedback] {
/* Remote branch retained for merge traceability:
.checkout-promotion > p {
*/
  min-height: 1.25em;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.42;
}

.checkout-promotion__clear {
  justify-self: start;
  min-height: 28px;
  padding: 3px 0;
  border: 0;
  background: transparent;
  color: #a75f2e;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-summary-discount strong,
.checkout-review-line[data-checkout-review-discount] strong {
  color: #a75f2e;
}

.originkit-coverflow-fallback {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--olive);
  box-shadow: var(--shadow);
}

.originkit-coverflow-fallback figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.originkit-coverflow-fallback__feature {
  grid-row: 1 / 3;
}

.originkit-coverflow-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.originkit-coverflow-fallback figure:hover img {
  transform: scale(1.025);
}

.originkit-shiny-pill-shell {
  display: contents;
}

.originkit-shiny-pill-shell > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--copper);
  border-radius: var(--pill);
  background: var(--copper);
  color: var(--paper-soft);
  white-space: nowrap;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.originkit-shiny-pill-shell > a:hover {
  transform: translateY(-2px);
}

.originkit-shiny-pill-shell > a:active {
  transform: translateY(1px) scale(.98);
}

@media (max-width: 767px) {
  .originkit-coverflow-shell {
    height: 470px;
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .originkit-coverflow-shell *,
  .originkit-coverflow-shell *::before,
  .originkit-coverflow-shell *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .originkit-shiny-pill-shell [aria-hidden="true"] {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-featured-card,
  .home-featured-card *,
  .home-featured-card *::before,
  .home-featured-card *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .home-day-rhythm *,
  .home-day-rhythm *::before,
  .home-day-rhythm *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* Shared navigation: one menu, one capybara mark. */
@media (min-width: 961px) {
  :root {
    --header-height: 88px;
  }

  .site-nav {
    min-height: 88px;
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
    grid-template-areas: "primary-nav brand actions";
    gap: clamp(16px, 1.6vw, 28px);
    padding: 0;
    border-bottom-width: 1px;
    box-shadow: inset 0 -3px 0 var(--copper);
  }

  .header-primary-nav {
    grid-area: primary-nav;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(14px, 1.7vw, 26px);
    min-width: 0;
  }

  .header-primary-nav > a,
  .menu-dropdown__toggle,
  .order-link {
    position: relative;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border: 0;
    background: transparent;
    color: var(--olive);
    font-family: var(--font-display);
    font-size: clamp(0.68rem, 0.78vw, 0.82rem);
    font-weight: 650;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms var(--ease), transform 180ms var(--ease);
  }

  .header-primary-nav > a::after,
  .menu-dropdown__toggle::after,
  .order-link::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: var(--pill);
    background: var(--copper);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms var(--ease);
  }

  .header-primary-nav > a:hover,
  .header-primary-nav > a[aria-current="page"],
  .menu-dropdown.is-open .menu-dropdown__toggle,
  .menu-dropdown__toggle:hover,
  .order-link:hover {
    color: var(--copper);
  }

  .header-primary-nav > a:hover::after,
  .header-primary-nav > a[aria-current="page"]::after,
  .menu-dropdown.is-open .menu-dropdown__toggle::after,
  .menu-dropdown__toggle:hover::after,
  .order-link:hover::after {
    transform: scaleX(1);
  }

  .menu-dropdown {
    position: relative;
  }

  /* Keeps the hover state alive while the pointer crosses the panel offset. */
  .menu-dropdown::after {
    position: absolute;
    top: 100%;
    left: -14px;
    width: 258px;
    height: 10px;
    content: "";
    pointer-events: auto;
  }

/* Remote branch retained for merge traceability:
*/
  .menu-dropdown__toggle {
    gap: 7px;
    padding: 0;
  }

  .menu-dropdown__toggle span {
    color: var(--copper);
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: 400;
    transition: transform 180ms var(--ease);
  }

  .menu-dropdown.is-open .menu-dropdown__toggle span {
    transform: rotate(45deg);
  }

  .menu-dropdown__panel {
    position: absolute;
    z-index: 1;
/* Remote branch retained for merge traceability:
*/
    top: calc(100% + 10px);
    left: -14px;
    display: grid;
    min-width: 230px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--paper-soft);
    box-shadow: var(--shadow);
  }

  .menu-dropdown__panel a {
    padding: 12px 14px;
    border-radius: 7px;
    color: var(--olive);
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.25;
    transition: background-color 160ms var(--ease), color 160ms var(--ease);
  }

  .menu-dropdown__panel a:hover,
  .menu-dropdown__panel a[aria-current="page"] {
    background: var(--paper-deep);
    color: var(--copper);
  }

  .brand-link--capybara {
    grid-area: brand;
    width: 64px;
    height: 64px;
    justify-self: center;
  }

  .brand-link--capybara .brand-logo-mark {
    display: block;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border: 1px solid var(--copper);
    border-radius: 50%;
    background: #06182c;
  }

  .brand-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-actions {
    gap: clamp(12px, 1.5vw, 24px);
  }

  .order-link {
    color: var(--copper);
  }

  .cart-pill {
    min-height: 40px;
    padding: 9px 14px;
    font-size: .84rem;
  }
}

@media (max-width: 960px) {
  .header-primary-nav,
  .order-link {
    display: none;
  }

  .brand-link--capybara {
    width: 58px;
    height: 58px;
  }

  .brand-link--capybara .brand-logo-mark {
    display: block;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border: 1px solid var(--copper);
    border-radius: 50%;
    background: #06182c;
  }

  .mobile-nav .mobile-menu-disclosure {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--olive);
  }

  .mobile-menu-disclosure span:last-child {
    color: var(--copper);
    font-family: var(--font-body);
    font-size: 1.25em;
    font-weight: 400;
    transition: transform 180ms var(--ease);
  }

  .mobile-menu-disclosure[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
  }

  .mobile-menu-categories {
    display: grid;
    margin: 0 0 8px;
    padding: 4px 0 12px 18px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav .mobile-menu-categories a {
    padding: 12px 0;
    border-bottom: 0;
    color: var(--muted);
    font-size: clamp(1.15rem, 5.5vw, 1.65rem);
  }

  .mobile-nav .mobile-menu-categories a[aria-current="page"],
  .mobile-nav .mobile-order-link {
    color: var(--copper);
  }
}

.footer-logo-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--copper);
  border-radius: 50%;
  background: #06182c;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-brand {
  width: 58px;
  height: 58px;
}

.hover-brand__mark {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid var(--hover-copper);
  border-radius: 50%;
  background: #06182c;
}

.hover-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .hover-brand,
  .hover-brand__mark {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 720px) { .story-header { grid-template-columns: 1fr auto; width: calc(100% - 32px); padding: 16px 0; } .story-brand span, .story-nav { display: none; } .story-hero { display: block; min-height: 0; padding: 116px 16px 64px; } .story-hero__visual { width: min(100%, 540px); margin: 34px auto 0; } .story-hero h1 { font-size: clamp(3.7rem, 15vw, 5.8rem); } .story-chapter, .story-chapter--midday { display: flex; flex-direction: column; align-items: stretch; gap: 30px; min-height: 0; padding: 80px 16px; } .story-chapter__image, .story-chapter--midday .story-chapter__image { position: relative; top: auto; width: min(100%, 540px); margin: 0 auto; order: 2; } .story-chapter__copy { order: 1; } .story-receive { display: block; width: calc(100% - 32px); padding: 80px 0; } .story-receive > div { margin-top: 38px; } .story-closing { grid-template-columns: 1fr; width: calc(100% - 32px); margin-bottom: 16px; padding: 34px 24px; } }
@media (max-width: 479px) { .story-closing__actions { display: grid; } .story-button { width: 100%; } }
@media (prefers-reduced-motion: reduce) { .story-page, .story-page * { scroll-behavior: auto !important; animation: none !important; } .story-hero__visual img, .story-chapter__image img, .story-enhanced .story-chapter:not(.is-visible) .story-chapter__copy { transform: none !important; } .story-enhanced .story-chapter:not(.is-visible) .story-chapter__copy, .story-enhanced .story-chapter:not(.is-visible) .story-chapter__image img { opacity: 1 !important; } .story-enhanced .story-chapter:not(.is-visible) .story-chapter__image { clip-path: none !important; } }
