/* ── Brand: Isleworth cherries ─────────────────────────────── */
:root {
  --cherry: #e4100f;
  --cherry-deep: #c00e0d;
  --cherry-glow: rgba(228, 16, 15, 0.28);
  --black: #2a2622;
  --black-soft: #efe8dc;
  --white: #ffffff;
  --cream: #f4efe6;
  --paper: #f4efe6;
  --paper-deep: #ebe4d8;
  --ink: #2a2622;
  --muted: rgba(42, 38, 34, 0.62);
  --muted-dark: #6a635c;
  --line: rgba(42, 38, 34, 0.12);
  --line-dark: rgba(42, 38, 34, 0.1);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --wrap: min(1180px, 90vw);
  --header: 84px;
  --radius: 18px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}

img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { font: inherit; border: none; background: none; cursor: pointer; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ── Type ──────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 1rem;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cherry);
  box-shadow: 3px -2px 0 -1px var(--cherry);
}

.tag--light { color: var(--cherry); }
.tag--light::before { background: var(--cherry); box-shadow: 3px -2px 0 -1px var(--cherry); }

.title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
}

.title--light { color: var(--ink); }

.copy {
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 38ch;
}

.copy + .copy { margin-top: 1rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.35s, border-color 0.3s;
}

.btn--fill {
  background: var(--cherry);
  color: var(--white);
  box-shadow: 0 12px 36px var(--cherry-glow);
}

.btn--fill:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--cherry-deep);
  box-shadow: 0 16px 40px var(--cherry-glow);
}

.btn--ghost {
  color: var(--ink);
  border: 1.5px solid rgba(42, 38, 34, 0.2);
  background: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero .btn--ghost {
  color: var(--white);
  border-color: rgba(42, 38, 34, 0.48);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero .btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--outline {
  color: var(--black);
  border: 1.5px solid rgba(10, 10, 10, 0.18);
  background: transparent;
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── Icing drips (from logo) ───────────────────────────────── */
.icing {
  line-height: 0;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.icing svg {
  display: block;
  width: 100%;
  height: clamp(36px, 6vw, 64px);
  fill: var(--paper);
}

.icing--bottom svg { fill: var(--cherry); }
.icing--flip { transform: scaleY(-1); }
.icing--on-cream svg { fill: var(--paper-deep); }
.icing--on-white svg { fill: var(--paper); }
.icing--footer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  line-height: 0;
  pointer-events: none;
}

.icing--footer svg {
  display: block;
  width: 100%;
  height: clamp(36px, 6vw, 64px);
  fill: var(--paper-deep);
}

.icing--ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin: 0;
  color: var(--cherry);
  line-height: 0;
  overflow: hidden;
  height: clamp(40px, 7vw, 72px);
  pointer-events: none;
}

.icing--ticker .icing__wave {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  fill: currentColor;
  animation: icingWave 7s linear infinite;
  will-change: transform;
}

@keyframes icingWave {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header);
  transition: background 0.4s, box-shadow 0.4s;
}

.header--solid {
  background: rgba(244, 239, 230, 0.9);
  box-shadow: 0 1px 0 rgba(42, 38, 34, 0.08);
}

/* Blur on a layer so it doesn't trap position:fixed nav */
.header--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.header--solid .nav a {
  color: rgba(42, 38, 34, 0.72);
}

.header--solid .nav a:hover,
.header--solid .nav a[aria-current="page"] {
  color: var(--cherry);
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand__logo {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(228, 16, 15, 0.35));
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s;
}

.page-inner .nav a,
.page-links .nav a {
  color: rgba(42, 38, 34, 0.72);
}

.page-inner .nav a:hover,
.page-links .nav a:hover {
  color: var(--cherry);
}

.nav a:hover { color: var(--cherry); }

.menu-btn {
  display: none;
  position: relative;
  z-index: 220;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cherry);
  box-shadow: 0 8px 22px var(--cherry-glow);
  transition: transform 0.35s var(--ease), background 0.3s, box-shadow 0.35s;
}

.menu-btn:hover {
  transform: scale(1.06);
  background: var(--cherry-deep);
}

.menu-btn:active {
  transform: scale(0.96);
}

.menu-btn__lines {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 16px;
}

.menu-btn__lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform-origin: right center;
  animation: eqPulse 1.1s ease-in-out infinite;
  transition: transform 0.35s var(--ease), opacity 0.25s, height 0.35s var(--ease), width 0.35s var(--ease), border-radius 0.35s, background 0.3s;
}

.menu-btn__lines span:nth-child(1) {
  width: 100%;
  animation-delay: 0s;
}

.menu-btn__lines span:nth-child(2) {
  width: 100%;
  animation-delay: 0.18s;
}

.menu-btn__lines span:nth-child(3) {
  width: 100%;
  animation-delay: 0.32s;
}

@keyframes eqPulse {
  0%, 100% { transform: scaleX(0.45); }
  50% { transform: scaleX(1); }
}

.menu-btn[aria-expanded="true"] {
  background: var(--white);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.2);
}

.menu-btn[aria-expanded="true"] .menu-btn__lines {
  align-items: center;
  justify-content: center;
}

