*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #fff8ef;
  --cream-2: #fbeedc;
  --white: #ffffff;
  --paper: #fffdf8;
  --ink: #2b1e13;
  --ink-2: #6e5a47;
  --muted: #9c8a76;
  --tomato: #e0432a;
  --tomato-deep: #be3318;
  --ember: #ff7a33;
  --amber: #f2a01e;
  --basil: #3e8f55;
  --line: rgba(43, 30, 19, 0.1);
  --line-2: rgba(43, 30, 19, 0.18);
  --fd: "Bebas Neue", sans-serif;
  --fb: "DM Sans", sans-serif;
  --fm: "Space Mono", monospace;
  --r: 14px;
  --r-lg: 20px;
  --eo: cubic-bezier(0.22, 0.61, 0.36, 1);
  --sh: 0 18px 50px rgba(120, 60, 30, 0.16);
}
/* dm-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/dm-sans-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/dm-sans-v17-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/dm-sans-v17-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/dm-sans-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/dm-sans-v17-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/dm-sans-v17-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/space-mono-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-mono-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/space-mono-v17-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--fb);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 26px;
}
.eyebrow {
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tomato);
  font-weight: 700;
}
.s-title {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.s-title em {
  font-style: normal;
  color: var(--tomato);
}
.s-lead {
  color: var(--ink-2);
  max-width: 560px;
  margin-top: 14px;
}
.section {
  padding: 96px 0;
}
.mono {
  font-family: var(--fm);
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 15px 26px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.btn-ember {
  background: var(--tomato);
  color: #fff;
  border-color: var(--tomato);
  box-shadow: 0 8px 22px rgba(224, 67, 42, 0.28);
}
.btn-ember:hover {
  background: var(--tomato-deep);
  border-color: var(--tomato-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--tomato);
  color: var(--tomato);
  transform: translateY(-2px);
}
.btn-line {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-line:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}
.btn-lg {
  padding: 18px 34px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* marquee bar */
.topbar {
  background: var(--tomato);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 14px;
}
.topbar b {
  color: #fff;
}
.topbar .dot {
  opacity: 0.55;
  margin: 0 12px;
}
/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(120, 60, 30, 0.07);
}
.nav-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 26px;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--fd);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--ink); /* FIX: Changed from #fff to keep it dark black/ink */
  line-height: 1;
  transition: color 0.3s;
}

/* Remove this selector block if it's in your file, as it's no longer needed */
.nav.solid .brand {
  color: var(--ink);
}

