:root {
  --white: #fff;
  --ivory: #fffdf8;
  --cream: #fbf6eb;
  --cream-strong: #f5ead4;
  --gold: #c79235;
  --gold-dark: #8d611a;
  --gold-bright: #e7bd69;
  --gold-soft: #f5dfae;
  --ink: #1d1d1d;
  --muted: #6f6c66;
  --line: rgba(163, 113, 31, 0.2);
  --line-strong: rgba(163, 113, 31, 0.42);
  --shadow-sm: 0 12px 30px rgba(81, 58, 18, 0.08);
  --shadow: 0 24px 60px rgba(81, 58, 18, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 154px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { color: var(--ink); background: var(--gold-soft); }
:focus-visible { outline: 3px solid rgba(199, 146, 53, 0.48); outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* --- Barre de progression de lecture --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold));
  background-size: 200% 100%;
  box-shadow: 0 0 10px rgba(199, 146, 53, 0.55);
  transition: width 0.12s ease-out;
}
@media (prefers-reduced-motion: reduce) { .scroll-progress { transition: none; } }

/* --- Apparition en cascade des grilles de cartes --- */
.salad-grid > .reveal:nth-child(1), .kumpir-grid > .reveal:nth-child(1), .dessert-grid > .reveal:nth-child(1),
.drink-grid > .reveal:nth-child(1), .bottle-grid > .reveal:nth-child(1), .juice-grid > .reveal:nth-child(1),
.builder-grid > .reveal:nth-child(1) { transition-delay: 0s; }
.salad-grid > .reveal:nth-child(2), .kumpir-grid > .reveal:nth-child(2), .dessert-grid > .reveal:nth-child(2),
.drink-grid > .reveal:nth-child(2), .bottle-grid > .reveal:nth-child(2), .juice-grid > .reveal:nth-child(2),
.builder-grid > .reveal:nth-child(2) { transition-delay: 0.08s; }
.salad-grid > .reveal:nth-child(3), .kumpir-grid > .reveal:nth-child(3), .dessert-grid > .reveal:nth-child(3),
.drink-grid > .reveal:nth-child(3), .bottle-grid > .reveal:nth-child(3), .juice-grid > .reveal:nth-child(3),
.builder-grid > .reveal:nth-child(3) { transition-delay: 0.16s; }
.salad-grid > .reveal:nth-child(4), .kumpir-grid > .reveal:nth-child(4), .dessert-grid > .reveal:nth-child(4),
.drink-grid > .reveal:nth-child(4), .bottle-grid > .reveal:nth-child(4), .juice-grid > .reveal:nth-child(4),
.builder-grid > .reveal:nth-child(4) { transition-delay: 0.24s; }
.drink-grid > .reveal:nth-child(5), .bottle-grid > .reveal:nth-child(5), .juice-grid > .reveal:nth-child(5) { transition-delay: 0.32s; }
.drink-grid > .reveal:nth-child(6), .juice-grid > .reveal:nth-child(6) { transition-delay: 0.4s; }