.menu-btn[aria-expanded="true"] .menu-btn__lines span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--cherry);
  animation: none;
  transform-origin: center;
}

.menu-btn[aria-expanded="true"] .menu-btn__lines span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn__lines span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.menu-btn[aria-expanded="true"] .menu-btn__lines span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -6% 0 0;
  will-change: transform;
  overflow: hidden;
  background: var(--black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(228, 16, 15, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.34) 0%, rgba(10, 10, 10, 0.16) 40%, rgba(10, 10, 10, 0.62) 100%);
}

.hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--header) + 1rem) 0 4rem;
}

.hero__mark {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 20px rgba(228, 16, 15, 0.55));
  animation: bob 3.5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 1.35rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero__title em {
  font-style: italic;
  color: var(--cherry);
}

.hero__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 40ch;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hero__cta .btn {
  min-width: 11.5rem;
}

/* ── Ticker ────────────────────────────────────────────────── */
.ticker {
  position: relative;
  z-index: 4;
  background: var(--cherry);
  color: var(--white);
  padding: 1.15rem 0;
}

.ticker__clip {
  overflow: hidden;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  animation: tick 20s linear infinite;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 600;
  font-style: italic;
  white-space: nowrap;
}

.ticker__track i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 4px -3px 0 -1px var(--white);
  opacity: 0.85;
  flex-shrink: 0;
}

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

/* ── Story ─────────────────────────────────────────────────── */
.story {
  padding: clamp(5rem, 11vw, 8.5rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--cream);
}

.story__text {
  max-width: 40rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.story__copy {
  display: grid;
  gap: 1rem;
}

.story__copy .copy {
  max-width: 42ch;
}

.story__bento {
  width: 100%;
}

.story__visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.story__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 18px 18px 0 var(--cherry);
}

.story__badge {
  position: absolute;
  top: 6%;
  left: -1rem;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(228, 16, 15, 0.25);
  animation: bob 4s ease-in-out infinite;
  z-index: 2;
}

.story__badge img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.ticks {
  list-style: none;
  margin-top: 2rem;
  max-width: 28rem;
}

.ticks li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line-dark);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--cherry);
  border-radius: 50%;
  box-shadow: 4px -3px 0 -1px var(--cherry);
  transform: translateY(-50%);
}

@media (min-width: 960px) {
  .story__text {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.85fr);
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    row-gap: 1.25rem;
    max-width: none;
    margin-top: clamp(2.75rem, 5vw, 4rem);
    align-items: end;
  }

  .story__text .tag {
    grid-column: 1;
  }

  .story__text .title {
    grid-column: 1;
    margin: 0;
  }

  .story__copy {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    padding-left: clamp(1.5rem, 3vw, 2.75rem);
    border-left: 1px solid var(--line-dark);
  }

  .story__copy .copy + .copy {
    margin-top: 0;
  }

  .story__text .ticks {
    grid-column: 1;
    margin-top: 0.5rem;
  }

  .story__bento {
    grid-template-rows: repeat(2, clamp(200px, 22vw, 280px));
    gap: 10px;
  }
}

/* ── Menu board ────────────────────────────────────────────── */
.menu {
  padding: clamp(5rem, 11vw, 8.5rem) 0;
  background: var(--paper-deep);
  color: var(--ink);
}

.menu--home {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  z-index: 2;
  margin-bottom: 0;
}

.menu--home .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.menu--home .menu__head {
  margin-bottom: 1.5rem;
}

.menu--home .menu__intro {
  margin-top: 0.75rem;
  margin-inline: auto;
  font-size: 0.95rem;
}

.menu--home .title {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.menu--page {
  padding-top: 2.5rem;
}

.menu__head {
  margin-bottom: 2.5rem;
}

.menu__intro {
  margin-top: 1.1rem;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.menu__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 440px;
  text-align: left;
}

.menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.menu__link:hover {
  border-color: var(--cherry);
  background: rgba(228, 16, 15, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(228, 16, 15, 0.18);
}

.menu__link-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.menu__link-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}

.menu__link-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.35;
}

.menu__link-go {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cherry);
  color: var(--white);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.menu__link-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.menu__link:hover .menu__link-go {
  transform: scale(1.08);
  background: var(--cherry-deep);
}

@media (min-width: 960px) {
  .menu__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
    gap: 1rem;
  }

  .menu__link {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.35rem;
    min-height: 168px;
    padding: 1.4rem 1.45rem;
    border-radius: var(--radius);
  }

  .menu__link-go {
    align-self: flex-end;
  }
}

@media (max-width: 640px) {
  .menu__link {
    padding: 1rem 1.1rem;
  }

  .menu__link-title {
    font-size: 1.28rem;
  }

  .menu__link-sub {
    font-size: 0.8rem;
  }

  .menu__link-go {
    width: 38px;
    height: 38px;
  }

  .menu__link-icon {
    width: 20px;
    height: 20px;
  }
}

.menu__order {
  margin-top: 1.5rem;
}

.menu__order a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cherry);
  border-bottom: 1px solid rgba(255, 138, 133, 0.35);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.menu__order a:hover {
  color: var(--white);
  border-color: var(--white);
}

