:root {
  --bg: #f7ecd8;
  --bg-deep: #f1dfbf;
  --card: rgba(255, 248, 236, 0.78);
  --card-strong: #fff5e8;
  --ink: #2f160d;
  --muted: #704838;
  --accent: #b3321a;
  --accent-dark: #8d2412;
  --accent-soft: #ffd8b6;
  --gold: #e6b85c;
  --line: rgba(86, 33, 19, 0.12);
  --shadow: 0 24px 60px rgba(103, 42, 18, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(230, 184, 92, 0.28), transparent 18%),
    linear-gradient(180deg, #fcf4e8 0%, #f7ecd8 44%, #f2debc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
  pointer-events: none;
  opacity: 0.32;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: clip;
}

.site-header,
.section,
.hero,
.marquee,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(93, 40, 24, 0.08);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(78, 34, 16, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(120, 40, 18, 0.16));
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  font-size: 1rem;
}

.brand__copy span:last-child {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.45rem 0.35rem 0.35rem;
  border: 1px solid rgba(93, 40, 24, 0.1);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.language-switcher__label {
  padding: 0 0.4rem 0 0.6rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher__select {
  min-width: 10rem;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 242, 231, 0.96));
  color: rgba(47, 22, 13, 0.88);
  padding: 0.62rem 2.5rem 0.62rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(88, 37, 20, 0.8) 50%),
    linear-gradient(135deg, rgba(88, 37, 20, 0.8) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 242, 231, 0.96));
  background-position:
    calc(100% - 1.1rem) calc(50% - 0.12rem),
    calc(100% - 0.72rem) calc(50% - 0.12rem),
    0 0;
  background-size:
    0.42rem 0.42rem,
    0.42rem 0.42rem,
    100% 100%;
  background-repeat: no-repeat;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-switcher__select:hover,
.language-switcher__select:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 10px 18px rgba(179, 50, 26, 0.12);
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: rgba(47, 22, 13, 0.82);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8ef;
  padding: 0.75rem 1rem;
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 2.5rem;
}

.hero__copy h1,
.section-heading h2,
.concept__copy h2,
.bonus__panel h2,
.location__copy h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero__copy h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  max-width: 10ch;
}

.hero__lede,
.section-heading p,
.concept__copy p,
.bonus__panel p,
.location__copy p,
.dish-card p,
.highlight-card p,
.stack-card p,
.location__card li,
.hero__facts li,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(180deg, #c94025 0%, var(--accent) 100%);
  color: #fff6eb;
  box-shadow: 0 16px 30px rgba(179, 50, 26, 0.28);
}

.button--ghost {
  border-color: rgba(95, 37, 19, 0.12);
  background: rgba(255, 250, 243, 0.72);
}

.hero__facts {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.hero__facts li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 6px rgba(179, 50, 26, 0.08);
}

.hero__visual {
  position: relative;
}

.hero__badge {
  position: absolute;
  top: 6%;
  right: 0;
  z-index: 1;
  max-width: 14rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 245, 230, 0.92);
  box-shadow: var(--shadow);
  transform: rotate(6deg);
}