.topbar {
  position: relative;
  z-index: 40;
  color: var(--ink);
  background: linear-gradient(90deg, #f2d696, #dcae55 52%, #f2d696);
  border-bottom: 1px solid rgba(141, 97, 26, 0.2);
}
.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.topbar a { white-space: nowrap; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.header.is-scrolled { background: rgba(255, 255, 255, 0.97); box-shadow: 0 10px 32px rgba(57, 43, 18, 0.08); }
.header__inner { position: relative; min-height: 132px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 13px; }
.brand__logo { width: 116px; height: 116px; object-fit: contain; filter: drop-shadow(0 9px 12px rgba(81, 58, 18, 0.15)); transition: transform 0.25s ease; }
.brand__name {
  position: relative;
  display: inline-block;
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.085em;
  white-space: nowrap;
  text-transform: uppercase;
  background: linear-gradient(105deg, #795016 0%, #c69035 48%, #8b5e18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: skewX(-4deg);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.brand__name::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: -8px;
  width: 64%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark));
  border-radius: 999px;
  transition: width 0.25s ease;
}
.brand:hover .brand__logo { transform: scale(1.04); }
.brand:hover .brand__name { filter: brightness(1.08); transform: skewX(-4deg) translateX(3px); }
.brand:hover .brand__name::after { width: 100%; }
.nav { display: flex; align-items: center; gap: 5px; }
.nav > a {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  color: #3f3d39;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav > a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav > a:hover, .nav > a.is-active { color: var(--gold-dark); background: var(--cream); }
.nav > a:hover::after, .nav > a.is-active::after { transform: scaleX(1); }
.nav .nav__cta {
  margin-left: 9px;
  padding-inline: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: 1px solid var(--gold-dark);
  box-shadow: 0 9px 22px rgba(160, 111, 29, 0.22);
}
.nav .nav__cta:hover { color: var(--white); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.nav-toggle {
  width: 46px;
  height: 42px;
  display: none;
  padding: 9px 10px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; display: block; margin: 3px auto; background: var(--gold-dark); transition: transform 0.2s ease, opacity 0.2s ease; }

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 116px), 790px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero__bg, .hero__overlay { position: absolute; inset: 0; }
.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}
.hero::before { top: -8%; left: -6%; width: 340px; height: 340px; background: rgba(231, 189, 105, 0.35); }
.hero::after { right: -8%; bottom: -10%; width: 300px; height: 300px; background: rgba(199, 146, 53, 0.28); }
@media (max-width: 860px) { .hero::before, .hero::after { display: none; } }
.hero__bg { background: url("banniere.png") center center / cover no-repeat; transform: scale(1.002); }
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 55%, rgba(255, 250, 239, 0.45));
}
.hero__content { position: relative; z-index: 2; display: flex; justify-content: center; padding: 72px 0 94px; }
.hero__card {
  width: min(880px, 94%);
  padding: clamp(30px, 4.4vw, 58px);
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 85px rgba(74, 51, 15, 0.18);
  backdrop-filter: blur(15px) saturate(1.15);
  -webkit-backdrop-filter: blur(15px) saturate(1.15);
}
.eyebrow, .concept__label, .creations__label, .fries-section__label, .refreshments__label, .location__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after, .concept__label::before, .creations__label::before, .fries-section__label::before, .refreshments__label::before, .location__label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1, .concept h2, .creations h2, .fries-section h2, .refreshments h2, .location h2, .cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
}
.hero h1 {
  margin: 15px 0 0;
  background: linear-gradient(100deg, #171717 30%, var(--gold-dark) 45%, var(--gold-bright) 50%, var(--gold-dark) 55%, #171717 70%);
  background-size: 260% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(4rem, 8vw, 7.1rem);
  white-space: nowrap;
  animation: heroShine 7s ease-in-out infinite;
}
@keyframes heroShine {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}
@media (prefers-reduced-motion: reduce) { .hero h1 { animation: none; } }
.hero__subtitle {
  margin: 8px 0 0;
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
}
.hero__lead { max-width: 650px; margin: 22px auto 0; color: #55524c; font-size: 0.99rem; line-height: 1.85; }
.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn, .hero__actions a {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn::before, .hero__actions a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  z-index: 1;
  width: 40%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.btn:hover::before, .hero__actions a:hover::before { transform: translateX(340%) skewX(-18deg); }
.btn:hover, .hero__actions a:hover { transform: translateY(-2px); }
.btn--gold { color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--gold)); box-shadow: 0 12px 26px rgba(141, 97, 26, 0.23); }
.btn--gold:hover { box-shadow: 0 16px 34px rgba(141, 97, 26, 0.34); }
.btn--line { color: var(--gold-dark); background: rgba(255, 255, 255, 0.7); border-color: var(--line-strong); }
.btn--line:hover { background: var(--white); }
.hero__proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero__proof > div { min-width: 0; padding: 0 18px; }
.hero__proof > div + div { border-left: 1px solid var(--line); }
.hero__proof strong, .hero__proof span { display: block; }
.hero__proof strong { color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; }
.hero__proof span { color: var(--muted); font-size: 0.72rem; }
.hero__bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  color: #383632;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(199, 146, 53, 0.24);
  backdrop-filter: blur(14px);
}
.hero__bottom .container { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 22px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.hero__bottom i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.concept, .fries-section, .location { background: var(--white); }
.creations, .refreshments {
  background:
    radial-gradient(circle at 12% 4%, rgba(231, 189, 105, 0.12), transparent 24%),
    radial-gradient(rgba(163, 113, 31, 0.06) 1px, transparent 1px) 0 0/22px 22px,
    var(--ivory);
}
.concept__heading, .creations__heading, .fries-section__heading, .refreshments__heading, .location__heading { max-width: 860px; margin-bottom: 54px; }
.concept__heading h2, .creations__heading h2, .fries-section__heading h2, .refreshments__heading h2, .location__heading h2 {
  margin: 14px 0 20px;
  color: var(--ink);
  font-size: clamp(3.1rem, 6.4vw, 5.6rem);
}
.concept__heading { max-width: none; }
.concept__title-row { display: flex; align-items: center; flex-wrap: nowrap; gap: clamp(9px, 1.3vw, 18px); }
.concept__title-row h2 { flex: 0 1 auto; margin-right: 0; font-size: clamp(2.65rem, 5.2vw, 4.75rem); white-space: nowrap; text-wrap: nowrap; }
.concept__title-divider { flex: 0 0 auto; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.85rem, 3vw, 3rem); font-weight: 700; line-height: 1; }
.concept__title-price { flex: 0 0 auto; color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 3.3vw, 3.25rem); line-height: 1; white-space: nowrap; }
.concept__story {
  max-width: 850px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.8;
}
.concept__intro, .creations__heading p, .fries-section__heading p, .refreshments__heading p, .location__heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.85;
}
.concept__intro strong, .creations__heading p strong { color: var(--gold-dark); font-weight: 800; }
.concept__custom-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1;
}

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step { min-height: 330px; padding: 34px; }
.step + .step { border-left: 1px solid var(--line); }
.step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.step__icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--gold-dark); background: var(--cream); border: 1px solid var(--line-strong); border-radius: 50%; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.step__number { color: rgba(141, 97, 26, 0.28); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.step__label { color: var(--gold-dark); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.step h3 { margin: 10px 0 13px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.65rem, 2.5vw, 2.15rem); line-height: 1.1; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.8; }
.builder { margin-top: 24px; }
.builder-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.builder-card { min-width: 0; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.builder-card--wide { grid-column: auto; }
.builder-card--illustrated { display: flex; flex-direction: column; }
.builder-card__title { min-width: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.builder-card__title > div { min-width: 0; }
.builder-card__title span { display: block; color: var(--muted); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.builder-card__title h4 { margin: 3px 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.builder-card__title strong { flex: 0 0 auto; padding: 7px 11px; color: var(--gold-dark); background: var(--cream); border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.66rem; }
.builder-list, .builder-list--columns { display: grid; grid-template-columns: 1fr; gap: 9px 18px; margin: 0; padding: 0; list-style: none; }
.builder-list--columns { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 14px; }
.builder-list li { position: relative; min-width: 0; padding-left: 15px; color: #57544e; font-size: 0.78rem; line-height: 1.45; overflow-wrap: anywhere; }
.builder-list li::before { content: ""; position: absolute; top: 0.57em; left: 0; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.builder-card__visual { position: relative; min-height: 160px; display: grid; place-items: end center; margin-top: auto; padding-top: 22px; }
.builder-card__visual::before { content: ""; position: absolute; right: 7%; bottom: 1px; left: 7%; height: 46%; background: radial-gradient(ellipse at center, rgba(199, 146, 53, 0.16), transparent 70%); filter: blur(4px); }
.builder-card__visual img { position: relative; z-index: 1; width: 100%; height: 168px; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 12px 15px rgba(65, 43, 13, 0.16)); transition: transform 0.25s ease; }
.builder-card--illustrated:hover .builder-card__visual img { transform: translateY(-4px) scale(1.025); }

.creations__group + .creations__group { margin-top: 76px; }
.creations__group-heading, .refreshments__category-title { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.creations__group-heading > div, .refreshments__category-title > div { min-width: 0; }
.creations__group-heading > span, .refreshments__category-title > span { width: 48px; height: 48px; display: grid; flex: 0 0 auto; place-items: center; color: var(--gold-dark); background: var(--white); border: 1px solid var(--line-strong); border-radius: 50%; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.2rem; font-weight: 700; }
.creations__group-heading small, .refreshments__category-title small { display: block; color: var(--gold-dark); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.creations__group-heading h3, .refreshments__category-title h3 { margin: 2px 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.kumpir-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.kumpir-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.kumpir-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow), 0 0 0 1px rgba(199, 146, 53, 0.25); }
.kumpir-card__image { position: relative; height: 225px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #fff, var(--cream)); border-bottom: 1px solid var(--line); }
.kumpir-card__image::after { content: ""; position: absolute; right: 15%; bottom: 16px; left: 15%; height: 18px; background: rgba(141, 97, 26, 0.14); border-radius: 50%; filter: blur(12px); }
.kumpir-card__image img { position: relative; z-index: 1; width: 94%; height: 94%; object-fit: contain; transition: transform 0.35s ease; }
.kumpir-card:hover .kumpir-card__image img { transform: scale(1.035); }
.kumpir-card__image > span { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 10px; color: var(--gold-dark); background: rgba(255, 255, 255, 0.92); border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.kumpir-card__content { flex: 1; padding: 22px; }
.kumpir-card__title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.kumpir-card__title h4 { margin-bottom: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.72rem; line-height: 1.05; }
.kumpir-card__title strong { flex: 0 0 auto; color: var(--gold-dark); font-size: 0.94rem; }
.kumpir-card__content p { margin: 13px 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.7; }

.salads { background: var(--white); }
.salads__heading { max-width: 820px; margin-bottom: 50px; }
.salads__label, .sandwiches__label { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.salads__label::before, .sandwiches__label::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.salads__heading h2, .sandwiches__intro h2 { margin: 14px 0 20px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.1rem, 6.4vw, 5.6rem); font-weight: 700; line-height: 0.96; }
.salads__heading p { max-width: 720px; margin: 0; color: var(--muted); font-size: 1.04rem; line-height: 1.8; }
.salads__heading p strong, .mobile-accordion__intro strong { color: var(--gold-dark); font-weight: 800; }
.salad-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 17px; }
.salad-card { min-width: 0; height: 100%; display: flex; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.salad-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow), 0 0 0 1px rgba(199, 146, 53, 0.25); }
.salad-card__image { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); }
.salad-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.35s ease; }
.salad-card:hover .salad-card__image img { transform: scale(1.035); }
.salad-card__image > span { position: absolute; top: 13px; left: 13px; padding: 5px 9px; color: var(--gold-dark); background: rgba(255, 255, 255, 0.93); border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.59rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.salad-card__content { flex: 1; min-width: 0; padding: 20px; }
.salad-card__title { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 15px; }
.salad-card__title h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.75rem; line-height: 1; }
.salad-card__title strong { flex: 0 0 auto; color: var(--gold-dark); font-size: 0.88rem; }
.salad-card ul { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.salad-card li { position: relative; padding-left: 13px; color: var(--muted); font-size: 0.7rem; line-height: 1.4; }
.salad-card li::before { content: ""; position: absolute; top: 0.55em; left: 0; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.salads__formula { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; padding: 19px 24px; background: linear-gradient(135deg, var(--ivory), var(--cream)); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); }
.salads__formula span { color: var(--muted); font-size: 0.8rem; }
.salads__formula strong { color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; }

.sandwiches { background: radial-gradient(circle at 90% 10%, rgba(231, 189, 105, 0.14), transparent 28%), var(--ivory); }
.sandwiches__panel { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(410px, 0.88fr); overflow: hidden; background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.sandwiches__visual { position: relative; grid-row: 1 / 3; min-height: 650px; display: grid; place-items: center; overflow: hidden; padding: 30px; background: radial-gradient(circle at center, rgba(231, 189, 105, 0.28), transparent 56%), linear-gradient(145deg, var(--white), var(--cream)); border-right: 1px solid var(--line); isolation: isolate; }
.sandwiches__glow { position: absolute; z-index: 0; width: 72%; aspect-ratio: 1; background: rgba(231, 189, 105, 0.2); border-radius: 50%; filter: blur(34px); }
.sandwiches__visual img { position: relative; z-index: 1; width: 100%; height: 100%; max-width: 100%; max-height: 590px; object-fit: contain; object-position: center; filter: drop-shadow(0 24px 24px rgba(81, 58, 18, 0.18)); transition: transform 0.35s ease; }
.sandwiches__panel:hover .sandwiches__visual img { transform: translateY(-4px) scale(1.015); }
.sandwiches__intro, .sandwiches__menu { min-width: 0; padding: clamp(28px, 4vw, 46px); }
.sandwiches__intro { background: linear-gradient(145deg, var(--white), var(--cream)); border-bottom: 1px solid var(--line); }
.sandwiches__intro h2 { margin-bottom: 18px; }
.sandwiches__intro p { margin-bottom: 17px; color: var(--muted); line-height: 1.8; }
.sandwiches__intro small { display: inline-block; padding: 8px 12px; color: var(--gold-dark); background: var(--white); border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.68rem; font-weight: 700; }
.sandwiches__menu { display: grid; align-content: center; gap: 28px; }
.sandwiches__choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.sandwiches__choices span { min-width: 0; padding: 13px 15px; color: #4d4a45; background: var(--ivory); border: 1px solid var(--line); border-radius: 10px; font-size: 0.78rem; font-weight: 700; }
.sandwiches__choices span::before { content: "•"; margin-right: 8px; color: var(--gold); }
.sandwiches__prices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.sandwiches__prices > div { min-width: 0; display: grid; align-content: space-between; min-height: 115px; padding: 18px; background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); }
.sandwiches__prices small { color: var(--muted); font-size: 0.68rem; line-height: 1.45; }
.sandwiches__prices strong { display: block; margin-top: 9px; color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.sandwiches__price--featured { background: linear-gradient(135deg, #fffaf0, var(--gold-soft)) !important; border-color: var(--gold) !important; }

/* --- Léger scintillement périodique sur les offres mises en avant --- */
.sandwiches__price--featured, .fries-price--featured, .mobile-offers > div.is-featured, .mobile-size-prices > div.is-featured {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sandwiches__price--featured::after, .fries-price--featured::after,
.mobile-offers > div.is-featured::after, .mobile-size-prices > div.is-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  background-size: 250% 100%;
  animation: featuredShine 4.5s ease-in-out infinite;
}
@keyframes featuredShine {
  0%, 45% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sandwiches__price--featured::after, .fries-price--featured::after,
  .mobile-offers > div.is-featured::after, .mobile-size-prices > div.is-featured::after { animation: none; }
}

.fries-showcase { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(430px, 1.1fr); align-items: stretch; overflow: hidden; background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.fries-showcase__visual { position: relative; min-height: 460px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at center, rgba(231, 189, 105, 0.28), transparent 54%), linear-gradient(145deg, var(--ivory), var(--cream)); border-right: 1px solid var(--line); }
.fries-showcase__glow { position: absolute; width: 70%; aspect-ratio: 1; background: rgba(231, 189, 105, 0.22); border-radius: 50%; filter: blur(30px); }
.fries-showcase__visual img { position: relative; z-index: 1; width: 96%; max-height: 420px; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(88, 61, 17, 0.18)); transition: transform 0.35s ease; }
.fries-showcase:hover .fries-showcase__visual img { transform: translateY(-4px) scale(1.02); }
.fries-showcase__content { padding: clamp(35px, 5vw, 64px); }
.fries-showcase__kicker, .bottles-section__heading > div > span { color: var(--gold-dark); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.fries-showcase__content h3 { margin: 6px 0 28px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; }
.fries-prices { display: grid; gap: 12px; }
.fries-price { min-height: 77px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 19px; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform 0.2s ease, border-color 0.2s ease; }
.fries-price:hover { transform: translateX(4px); border-color: var(--line-strong); }
.fries-price > div { display: flex; align-items: center; gap: 14px; }
.fries-price > div span { color: rgba(141, 97, 26, 0.46); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem; }
.fries-price > div strong { font-size: 0.92rem; }
.fries-price > b { color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; }
.fries-price small { margin-left: auto; color: var(--gold-dark); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.fries-price--featured { background: linear-gradient(135deg, #fffaf0, #f5dfae); border-color: var(--gold); }

.refreshments__category + .refreshments__category, .bottles-section + .refreshments__category { margin-top: 72px; }
.refreshments__category-price { margin-left: auto; color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.75rem; }
.drink-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: stretch; gap: 14px; }
.drink-card, .bottle-card, .juice-card { min-width: 0; height: 100%; display: flex; flex-direction: column; align-items: stretch; overflow: hidden; padding: 16px 12px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 9px 24px rgba(81, 58, 18, 0.06); transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.drink-card:hover, .bottle-card:hover, .juice-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-sm), 0 0 0 1px rgba(199, 146, 53, 0.22); }
.drink-card__image, .bottle-card__image, .juice-card__image { position: relative; width: 100%; display: flex; flex: 0 0 auto; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 13px; padding: 10px; background: linear-gradient(145deg, var(--ivory), var(--cream)); border: 1px solid rgba(163, 113, 31, 0.08); border-radius: 9px; isolation: isolate; }
.drink-card__image { height: 170px; }
.bottle-card__image { height: 230px; }
.juice-card__image { height: 260px; }
.drink-card__image img, .bottle-card__image img, .juice-card__image img { position: relative; z-index: 2; display: block; width: auto; max-width: 92%; object-fit: contain; object-position: center; opacity: 1; visibility: visible; filter: drop-shadow(0 7px 7px rgba(71, 52, 20, 0.12)); }
.drink-card__image img { height: 138px; max-height: 138px; }
.bottle-card__image img { height: 198px; max-height: 198px; }
.juice-card__image img { height: 226px; max-height: 226px; }
.drink-card h4, .bottle-card h4, .juice-card h4 { min-height: 2.6em; display: grid; place-items: center; margin-bottom: 5px; font-size: 0.82rem; line-height: 1.3; }
.drink-card > span, .bottle-card > span, .juice-card > span { display: block; color: var(--muted); font-size: 0.68rem; }
.drink-card > strong, .bottle-card > strong { display: block; margin-top: 7px; color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; }
.bottles-section { margin-top: 72px; padding: 28px; background: linear-gradient(145deg, var(--white), var(--cream)); border: 1px solid var(--line-strong); border-radius: var(--radius); }
.bottles-section__heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.bottles-section__heading h3 { margin: 3px 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.7rem; line-height: 1; }
.bottles-section__heading > strong { padding: 8px 13px; color: var(--gold-dark); background: var(--white); border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.69rem; letter-spacing: 0.08em; text-transform: uppercase; }
.bottle-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; gap: 15px; }
.juice-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: stretch; gap: 15px; }
.dessert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.dessert-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.dessert-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow), 0 0 0 1px rgba(199, 146, 53, 0.25); }
.dessert-card__image { position: relative; height: 250px; display: grid; place-items: center; overflow: hidden; padding: 18px; background: linear-gradient(145deg, var(--ivory), var(--cream)); border-bottom: 1px solid var(--line); isolation: isolate; }
.dessert-card__image img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 12px 13px rgba(81, 58, 18, 0.13)); }
.dessert-card__image > span { position: absolute; top: 15px; left: 15px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--gold-dark); background: rgba(255, 255, 255, 0.9); border: 1px solid var(--line-strong); border-radius: 50%; font-size: 0.7rem; font-weight: 700; }
.dessert-card__content { min-width: 0; padding: 22px; }
.dessert-card__title { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; }
.dessert-card__title h4 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; line-height: 1.1; }
.dessert-card__title strong { flex: 0 0 auto; color: var(--gold-dark); }
.dessert-card__content p { margin: 12px 0 0; color: var(--muted); font-size: 0.79rem; line-height: 1.7; }

.location-wide { overflow: hidden; background: var(--white); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.location-wide__map { position: relative; height: 420px; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); }
.location-wide__map iframe { width: 100%; height: 100%; display: block; border: 0; filter: saturate(0.72) contrast(1.02); }
.location-wide__bar { display: grid; grid-template-columns: 1fr 1.25fr 1fr; min-width: 0; }
.location-wide__address, .location-wide__hours, .location-wide__actions { min-width: 0; padding: 30px; }
.location-wide__address, .location-wide__hours { border-right: 1px solid var(--line); }
.location-wide__address > span { color: var(--gold-dark); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.location-wide__address h3 { margin: 7px 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.location-wide__address p { margin: 7px 0 17px; color: var(--muted); }
.location-wide__address > div { display: flex; flex-wrap: wrap; gap: 6px; }
.location-wide__address small { padding: 5px 8px; color: var(--gold-dark); background: var(--cream); border-radius: 999px; font-size: 0.63rem; font-weight: 700; }
.location-wide__hours { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; }
.location-wide__hours > div { min-width: 0; padding: 8px 0; }
.location-wide__hours span, .location-wide__hours strong { display: block; }
.location-wide__hours span { color: var(--muted); font-size: 0.7rem; }
.location-wide__hours strong { margin-top: 2px; font-size: 0.8rem; white-space: nowrap; }
.location-wide__actions { display: grid; align-content: center; gap: 9px; }
.location-wide__button { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 10px; transition: transform 0.2s ease, background 0.2s ease; }
.location-wide__button:hover { transform: translateX(3px); }
.location-wide__button span, .location-wide__button small, .location-wide__button strong { min-width: 0; display: block; }
.location-wide__button small { color: inherit; opacity: 0.75; font-size: 0.64rem; }
.location-wide__button strong { overflow: hidden; font-size: 0.79rem; text-overflow: ellipsis; white-space: nowrap; }
.location-wide__button b { flex: 0 0 auto; font-size: 1.15rem; }
.location-wide__button--call { color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-color: var(--gold-dark); }
.location-wide__button--map { color: var(--gold-dark); background: var(--cream); }
.location-wide__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 30px; color: var(--muted); background: var(--ivory); border-top: 1px solid var(--line); font-size: 0.72rem; }
.location-wide__footer strong { color: var(--gold-dark); }
.social-links { min-width: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.social-links a { min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px 7px 8px; color: #44413c; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 7px 18px rgba(81, 58, 18, 0.07); font-size: 0.69rem; font-weight: 700; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.social-links a:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.social-links img { width: 34px; height: 34px; flex: 0 0 auto; object-fit: contain; border-radius: 9px; }

.cta { padding: 80px 0; background: linear-gradient(110deg, #f6e4bd, #fffaf0 48%, #eed39a); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta__inner > div > span { color: var(--gold-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.cta h2 { margin: 7px 0 0; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.cta__inner > a { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; padding: 14px 22px; color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border: 1px solid var(--gold-dark); border-radius: 10px; box-shadow: 0 12px 28px rgba(141, 97, 26, 0.22); font-weight: 700; transition: transform 0.2s ease; }
.cta__inner > a:hover { transform: translateY(-2px); }
.cta__inner > a span { margin-left: 10px; }
.footer { color: #595650; background: var(--white); }
.footer__inner { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 25px; font-size: 0.73rem; }
.footer__brand .brand__logo { width: 66px; height: 66px; }
.footer p { margin: 0; }
.footer__top { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 15px; color: var(--gold-dark); background: var(--cream); border: 1px solid var(--line-strong); border-radius: 10px; font-weight: 700; box-shadow: 0 7px 18px rgba(81, 58, 18, 0.07); transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.footer__top:hover { transform: translateY(-2px); background: var(--white); box-shadow: var(--shadow-sm); }
.footer__top span { font-size: 1.05rem; transition: transform 0.2s ease; }
.footer__top:hover span { transform: translateY(-2px); }
.mobile-bar { display: none; }

.nav .nav__cta, .btn--gold, .location-wide__button--call, .cta__inner > a, .mobile-bar__primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: linear-gradient(135deg, #8d611a 0%, #c79235 52%, #e0b45c 100%);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 28px rgba(141, 97, 26, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
}
.nav .nav__cta::before, .btn--gold::before, .location-wide__button--call::before, .cta__inner > a::before, .mobile-bar__primary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55%;
  z-index: -1;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}
.nav .nav__cta:hover::before, .btn--gold:hover::before, .location-wide__button--call:hover::before, .cta__inner > a:hover::before, .mobile-bar__primary:hover::before { left: 120%; }
.nav .nav__cta:hover, .btn--gold:hover, .location-wide__button--call:hover, .cta__inner > a:hover { color: var(--white); box-shadow: 0 16px 34px rgba(141, 97, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.32); }
.btn--line, .location-wide__button--map, .footer__top { cursor: pointer; }
.btn--line:active, .btn--gold:active, .location-wide__button:active, .cta__inner > a:active, .footer__top:active, .social-links a:active { transform: translateY(0) scale(0.98); }

.mobile-menu, .nav > .nav__mobile-card, .hero__actions .hero__mobile-card-link { display: none; }

@keyframes mobileAccordionIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@keyframes mobileVisualPop {
  from { opacity: 0.25; transform: translateY(10px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .brand { gap: 9px; }
  .brand__name { font-size: 1.12rem; letter-spacing: 0.055em; }
  .nav > a { padding-inline: 9px; font-size: 0.74rem; }
  .builder-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kumpir-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .salad-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drink-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .location-wide__bar { grid-template-columns: 1fr 1.35fr; }
  .location-wide__hours { border-right: 0; }
  .location-wide__actions { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
}

@media (min-width: 861px) and (max-width: 980px) {
  .header__inner { gap: 16px; }
  .brand__logo { width: 86px; height: 86px; }
  .brand__name { font-size: 0.9rem; letter-spacing: 0.035em; }
  .nav > a { padding-inline: 6px; font-size: 0.66rem; }
  .nav .nav__cta { margin-left: 3px; padding-inline: 12px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 118px; }
  .topbar__inner { justify-content: center; }
  .topbar__inner span { display: none; }
  .header__inner { min-height: 108px; }
  .brand__logo { width: 92px; height: 92px; }
  .brand__name { font-size: 1.42rem; letter-spacing: 0.07em; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: grid; gap: 5px; padding: 16px; visibility: hidden; opacity: 0; background: rgba(255, 255, 255, 0.98); border: 1px solid var(--line-strong); border-radius: 16px; box-shadow: var(--shadow); transform: translateY(-12px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
  .nav.open { visibility: visible; opacity: 1; transform: none; }
  .nav > a { padding: 13px 14px; font-size: 0.82rem; }
  .nav .nav__cta { margin: 5px 0 0; }
  .section { padding: 85px 0; }
  .hero { min-height: 680px; }
  .hero__content { padding: 58px 0 88px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .step + .step { border-top: 1px solid var(--line); border-left: 0; }
  .sandwiches__panel { grid-template-columns: 1fr; }
  .sandwiches__visual { grid-row: auto; min-height: 390px; border-right: 0; border-bottom: 1px solid var(--line); }
  .sandwiches__visual img { max-height: 350px; }
  .sandwiches__intro { border-bottom: 1px solid var(--line); }
  .fries-showcase { grid-template-columns: 1fr; }
  .fries-showcase__visual { min-height: 360px; border-right: 0; border-bottom: 1px solid var(--line); }
  .bottle-grid, .juice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dessert-grid { grid-template-columns: 1fr; }
  .dessert-card { display: grid; grid-template-columns: 250px minmax(0, 1fr); }
  .dessert-card__image { height: 240px; border-right: 1px solid var(--line); border-bottom: 0; }
  .dessert-card__content { align-self: center; }
}

@media (max-width: 640px) {
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .topbar { border-bottom: 0; }
  .topbar__inner { min-height: 34px; justify-content: space-between; gap: 8px; font-size: 0.65rem; }
  .topbar__inner span { display: block; font-size: 0.48rem; letter-spacing: 0.06em; white-space: nowrap; }
  .header__inner { min-height: 82px; }
  .brand__logo { width: 70px; height: 70px; }
  .brand { gap: 7px; }
  .brand__name { font-size: 0.94rem; letter-spacing: 0.035em; }
  .brand__name::after { bottom: -5px; height: 1px; }
  .nav-toggle { width: 43px; height: 43px; }
  .nav > a:not(.nav__mobile-card):not(.nav__mobile-info):not(.nav__cta) { display: none; }
  .nav > .nav__mobile-card { display: flex; align-items: center; justify-content: center; color: var(--gold-dark); background: var(--cream); border: 1px solid var(--line-strong); }
  .hero { min-height: 570px; }
  .hero__bg { background-position: 56% center; }
  .hero__content { padding: 35px 0 70px; }
  .hero__card { width: 100%; padding: 24px 17px; border-radius: 22px; }
  .eyebrow::before, .eyebrow::after { display: none; }
  .hero h1 { font-size: clamp(3.2rem, 17vw, 4.75rem); }
  .hero__subtitle { font-size: 1.52rem; }
  .hero__lead { display: block; margin-top: 15px; font-size: 0.78rem; line-height: 1.58; }
  .hero__actions { display: grid; margin-top: 23px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .hero__desktop-card-link { display: none; }
  .hero__actions .hero__mobile-card-link { display: inline-flex; }
  .hero__proof { margin-top: 25px; padding-top: 18px; }
  .hero__proof > div { padding: 0 6px; }
  .hero__proof strong { font-size: 1.18rem; }
  .hero__proof span { font-size: 0.58rem; line-height: 1.4; }
  .hero__bottom .container { gap: 10px; font-size: 0.59rem; letter-spacing: 0.08em; }
  .concept, .creations, .salads, .sandwiches, .fries-section, .refreshments, .cta { display: none; }

  .mobile-menu {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 60px 0 82px;
    background:
      radial-gradient(circle at 100% 0, rgba(231, 189, 105, 0.24), transparent 30%),
      linear-gradient(180deg, #fffdf8 0%, #f8efdd 52%, #fffdf8 100%);
  }
  .mobile-menu::before {
    content: "";
    position: absolute;
    top: 0;
    right: -85px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(199, 146, 53, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(199, 146, 53, 0.05), 0 0 0 56px rgba(199, 146, 53, 0.035);
    pointer-events: none;
  }
  .mobile-menu__header { position: relative; margin-bottom: 27px; }
  .mobile-menu__header > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .mobile-menu__header > span::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
  .mobile-menu__header h2 {
    max-width: 330px;
    margin: 0;
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.15rem, 15vw, 4.45rem);
    line-height: 0.85;
    letter-spacing: -0.035em;
  }
  .mobile-menu__header p { max-width: 320px; margin: 18px 0 0; color: var(--muted); font-size: 0.82rem; line-height: 1.65; }
  .mobile-menu__spotlight {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(135deg, #6f4912 0%, #a87625 48%, #d1a04d 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(94, 62, 14, 0.22);
  }
  .mobile-menu__spotlight::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
  }
  .mobile-menu__spotlight > div { position: relative; z-index: 1; min-width: 0; }
  .mobile-menu__spotlight small, .mobile-menu__spotlight span { display: block; color: rgba(255, 255, 255, 0.76); }
  .mobile-menu__spotlight small { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
  .mobile-menu__spotlight strong { display: block; margin: 5px 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.6rem; line-height: 1; }
  .mobile-menu__spotlight span { max-width: 220px; font-size: 0.65rem; line-height: 1.5; }
  .mobile-menu__spotlight > b { position: relative; z-index: 1; color: var(--white); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.65rem; white-space: nowrap; }

  .mobile-accordions { display: grid; gap: 10px; }
  .mobile-accordion {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(163, 113, 31, 0.2);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(81, 58, 18, 0.07);
  }
  .mobile-accordion[open] { border-color: rgba(163, 113, 31, 0.43); box-shadow: 0 17px 38px rgba(81, 58, 18, 0.12); }
  .mobile-accordion summary {
    min-height: 82px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto 16px;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-accordion summary::-webkit-details-marker { display: none; }
  .mobile-accordion summary > img, .mobile-accordion__number {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    object-fit: contain;
    padding: 5px;
    background: linear-gradient(145deg, var(--white), var(--cream));
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .mobile-accordion__number { color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; font-weight: 700; }
  .mobile-accordion__heading { min-width: 0; }
  .mobile-accordion__heading small, .mobile-accordion__heading strong { display: block; }
  .mobile-accordion__heading small { margin-bottom: 3px; color: var(--muted); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-accordion__heading strong { color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.31rem; line-height: 1; }
  .mobile-accordion__price { color: var(--gold-dark); font-size: 0.68rem; font-weight: 800; white-space: nowrap; }
  .mobile-accordion summary > i {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.25s ease;
  }
  .mobile-accordion[open] summary > i { transform: rotate(225deg) translate(-1px, -1px); }
  .mobile-accordion[open] summary { background: linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(245, 234, 212, 0.7)); }
  .mobile-accordion__content { padding: 4px 14px 16px; border-top: 1px solid var(--line); animation: mobileAccordionIn 0.28s ease both; }
  .mobile-accordion__intro { margin: 13px 0; color: var(--muted); font-size: 0.75rem; line-height: 1.62; }
  .mobile-concept-copy { margin: 13px 0 16px; }
  .mobile-concept-copy p { margin: 0; color: var(--muted); font-size: 0.75rem; line-height: 1.65; }
  .mobile-concept-copy p + p { margin-top: 10px; }
  .mobile-concept-copy strong { color: var(--gold-dark); }
  .mobile-subtitle--large { margin-top: 18px !important; font-size: 1.42rem !important; }
  .mobile-concept-steps { display: grid; gap: 7px; }
  .mobile-concept-steps article { position: relative; min-width: 0; padding: 12px 12px 12px 45px; background: var(--ivory); border: 1px solid var(--line); border-radius: 12px; }
  .mobile-concept-steps article > span { position: absolute; top: 12px; left: 11px; width: 25px; height: 25px; display: grid; place-items: center; color: var(--gold-dark); background: var(--cream); border: 1px solid var(--line-strong); border-radius: 50%; font-family: "Cormorant Garamond", Georgia, serif; font-size: 0.72rem; font-weight: 700; }
  .mobile-concept-steps small, .mobile-concept-steps strong { display: block; }
  .mobile-concept-steps small { color: var(--gold-dark); font-size: 0.48rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
  .mobile-concept-steps strong { margin-top: 2px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.04rem; }
  .mobile-concept-steps p { margin: 4px 0 0; color: var(--muted); font-size: 0.59rem; line-height: 1.45; }

  .mobile-ingredients { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 9px; }
  .mobile-ingredients__column { min-width: 0; display: grid; align-content: start; gap: 9px; }
  .mobile-ingredients article { min-width: 0; padding: 12px 10px 9px; background: linear-gradient(155deg, #fffefb 0%, #fbf4e6 100%); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 8px 20px rgba(81, 58, 18, 0.06); isolation: isolate; }
  .mobile-ingredients article > div { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 5px; }
  .mobile-ingredients article > div strong { min-width: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.12rem; line-height: 1; }
  .mobile-ingredients article > div span { flex: 0 0 auto; padding: 4px 6px; color: var(--gold-dark); background: var(--white); border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.55rem; font-weight: 800; }
  .mobile-ingredients article > small { display: block; margin: 6px 0 9px; color: var(--gold-dark); font-size: 0.55rem; font-weight: 700; }
  .mobile-ingredient-photo {
    width: 100%;
    height: 96px;
    object-fit: contain;
    margin: 11px 0 0;
    padding: 9px 3px 0;
    background: transparent;
    border-top: 1px solid var(--line);
    border-radius: 0 0 11px 11px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 8px 10px rgba(81, 58, 18, 0.13));
  }
  .mobile-accordion[open] .mobile-ingredient-photo { animation: mobileVisualPop 0.42s cubic-bezier(0.2, 0.75, 0.25, 1) both; }
  .mobile-ingredients ul { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
  .mobile-ingredients li { position: relative; padding-left: 9px; color: #625d55; font-size: 0.63rem; line-height: 1.35; overflow-wrap: anywhere; }
  .mobile-ingredients li::before { content: ""; position: absolute; top: 0.48em; left: 0; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
  .mobile-menu__extra { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 11px; padding: 12px; color: #615b50; background: var(--gold-soft); border-radius: 11px; font-size: 0.68rem; }
  .mobile-menu__extra strong { color: var(--gold-dark); font-size: 0.82rem; white-space: nowrap; }

  .mobile-dishes { display: grid; gap: 9px; padding-top: 13px; }
  .mobile-dish { min-width: 0; display: grid; grid-template-columns: 92px minmax(0, 1fr); align-items: center; gap: 11px; padding: 10px; background: var(--ivory); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 7px 18px rgba(81, 58, 18, 0.055); }
  .mobile-dish > img { width: 92px; height: 92px; object-fit: contain; padding: 3px; background: radial-gradient(circle at center, var(--white), var(--cream)); border: 1px solid rgba(163, 113, 31, 0.1); border-radius: 12px; filter: drop-shadow(0 7px 8px rgba(81, 58, 18, 0.1)); }
  .mobile-dish > div { min-width: 0; }
  .mobile-dish header { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
  .mobile-dish header strong { min-width: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.12rem; line-height: 1; }
  .mobile-dish header b { flex: 0 0 auto; color: var(--gold-dark); font-size: 0.74rem; white-space: nowrap; }
  .mobile-dish p { margin: 6px 0 0; color: var(--muted); font-size: 0.59rem; line-height: 1.45; }
  .mobile-dish--text { display: block; padding: 13px; }
  .mobile-dish--text p { font-size: 0.64rem; }
  .mobile-dishes__separator { display: flex; align-items: center; gap: 10px; padding: 5px 0; color: var(--gold-dark); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
  .mobile-dishes__separator::before, .mobile-dishes__separator::after { content: ""; height: 1px; flex: 1; background: var(--line-strong); }

  .mobile-feature-visual {
    position: relative;
    min-height: 190px;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 13px 0 8px;
    padding: 10px;
    background: radial-gradient(circle at 50% 48%, rgba(231, 189, 105, 0.28), rgba(255, 253, 248, 0.92) 58%, var(--cream));
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 24px rgba(81, 58, 18, 0.08);
  }
  .mobile-feature-visual::after { content: ""; position: absolute; right: 12%; bottom: 13px; left: 12%; height: 12px; background: rgba(83, 55, 15, 0.13); border-radius: 50%; filter: blur(10px); }
  .mobile-feature-visual img { position: relative; z-index: 1; width: 100%; height: 180px; object-fit: contain; filter: drop-shadow(0 13px 13px rgba(70, 45, 10, 0.15)); }
  .mobile-feature-visual--fries img { height: 175px; }
  .mobile-accordion[open] .mobile-feature-visual img { animation: mobileVisualPop 0.48s cubic-bezier(0.2, 0.75, 0.25, 1) both; }

  .mobile-choice-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .mobile-choice-list span { padding: 7px 9px; color: #5e594f; background: var(--ivory); border: 1px solid var(--line); border-radius: 999px; font-size: 0.63rem; font-weight: 700; }
  .mobile-offers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 13px; }
  .mobile-offers > div { position: relative; min-width: 0; display: grid; align-content: space-between; min-height: 108px; padding: 12px; background: var(--ivory); border: 1px solid var(--line); border-radius: 13px; }
  .mobile-offers > div.is-featured { color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-color: var(--gold-dark); }
  .mobile-offers span, .mobile-offers strong { display: block; }
  .mobile-offers span { color: inherit; font-size: 0.65rem; line-height: 1.45; }
  .mobile-offers strong { align-self: end; color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; }
  .mobile-offers .is-featured strong { color: var(--white); }
  .mobile-offers small { position: absolute; top: 9px; right: 9px; padding: 3px 5px; color: var(--gold-dark); background: var(--white); border-radius: 999px; font-size: 0.48rem; font-weight: 800; text-transform: uppercase; }

  .mobile-size-prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; padding-top: 12px; }
  .mobile-size-prices > div { min-width: 0; min-height: 92px; display: grid; align-content: center; justify-items: center; gap: 6px; padding: 10px 4px; text-align: center; background: var(--ivory); border: 1px solid var(--line); border-radius: 13px; }
  .mobile-size-prices > div.is-featured { color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-color: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 22px rgba(141, 97, 26, 0.2); }
  .mobile-size-prices span { font-size: 0.66rem; font-weight: 700; }
  .mobile-size-prices small { font-size: 0.45rem; text-transform: uppercase; }
  .mobile-size-prices strong { color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; }
  .mobile-size-prices .is-featured strong { color: var(--white); }

  .mobile-subtitle { margin: 15px 0 8px; color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem; }
  .mobile-subtitle small { display: block; margin-top: 3px; color: var(--muted); font-family: "Manrope", Arial, sans-serif; font-size: 0.48rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .mobile-price-grid > div { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 5px; padding: 9px; background: var(--ivory); border: 1px solid var(--line); border-radius: 9px; }
  .mobile-price-grid span { min-width: 0; color: #555047; font-size: 0.59rem; font-weight: 700; line-height: 1.25; }
  .mobile-price-grid span small { display: block; margin-top: 2px; color: var(--muted); font-size: 0.5rem; font-weight: 500; }
  .mobile-price-grid b { flex: 0 0 auto; color: var(--gold-dark); font-size: 0.65rem; white-space: nowrap; }
  .mobile-price-grid--images > div { display: grid; grid-template-columns: 52px minmax(0, 1fr); align-items: center; gap: 7px; padding: 8px; }
  .mobile-price-grid--images img { grid-row: 1 / 3; width: 52px; height: 68px; object-fit: contain; padding: 3px; background: radial-gradient(circle at center, var(--white), var(--cream)); border-radius: 9px; filter: drop-shadow(0 5px 6px rgba(81, 58, 18, 0.09)); }
  .mobile-price-grid--images span { align-self: end; }
  .mobile-price-grid--images b { align-self: start; }
  .mobile-dishes--nested { padding-top: 0; }
  .mobile-juice-list { position: relative; display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 65px 12px 12px; background: var(--ivory); border: 1px solid var(--line); border-radius: 11px; }
  .mobile-juice-list span { padding: 5px 7px; color: #5f5a51; background: var(--white); border-radius: 999px; font-size: 0.58rem; }
  .mobile-juice-list strong { position: absolute; top: 50%; right: 12px; color: var(--gold-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem; transform: translateY(-50%); }

  .mobile-location { padding-top: 13px; }
  .mobile-location > div:first-child { padding: 14px; background: linear-gradient(135deg, var(--cream), var(--gold-soft)); border-radius: 12px; }
  .mobile-location > div:first-child small, .mobile-location > div:first-child strong { display: block; }
  .mobile-location > div:first-child small { margin-bottom: 5px; color: var(--gold-dark); font-size: 0.56rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
  .mobile-location > div:first-child strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; line-height: 1.15; }
  .mobile-hours { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin: 9px 0; }
  .mobile-hours span { min-width: 0; padding: 10px; color: var(--muted); background: var(--ivory); border: 1px solid var(--line); border-radius: 9px; font-size: 0.55rem; }
  .mobile-hours b { display: block; margin-top: 3px; color: var(--ink); font-size: 0.62rem; }
  .mobile-location > a { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 10px; font-size: 0.68rem; font-weight: 800; }

  .mobile-menu__callout { margin-top: 24px; padding: 23px 20px; text-align: center; background: var(--white); border: 1px solid var(--line-strong); border-radius: 20px; box-shadow: var(--shadow-sm); }
  .mobile-menu__callout span, .mobile-menu__callout strong { display: block; }
  .mobile-menu__callout span { color: var(--gold-dark); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
  .mobile-menu__callout strong { margin: 5px 0 14px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.85rem; }
  .mobile-menu__callout a { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; color: var(--white); background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 11px; font-size: 0.7rem; font-weight: 800; }

  .concept__heading, .creations__heading, .fries-section__heading, .refreshments__heading, .location__heading { margin-bottom: 36px; }
  .concept__heading h2, .creations__heading h2, .fries-section__heading h2, .refreshments__heading h2, .location__heading h2 { margin-top: 11px; font-size: clamp(2.75rem, 14vw, 4rem); }
  .step { padding: 26px 22px; }
  .step__top { margin-bottom: 21px; }
  .builder { margin-top: 20px; }
  .builder-grid { grid-template-columns: 1fr; }
  .builder-card--wide { grid-column: auto; }
  .builder-list--columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .builder-card__title { align-items: flex-start; flex-direction: column; }
  .creations__group + .creations__group { margin-top: 56px; }
  .kumpir-grid { grid-template-columns: 1fr; }
  .kumpir-card__image { height: 220px; }
  .salads__heading { margin-bottom: 36px; }
  .salads__heading h2, .sandwiches__intro h2 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .salad-grid { grid-template-columns: 1fr; }
  .salad-card__content { padding: 20px; }
  .salads__formula { align-items: flex-start; flex-direction: column; gap: 5px; }
  .sandwiches__intro, .sandwiches__menu { padding: 28px 20px; }
  .sandwiches__visual { min-height: 275px; padding: 16px; }
  .sandwiches__visual img { max-height: 245px; }
  .sandwiches__prices { grid-template-columns: 1fr; }
  .fries-showcase__visual { min-height: 285px; }
  .fries-showcase__visual img { max-height: 275px; }
  .fries-showcase__content { padding: 28px 18px; }
  .fries-price { gap: 8px; padding-inline: 14px; }
  .fries-price small { display: none; }
  .drink-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .drink-card__image { height: 150px; }
  .drink-card__image img { height: 120px; max-height: 120px; }
  .bottles-section { margin-top: 52px; padding: 20px 14px; }
  .bottles-section__heading { align-items: start; }
  .bottles-section__heading > strong { display: none; }
  .bottle-grid, .juice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .bottle-card__image { height: 190px; }
  .bottle-card__image img { height: 160px; max-height: 160px; }
  .juice-card__image { height: 220px; }
  .juice-card__image img { height: 188px; max-height: 188px; }
  .refreshments__category-price { font-size: 1.4rem; }
  .dessert-card { display: block; }
  .dessert-card__image { height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .location-wide__map { height: 310px; }
  .location-wide__bar { grid-template-columns: 1fr; }
  .location-wide__address, .location-wide__hours, .location-wide__actions { padding: 23px 20px; }
  .location-wide__address, .location-wide__hours { border-right: 0; border-bottom: 1px solid var(--line); }
  .location-wide__hours { grid-template-columns: 1fr 1fr; }
  .location-wide__actions { grid-column: auto; grid-template-columns: 1fr; border-top: 0; }
  .location-wide__footer { align-items: flex-start; flex-direction: column; padding: 16px 20px; }
  .social-links { width: 100%; }
  .social-links a { flex: 1 1 120px; justify-content: center; }
  .cta { padding: 60px 0; }
  .cta__inner { align-items: stretch; flex-direction: column; }
  .cta__inner > a { width: 100%; }
  .footer__inner { min-height: 145px; justify-content: center; flex-direction: column; gap: 8px; padding: 22px 0; text-align: center; }
  .mobile-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 50; height: 66px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 8px; background: rgba(255, 255, 255, 0.96); border-top: 1px solid var(--line-strong); box-shadow: 0 -8px 30px rgba(81, 58, 18, 0.09); backdrop-filter: blur(15px); }
  .mobile-bar a { display: grid; place-items: center; color: var(--gold-dark); border-radius: 8px; font-size: 0.68rem; font-weight: 700; }
  .mobile-bar__primary { color: var(--white) !important; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
}

@media (max-width: 410px) {
  .hero__card { padding-inline: 14px; }
  .hero h1 { font-size: 3.3rem; }
  .hero__proof span { display: block; font-size: 0.5rem; }
  .mobile-accordion summary { grid-template-columns: 48px minmax(0, 1fr) auto 13px; gap: 8px; padding-inline: 11px; }
  .mobile-accordion summary > img, .mobile-accordion__number { width: 48px; height: 48px; }
  .mobile-accordion__heading strong { font-size: 1.18rem; }
  .mobile-accordion__price { font-size: 0.61rem; }
  .mobile-ingredients { gap: 7px; }
  .mobile-ingredients article { padding-inline: 8px; }
  .builder-list, .builder-list--columns { grid-template-columns: 1fr; }
  .sandwiches__choices { grid-template-columns: 1fr; }
  .location-wide__hours { grid-template-columns: 1fr; }
}

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