.menu__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.35rem 0 1.5rem;
  margin-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: var(--header);
  z-index: 20;
  background: linear-gradient(180deg, var(--paper-deep) 70%, transparent);
  padding-top: 0.75rem;
}

.menu__tabs::-webkit-scrollbar { display: none; }

.menu__tab {
  flex: 0 0 auto;
  padding: 0.65rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.menu__tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.menu__tab.is-active {
  background: var(--cherry);
  border-color: var(--cherry);
  color: var(--white);
  box-shadow: 0 8px 22px var(--cherry-glow);
}

.menu__board {
  display: grid;
  gap: 2.75rem;
  max-width: 720px;
}

.menu__cat-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.menu__cat-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 0.75rem;
  background: var(--cherry);
  border-radius: 999px;
}

.menu__items {
  list-style: none;
  display: grid;
  gap: 0.15rem;
}

.menu__items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(42, 38, 34, 0.12);
  font-size: 1rem;
}

.menu__items li span:first-child {
  font-weight: 500;
}

.menu__items li span:last-child {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cherry);
  white-space: nowrap;
}

.menu__note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(42, 38, 34, 0.45);
}

.menu__note a { color: var(--cherry); }

.menu__page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.75rem;
}

/* Inner menu pages */
.page-inner {
  background: var(--paper);
  color: var(--ink);
}

.page-inner .header {
  background: rgba(244, 239, 230, 0.94);
}

.page-hero {
  padding: calc(var(--header) + 2.5rem) 0 1.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(228, 16, 15, 0.12), transparent 60%),
    var(--paper);
}

.page-hero__crumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.page-hero__crumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.page-hero__crumb a:hover { color: var(--white); }

.page-hero .title {
  margin-bottom: 0.85rem;
}

.page-hero__lead {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.page-hero__switch {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.page-hero__switch a {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.25s, color 0.25s;
}

.page-hero__switch a.is-active,
.page-hero__switch a:hover {
  background: var(--cherry);
  color: var(--white);
}

.nav a[aria-current="page"] {
  color: var(--cherry);
}

/* ── Wholesale / trade price list ──────────────────────────── */
.trade-hero {
  padding: calc(var(--header) + 2.5rem) 0 1.75rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(228, 16, 15, 0.1), transparent 60%),
    var(--paper);
}

.trade-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trade-hero .page-hero__crumb {
  margin-bottom: 1.25rem;
}

.trade-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 0.85rem;
}

