/* ============================================================
   Ciepłe Kluchy Mrągowo — pro redesign
   Palette: warm paper + dusty mauve (brand) + terracotta (appetite)
   Type: Fraunces (display serif) + DM Sans (UI/body)
   ============================================================ */

:root {
  --paper:       #F6EFE7;
  --paper-2:     #EFE4D6;
  --card:        #FCF8F1;
  --ink:         #24201C;
  --ink-soft:    #5C554C;
  --ink-faint:   #8B8378;

  --mauve:       #C9B4C2;
  --mauve-soft:  #EBDFE7;
  --mauve-tint:  #F3ECF0;
  --mauve-deep:  #6B5468;

  --clay:        #D7CED3;   /* brand lilac — soft accent / fills (with dark text) */
  --clay-dark:   #C6B7C0;   /* deeper lilac — hover */
  --clay-tint:   #EFE8ED;   /* lilac tint — soft backgrounds */
  --brand-ink:   #6B5468;   /* deep mauve — legible text accent */
  --gold:        #C08A2D;
  --sage:        #7C8A57;

  --line:        rgba(36, 32, 28, .12);
  --line-2:      rgba(36, 32, 28, .18);

  --shadow-sm:   0 8px 22px -14px rgba(48, 34, 24, .40);
  --shadow-md:   0 18px 40px -22px rgba(48, 34, 24, .45);
  --shadow-lg:   0 34px 70px -30px rgba(48, 34, 24, .55);

  --r-lg: 22px;
  --r-md: 15px;
  --r-sm: 10px;

  --serif: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1160px;
  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

::selection { background: var(--brand-ink); color: #fff; }

/* ---------- Typography helpers ---------- */
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--brand-ink);
}
.eyebrow__line {
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.eyebrow--light { color: rgba(255,255,255,.85); }
.script-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--mauve-deep);
  margin: 0 0 8px;
}
.story__wordmark {
  height: clamp(64px, 9vw, 92px);
  width: auto;
  margin: 0 0 14px;
}
.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.section-head .eyebrow { display: inline-flex; }
.section-head__sub {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 15px;
  --btn-pad-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { --btn-pad-y: 9px; --btn-pad-x: 16px; font-size: .85rem; }

.btn--primary {
  background: var(--clay);
  color: var(--ink);
  border-color: rgba(107, 84, 104, .28);
  box-shadow: 0 12px 26px -16px rgba(107, 84, 104, .55);
}
.btn--primary:hover { background: var(--clay-dark); color: var(--ink); }

.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: #3a342d; }

.btn--outline-dark { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline-dark:hover { border-color: var(--ink); background: rgba(36,32,28,.04); }

.btn--ghost-light {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .8rem;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__item { letter-spacing: .02em; }
.topbar__sep { opacity: .4; }
.topbar__phone {
  margin-left: auto;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.topbar__phone:hover { color: var(--mauve); }
@media (max-width: 620px) {
  .topbar__item:first-child { display: none; }
  .topbar__sep { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px clamp(20px, 5vw, 40px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__mark {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);   /* white over hero */
  transition: filter .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  background: rgba(246, 239, 231, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 26px -22px rgba(48,34,24,.7);
}
.site-header.is-scrolled .brand__mark { filter: none; height: 44px; }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  text-decoration: none;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
  padding: 6px 0;
  position: relative;
  transition: color .18s ease;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav__list a:hover::after, .nav__list a:focus-visible::after { transform: scaleX(1); }
.site-header.is-scrolled .nav__list a { color: var(--ink); }

.site-header__actions { display: flex; align-items: center; gap: 12px; }
.nav .header-cta { display: none; } /* placeholder, cta lives in actions */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease, background .22s ease;
}
.site-header.is-scrolled .nav-toggle { border-color: var(--line-2); background: transparent; }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header__actions { margin-left: auto; }  /* push hamburger to far right */

  /* Solid dark header bar on mobile (scrolled or menu open) — white logo */
  .site-header.is-scrolled,
  .site-header:has(.nav.is-open) {
    background: var(--ink);
    border-bottom-color: rgba(255, 255, 255, .14);
    box-shadow: 0 8px 26px -20px rgba(0, 0, 0, .8);
  }
  .site-header.is-scrolled .brand__mark,
  .site-header:has(.nav.is-open) .brand__mark { filter: brightness(0) invert(1); height: 44px; }
  .site-header.is-scrolled .nav-toggle,
  .site-header:has(.nav.is-open) .nav-toggle { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); }
  .site-header.is-scrolled .nav-toggle span,
  .site-header:has(.nav.is-open) .nav-toggle span { background: #fff; }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 33px) 0 auto 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 6px 0 10px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    color: var(--ink) !important;
    padding: 15px clamp(24px, 6vw, 40px);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav__list a::after { display: none; }
  .nav__list li:last-child a { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h) - 33px); /* pull under header + topbar */
  min-height: min(92vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.5s ease, transform 7s ease;
  will-change: opacity, transform;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: 20px;
  z-index: 2;
  display: flex; justify-content: center; gap: 9px;
}
.hero__dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, .45);
  transition: background .2s ease, transform .2s ease;
}
.hero__dot.is-active { background: #fff; transform: scale(1.25); }
.hero__dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,17,12,.55) 0%, rgba(24,17,12,.12) 34%, rgba(24,17,12,.35) 62%, rgba(24,17,12,.86) 100%),
    linear-gradient(90deg, rgba(24,17,12,.6) 0%, rgba(24,17,12,.12) 55%, transparent 80%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: clamp(48px, 8vh, 90px);
  max-width: 720px;
}
.hero .eyebrow__line { opacity: .7; }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0 0 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
  text-wrap: balance;
}
.hero__lead {
  max-width: 540px;
  margin: 0 0 30px;
  font-size: 1.14rem;
  line-height: 1.6;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 16px rgba(0,0,0,.4);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  transition: background .18s ease;
}
.rating-chip:hover { background: rgba(255,255,255,.24); }
.rating-chip__stars { color: var(--gold); letter-spacing: 1px; }
.rating-chip strong { font-weight: 700; }
.hero__hours {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  letter-spacing: .02em;
}

/* ---------- Values strip ---------- */
.values { background: var(--card); border-bottom: 1px solid var(--line); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: clamp(38px, 5vw, 54px);
  padding-bottom: clamp(38px, 5vw, 54px);
}
.value {
  padding: 4px clamp(16px, 2.4vw, 30px);
  position: relative;
}
.value + .value::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--line);
}
.value__icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--mauve-tint);
  color: var(--mauve-deep);
  margin-bottom: 14px;
}
.value__icon svg { width: 24px; height: 24px; }
.value h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.16rem;
  color: var(--ink);
}
.value p { margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 860px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .value:nth-child(2n+1)::before { display: none; }
}
@media (max-width: 480px) {
  .values__grid { grid-template-columns: 1fr; gap: 26px; }
  .value::before { display: none !important; }
  .value { text-align: center; }
  .value__icon { margin-inline: auto; }
}

