@import url("/assets/fonts/fonts.css");

/* ==========================================================================
   Ember & Rye - front end stylesheet
   Hand written, no build step. Colour and radius tokens are overwritten at
   runtime from Admin > Settings > Branding, which is why every rule below
   refers to a variable rather than a literal colour.
   ========================================================================== */

:root {
  color-scheme: light;

  /* Overwritten by the inline theme block in the layout head */
  --ink: #151110;
  --cream: #f8f4ed;
  --accent: #c6521f;
  --accent-dark: #9e3d14;
  --gold: #c39b54;
  --radius: 4px;

  --soot: #221b18;
  --smoke: #3a302b;
  --stone: #6f635c;
  --sand: #e7ddcd;
  --line: rgba(21, 17, 16, 0.12);
  --line-soft: rgba(21, 17, 16, 0.07);
  --line-dark: rgba(248, 244, 237, 0.16);
  --white: #ffffff;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 7.5vw, 6.5rem);

  --shadow-sm: 0 1px 2px rgba(21, 17, 16, 0.06), 0 4px 14px rgba(21, 17, 16, 0.05);
  --shadow-md: 0 10px 40px rgba(21, 17, 16, 0.12);
  --shadow-lg: 0 24px 70px rgba(21, 17, 16, 0.22);

  --ease: cubic-bezier(0.4, 0.01, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[hidden] { display: none !important; }

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
p, li { text-wrap: pretty; }
a { color: inherit; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.15rem; line-height: 1.25; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center::before { display: none; }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--stone);
  max-width: 58ch;
}

.prose > * + * { margin-top: 1.1em; }
.prose h2, .prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 0.4em; }
.prose a { color: var(--accent-dark); text-underline-offset: 3px; }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
}
.prose img { border-radius: var(--radius); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--narrow { max-width: 760px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--soot { background: var(--soot); color: var(--cream); }
.section--sand { background: var(--sand); }

.section--ink .lede,
.section--soot .lede { color: rgba(248, 244, 237, 0.72); }
.section--ink .eyebrow,
.section--soot .eyebrow { color: var(--gold); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.9rem; }
.section-head .lede { margin-top: 1.1rem; }
.section-head--center .lede { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); }
.grid--tiles { grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); }

.stack { display: flex; flex-direction: column; gap: 1rem; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.row--between { justify-content: space-between; }
.row--end { justify-content: flex-end; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--soot); }