.trade-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.trade-hero__lead {
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.trade {
  padding: 0 0 4.5rem;
}

.trade__wrap {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.trade-jump {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  position: sticky;
  top: var(--header);
  z-index: 40;
  padding: 0.75rem 0 1rem;
  margin-inline: -4vw;
  padding-inline: 4vw;
  background: linear-gradient(var(--paper) 70%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}

.trade-jump::-webkit-scrollbar {
  display: none;
}

.trade-jump a {
  flex: 0 0 auto;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.trade-jump a:hover {
  color: var(--cherry);
  border-color: rgba(228, 16, 15, 0.5);
  background: rgba(228, 16, 15, 0.1);
}

@media (min-width: 720px) {
  .trade-jump {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    margin-inline: 0;
    padding-inline: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.trade-block {
  scroll-margin-top: calc(var(--header) + 3.5rem);
}

.trade-block__title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.trade-list {
  list-style: none;
}

.trade-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(42, 38, 34, 0.1);
}

.trade-list li:last-child {
  border-bottom: none;
}

.trade-item__main {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.trade-item__main strong {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}

.trade-item__pack {
  font-size: 0.85rem;
  color: rgba(42, 38, 34, 0.48);
}

.trade-item__price {
  display: grid;
  gap: 0.15rem;
  text-align: right;
  flex-shrink: 0;
}

.trade-item__price b {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cherry);
  line-height: 1.2;
}

.trade-item__price span {
  font-size: 0.78rem;
  color: rgba(42, 38, 34, 0.45);
  white-space: nowrap;
}

.trade-item__enquire {
  flex-shrink: 0;
  align-self: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cherry);
  border: 1px solid rgba(228, 16, 15, 0.35);
  border-radius: 999px;
  background: rgba(228, 16, 15, 0.06);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.trade-item__enquire:hover {
  background: var(--cherry);
  border-color: var(--cherry);
  color: #fff;
}

.trade-cta {
  text-align: center;
  padding: 0;
  border: none;
  background: none;
}

.trade-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.trade-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(42, 38, 34, 0.45);
  line-height: 1.5;
}

.menu-ticker {
  margin: 0;
  z-index: 5;
}

.menu-ticker .icing--ticker-bottom {
  top: 100%;
  bottom: auto;
  transform: translateY(calc(-42% + 3px)) rotate(180deg);
  transform-origin: center center;
}

.page-menu .trade,
.page-trade .trade {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.trade-jump a.is-active {
  color: var(--white);
  border-color: var(--cherry);
  background: var(--cherry);
}

.trade-item__price b {
  color: var(--cherry) !important;
}

.trade-disclaimer {
  color: rgba(42, 38, 34, 0.45) !important;
}

/* ── Interlude ─────────────────────────────────────────────── */
.interlude {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 11vw, 7.5rem) 1.5rem;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.icing--interlude-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  margin: 0;
  line-height: 0;
  color: #ebe4d8;
  pointer-events: none;
  overflow: hidden;
  height: clamp(44px, 7vw, 72px);
  transform: rotate(180deg);
  transform-origin: center center;
}

.icing--interlude-top svg,
.icing--interlude-top path {
  fill: #ebe4d8 !important;
}

.icing--interlude-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.interlude__bg {
  position: absolute;
  inset: 0;
  background: url("interlude.JPG") center / cover no-repeat;
}

.interlude__shade {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  box-shadow: none;
}

.interlude__quote {
  position: relative;
  z-index: 2;
  width: min(36rem, 100%);
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  text-align: center;
  background: rgba(10, 10, 10, 0.55);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.interlude__quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
}

.interlude__quote-em {
  margin-top: 0.85rem;
  color: #ff6b66 !important;
  font-size: clamp(1.35rem, 3vw, 2rem) !important;
}

/* ── Visit ─────────────────────────────────────────────────── */
.visit {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  background: var(--cream);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.visit__addr {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1.5rem 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted-dark);
}

.visit__addr strong {
  color: var(--black);
  font-weight: 700;
  font-size: 1.15rem;
}

.visit__meta {
  display: grid;
  gap: 0;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  max-width: 22rem;
}

.visit__meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.visit__meta-row + .visit__meta-row {
  border-top: 1px solid var(--line-dark);
}

.visit__meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.visit__meta-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

.visit__dir {
  display: inline-flex;
}

.visit__map {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 16px 16px 0 var(--cherry);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Social / Contacts ─────────────────────────────────────── */
.social {
  padding: clamp(5rem, 11vw, 8rem) 0;
  background: var(--paper-deep);
  color: var(--ink);
}

.social__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.social__head { margin-bottom: 2rem; }

.social__lead {
  margin-top: 0.85rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.social__photo {
  margin-top: 0.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 0.25s, background 0.25s, transform 0.3s var(--ease);
  min-width: 0;
}

.contact-card:hover {
  border-color: rgba(228, 16, 15, 0.55);
  background: rgba(228, 16, 15, 0.1);
  transform: translateY(-3px);
}

.contact-card__icon {
  width: 28px;
  height: 28px;
  color: var(--cherry);
  margin-bottom: 0.45rem;
}

.contact-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 38, 34, 0.45);
}

.contact-card__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
}

@media (min-width: 960px) {
  .social__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
  }

  .social__head {
    margin-bottom: 2.25rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .social__photo {
    margin-top: 0;
    max-width: none;
  }

  .social__photo .story__photo {
    aspect-ratio: 4 / 5;
    max-height: 560px;
  }

  .contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.15rem;
    align-items: center;
    padding: 1.1rem 1.25rem;
    background: transparent;
  }

  .contact-card:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: none;
  }

  .contact-card__icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    align-self: center;
  }
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 210px);
  gap: 8px;
}

.bento__cell {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.bento__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bento__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 38, 34, 0.45) 0%, rgba(42, 38, 34, 0) 45%);
  transition: background 0.35s;
  pointer-events: none;
}

.bento__cell:hover {
  transform: scale(0.985);
  box-shadow: 0 0 0 3px var(--cherry);
  z-index: 2;
}

.bento__cell:hover::after {
  background: linear-gradient(to top, rgba(42, 38, 34, 0.55) 0%, rgba(42, 38, 34, 0.15) 48%, transparent 72%);
}

.bento__label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem 0.55rem 0.85rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 252, 247, 0.94);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(42, 38, 34, 0.18);
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s;
}

.bento__label::after {
  content: "→";
  font-weight: 600;
  letter-spacing: 0;
  color: var(--cherry);
  transition: transform 0.35s var(--ease);
}

.bento__cell:hover .bento__label {
  background: var(--cherry);
  color: #fff;
  transform: translateY(-2px);
}

.bento__cell:hover .bento__label::after {
  color: #fff;
  transform: translateX(2px);
}

.bento__cell--a { grid-column: 1 / 5; grid-row: 1 / 3; }
.bento__cell--b { grid-column: 5 / 8; }
.bento__cell--c { grid-column: 8 / 13; }
.bento__cell--d { grid-column: 5 / 9; }
.bento__cell--e { grid-column: 9 / 13; }

/* ── Gallery page ──────────────────────────────────────────── */
.gallery-page {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(5rem, 10vw, 7rem);
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.gallery-filter {
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.gallery-filter:hover {
  border-color: var(--cherry);
  color: var(--cherry);
}

.gallery-filter.is-active {
  background: var(--cherry);
  border-color: var(--cherry);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--paper-deep);
}

.gallery-item.reveal {
  transform: none;
}

.gallery-item.reveal.is-in {
  transform: none;
}

.gallery-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
}

.gallery-item__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover .gallery-item__btn img {
  transform: scale(1.04);
}