/* ---------- Story / O nas ---------- */
.story { padding: clamp(64px, 9vw, 120px) 0; background: var(--paper); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.story__media { position: relative; }
.story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.story__media::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--mauve);
  border-radius: var(--r-lg);
  z-index: -1;
}
.story__text .section-title { margin-bottom: 20px; }
.story__text p { margin: 0 0 16px; color: var(--ink-soft); }
.story__points {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.story__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}
.story__points span {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: .72rem;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__media { max-width: 460px; margin: 0 auto; }
  .story__media::after { inset: 10px -10px -10px 10px; }
}

/* ---------- Specials ---------- */
.specials { padding: clamp(64px, 9vw, 120px) 0; background: var(--paper-2); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.dish-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.dish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dish-card__photo { overflow: hidden; background: var(--paper-2); }
.dish-card__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}
.dish-card:hover .dish-card__photo img { transform: scale(1.05); }
.dish-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Feature card — full-width horizontal banner */
.dish-card--feature {
  grid-column: 1 / -1;
  flex-direction: row;
}
.dish-card--feature .dish-card__photo { flex: 1 1 54%; min-width: 0; }
.dish-card--feature .dish-card__photo img { height: 100%; aspect-ratio: auto; min-height: 300px; }
.dish-card--feature .dish-card__body {
  flex: 1 1 44%;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
  gap: 12px;
}
.dish-card--feature .dish-card__name { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.dish-card--feature .dish-card__desc { font-size: 1.02rem; }
.dish-card--feature .dish-card__price { font-size: 1.2rem; }
.dish-card__tag {
  align-self: flex-start;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-ink);
  background: var(--clay-tint);
  padding: 4px 10px;
  border-radius: 999px;
}
.dish-card__tag--soft { color: var(--mauve-deep); background: var(--mauve-soft); }
.dish-card__name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--ink);
}
.dish-card--feature .dish-card__name { font-size: 1.85rem; }
.dish-card__desc { margin: 0; font-size: .93rem; color: var(--ink-soft); line-height: 1.5; }
.dish-card__price {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-ink);
}