.brand .fl {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Update the location text settings */
.brand small {
  display: block;
  font-family: var(--fm);
  font-size: 0.52rem;
  letter-spacing: 0.34em;
  color: var(
    --tomato
  ); /* FIX: Changed from var(--amber) for a bold dark red look */
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
}
.nav.solid .nav-links a {
  color: var(--ink-2);
}
.nav-links a:hover {
  color: var(--amber);
}
.nav-links a:hover {
  color: var(--tomato);
}
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tomato);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  transition: transform 0.15s;
  box-shadow: 0 6px 16px rgba(224, 67, 42, 0.3);
}
.nav-cart:hover {
  transform: translateY(-2px);
}
.nav-cart .cc {
  font-family: var(--fm);
  background: #fff;
  color: var(--tomato);
  border-radius: 20px;
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  padding: 0 5px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.nav.solid .burger span {
  background: var(--ink);
}
/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video {
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(38, 20, 9, 0.56) 0%,
    rgba(38, 20, 9, 0.4) 50%,
    rgba(255, 248, 239, 0.97) 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    120% 90% at 50% 115%,
    rgba(242, 160, 30, 0.28),
    transparent 60%
  );
  mix-blend-mode: screen;
}
.hero-in {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0 90px;
}
.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.hero-eye .ln {
  width: 34px;
  height: 1px;
  background: var(--amber);
}
.hero h1 {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(4.2rem, 15vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}
.hero h1 .amp {
  color: var(--amber);
  display: inline-block;
  transform: translateY(0.02em);
}
.hero-sub {
  font-family: var(--fm);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  margin: 20px 0 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-desc {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin-bottom: 34px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-order {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.order-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 182px;
  padding: 16px 24px;
  border-radius: 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
  text-align: left;
}
.order-btn .ob-t {
  font-family: var(--fd);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}
.order-btn .ob-s {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.order-btn:hover {
  transform: translateY(-3px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.24);
}
.order-btn.primary {
  background: var(--tomato);
  border-color: var(--tomato);
  box-shadow: 0 10px 26px rgba(224, 67, 42, 0.4);
}
.order-btn.primary .ob-t {
  color: #fff;
}
.order-btn.primary .ob-s {
  color: rgba(255, 255, 255, 0.82);
}
.hero-chips {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-family: var(--fm);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-chips .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
/* mode banner */
.modebar {
  position: sticky;
  top: 74px;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform 0.35s var(--eo);
  height: 0;
}
.modebar.show {
  transform: none;
  height: auto;
}
.modebar-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 11px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.modebar .ml {
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.seg {
  display: inline-flex;
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 3px;
}
.seg button {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-2);
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.seg button.on {
  background: var(--tomato);
  color: #fff;
}
/* menu */
.menu {
  background: var(--cream);
}
.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.tab {
  font-family: var(--fd);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 6px 6px 12px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.tab:hover {
  color: var(--ink-2);
}
.tab.on {
  color: var(--ink);
  border-bottom-color: var(--tomato);
}
.cat {
  display: none;
}
.cat.on {
  display: block;
  animation: fade 0.4s var(--eo);
}
.cat-note {
  font-family: var(--fm);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(120, 60, 30, 0.06);
  transition: transform 0.18s var(--eo), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--eo);
}
.card:hover .card-img img {
  transform: scale(1.06);
}
.card-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--white);
  color: var(--tomato-deep);
  font-family: var(--fm);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 10px;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
}
.card-body {
  padding: 13px 14px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-name {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.25;
}
.card-desc {
  font-size: 0.82rem;
  color: var(--ink-2);
  margin-top: 5px;
  flex: 1;
}
.card-add {
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line-2);
  border-radius: 11px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px;
  cursor: pointer;
  transition: 0.18s;
}
.card-add .ic {
  font-size: 1.15rem;
  line-height: 1;
}
.card-add:hover {
  background: var(--tomato);
  border-color: var(--tomato);
  color: #fff;
}
.card-add.added {
  background: var(--basil);
  border-color: var(--basil);
  color: #fff;
}
/* story */
.story {
  background: var(--cream-2);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.story-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh);
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img .glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(224, 67, 42, 0.18));
}
.story p {
  color: var(--ink-2);
  margin-top: 16px;
}
.story .feat {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.story .feat .f {
  font-family: var(--fm);
}
.story .feat .fn {
  font-family: var(--fd);
  font-size: 2.4rem;
  color: var(--tomato);
  line-height: 1;
}
.story .feat .fl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
/* find us */
.find {
  background: var(--cream);
}
.find-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: stretch;
}
.find-info .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.find-info .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(224, 67, 42, 0.12);
  color: var(--tomato);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.find-info .ic svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.find-info b {
  font-family: var(--fb);
  font-weight: 700;
  color: var(--ink);
  display: block;
  font-size: 1rem;
}
.find-info span {
  font-size: 0.88rem;
  color: var(--ink-2);
}
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  box-shadow: var(--sh);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: saturate(1.05);
}
/* footer */
.footer {
  background: var(--cream-2);
  padding: 54px 0 26px;
  border-top: 3px solid var(--tomato);
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer .brand {
  color: var(--ink);
}
.footer .brand small {
  color: var(--tomato);
}
.foot-soc {
  display: flex;
  gap: 11px;
  margin-top: 16px;
}
.foot-soc a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  transition: transform 0.2s;
}
.foot-soc a:hover {
  transform: translateY(-3px);
}
.foot-soc svg {
  width: 38px;
  height: 38px;
}
.foot-col h5 {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 14px;
}
.foot-col p,
.foot-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.foot-bot {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
/* cart drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(43, 30, 19, 0.42);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.scrim.on {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 430px;
  max-width: 92vw;
  background: var(--white);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.38s var(--eo);
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh);
}
.drawer.on {
  transform: none;
}
.dw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.dw-head h3 {
  font-family: var(--fd);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.dw-close {
  background: none;
  border: none;
  color: var(--ink-2);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: 0.2s;
}
.dw-close:hover {
  background: var(--cream-2);
  color: var(--ink);
}
.dw-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.dw-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--white);
}
.dw-panel {
  display: none;
}
.dw-panel.on {
  display: block;
}
.dw-mode {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.dw-mode button {
  flex: 1;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--ink-2);
  background: var(--cream);
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: 0.2s;
}
.dw-mode button.on {
  background: var(--tomato);
  color: #fff;
  border-color: var(--tomato);
}
.cline {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.cline-main {
  flex: 1;
  min-width: 0;
}
.cline-name {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
}
.cline-price {
  font-family: var(--fm);
  font-size: 0.78rem;
  color: var(--muted);
}
.qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--line-2);
  border-radius: 9px;
  overflow: hidden;
}
.qty button {
  width: 30px;
  height: 30px;
  background: var(--cream);
  color: var(--ink);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  font-family: var(--fb);
  transition: 0.15s;
}
.qty button:hover {
  background: var(--tomato);
  color: #fff;
}
.qty span {
  font-family: var(--fm);
  font-size: 0.86rem;
  min-width: 30px;
  text-align: center;
  color: var(--ink);
}
.cline-sub {
  font-family: var(--fm);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--tomato-deep);
  min-width: 56px;
  text-align: right;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.cart-empty .em-ic {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.tot-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--fm);
  font-size: 0.86rem;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.tot-row.big {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.tot-row.big span:last-child {
  color: var(--tomato-deep);
}
/* form */
.fld {
  margin-bottom: 14px;
}
.fld label {
  display: block;
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.fld input,
.fld select {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 0.94rem;
  padding: 12px 14px;
  outline: none;
  transition: 0.18s;
}
.fld input:focus,
.fld select:focus {
  border-color: var(--tomato);
}
.fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fld-row.three {
  grid-template-columns: 1fr 1fr 1fr;
}
.resv-head {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tomato);
  margin: 4px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.resv-head svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.resv-box {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 13px;
  padding: 14px;
  margin-bottom: 18px;
}
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.pm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--white);
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  padding: 12px 6px;
  cursor: pointer;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--ink-2);
  transition: 0.18s;
  min-height: 62px;
}
.pm:hover {
  border-color: var(--ink-2);
}
.pm.on {
  border-color: var(--tomato);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(224, 67, 42, 0.12);
}
.pm .pm-mk {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm .pm-mk svg {
  height: 20px;
  width: auto;
}
.applemk {
  font-family: -apple-system, "SF Pro Display", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.gpay-g {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.demo-note {
  font-family: var(--fm);
  font-size: 0.68rem;
  color: var(--ink-2);
  background: var(--cream);
  border: 1px dashed var(--line-2);
  border-radius: 9px;
  padding: 10px 12px;
  margin: 6px 0 16px;
  letter-spacing: 0.03em;
}
/* ticket / receipt */
.ticket {
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 26px 24px;
  font-family: var(--fm);
  position: relative;
  box-shadow: var(--sh);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background-image: radial-gradient(
    circle at 6px 0,
    transparent 6px,
    var(--paper) 7px
  );
  background-size: 14px 12px;
}
.ticket::before {
  top: -11px;
  background-position: 0 -6px;
  transform: scaleY(-1);
}
.ticket::after {
  bottom: -11px;
}
.tk-h {
  text-align: center;
  border-bottom: 2px dashed #d8cdba;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.tk-h .nm {
  font-family: var(--fd);
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
}
.tk-h .ad {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  margin-top: 4px;
}
.tk-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--ink-2);
  margin-bottom: 3px;
}
.tk-mode {
  text-align: center;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--tomato);
  color: #fff;
  border-radius: 6px;
  padding: 8px;
  margin: 12px 0;
}
.tk-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 4px 0;
  gap: 10px;
}
.tk-line .q {
  color: var(--tomato-deep);
  font-weight: 700;
}
.tk-sep {
  border-top: 2px dashed #d8cdba;
  margin: 12px 0;
}
.tk-tot {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.tk-paid {
  text-align: center;
  border: 2px solid var(--tomato-deep);
  color: var(--tomato-deep);
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 6px;
  padding: 6px;
  margin-top: 14px;
  transform: rotate(-2deg);
  display: inline-block;
  width: 100%;
}
.eta {
  text-align: center;
  margin: 22px 0 4px;
}
.eta .el {
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eta .et {
  font-family: var(--fd);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--tomato);
  letter-spacing: 0.04em;
}
.eta .ed {
  font-size: 0.86rem;
  color: var(--ink-2);
}
.eta.ready .et {
  color: var(--basil);
}
/* toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 180%);
  background: var(--white);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--fm);
  font-size: 0.8rem;
  padding: 13px 22px;
  border-radius: 11px;
  z-index: 120;
  transition: transform 0.4s var(--eo);
  display: flex;
  gap: 9px;
  align-items: center;
  box-shadow: var(--sh);
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast .ti {
  color: var(--tomato);
}
/* mobile order bar */
.mobar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 11px 16px;
  gap: 10px;
  box-shadow: 0 -6px 22px rgba(120, 60, 30, 0.1);
}
.mobar .btn {
  flex: 1;
}
/* reveal */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--eo), transform 0.7s var(--eo);
}
.rv.in {
  opacity: 1;
  transform: none;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 3px;
}
/* responsive */
@media (max-width: 900px) {
  .story-grid,
  .find-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .items {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 26px;
    gap: 1.1rem;
    box-shadow: var(--sh);
  }
  .nav-links.open a {
    color: var(--ink-2);
  }
  .nav-cart {
    display: none;
  }
  .mobar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
  .modebar {
    top: 74px;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 70px 0;
  }
  .hero-order {
    width: 100%;
  }
  .order-btn {
    flex: 1;
  }
  .story .feat {
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}