.gallery-item__cap {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  pointer-events: none;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.gallery-item__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.gallery-item__cap strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 38, 34, 0.55) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.gallery-cta p {
  margin-bottom: 1rem;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(20, 16, 14, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: auto;
}

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

.lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(960px, 100%);
  max-height: 85vh;
  margin: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 401;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: var(--cherry);
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item__btn {
    aspect-ratio: 5 / 6;
  }

  .bento__label {
    font-size: 0.7rem;
    padding: 0.45rem 0.75rem;
    left: 0.65rem;
    bottom: 0.65rem;
  }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 4rem 0 0;
  background: var(--paper-deep);
  color: var(--muted-dark);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.footer__brand {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.footer__brand:hover {
  transform: scale(1.03);
}

.footer__logo {
  display: block;
  height: 88px;
  width: auto;
  margin: 0 auto;
}

.footer__place {
  font-size: 0.92rem;
  color: var(--muted-dark);
  line-height: 1.5;
  white-space: nowrap;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.75rem;
  margin-top: 0.35rem;
}

.footer__nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.25s, color 0.25s;
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--cherry);
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: 1.75rem;
  padding: 1.35rem 0 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: rgba(42, 38, 34, 0.45);
}

.footer__copy {
  margin: 0;
}

.footer__credit {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__credit a {
  color: rgba(42, 38, 34, 0.7);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.footer__credit a:hover {
  color: var(--cherry);
}

.footer__heart {
  width: 14px;
  height: 14px;
  fill: var(--cherry);
  display: inline-block;
  vertical-align: middle;
  animation: heartbeat 1.6s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.12); }
  70% { transform: scale(1); }
}

/* ── Reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ── Links page ────────────────────────────────────────────── */
.page-links {
  background: var(--paper);
  color: var(--ink);
  min-height: 100svh;
}

.links {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 1.25rem;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(228, 16, 15, 0.12), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.links__card {
  width: min(420px, 100%);
  text-align: center;
}

.links__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: transform 0.35s var(--ease);
}

.links__logo:hover { transform: scale(1.04); }

.links__logo img {
  height: clamp(140px, 36vw, 200px);
  width: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 28px rgba(228, 16, 15, 0.4));
}

.links__place,
.links__hours {
  font-size: 0.88rem;
  color: var(--muted-dark);
}

.links__hours { margin-bottom: 2rem; }

.links__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.links__item:hover {
  background: var(--white);
  border-color: rgba(228, 16, 15, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(228, 16, 15, 0.14);
}

.links__item--primary {
  background: var(--cherry);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 12px 32px var(--cherry-glow);
}

.links__item--primary:hover {
  background: var(--cherry-deep);
  border-color: transparent;
  color: var(--white);
}

.links__item-label {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.links__item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: inherit;
}

.links__item-sub {
  font-size: 0.78rem;
  color: var(--muted-dark);
}

.links__item--primary .links__item-sub {
  color: rgba(255, 255, 255, 0.85);
}

.links__item-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(42, 38, 34, 0.06);
  color: var(--cherry);
  font-size: 1rem;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.links__item--primary .links__item-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.links__item:hover .links__item-arrow {
  transform: translateX(3px);
  background: var(--cherry);
  color: var(--white);
}

.links__item--primary:hover .links__item-arrow {
  background: rgba(255, 255, 255, 0.25);
}

.links__copy {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-dark);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .story__grid,
  .visit__grid { grid-template-columns: 1fr; }

  .story__visual {
    max-width: 100%;
    margin-inline: auto;
  }

  .story__photo {
    box-shadow: 12px 12px 0 var(--cherry);
  }

  .story__badge {
    left: 0.75rem;
    top: 0.75rem;
    width: 68px;
    height: 68px;
  }

  .story__badge img {
    width: 42px;
    height: 42px;
  }

  .menu__board {
    gap: 2.25rem;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento__cell--a { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/10; }
  .bento__cell--b,
  .bento__cell--c,
  .bento__cell--d,
  .bento__cell--e { grid-column: auto; grid-row: auto; aspect-ratio: 1; }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brand__logo { height: 46px; }
  .menu-btn { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: calc(var(--header) + 1rem) 1.5rem 2rem;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    visibility: hidden;
    pointer-events: none;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav a { font-size: 1.15rem; color: var(--ink); }

  body.is-nav-open {
    overflow: hidden;
  }

  .footer__bar {
    flex-direction: column;
    text-align: center;
    gap: 0.55rem;
  }

  .footer__credit {
    justify-content: center;
  }

  .trade-list li {
    gap: 0.85rem;
  }

  .trade-item__main strong {
    font-size: 0.98rem;
  }

  .trade-item__price b {
    font-size: 1.05rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── UB1UB2 cherry gift ────────────────────────────────────── */
.gift {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 300;
  font-family: var(--sans);
}

.gift__fab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  box-shadow:
    0 10px 28px rgba(10, 10, 10, 0.22),
    0 0 0 1px rgba(228, 16, 15, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: giftBob 2.8s ease-in-out infinite;
}

.gift__fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 32px rgba(10, 10, 10, 0.28),
    0 0 0 1px rgba(228, 16, 15, 0.35);
}

.gift__cherry {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 45%),
    #fff5f4;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gift__cherry svg {
  width: 30px;
  height: 30px;
  display: block;
}

.gift__fab-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cherry);
  padding-right: 0.35rem;
  white-space: nowrap;
}