.btn--outline { border-color: currentColor; color: inherit; }
.btn--outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.section--ink .btn--outline:hover,
.section--soot .btn--outline:hover,
.hero .btn--outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn--ghost { padding-inline: 0; color: var(--accent); }
.btn--ghost:hover { color: var(--accent-dark); }

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.72rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn--disabled { opacity: 0.45; pointer-events: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
}
.link-arrow svg { transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Pills, tags, badges
   -------------------------------------------------------------------------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
.pill--accent { background: var(--accent); border-color: var(--accent); color: var(--white); }
.pill--gold { background: rgba(195, 155, 84, 0.15); border-color: rgba(195, 155, 84, 0.4); color: #8a6a2c; }
.pill--muted { background: rgba(21, 17, 16, 0.05); }

.tone-success { color: #1c6b46; background: rgba(28, 107, 70, 0.1); border-color: rgba(28, 107, 70, 0.25); }
.tone-warning { color: #92600b; background: rgba(146, 96, 11, 0.1); border-color: rgba(146, 96, 11, 0.25); }
.tone-danger  { color: #96261d; background: rgba(150, 38, 29, 0.1); border-color: rgba(150, 38, 29, 0.25); }
.tone-info    { color: #1e4f79; background: rgba(30, 79, 121, 0.1); border-color: rgba(30, 79, 121, 0.25); }
.tone-muted   { color: var(--stone); background: rgba(21, 17, 16, 0.06); }

/* --------------------------------------------------------------------------
   Announcement bar + header
   -------------------------------------------------------------------------- */

.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.6rem var(--gutter);
}
.announce a { color: var(--gold); text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(248, 244, 237, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.brand__logo { max-height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  position: relative;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 0.4rem;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__group { position: relative; }
.nav__panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav__group:hover .nav__panel,
.nav__group:focus-within .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav__panel a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 2px;
}
.nav__panel a:hover { background: var(--sand); }

.header__actions { display: flex; align-items: center; gap: 0.75rem; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.icon-btn:hover { background: rgba(21, 17, 16, 0.06); }

.cart-button { position: relative; }
.cart-button__count {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 18px; height: 18px;
  padding-inline: 4px;
  display: grid;
  place-items: center;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

.burger { display: none; }

/* --------------------------------------------------------------------------
   Mobile drawer
   -------------------------------------------------------------------------- */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
}
.drawer[data-open="true"] { visibility: visible; }
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 16, 0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.drawer[data-open="true"] .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: min(92vw, 400px);
  background: var(--cream);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.drawer[data-open="true"] .drawer__panel { transform: translateX(0); }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-decoration: none;
}
.drawer__nav a.is-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding-left: 1rem;
  color: var(--stone);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(520px, 78vh, 800px);
  padding-block: clamp(3rem, 8vw, 6rem);
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero--medium { min-height: clamp(420px, 58vh, 620px); }
.hero--short { min-height: clamp(300px, 40vh, 440px); align-items: center; }
.hero--center { text-align: center; }
.hero--center .hero__content { margin-inline: auto; }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 12, 11, 0.92) 0%, rgba(15, 12, 11, 0.45) 45%, rgba(15, 12, 11, 0.35) 100%);
  opacity: var(--overlay, 0.85);
}

/* A left hand scrim so an eyebrow never sits on a bright patch of the photo */
.hero:not(.hero--center) .hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(15, 12, 11, 0.6) 0%, rgba(15, 12, 11, 0.25) 45%, rgba(15, 12, 11, 0) 72%);
}

.hero__content { max-width: 42rem; }
.hero h1 { margin-top: 1.2rem; }
.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(248, 244, 237, 0.8);
  max-width: 44ch;
}
.hero--center .hero__sub { margin-inline: auto; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero--center .hero__actions { justify-content: center; }

.hero__meta {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.hero__meta div { min-width: 0; }
.hero__meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__meta dd { margin: 0.35rem 0 0; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */

.page-head {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.page-head__media { position: absolute; inset: 0; z-index: -2; opacity: 0.45; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; }
.page-head h1 { margin-top: 1rem; }
.page-head .lede { margin-top: 1.1rem; color: rgba(248, 244, 237, 0.75); }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.6);
  margin-bottom: 1.2rem;
}
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Menu cards
   -------------------------------------------------------------------------- */

.dish {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dish__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  overflow: hidden;
}
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dish:hover .dish__media img { transform: scale(1.04); }
.dish__flag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.6rem;
  border-radius: 2px;
}
.dish__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.dish__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.dish__title h3 { font-size: 1.22rem; }
.dish__price { font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; }
.dish__price s { color: var(--stone); font-size: 0.85em; margin-right: 0.35rem; }
.dish__summary { font-size: 0.92rem; color: var(--stone); line-height: 1.55; }
.dish__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.dish__foot { margin-top: auto; padding-top: 0.5rem; display: flex; gap: 0.6rem; align-items: center; }

/* price list layout */
.price-list { display: grid; gap: 1.6rem; }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.4rem 1rem; align-items: baseline; }
.price-row__name { font-family: var(--font-display); font-size: 1.2rem; }
.price-row__lead {
  grid-column: 1 / -1;
  order: 3;
  font-size: 0.92rem;
  color: var(--stone);
  max-width: 62ch;
}
.price-row__price { font-family: var(--font-display); font-size: 1.15rem; }
.section--ink .price-row__lead { color: rgba(248, 244, 237, 0.65); }

/* --------------------------------------------------------------------------
   Menu page
   -------------------------------------------------------------------------- */

.menu-nav {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 0.85rem;
}
.menu-nav__scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.menu-nav__scroll::-webkit-scrollbar { display: none; }
.menu-nav__scroll a {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-nav__scroll a:hover { border-color: var(--ink); }
.menu-nav__scroll a.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.menu-group + .menu-group { margin-top: clamp(3rem, 6vw, 5rem); }
.menu-group__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.menu-group__head p { color: var(--stone); font-size: 0.95rem; max-width: 50ch; }

/* --------------------------------------------------------------------------
   Item detail
   -------------------------------------------------------------------------- */

.item-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) {
  .item-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: start; }
  .item-layout__media { position: sticky; top: 110px; }
}
.item-layout__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; }

.option-group { border-top: 1px solid var(--line); padding-top: 1.35rem; margin-top: 1.35rem; }
.option-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.9rem; }
.option-group__head h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; }
.option-group__rule { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }

.option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.option + .option { margin-top: 0.5rem; }
.option:hover { border-color: var(--line); }
.option input { accent-color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
.option:has(input:checked) { border-color: var(--ink); background: rgba(21, 17, 16, 0.03); }
.option__name { flex: 1; min-width: 0; font-size: 0.94rem; }
.option__price { font-size: 0.88rem; color: var(--stone); white-space: nowrap; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty button {
  width: 42px; height: 46px;
  display: grid; place-items: center;
  font-size: 1.1rem;
  transition: background 0.2s var(--ease);
}
.qty button:hover { background: rgba(21, 17, 16, 0.06); }
.qty input {
  width: 46px; height: 46px;
  text-align: center;
  border: 0;
  border-inline: 1px solid var(--line);
  background: transparent;
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label, .label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--stone);
}
.input, .select, .textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.96rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(21, 17, 16, 0.07);
}
.textarea { min-height: 130px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236f635c' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field__error { font-size: 0.82rem; color: #96261d; text-transform: none; letter-spacing: 0; font-weight: 500; }
.field__hint { font-size: 0.82rem; color: var(--stone); }
.field-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.check { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; cursor: pointer; }
.check input { accent-color: var(--accent); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* segmented control, used for pickup / delivery */
.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 4px;
  padding: 4px;
  background: rgba(21, 17, 16, 0.06);
  border-radius: var(--radius);
}
.segmented button, .segmented label {
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.segmented .is-active, .segmented input:checked + span { background: var(--white); box-shadow: var(--shadow-sm); }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label span { display: block; padding: 0.6rem 1.1rem; border-radius: 2px; }
.segmented label { padding: 0; }

/* --------------------------------------------------------------------------
   Alerts
   -------------------------------------------------------------------------- */

.alert {
  display: flex;
  gap: 0.8rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--line);
  border-left-width: 3px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  background: var(--white);
}
.alert--success { border-left-color: #1c6b46; }
.alert--error { border-left-color: #96261d; }
.alert--info { border-left-color: var(--gold); }
.alert svg { flex-shrink: 0; margin-top: 2px; }

/* --------------------------------------------------------------------------
   Cart and checkout
   -------------------------------------------------------------------------- */

.checkout-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 960px) {
  .checkout-layout { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
  .summary { position: sticky; top: 110px; }
}

.summary {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.summary h3 { font-size: 1.3rem; margin-bottom: 1.1rem; }

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.42rem;
  font-size: 0.94rem;
}
.summary-line span:first-child { color: var(--stone); }
.summary-line--total {
  margin-top: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.summary-line--total span:first-child { color: inherit; }
.summary-line--discount span:last-child { color: #1c6b46; }

.cart-line {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.cart-line__thumb {
  width: 68px; height: 68px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--sand);
}
.cart-line__name { font-weight: 600; font-size: 0.98rem; }
.cart-line__options { font-size: 0.85rem; color: var(--stone); margin-top: 0.2rem; }
.cart-line__price { font-family: var(--font-display); font-size: 1.05rem; white-space: nowrap; }
.cart-line__actions { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.6rem; }

.tip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tip-row button {
  flex: 1 1 4rem;
  padding: 0.6rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.tip-row button:hover { border-color: var(--ink); }
.tip-row button.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.step-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}
.step-head__num {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
}
.step-head h2 { font-size: 1.45rem; }

.card-panel {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.card-panel + .card-panel { margin-top: 1.35rem; }

.pay-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  cursor: pointer;
}
.pay-option + .pay-option { margin-top: 0.6rem; }
.pay-option:has(input:checked) { border-color: var(--ink); background: rgba(21, 17, 16, 0.03); }
.pay-option input { accent-color: var(--accent); width: 18px; height: 18px; }
.pay-option__label { flex: 1; min-width: 0; font-weight: 600; font-size: 0.95rem; }
.pay-option__note { font-size: 0.83rem; color: var(--stone); font-weight: 400; }

/* --------------------------------------------------------------------------
   Order progress
   -------------------------------------------------------------------------- */

.progress { display: grid; gap: 0; grid-auto-flow: column; grid-auto-columns: 1fr; }
.progress__step { position: relative; padding-top: 2.2rem; text-align: center; font-size: 0.82rem; }
.progress__step::before {
  content: "";
  position: absolute;
  top: 9px; left: 0; right: 0;
  height: 2px;
  background: var(--line);
}
.progress__step:first-child::before { left: 50%; }
.progress__step:last-child::before { right: 50%; }
.progress__step::after {
  content: "";
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 100px;
  background: var(--cream);
  border: 2px solid var(--line);
}
.progress__step.is-done::before { background: var(--accent); }
.progress__step.is-done::after { background: var(--accent); border-color: var(--accent); }
.progress__step.is-active::after { box-shadow: 0 0 0 4px rgba(198, 82, 31, 0.2); }

.timeline { border-left: 2px solid var(--line); padding-left: 1.5rem; }
.timeline__item { position: relative; padding-bottom: 1.4rem; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 6px;
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--accent);
}
.timeline__time { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); }

/* --------------------------------------------------------------------------
   Split feature, stats, testimonials, gallery
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--flip .split__media { order: 2; }
}
.split__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 4 / 3; }

.stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; }
.stat__value { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1; }
.stat__label {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.section--ink .stat__label, .section--soot .stat__label { color: var(--gold); }

.quote {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--white);
  height: 100%;
}
.section--ink .quote, .section--soot .quote {
  background: rgba(248, 244, 237, 0.04);
  border-color: var(--line-dark);
}
.quote__stars { display: flex; gap: 3px; color: var(--gold); }
.quote__stars svg { fill: currentColor; width: 15px; height: 15px; }
.quote__text { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.45; flex: 1; }
.quote__author { font-size: 0.85rem; font-weight: 600; }
.quote__role { font-size: 0.8rem; color: var(--stone); }
.section--ink .quote__role { color: rgba(248, 244, 237, 0.6); }

.gallery { display: grid; gap: 0.75rem; }
.gallery--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.gallery a:hover img { transform: scale(1.03); filter: brightness(1.06); }

/* --------------------------------------------------------------------------
   Hours, partners, FAQ
   -------------------------------------------------------------------------- */

.hours { width: 100%; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.section--ink .hours__row { border-color: var(--line-dark); }
.hours__row.is-today { font-weight: 600; }
.hours__row.is-today .hours__day::after {
  content: "Today";
  margin-left: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.open-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 100px;
  background: #2f9e6b;
  box-shadow: 0 0 0 3px rgba(47, 158, 107, 0.2);
}
.open-badge--closed::before { background: #b0463c; box-shadow: 0 0 0 3px rgba(176, 70, 60, 0.2); }

.partners { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.partner {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.partner:hover { border-color: var(--ink); background: rgba(21, 17, 16, 0.04); }
.section--ink .partner { border-color: var(--line-dark); }
.section--ink .partner:hover { background: rgba(248, 244, 237, 0.08); border-color: var(--cream); }

.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 1.15rem;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 0.9rem; color: var(--stone); max-width: 66ch; }

/* --------------------------------------------------------------------------
   Journal
   -------------------------------------------------------------------------- */

.post-card { display: flex; flex-direction: column; gap: 1rem; text-decoration: none; }
.post-card__media { aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__meta { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.post-card h3 { font-size: 1.3rem; }
.post-card p { font-size: 0.93rem; color: var(--stone); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
}
.footer-brand { grid-column: span 1; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li { font-size: 0.93rem; color: rgba(248, 244, 237, 0.75); }

.footer-brand { max-width: 22rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.93rem; color: rgba(248, 244, 237, 0.7); }

.socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.socials a:hover { background: rgba(248, 244, 237, 0.1); border-color: var(--cream); }

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(248, 244, 237, 0.55);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.newsletter-form .input {
  flex: 1 1 12rem;
  background: rgba(248, 244, 237, 0.06);
  border-color: var(--line-dark);
  color: var(--cream);
}
.newsletter-form .input::placeholder { color: rgba(248, 244, 237, 0.45); }

/* --------------------------------------------------------------------------
   Sticky mobile order bar
   -------------------------------------------------------------------------- */

.order-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--gutter) calc(0.85rem + env(safe-area-inset-bottom));
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 -8px 30px rgba(21, 17, 16, 0.25);
}
.order-bar__meta { font-size: 0.82rem; color: rgba(248, 244, 237, 0.7); }
.order-bar__total { font-family: var(--font-display); font-size: 1.15rem; }

/* --------------------------------------------------------------------------
   Toast
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  max-width: min(92vw, 24rem);
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  transform: translateY(150%);
  transition: transform 0.4s var(--ease);
}
.toast[data-show="true"] { transform: translateY(0); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .nav, .header__actions .btn { display: none; }
  .burger { display: inline-flex; }
  .menu-nav { top: 64px; }
  .site-header__inner { min-height: 64px; }
}

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

@media (max-width: 640px) {
  .gallery--2, .gallery--3, .gallery--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-line { grid-template-columns: 56px minmax(0, 1fr); }
  .cart-line__thumb { width: 56px; height: 56px; }
  .cart-line__price { grid-column: 2; }
  .progress { font-size: 0.72rem; }
  .order-bar { display: flex; }
  body.has-order-bar { padding-bottom: 5rem; }
  .hero__meta { gap: 1.25rem 2rem; }
  .segmented { display: grid; grid-auto-flow: row; width: 100%; }
}

@media print {
  .site-header, .site-footer, .order-bar, .announce, .btn { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   Appetite layer
   The pieces that make the home page read as a restaurant rather than a
   brochure: trust badges, brand chips, ratings and offers.
   ========================================================================== */

.btn--lg { padding: 1.1rem 2.1rem; font-size: 0.86rem; }
.btn--lg svg { width: 18px; height: 18px; }

/* -------------------------------------------------------- hero extras --- */

.hero__pill {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  margin-bottom: 1.4rem;
  border-radius: 100px;
  background: rgba(248, 244, 237, 0.14);
  border: 1px solid rgba(248, 244, 237, 0.28);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hero__pill svg { width: 16px; height: 16px; color: var(--gold); }

.hero__card {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 8vw, 6rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(248, 244, 237, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.hero__card-score { display: flex; align-items: center; gap: 0.6rem; }
.hero__card-score strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.hero__card span { font-size: 0.8rem; color: var(--stone); }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 14px; height: 14px; fill: currentColor; }
.stars .star { opacity: 0.28; }
.stars .star.is-on { opacity: 1; }

/* ------------------------------------------------------ feature strip --- */

.feature-strip {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(248, 244, 237, 0.1);
}
.feature-strip__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.feature { display: flex; align-items: center; gap: 0.9rem; }
.feature__icon {
  flex: 0 0 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 100px;
  background: rgba(198, 82, 31, 0.16);
  color: var(--gold);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature strong { display: block; font-size: 0.98rem; }
.feature span { display: block; font-size: 0.85rem; color: rgba(248, 244, 237, 0.6); }

/* --------------------------------------------------- delivery partners -- */

.partners-band { background: var(--sand); }
.partners-band__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) {
  .partners-band__inner { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}
.partners-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 0.9rem; }

.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr)); gap: 0.75rem; }
.partner {
  --brand: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.partner:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.partner strong { display: block; font-size: 0.92rem; font-weight: 600; }
.partner small { display: block; font-size: 0.74rem; color: var(--stone); }
.partner__dot { flex: 0 0 10px; height: 10px; border-radius: 100px; background: var(--brand); }
.partner--direct { --brand: var(--accent); border-color: var(--accent); }
.partner--direct svg { color: var(--accent); flex-shrink: 0; }

.pay-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(21, 17, 16, 0.1);
}
.pay-strip__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-right: 0.3rem;
}
.pay-strip__label + .pay-strip__label { margin-left: 1rem; }
.pay-chip {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(21, 17, 16, 0.14);
  border-radius: 4px;
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--smoke);
  white-space: nowrap;
}
.pay-chip--brand { border-color: var(--accent); color: var(--accent-dark); }

/* ------------------------------------------------------ category tiles -- */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1.4rem 0.9rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.tile__media {
  width: 84px; height: 84px;
  border-radius: 100px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 0 0 5px rgba(198, 82, 31, 0.08);
}
.tile__media img { width: 100%; height: 100%; object-fit: cover; }
.tile strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; }
.tile small { font-size: 0.76rem; color: var(--stone); }

/* --------------------------------------------------------- how it works -- */

.steps-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.4rem; }
.steps-list li { display: flex; gap: 1rem; }
.steps-list__num {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.steps-list strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; }
.steps-list p { font-size: 0.94rem; color: var(--stone); margin: 0; }

/* --------------------------------------------------------------- offer -- */

.offer { background: var(--accent); color: #fff; padding-block: clamp(2rem, 4vw, 3rem); }
.offer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.offer__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.offer h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin-top: 0.5rem; }
.offer p { margin-top: 0.6rem; font-size: 1rem; opacity: 0.92; max-width: 52ch; }
.offer__action { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.offer__code {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 1.3rem;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
}
.offer__code span { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.offer__code strong { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.02em; }
.offer .btn--ink { background: #fff; color: var(--accent-dark); }
.offer .btn--ink:hover { background: var(--ink); color: #fff; }

/* ---------------------------------------------------------- dish cards -- */

.dish__flag--out { background: #96261d; }

.dish__save {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 3px;
}

.dish__price-chip {
  position: absolute;
  left: 0.85rem; bottom: 0.85rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  background: rgba(248, 244, 237, 0.96);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.dish__price-chip s { font-size: 0.78em; color: var(--stone); }

.dish__rating { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; }
.dish__rating strong { font-weight: 600; }
.dish__rating span { color: var(--stone); }

.dish__foot { width: 100%; }

@media (max-width: 900px) {
  .hero__card { display: none; }
}