.specials__note {
  margin-top: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  background: var(--mauve-tint);
  border: 1px solid var(--mauve);
  border-radius: var(--r-md);
  padding: 20px 26px;
}
.specials__note-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage); color: #fff;
  flex-shrink: 0;
}
.specials__note p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.specials__note strong { color: var(--ink); }

@media (max-width: 820px) {
  .dish-grid { grid-template-columns: 1fr; }
  .dish-card--feature { flex-direction: column; }
  .dish-card--feature .dish-card__photo { flex: none; }
  .dish-card--feature .dish-card__photo img { aspect-ratio: 4 / 3; min-height: 0; }
}
@media (max-width: 540px) {
  .specials__note { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ---------- Menu section ---------- */
.menu-section { padding: clamp(64px, 9vw, 120px) 0; background: var(--paper); }

.order-note {
  max-width: 780px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--clay-tint);
  border: 1px solid var(--mauve);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-size: .95rem;
  color: var(--ink);
}
.order-note__icon {
  display: grid; place-items: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--card);
  color: var(--brand-ink);
}
.order-note a { color: var(--brand-ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.order-note a:hover { color: var(--ink); }
@media (max-width: 520px) {
  .order-note { flex-direction: column; text-align: center; gap: 10px; }
}

.ck-menu {
  --ck-pad: clamp(20px, 4vw, 36px);
  max-width: 780px;
  margin: 0 auto;
  padding: var(--ck-pad);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.ck-menu *, .ck-menu *::before, .ck-menu *::after { box-sizing: border-box; }
.ck-menu__bar { display: flex; gap: 10px; align-items: center; }
.ck-menu__search {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 9px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 11px 16px;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.ck-menu__search:focus-within { border-color: var(--mauve); box-shadow: 0 0 0 3px rgba(107,84,104,.18); }
.ck-menu__search-icon { color: var(--ink-faint); flex-shrink: 0; }
.ck-menu__search-input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 1rem; color: var(--ink);
}
.ck-menu__search-input::placeholder { color: var(--ink-faint); }
.ck-menu__search-clear {
  flex-shrink: 0; display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%; border: 0;
  background: var(--mauve-soft); color: var(--mauve-deep); cursor: pointer;
}
.ck-menu__search-clear:hover { background: var(--mauve); color: #fff; }
.ck-menu__lang {
  flex-shrink: 0; display: flex;
  background: var(--paper); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 3px; gap: 2px;
}
.ck-menu__lang button {
  border: 0; background: transparent; color: var(--ink-soft);
  font: inherit; font-weight: 600; font-size: .8rem; letter-spacing: .04em;
  padding: 7px 13px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.ck-menu__lang button.is-active { background: var(--ink); color: var(--paper); }

.ck-menu__chips {
  display: flex; gap: 8px; margin-top: 18px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.ck-menu__chips::-webkit-scrollbar { display: none; }
.ck-menu__chip {
  flex-shrink: 0; border: 1px solid var(--line-2); background: var(--paper);
  color: var(--ink); font: inherit; font-weight: 500; font-size: .84rem;
  padding: 9px 15px; border-radius: 999px; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.ck-menu__chip:hover { border-color: var(--ink); }
.ck-menu__chip[aria-pressed="true"] { background: var(--clay); border-color: var(--mauve); color: var(--ink); }
.ck-menu__chip--veg { display: inline-flex; align-items: center; gap: 6px; }
.ck-menu__chip--veg[aria-pressed="true"] { background: var(--sage); border-color: var(--sage); }

.ck-menu__status {
  margin-top: 12px; font-size: .84rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.ck-menu__status button {
  border: 0; background: none; color: var(--brand-ink); font: inherit;
  font-weight: 600; font-size: .84rem; text-decoration: underline; cursor: pointer; padding: 0;
}

.ck-menu__sections { margin: 22px calc(-1 * var(--ck-pad)) 0; }
.ck-menu__section { padding: 26px var(--ck-pad); }
.ck-menu__section:nth-of-type(odd) { background: transparent; }
.ck-menu__section:nth-of-type(even) { background: var(--paper); }
.ck-menu__section-head {
  border-bottom: 1.5px solid var(--mauve);
  padding-bottom: 10px;
}
.ck-menu__section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: var(--ink);
}
/* Category description sits under the title, above the rule */
.ck-menu__section-note {
  margin: 6px 0 0;
  font-size: .88rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.45;
}
.ck-menu__soup { display: flex; gap: 10px; margin-top: 14px; }
.ck-menu__soup-tile {
  flex: 1; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; text-align: center;
}
.ck-menu__soup-tile span {
  display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-faint); margin-bottom: 3px;
}
.ck-menu__soup-tile strong { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }

.ck-menu__item { padding: 13px 0; border-bottom: 1px solid var(--line); }
.ck-menu__item:last-child { border-bottom: 0; }
.ck-menu__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.ck-menu__name {
  flex: 1; font-weight: 500; font-size: 1rem; line-height: 1.45;
  display: flex; gap: 7px; align-items: baseline;
}
.ck-menu__leaf { color: var(--sage); flex-shrink: 0; transform: translateY(1px); }
.ck-menu__veg-tag {
  flex-shrink: 0; display: inline-block;
  font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: #fff; background: var(--sage); padding: 2px 7px; border-radius: 999px;
  transform: translateY(-1px);
}
.ck-menu__price {
  flex-shrink: 0; background: var(--ink); color: var(--paper); font-weight: 600;
  font-size: .85rem; padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.ck-menu__group-label { font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 8px; }
.ck-menu__variant {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 6px 0 6px 18px; position: relative;
}
.ck-menu__variant::before {
  content: ""; position: absolute; left: 3px; top: 14px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--mauve);
}
.ck-menu__variant-name { flex: 1; font-size: .95rem; color: var(--ink-soft); display: flex; gap: 6px; align-items: baseline; }
.ck-menu__empty {
  margin-top: 24px; text-align: center; color: var(--ink-soft); font-size: .95rem;
  padding: 30px 12px; background: var(--paper); border: 1px dashed var(--line-2); border-radius: 14px;
}
.ck-menu__footer { margin-top: 26px; }
.ck-menu__allergens { margin: 0; font-size: .78rem; color: var(--ink-faint); line-height: 1.55; }

/* ---------- Reviews ---------- */
.reviews { padding: clamp(64px, 9vw, 120px) 0; background: var(--mauve-tint); }
.reviews__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--mauve);
  margin-bottom: 40px;
}
.reviews__score { text-align: center; }
.reviews__value {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 8vw, 4.6rem);
  line-height: .9;
  color: var(--ink);
}
.reviews__stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; display: block; margin: 8px 0 6px; }
.reviews__count { font-size: .82rem; color: var(--ink-soft); }
.reviews__intro {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.4;
  color: var(--mauve-deep);
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 40px;
}
.review {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.16rem;
  line-height: 1.5;
  color: var(--ink);
}
.review figcaption { display: flex; flex-direction: column; gap: 2px; }
.review__author { font-weight: 600; }
.review__role { font-size: .8rem; color: var(--ink-faint); }
.reviews__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

@media (max-width: 760px) {
  .reviews__head { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact { padding: clamp(64px, 9vw, 120px) 0; background: var(--paper); }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: 30px;
  align-items: stretch;
}
.contact__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.contact__row { display: flex; gap: 15px; margin-bottom: 24px; }
.contact__icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--mauve-tint); color: var(--mauve-deep);
}
.contact__row h3 {
  margin: 0 0 5px;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-ink);
  font-weight: 600;
}
.contact__row p { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.55; }
.contact__row a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-2); }
.contact__row a:hover { color: var(--brand-ink); border-color: var(--brand-ink); }
.contact__cta { margin-top: auto; }
.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 380px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

@media (max-width: 820px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(52px, 7vw, 76px) 0 26px; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.site-footer__mark { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.site-footer__brand p { margin: 0; font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.6); }
.site-footer__col h3 {
  margin: 0 0 10px; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--mauve);
  font-weight: 600;
}
.site-footer__col p { margin: 0; font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.72); }
.site-footer__col a { color: rgba(255,255,255,.9); text-decoration: none; }
.site-footer__col a:hover { color: var(--mauve); }
.site-footer__bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: rgba(255,255,255,.5);
}
@media (max-width: 760px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- Floating call button (mobile) ---------- */
.fab-call {
  display: none;
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 90;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--ink);
  border: 1px solid rgba(107, 84, 104, .3);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 14px 30px -12px rgba(107, 84, 104, .6);
}
.fab-call:active { transform: scale(.97); }
@media (max-width: 880px) {
  .fab-call { display: inline-flex; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