.gift__mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%),
    #fff5f4;
  display: grid;
  place-items: center;
}

.gift__mark svg {
  width: 36px;
  height: 36px;
  display: block;
}

@keyframes giftBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.gift__scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: -1;
}

.gift__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(320px, calc(100vw - 2rem));
  padding: 1.5rem 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 50px rgba(10, 10, 10, 0.28);
  transform-origin: bottom right;
  animation: giftPop 0.35s var(--ease);
  text-align: center;
}

.gift.is-open .gift__fab {
  animation: none;
}

@keyframes giftPop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gift__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted-dark);
  transition: background 0.2s, color 0.2s;
}

.gift__close:hover {
  background: rgba(10, 10, 10, 0.06);
  color: var(--black);
}

.gift__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 0.45rem;
  text-align: center;
}

.gift__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  text-align: center;
}

.gift__title em {
  font-style: italic;
  color: var(--cherry);
}

.gift__lead {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.gift__copy {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted-dark);
  margin-bottom: 0;
  text-align: center;
}

.gift__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.gift__actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  padding-inline: 1rem;
  font-size: 0.8rem;
}

.gift__actions .btn--ghost {
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.18);
}

.gift__actions .btn--ghost:hover {
  border-color: var(--cherry);
  color: var(--cherry);
  background: rgba(228, 16, 15, 0.06);
}

body.is-gift-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .gift {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .gift__panel {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(5.5rem, calc(env(safe-area-inset-bottom) + 5rem));
    width: auto;
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .icing--ticker .icing__wave { animation: none; }
  .menu-btn__lines span { animation: none; }
  .gift__fab { animation: none; }
}

/* ── Cart / Square checkout ───────────────────────────────── */
#cart-root [hidden] {
  display: none !important;
}

/* Keep back slot in the header grid when hidden, or title collapses */
#cart-root .cart-drawer__back[hidden] {
  display: inline-grid !important;
  visibility: hidden;
  pointer-events: none;
}

.page-menu .gift {
  display: none !important;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  min-width: 0;
}

.header__actions .nav {
  margin-left: 0;
}

.nav-cart {
  appearance: none;
  position: relative;
  z-index: 220;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0.15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s, opacity 0.25s;
}

.nav-cart:hover {
  color: var(--cherry);
  background: transparent;
}

.nav-cart:active {
  opacity: 0.85;
}

/* Match nav link colors on light / solid headers — never force white */
.header--solid .nav-cart,
.page-inner .nav-cart,
.page-links .nav-cart {
  color: rgba(42, 38, 34, 0.72);
}

.header--solid .nav-cart:hover,
.page-inner .nav-cart:hover,
.page-links .nav-cart:hover {
  color: var(--cherry);
}

.nav-cart__icon {
  width: 15px;
  height: 15px;
  display: block;
  opacity: 0.92;
}

.nav-cart__label {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  border: 0;
}

.nav-cart__count {
  position: static;
  top: auto;
  right: auto;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.28rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cherry);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: none;
}

.nav-cart__count[hidden],
[data-cart-count][hidden] {
  display: none !important;
}

.page-menu .trade-list__item--orderable {
  align-items: center;
  gap: 1.25rem;
}

.page-menu .trade-item__actions {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.page-menu .trade-item__price--inline {
  display: block;
  margin: 0;
  text-align: right;
}

.page-menu .trade-item__price--inline b {
  font-size: 1.12rem;
  white-space: nowrap;
}

.cart-add {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 0.9rem;
  border: 1px solid rgba(42, 38, 34, 0.14);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.cart-add:hover {
  border-color: var(--cherry);
  background: var(--cherry);
  color: #fff;
}

.cart-dock-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 300;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(42, 38, 34, 0.28);
  cursor: pointer;
}

.cart-dock-fab[hidden] {
  display: none !important;
}

.cart-dock-fab svg {
  width: 22px;
  height: 22px;
  display: block;
}

.cart-dock-fab [data-cart-count] {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cherry);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 370;
  background: rgba(20, 16, 14, 0.48);
  opacity: 0;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cart-scrim.is-on { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 380;
  width: min(440px, 100vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(90% 42% at 0% 0%, rgba(228, 16, 15, 0.08), transparent 58%),
    linear-gradient(180deg, #faf6ef 0%, #f3ebe0 100%);
  color: var(--ink);
  box-shadow: -24px 0 70px rgba(42, 38, 34, 0.22);
  transform: translateX(104%);
  transition: transform 0.34s var(--ease);
}

.cart-drawer.is-on { transform: translateX(0); }

.cart-drawer__head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.55rem;
  padding: 1.15rem 1.1rem 0.55rem;
}

.cart-drawer__titles {
  text-align: center;
  min-width: 0;
}

.cart-drawer__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
}

.cart-drawer__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.4vw, 1.85rem);
  line-height: 1.08;
  font-weight: 600;
}