.hero__badge span {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero__badge strong {
  display: block;
  margin-top: 0.4rem;
  line-height: 1.35;
}

.hero__image-wrap {
  position: relative;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(145deg, rgba(255, 240, 216, 0.82), rgba(237, 211, 167, 0.95));
  box-shadow: var(--shadow);
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 6% -5% 6%;
  height: 18%;
  background: radial-gradient(circle, rgba(78, 27, 13, 0.18), transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: contain;
  animation: floatUp 5s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(88, 37, 21, 0.08);
  border-bottom: 1px solid rgba(88, 37, 21, 0.08);
  background: rgba(255, 248, 238, 0.48);
}

.marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  animation: marquee 22s linear infinite;
}

.section {
  padding: 6rem 0 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.bonus__panel h2,
.location__copy h2,
.concept-hero-card__body h3,
.concept-frame__copy h3 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.signature-grid,
.highlights-grid {
  display: grid;
  gap: 1.4rem;
}

.signature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.dish-card,
.highlight-card,
.stack-card,
.location__card,
.bonus__panel {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.dish-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.dish-card:hover,
.dish-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(91, 35, 17, 0.2);
}

.dish-card--offset {
  margin-top: 2.5rem;
}

.dish-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.dish-card__body {
  padding: 1.4rem;
}

.dish-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dish-tag,
.location__status {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(179, 50, 26, 0.1);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dish-index {
  font-weight: 800;
  color: rgba(47, 22, 13, 0.45);
}

.dish-card h3,
.highlight-card h3,
.stack-card h3,
.location__card h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.5rem;
}

.highlights-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-card {
  min-height: 13rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.highlight-card:nth-child(2n) {
  background: rgba(255, 241, 221, 0.88);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.concept__heading {
  max-width: 52rem;
}

.concept-gallery-shell {
  position: relative;
  overflow: hidden;
  margin-top: 1.9rem;
  padding: 1rem;
  border: 1px solid rgba(126, 63, 34, 0.08);
  border-radius: calc(var(--radius-lg) + 0.45rem);
  background:
    linear-gradient(180deg, rgba(255, 244, 229, 0.9), rgba(255, 238, 216, 0.84)),
    rgba(255, 246, 233, 0.88);
  box-shadow: 0 20px 50px rgba(91, 35, 17, 0.08);
}

.concept-gallery-shell::before,
.concept-gallery-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(9vw, 6rem);
  z-index: 2;
  pointer-events: none;
}

.concept-gallery-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 244, 229, 1), rgba(255, 244, 229, 0));
}

.concept-gallery-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 244, 229, 1), rgba(255, 244, 229, 0));
}

.concept-gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: conceptGalleryScroll 42s linear infinite;
}

.concept-gallery-shell:hover .concept-gallery-track,
.concept-gallery-shell:focus-within .concept-gallery-track {
  animation-play-state: paused;
}

.concept-slide {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(16rem, 26vw, 23rem);
  margin: 0;
  padding: 0.45rem;
  border: 1px solid rgba(134, 67, 34, 0.09);
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background:
    linear-gradient(180deg, rgba(255, 245, 231, 0.96), rgba(255, 237, 214, 0.92));
  box-shadow: 0 24px 60px rgba(91, 35, 17, 0.1);
}

.concept-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9 / 1.1;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.15rem);
}

.concept-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 16, 11, 0) 48%, rgba(32, 16, 11, 0.74) 100%);
}

.concept-slide figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff8ef;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bonus__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(179, 50, 26, 0.92), rgba(218, 113, 39, 0.92)),
    var(--card);
  color: #fff7ee;
}

.bonus__panel .eyebrow,
.bonus__panel p {
  color: rgba(255, 244, 231, 0.84);
}

.bonus__panel .button--primary {
  background: #fff6ec;
  color: var(--accent-dark);
  box-shadow: none;
}

.location__card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 236, 0.88);
}

.location__card ul {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding-bottom: 4rem;
}

.site-footer__logo {
  width: min(10rem, 40vw);
  filter: drop-shadow(0 16px 30px rgba(91, 35, 17, 0.16));
}

.site-footer a {
  font-weight: 700;
  color: var(--accent);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 20;
  transform: translate(-50%, 140%);
  width: min(28rem, calc(100vw - 2rem));
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(42, 20, 13, 0.92);
  color: #fff7ee;
  text-align: center;
  box-shadow: 0 20px 40px rgba(20, 11, 8, 0.28);
  transition: transform 220ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes conceptGalleryScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 980px) {
  .hero,
  .section--split,
  .signature-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .dish-card--offset {
    margin-top: 0;
  }

  .bonus__panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0.75rem;
    align-items: flex-start;
    border-radius: 28px;
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .language-switcher {
    flex-wrap: wrap;
    max-width: calc(100% - 5.5rem);
  }

  .language-switcher__label {
    width: 100%;
    padding-bottom: 0.2rem;
  }

  .language-switcher__select {
    width: 100%;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-top: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero__copy h1 {
    max-width: 9ch;
  }

  .hero__badge {
    position: static;
    max-width: none;
    margin-bottom: 1rem;
    transform: none;
  }

  .concept-slide {
    flex-basis: min(76vw, 21rem);
  }

  .section {
    padding-top: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .concept-gallery-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