.cart-drawer__back,
.cart-drawer__close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(42, 38, 34, 0.06);
  transition: background 0.2s, transform 0.2s;
}

.cart-drawer__back:hover,
.cart-drawer__close:hover {
  background: #fff;
  transform: scale(1.04);
}

.cart-drawer__back[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer__back svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cart-drawer__close {
  font-size: 1.45rem;
  line-height: 1;
}

.cart-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.35rem 1.1rem 0.95rem;
}

.cart-steps__item {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem;
  color: rgba(42, 38, 34, 0.38);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-steps__item em {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(42, 38, 34, 0.08);
  color: inherit;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cart-steps__item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-steps__item.is-on,
.cart-steps__item.is-done {
  color: var(--ink);
}

.cart-steps__item.is-on em,
.cart-steps__item.is-done em {
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 6px 16px var(--cherry-glow);
}

.cart-steps__rule {
  width: 28px;
  height: 1px;
  background: rgba(42, 38, 34, 0.16);
}

.cart-drawer.is-pickup .cart-steps__rule {
  background: rgba(228, 16, 15, 0.45);
}

.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 0.1rem 1.1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.cart-step {
  animation: cartStepIn 0.32s var(--ease);
}

@keyframes cartStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-empty {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  min-height: 48vh;
  text-align: center;
  padding: 2rem 0.5rem;
}

.cart-empty p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.cart-empty span {
  max-width: 26ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-empty__actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.55rem;
  margin-top: 0.9rem;
  width: min(100%, 22rem);
}

.cart-empty__actions .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.85rem 1rem;
  white-space: nowrap;
}

.cart-lines {
  display: grid;
  gap: 0.65rem;
}

.cart-line {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 38, 34, 0.07);
  box-shadow: 0 8px 22px rgba(42, 38, 34, 0.04);
}

.cart-line__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.cart-line__row--controls {
  align-items: center;
}

.cart-line__copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.cart-line__copy strong {
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.3;
}

.cart-line__copy small {
  color: rgba(42, 38, 34, 0.48);
  font-size: 0.76rem;
}

.cart-line__sum {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--cherry);
  line-height: 1.2;
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
  padding: 0.12rem;
  border: 1px solid rgba(42, 38, 34, 0.1);
  border-radius: 999px;
  background: #fff;
}

.cart-stepper button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.cart-stepper button:hover {
  background: rgba(228, 16, 15, 0.08);
  color: var(--cherry);
}

.cart-stepper span {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-line__remove {
  border: 0;
  background: none;
  color: rgba(42, 38, 34, 0.4);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.35rem 0;
}

.cart-line__remove:hover { color: var(--cherry); }

.cart-bag-foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.15rem;
  font-size: 0.74rem;
  color: rgba(42, 38, 34, 0.42);
}

.cart-preview {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(42, 38, 34, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cart-preview:hover {
  border-color: rgba(228, 16, 15, 0.28);
  box-shadow: 0 10px 24px rgba(42, 38, 34, 0.06);
  transform: translateY(-1px);
}

.cart-preview__count {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--cherry);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  box-shadow: 0 8px 18px var(--cherry-glow);
}

.cart-preview__copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.cart-preview__copy strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.cart-preview__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(42, 38, 34, 0.5);
  font-size: 0.78rem;
}

.cart-preview__edit {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cherry);
}

.cart-panel {
  padding: 1.1rem 1rem 1.15rem;
  border: 1px solid rgba(42, 38, 34, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 1rem;
  box-shadow: 0 14px 36px rgba(42, 38, 34, 0.05);
}

.cart-panel__head { display: grid; gap: 0.28rem; }

.cart-panel__eyebrow {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cherry);
}

.cart-panel__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.15;
}

.cart-panel__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.cart-fields-stack,
.cart-fields-row {
  display: grid;
  gap: 0.7rem;
}

.cart-fields-row {
  grid-template-columns: 1fr 1fr;
}

.cart-field { display: grid; gap: 0.3rem; }

.cart-field span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 38, 34, 0.48);
}

.cart-field span em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(42, 38, 34, 0.36);
}

.cart-field input {
  width: 100%;
  border: 1px solid rgba(42, 38, 34, 0.1);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.82rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cart-field input:focus {
  border-color: rgba(228, 16, 15, 0.45);
  box-shadow: 0 0 0 4px rgba(228, 16, 15, 0.1);
}

.cart-field input.is-invalid {
  border-color: var(--cherry);
  box-shadow: 0 0 0 4px rgba(228, 16, 15, 0.12);
}

.cart-section { display: grid; gap: 0.6rem; }

.cart-section__label {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 38, 34, 0.48);
}

.cart-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0.3rem;
  border-radius: 18px;
  background: rgba(42, 38, 34, 0.055);
}

.cart-seg--days {
  border-radius: 999px;
  padding: 0.22rem;
}

.cart-seg__btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(42, 38, 34, 0.58);
  font-family: inherit;
  padding: 0.7rem 0.5rem;
  cursor: pointer;
  display: grid;
  gap: 0.12rem;
  justify-items: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cart-seg--days .cart-seg__btn {
  border-radius: 999px;
  padding: 0.58rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.cart-seg__btn span {
  font-size: 0.92rem;
  font-weight: 750;
}

.cart-seg__btn small {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(42, 38, 34, 0.42);
}

.cart-seg__btn.is-on {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(42, 38, 34, 0.1);
}

.cart-seg__btn.is-on small { color: var(--cherry); }

.cart-asap {
  margin: 0;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(228, 16, 15, 0.08), rgba(228, 16, 15, 0.03));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.cart-asap__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--cherry);
  box-shadow: 0 4px 14px rgba(228, 16, 15, 0.12);
}

.cart-asap__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cart-asap strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  margin-bottom: 0.15rem;
}

.cart-asap span {
  color: rgba(42, 38, 34, 0.62);
  font-size: 0.84rem;
  line-height: 1.4;
}

.cart-schedule { display: grid; gap: 0.6rem; }

.cart-times {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.cart-time {
  appearance: none;
  border: 1px solid rgba(42, 38, 34, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.68rem 0.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.cart-time:hover {
  border-color: rgba(228, 16, 15, 0.35);
  transform: translateY(-1px);
}

.cart-time.is-on {
  border-color: var(--cherry);
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 8px 18px var(--cherry-glow);
}

.cart-drawer__foot {
  display: grid;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 1rem 1.1rem calc(1.1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(42, 38, 34, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cart-drawer__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.cart-drawer__summary {
  margin: 0;
  max-width: 24ch;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(42, 38, 34, 0.62);
}

.cart-drawer__total {
  display: grid;
  justify-items: end;
  gap: 0.08rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 38, 34, 0.45);
}

.cart-drawer__total strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cherry);
}

.cart-drawer__note {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
}

.cart-drawer__pay {
  appearance: none;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--cherry);
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 12px 30px var(--cherry-glow);
}

.cart-drawer__pay:hover:not(:disabled) {
  background: var(--cherry-deep);
  transform: translateY(-1px);
}

.cart-drawer__pay:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}


.cart-steps {
  gap: 0.35rem;
}

.cart-steps__rule {
  width: 16px;
}

.cart-steps__item span {
  font-size: 0.64rem;
}

.cart-steps__item:disabled {
  opacity: 0.45;
  cursor: default;
}

.cart-pay__block {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: rgba(42, 38, 34, 0.04);
}

.cart-pay__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.cart-pay__row span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42, 38, 34, 0.45);
}

.cart-pay__row strong {
  text-align: right;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.cart-pay__items {
  display: grid;
  gap: 0.45rem;
}

.cart-pay__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(42, 38, 34, 0.08);
  font-size: 0.9rem;
}

.cart-pay__item:last-child {
  border-bottom: 0;
}

.cart-pay__item strong {
  font-family: var(--serif);
  color: var(--cherry);
  font-weight: 600;
}

.cart-pay__place {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(42, 38, 34, 0.48);
}


.cart-dates {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.05rem 0.05rem 0.35rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.cart-dates::-webkit-scrollbar { height: 4px; }
.cart-dates::-webkit-scrollbar-thumb {
  background: rgba(42, 38, 34, 0.18);
  border-radius: 999px;
}

.cart-date {
  appearance: none;
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 4.6rem;
  display: grid;
  gap: 0.12rem;
  justify-items: center;
  padding: 0.7rem 0.65rem;
  border: 1px solid rgba(42, 38, 34, 0.1);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cart-date strong {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.cart-date span {
  font-size: 0.7rem;
  color: rgba(42, 38, 34, 0.48);
  font-weight: 500;
}

.cart-date:hover:not(:disabled) {
  border-color: rgba(228, 16, 15, 0.35);
  transform: translateY(-1px);
}

.cart-date.is-on {
  border-color: var(--cherry);
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 8px 18px var(--cherry-glow);
}

.cart-date.is-on span { color: rgba(255, 255, 255, 0.82); }

.cart-date:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.cart-schedule .cart-section__label {
  margin-top: 0.15rem;
}

.cart-hours-hint {
  margin: 0.15rem 0 0;
  text-align: center;
  font-size: 0.74rem;
  color: rgba(42, 38, 34, 0.45);
  line-height: 1.35;
}

.cart-seg__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

body.is-cart-open { overflow: hidden; }

@media (max-width: 640px) {
  .cart-fields-row { grid-template-columns: 1fr; }
  .cart-times { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .header__actions { gap: 0.65rem; }
  .nav-cart {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .nav-cart__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-cart__icon {
    width: 18px;
    height: 18px;
  }
  .nav-cart__count {
    position: absolute;
    top: 2px;
    right: 2px;
  }
  .cart-drawer { width: 100vw; max-width: none; }
  .cart-drawer__head { padding-top: max(0.95rem, env(safe-area-inset-top)); }
  .cart-dock-fab {
    width: 54px;
    height: 54px;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
  .page-menu .trade-list__item--orderable { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .cart-step { animation: none; }
  .cart-drawer { transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cart-step { animation: none; }
  .cart-drawer, .cart-scrim, .cart-drawer__pay, .cart-time { transition: none; }
}
