:root {
  --header-height: 4.15rem;
  --paper: #fff7ec;
  --paper-deep: #f2c98e;
  --paper-soft: #ffffff;
  --ink: #17120d;
  --ink-soft: #5d5349;
  --ink-inverse: #fffdf8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-dark: #101713;
  --line: rgba(65, 48, 31, 0.12);
  --line-strong: rgba(65, 48, 31, 0.24);
  --accent: #00806f;
  --accent-strong: #00594f;
  --accent-soft: rgba(0, 128, 111, 0.12);
  --accent-faint: rgba(0, 128, 111, 0.06);
  --accent-line: rgba(0, 128, 111, 0.32);
  --accent-shadow: rgba(0, 89, 79, 0.18);
  --accent-shadow-strong: rgba(0, 89, 79, 0.24);
  --forest: #1b6b60;
  --forest-strong: #0a4039;
  --forest-soft: rgba(0, 128, 111, 0.1);
  --bronze-soft: rgba(233, 151, 57, 0.14);
  --bronze-glow: rgba(255, 183, 77, 0.2);
  --sand: #e4bd83;
  --shadow: 0 14px 34px rgba(31, 24, 17, 0.1);
  --radius-xl: 0.9rem;
  --radius-lg: 0.7rem;
  --radius-md: 0.55rem;
  --site-width: min(1180px, calc(100vw - 1rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: var(--font-body), "Segoe UI", sans-serif;
  line-height: 1.55;
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ef 48%, var(--paper) 100%);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading), Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.98;
}

p,
ul,
ol,
dl {
  margin: 0;
}

ul,
ol {
  padding-left: 1.1rem;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

iframe {
  width: 100%;
}

.container {
  width: var(--site-width);
  margin: 0 auto;
  min-width: 0;
}

.full-bleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.site-main {
  flex: 1 0 auto;
  padding-bottom: 3rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #000000;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #11261f;
  color: var(--ink-inverse);
  box-shadow: 0 10px 24px rgba(16, 19, 17, 0.18);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-height);
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: inherit;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 14px 30px var(--accent-shadow-strong);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy small {
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.68);
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.08;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-order-link,
.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.8rem;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 0.72rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.header-order-link {
  display: none;
}

.header-order-link,
.button,
button,
input[type="submit"] {
  color: #f4fbfa;
  background: linear-gradient(180deg, #009982, var(--accent-strong));
  box-shadow: 0 14px 30px var(--accent-shadow);
}

.button.secondary,
button.secondary {
  background: linear-gradient(180deg, #2a635a, #163a34);
}

.button.ghost,
button.ghost,
.header-order-link.ghost {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.menu-toggle {
  min-width: 4.75rem;
  min-height: 2.65rem;
  padding: 0.65rem 0.88rem;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-inverse);
  box-shadow: none;
}

.header-order-link:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

button:disabled,
input[type="submit"]:disabled,
.button[aria-disabled="true"] {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.menu-open {
  overflow: hidden;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  border: 0;
  background: rgba(16, 19, 17, 0.48);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 75;
  width: 100vw;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.2rem 1rem 1.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(180deg, rgba(24, 29, 26, 0.992), rgba(31, 37, 33, 0.99)),
    radial-gradient(circle at top right, rgba(192, 157, 106, 0.14), transparent 38%),
    radial-gradient(circle at bottom left, rgba(76, 107, 99, 0.14), transparent 34%);
  transform: translateY(-2%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-panel-copy {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
}

.nav-panel-copy h2 {
  font-size: 2rem;
}

.nav-list,
.nav-secondary-list {
  display: grid;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-secondary-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.nav-secondary-list li {
  min-width: 0;
}

.nav-list a,
.nav-secondary-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  min-height: 3.9rem;
  padding: 1rem 1.05rem;
  color: rgba(244, 239, 228, 0.86);
  background: rgba(255, 255, 255, 0.04);
}

.nav-secondary-list a {
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.82rem 0.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.nav-list a.is-active,
.nav-secondary-list a.is-active,
.nav-list a:hover,
.nav-secondary-list a:hover {
  border-color: var(--accent-line);
  background: rgba(0, 128, 111, 0.18);
  color: white;
}

.nav-group-label {
  color: rgba(244, 239, 228, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-drawer-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding-top: 0.2rem;
}

.home-shell {
  display: grid;
  gap: 0;
}

.home-hero {
  isolation: isolate;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.home-hero::before {
  inset: auto -10% 10% 46%;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229, 198, 144, 0.16), rgba(229, 198, 144, 0) 72%);
  opacity: 0.68;
}

.home-hero::after {
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(255, 255, 255, 0.06) 61%, transparent 67%),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08) 0 0.08rem, transparent 0.09rem);
  background-size: auto, 1.2rem 1.2rem;
  opacity: 0.14;
  mix-blend-mode: soft-light;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: min(42rem, calc(100svh - var(--header-height) - 2rem));
  background: #101713;
  color: var(--ink-inverse);
}

.hero-stage-media,
.hero-stage-wash {
  position: absolute;
  inset: 0;
}

.hero-stage-media img {
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.home-hero .hero-stage-media img {
  transform: scale(1.03) translate3d(0, 0, 0);
  will-change: transform;
  animation: hero-image-drift 26s ease-in-out infinite alternate;
}

.hero-stage-wash {
  background:
    linear-gradient(90deg, rgba(6, 20, 18, 0.34), rgba(6, 20, 18, 0.08) 58%, rgba(6, 20, 18, 0.01)),
    linear-gradient(180deg, rgba(6, 20, 18, 0.02), rgba(6, 20, 18, 0.12));
}

.home-hero .hero-stage-wash::before,
.home-hero .hero-stage-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.home-hero .hero-stage-wash::before {
  background: linear-gradient(104deg, transparent 0 54%, rgba(246, 239, 226, 0.06) 68%, transparent 82%);
  opacity: 0.42;
}

.home-hero .hero-stage-wash::after {
  inset: auto 8% 10% auto;
  width: min(38vw, 20rem);
  height: min(38vw, 20rem);
  border-radius: 50%;
  border: 1px solid rgba(246, 239, 226, 0.16);
  opacity: 0.35;
}

.hero-stage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 1.4rem;
  min-height: inherit;
  padding: 2.2rem 0 1.5rem;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.home-hero-copy {
  position: relative;
}

.home-hero-copy::after {
  content: "";
  width: min(8rem, 28vw);
  height: 1px;
  margin-top: 0.15rem;
  background: linear-gradient(90deg, rgba(246, 239, 226, 0.82), rgba(246, 239, 226, 0));
}

.hero-copy > *,
.hero-detail > * {
  opacity: 0;
  animation: hero-rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-copy > :nth-child(1) {
  animation-delay: 0.04s;
}

.hero-copy > :nth-child(2) {
  animation-delay: 0.12s;
}

.hero-copy > :nth-child(3) {
  animation-delay: 0.2s;
}

.hero-copy > :nth-child(4) {
  animation-delay: 0.28s;
}

.hero-copy > :nth-child(5) {
  animation-delay: 0.36s;
}

.hero-detail > :nth-child(1) {
  animation-delay: 0.26s;
}

.hero-detail > :nth-child(2) {
  animation-delay: 0.36s;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 15vw, 6.6rem);
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
  max-width: 27rem;
  font-size: clamp(1.1rem, 5vw, 1.5rem);
  color: rgba(255, 253, 248, 0.94);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.hero-lede,
.page-summary,
.meta-copy,
.empty-copy {
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 33rem;
  font-size: 1rem;
  color: rgba(246, 239, 226, 0.76);
}

.hero-whatsapp-link {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 253, 248, 0.92);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.hero-actions,
.cta-stage-actions,
.footer-actions,
.order-action-grid {
  display: grid;
  gap: 0.65rem;
}

.hero-facts {
  display: grid;
  gap: 0.75rem;
}

.hero-facts div {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts dt {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.56);
}

.hero-facts dd {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(244, 239, 228, 0.94);
}

.hero-detail {
  display: grid;
  gap: 1rem;
}

.home-hero-detail {
  align-content: end;
}

.hero-note,
.hero-mini-list,
.notice-band,
.surface-panel,
.page-hero-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(31, 24, 17, 0.08);
  backdrop-filter: none;
}

.hero-note {
  display: grid;
  gap: 0.4rem;
  padding: 1.25rem;
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 248, 239, 0.12);
}

.hero-note-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.62);
}

.hero-mini-list {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
  color: var(--ink-inverse);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(28, 34, 31, 0.38);
}

.home-hero-mini-list {
  position: relative;
  overflow: hidden;
}

.home-hero-mini-list.is-photo-backed {
  min-height: 15rem;
  align-content: end;
  background-position: center;
  background-size: cover;
}

.home-hero-mini-list.is-photo-backed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 22, 20, 0.08), rgba(18, 22, 20, 0.72)),
    linear-gradient(120deg, rgba(229, 198, 144, 0.08), transparent 42%);
}

.home-hero-mini-list.is-photo-backed > * {
  position: relative;
  z-index: 1;
}

.hero-mini-list div {
  display: grid;
  gap: 0.28rem;
}

.hero-mini-list span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.54);
}

.hero-mini-list a,
.hero-mini-list p {
  color: rgba(244, 239, 228, 0.96);
}

.page-stack,
.stacked-sections,
.section-shell,
.surface-panel,
.policy-grid,
.story-grid,
.contact-layout,
.visual-column,
.offer-stack,
.announcement-list,
.offer-grid {
  display: grid;
  gap: 1rem;
}

.page-stack {
  padding-top: 1.25rem;
}

.notice-band {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem;
}

.home-notice-band,
.home-feature-shell,
.home-gatherings-shell,
.home-visit-panel,
.home-cta-stage {
  position: relative;
  overflow: hidden;
}

.home-notice-band > *,
.home-feature-shell > *,
.home-gatherings-shell > *,
.home-visit-panel > *,
.home-cta-stage .cta-stage-inner {
  position: relative;
  z-index: 1;
}

.home-notice-band {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(248, 238, 222, 0.82)),
    radial-gradient(circle at top right, rgba(192, 157, 106, 0.12), transparent 28%);
}

.home-notice-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(192, 157, 106, 0.12) 44%, transparent 56%);
  transform: translateX(-40%);
  animation: light-sweep 12s ease-in-out infinite;
}

.home-feature-shell::before,
.home-gatherings-shell::before,
.home-cta-stage::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-feature-shell::before {
  display: none;
}

.home-gatherings-shell::before {
  inset: auto -14% -6rem 42%;
  height: 16rem;
  background: radial-gradient(circle, rgba(76, 107, 99, 0.14), rgba(76, 107, 99, 0) 72%);
}

.home-feature-shell::after,
.home-gatherings-shell::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 1.05rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 157, 106, 0.42), transparent);
  animation: line-glide 10s linear infinite;
}

.home-feature-shell {
  display: grid;
  gap: 1rem;
  padding: clamp(0.9rem, 2.2vw, 1.4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.surface-panel,
.section-shell {
  padding: 0.85rem;
}

.section-shell {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(65, 48, 31, 0.1);
}

.home-story-section {
  gap: 1.2rem;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
}

.section-heading h2,
.page-hero-copy h1,
.cta-stage-inner h2 {
  font-size: clamp(1.95rem, 7.6vw, 3.8rem);
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.section-heading.compact h2,
.page-note-panel h2,
.surface-panel h2 {
  font-size: clamp(1.6rem, 6vw, 2.4rem);
}

.section-heading-copy,
.page-hero-copy,
.inline-showcase-copy,
.event-copy,
.offer-card-body,
.contact-panel,
.page-note-panel {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  max-width: 100%;
}

.page-summary,
.meta-copy,
.empty-copy,
.list-copy li,
.contact-list a,
.footer-contact-stack a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.page-hero {
  padding-top: 0.25rem;
}

.page-hero-copy h1 {
  max-width: 100%;
  text-wrap: balance;
}

@media (max-width: 719px) {
  .page-hero-copy h1 {
    font-size: clamp(1.5rem, 6.2vw, 1.72rem);
    line-height: 1.12;
    text-wrap: wrap;
  }

  .page-summary {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .section-heading h2,
  .cta-stage-inner h2 {
    font-size: clamp(1.62rem, 6.8vw, 2rem);
    line-height: 1.12;
  }

  .category-rail a,
  .social-row a {
    flex: 1 1 8.5rem;
    justify-content: center;
    text-align: center;
  }
}

.order-page-hero .page-hero-copy {
  max-width: 34rem;
}

.order-page-hero .page-hero-copy h1 {
  font-size: clamp(2rem, 8vw, 2.8rem);
  overflow-wrap: anywhere;
}

.menu-page-hero-grid {
  align-items: start;
}

.menu-hero-actions,
.menu-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.menu-catalog,
.menu-catalog-head,
.menu-results-shell {
  display: grid;
  gap: 1rem;
}

.menu-category-switcher {
  display: grid;
  gap: 0.45rem;
}

.menu-category-select {
  margin: 0;
}

.menu-category-select span {
  display: inline-block;
  margin-bottom: 0.38rem;
}

.menu-category-select select {
  min-height: 3rem;
  padding-right: 2.75rem;
  font-weight: 700;
  color: var(--accent-strong);
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(247, 240, 227, 0.88)),
    radial-gradient(circle at top right, rgba(192, 157, 106, 0.08), transparent 36%);
}

.menu-category-summary {
  font-size: 0.82rem;
}

.menu-category-rail {
  display: none;
  row-gap: 0.7rem;
}

.category-chip {
  min-height: auto;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--accent-strong);
  box-shadow: none;
}

.category-chip small {
  opacity: 0.72;
  font-size: 0.78rem;
}

.category-chip.is-active,
.category-chip:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #ffffff;
}

.category-chip.is-active small,
.category-chip:hover small {
  opacity: 0.88;
}

.menu-results-head {
  display: grid;
  gap: 0.65rem;
}

.menu-results-status {
  min-height: 1.5rem;
}

.menu-load-more {
  min-width: 13rem;
}

.page-hero-grid {
  display: grid;
  gap: 1rem;
}

.page-hero-visual {
  overflow: hidden;
  min-height: 18rem;
}

.page-hero-visual img {
  height: 100%;
  object-fit: cover;
}

.story-grid,
.policy-grid,
.contact-layout,
.split-section {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.category-rail,
.social-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.category-rail a,
.social-row a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  min-width: 0;
  max-width: 100%;
}

.category-rail a,
.social-row a {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.85rem;
  background: #ffffff;
  overflow-wrap: anywhere;
}

.text-link {
  color: var(--accent-strong);
}

.dish-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.dish-panel {
  overflow: hidden;
  display: grid;
  align-self: start;
  border: 1px solid rgba(65, 48, 31, 0.08);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: 0 12px 28px rgba(31, 24, 17, 0.08);
}

.dish-panel.is-muted {
  opacity: 0.72;
}

.dish-media {
  overflow: hidden;
  min-height: 16rem;
  background: var(--accent-faint);
}

.dish-media img,
.offer-card-media img,
.mosaic-grid img,
.page-hero-visual img,
.order-item-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.dish-panel:hover .dish-media img,
.offer-card:hover .offer-card-media img,
.mosaic-grid figure:hover img,
.page-hero-visual:hover img,
.order-item-panel:hover .order-item-media img {
  transform: scale(1.04);
}

.dish-body,
.offer-card-body,
.order-item-body {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1rem;
}

.dish-topline,
.summary-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
}

.price-badge,
.price-inline {
  white-space: nowrap;
  font-weight: 700;
  color: var(--accent-strong);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag,
.status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 0.4rem;
  padding: 0.28rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.tag {
  border: 0;
  background: var(--accent-faint);
}

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

.status-chip.is-live {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.status-chip.is-muted {
  background: rgba(99, 91, 77, 0.12);
  color: var(--ink-soft);
}

.inline-showcase {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.inline-showcase-list {
  display: grid;
  gap: 0.75rem;
}

.mini-panel,
.offer-panel,
.announcement-panel {
  display: grid;
  gap: 0.4rem;
  border: 1px solid rgba(65, 48, 31, 0.1);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: #ffffff;
}

.event-list,
.offer-stack {
  display: grid;
  gap: 0.8rem;
}

.event-panel {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(65, 48, 31, 0.1);
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: #ffffff;
}

.event-time span {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.events-page-hero .page-hero-grid {
  align-items: center;
}

.events-page-hero .page-hero-copy h1 {
  font-size: clamp(2.15rem, 6.4vw, 4.7rem);
}

.events-hero-visual {
  overflow: hidden;
  aspect-ratio: 2.85 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 24, 17, 0.08);
}

.events-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.events-hero-visual:hover img {
  transform: scale(1.03);
}

.events-empty-notice {
  background: #ffffff;
  box-shadow: none;
}

.event-updates-panel,
.event-offers-panel {
  box-shadow: none;
}

.event-offer-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.event-offer-row {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.event-offer-row h3 {
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
}

.event-offer-row p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
}

.event-offer-row a {
  align-self: start;
  font-weight: 700;
  color: var(--accent-strong);
}

.mosaic-grid {
  display: grid;
  gap: 0.85rem;
}

.mosaic-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border-radius: var(--radius-xl);
  background: var(--surface-dark);
  box-shadow: 0 16px 34px rgba(31, 24, 17, 0.12);
}

.home-gallery-mosaic {
  gap: 1rem;
}

.home-gallery-mosaic figure {
  min-height: 14rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.home-gallery-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 19, 17, 0.02), rgba(15, 19, 17, 0.14)),
    linear-gradient(120deg, transparent 0 40%, rgba(229, 198, 144, 0.08) 54%, transparent 66%);
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.home-gallery-mosaic figure:hover::after {
  opacity: 0.45;
}

.mosaic-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(9, 12, 12, 0), rgba(9, 12, 12, 0.76));
  color: rgba(244, 239, 228, 0.92);
  font-size: 0.9rem;
}

.home-gallery-mosaic figcaption {
  padding-top: 1.4rem;
}

.home-visual-column {
  gap: 1.1rem;
}

.home-gallery-panel {
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-gallery-panel .page-hero-copy {
  gap: 0.7rem;
}

.home-gallery-panel .page-hero-copy h2 {
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.home-gallery-visual {
  min-height: 19rem;
}

.home-gallery-mosaic {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.home-visit-panel {
  background: #ffffff;
}

.home-visit-panel .contact-list {
  gap: 0.8rem;
}

.home-visit-panel .contact-list li {
  grid-template-columns: 1fr;
  gap: 0.18rem;
  align-items: start;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.home-visit-panel .contact-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-item-icon {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.95rem;
  background: rgba(69, 111, 101, 0.12);
  color: var(--accent-strong);
}

.contact-item-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.contact-item-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.visit-qr-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(248, 241, 230, 0.78)),
    radial-gradient(circle at top right, rgba(192, 157, 106, 0.12), transparent 34%);
}

.visit-qr-code {
  display: grid;
  place-items: center;
  padding: 0.75rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
}

.visit-qr-code svg {
  display: block;
  width: min(11rem, 100%);
  height: auto;
}

.visit-qr-copy {
  display: grid;
  gap: 0.35rem;
}

.visit-qr-copy span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.visit-qr-copy p {
  color: var(--ink-soft);
}

.visit-qr-copy a {
  font-weight: 700;
  color: var(--accent-strong);
}

.gallery-mosaic figure {
  min-height: 22rem;
}

.contact-list,
.footer-link-list,
.footer-detail-list,
.list-copy {
  display: grid;
  gap: 0.7rem;
}

.contact-list,
.footer-link-list,
.footer-detail-list {
  list-style: none;
  padding: 0;
}

.contact-list li,
.footer-detail-list li {
  display: grid;
  gap: 0.18rem;
}

.contact-stack,
.contact-panel,
.contact-map-panel,
.hours-list,
.map-frame {
  display: grid;
  gap: 0.85rem;
}

.contact-list span,
.footer-detail-list span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hours-list {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.map-frame {
  overflow: hidden;
  min-height: 21rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(233, 224, 207, 0.72);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.cta-stage {
  margin-top: 2rem;
  padding: 2.5rem 0;
  background:
    radial-gradient(circle at top left, rgba(76, 107, 99, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(192, 157, 106, 0.12), transparent 24%),
    linear-gradient(180deg, #24302c, #1b2421);
  color: var(--ink-inverse);
}

.home-cta-stage::before {
  inset: auto auto -10rem -8rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(229, 198, 144, 0.18), rgba(229, 198, 144, 0) 72%);
  filter: blur(18px);
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

.home-cta-stage::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: calc(var(--radius-xl) + 0.5rem);
  pointer-events: none;
}

.cta-stage-inner {
  display: grid;
  gap: 1.2rem;
}

.cta-stage-inner p {
  color: rgba(244, 239, 228, 0.76);
}

.site-footer {
  margin-top: auto;
  padding: 1.6rem 0 1rem;
  color: var(--ink-inverse);
  background: linear-gradient(180deg, #123d36, #0d2925);
}

.footer-shell {
  display: grid;
  gap: 1.1rem;
}

.footer-brand,
.footer-panel {
  display: grid;
  gap: 0.75rem;
}

.footer-brand h2 {
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  line-height: 1.05;
}

.footer-link-grid a,
.footer-contact-stack a,
.footer-bottom p,
.footer-brand p,
.footer-panel p,
.footer-hours-summary strong {
  color: rgba(244, 239, 228, 0.88);
}

.footer-panel h3,
.footer-brand .section-kicker,
.footer-hours-summary span {
  color: rgba(244, 239, 228, 0.58);
}

.footer-utility-grid {
  display: grid;
  gap: 1rem;
}

.footer-panel {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-link-grid,
.footer-hours-summary {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.footer-hours-summary {
  display: grid;
  gap: 0.4rem;
}

.footer-hours-summary li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.footer-contact-stack {
  display: grid;
  gap: 0.42rem;
}

.footer-social-row a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 239, 228, 0.88);
}

.footer-bottom {
  display: grid;
  gap: 0.3rem;
  padding-top: 0.8rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

label {
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

input[type="checkbox"] {
  width: auto;
  margin: 0.15rem 0 0;
}

.checkbox-field {
  display: flex;
  gap: 0.7rem;
  align-items: start;
}

.notice {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.95rem;
}

.notice.is-success {
  background: rgba(69, 111, 101, 0.1);
}

.notice.is-error {
  background: rgba(140, 56, 40, 0.08);
}

.order-layout {
  display: grid;
  gap: 1rem;
}

.order-catalog,
.order-summary,
.subscribe-form {
  gap: 1rem;
}

.order-catalog > .section-heading.compact,
.order-summary > .section-heading.compact {
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.order-catalog > .section-heading.compact h2,
.order-summary > .section-heading.compact h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.order-section {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.order-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.order-section-head {
  display: grid;
  gap: 0.22rem;
}

.order-item-grid {
  display: grid;
  gap: 0.8rem;
}

.order-item-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.9);
}

.order-empty-state {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0 0.25rem;
}

.order-empty-actions {
  display: grid;
  gap: 0.65rem;
}

.reservation-detail-grid {
  display: grid;
  gap: 0.85rem;
}

.reservation-extra-details {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.order-item-media {
  min-height: 12rem;
}

.basket-item {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  border-top: 1px dashed var(--line-strong);
}

.order-action-grid {
  grid-template-columns: 1fr;
}

.page-note-panel,
.contact-panel,
.surface-panel {
  color: var(--ink);
}

.surface-panel .footer-detail-list strong {
  color: var(--ink);
}

.surface-panel .footer-detail-list span {
  color: var(--ink-soft);
}

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

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(-3%, 0, 0) scale(0.98);
  }

  to {
    transform: translate3d(4%, -4%, 0) scale(1.06);
  }
}

@keyframes hero-image-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.1%, -0.8%, 0);
  }
}

@keyframes light-sweep {
  from {
    transform: translateX(-36%);
  }

  to {
    transform: translateX(28%);
  }
}

@keyframes line-glide {
  from {
    opacity: 0.35;
    transform: translateX(-6%);
  }

  50% {
    opacity: 0.8;
  }

  to {
    opacity: 0.35;
    transform: translateX(6%);
  }
}

@keyframes float-card {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-0.5rem);
  }
}

@media (min-width: 720px) {
  :root {
    --site-width: min(1180px, calc(100vw - 3rem));
    --header-height: 4.45rem;
  }

  .header-order-link {
    display: inline-flex;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 0.93rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .brand-copy strong {
    font-size: 1.04rem;
  }

  .header-inner {
    gap: 0.85rem;
    padding: 0.75rem 0;
  }

  .hero-stage-inner {
    padding: 4rem 0 2rem;
  }

  .hero-actions,
  .cta-stage-actions,
  .footer-actions,
  .order-action-grid,
  .order-empty-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-category-rail {
    display: flex;
  }

  .order-category-rail .category-chip {
    width: auto;
  }

  .order-draft-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-notice-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .section-heading,
  .page-hero-grid,
  .story-grid,
  .contact-layout,
  .split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-stack > :first-child {
    grid-column: 1 / -1;
  }

  .section-heading.compact {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .order-catalog > .section-heading.compact,
  .order-summary > .section-heading.compact {
    grid-template-columns: 1fr;
  }

  .dish-grid,
  .offer-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dish-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .mosaic-grid figure:first-child {
    grid-row: span 2;
  }

  .home-gallery-mosaic.is-trio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-gallery-mosaic.is-trio figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 16rem;
  }

  .home-gallery-mosaic figure:nth-child(2) {
    transform: translateY(0.9rem);
  }

  .home-gallery-mosaic figure:nth-child(3) {
    transform: translateY(-0.5rem);
  }

  .inline-showcase {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .inline-showcase-list,
  .offer-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basket-item {
    grid-template-columns: minmax(0, 1fr) 7rem 7.5rem;
    align-items: start;
  }

  .footer-shell {
    gap: 1.5rem;
  }

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

@media (min-width: 980px) {
  :root {
    --header-height: 4.6rem;
  }

  .menu-open {
    overflow: auto;
  }

  .site-header {
    background: #11261f;
  }

  .nav-scrim {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .header-order-link {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    inset: auto;
    width: auto;
    display: block;
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    margin-left: auto;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    transform: none;
  }

  .nav-panel-copy,
  .nav-group-label,
  .nav-secondary-list,
  .nav-drawer-actions {
    display: none;
  }

  .nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
  }

  .nav-list a {
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.55rem 0.82rem;
    color: rgba(246, 239, 226, 0.9);
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.06);
    font-weight: 600;
  }

  .header-utility {
    order: 3;
    margin-left: 0.85rem;
  }

  .nav-list a.is-active,
  .nav-list a:hover {
    border-color: var(--accent-line);
    background: rgba(69, 111, 101, 0.14);
    color: #ffffff;
  }

  .header-inner {
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 0.8rem 0;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 0.95rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .hero-stage-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    padding: 6rem 0 2.8rem;
  }

  .hero-stage {
    min-height: min(46rem, calc(100svh - var(--header-height) - 3rem));
  }

  .home-hero .hero-stage-wash::after {
    inset: auto 6% 10% auto;
    width: 22rem;
    height: 22rem;
  }

  .page-stack {
    gap: 1.4rem;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    align-items: end;
  }

  .menu-page-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: center;
  }

  .contact-layout-balanced {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .contact-stack {
    grid-template-columns: 1fr;
  }

  .contact-stack > :first-child {
    grid-column: auto;
  }

  .contact-map-panel {
    align-content: start;
  }

  .map-frame {
    min-height: 33rem;
  }

  .page-hero-visual {
    min-height: 24rem;
  }

  .menu-page-hero-visual {
    min-height: clamp(20rem, 34vw, 28rem);
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    align-items: end;
  }

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

  .home-visual-column {
    align-self: start;
  }

  .home-gallery-mosaic figure:nth-child(2),
  .home-gallery-mosaic figure:nth-child(4) {
    animation: float-card 7s ease-in-out infinite alternate;
  }

  .home-gallery-mosaic figure:nth-child(3) {
    animation: float-card 6s ease-in-out infinite alternate-reverse;
  }

  .home-gallery-mosaic.is-trio figure:first-child,
  .home-gallery-mosaic.is-trio figure:nth-child(2),
  .home-gallery-mosaic.is-trio figure:nth-child(3) {
    animation: none;
    transform: none;
  }

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

  .dish-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dish-media {
    min-height: 16rem;
  }

  .cta-stage-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.7fr);
    align-items: end;
  }

  .order-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.72fr);
    align-items: start;
  }

  .order-summary {
    position: sticky;
    top: 5.5rem;
  }
}

.tag.compact {
  padding: 0.28rem 0.52rem;
  font-size: 0.72rem;
}

.button[disabled],
.button.disabled {
  opacity: 0.48;
  pointer-events: none;
}

.menu-download-panel,
.order-builder-shell,
.order-picker-panel,
.order-picker-controls,
.order-picker-list,
.order-review-shell,
.order-review-layout,
.order-review-section,
.order-review-list,
.menu-item-list {
  display: grid;
  gap: 1rem;
}

.menu-download-panel {
  align-items: start;
}

.menu-download-grid,
.order-draft-bar-actions,
.order-review-actions {
  display: grid;
  gap: 0.75rem;
}

.menu-search-field,
.order-search-field {
  margin: 0;
}

.menu-search-field span,
.order-search-field span {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.specials-hero-grid {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.specials-hero-actions {
  margin-top: 0.25rem;
}

.specials-hero-visual {
  overflow: hidden;
  min-height: clamp(18rem, 46vw, 29rem);
  background: #ffffff;
}

.specials-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specials-board {
  display: grid;
  gap: 1rem;
  padding: clamp(0.9rem, 2.4vw, 1.35rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specials-board-head {
  gap: 0.7rem;
}

.specials-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.special-row {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.special-row-copy {
  display: grid;
  gap: 0.45rem;
}

.special-row-copy h3 {
  font-size: clamp(1.35rem, 4.6vw, 2rem);
  line-height: 1.05;
}

.special-row-copy p:not(.section-kicker) {
  color: var(--ink-soft);
}

.special-row-action {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.special-row-action strong {
  color: var(--accent-strong);
  font-size: 1.08rem;
}

.menu-item-list {
  grid-template-columns: 1fr;
}

.menu-item-card {
  display: grid;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.menu-item-card-top,
.menu-item-card-bottom,
.order-draft-bar,
.order-picker-title-row,
.order-picker-meta,
.summary-head {
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: start;
}

.menu-item-card-top h3 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.menu-item-card-top p,
.order-picker-copy p {
  color: var(--ink-soft);
}

.menu-item-card-bottom {
  flex-wrap: wrap;
  align-items: center;
}

.order-picker-panel {
  gap: 0.9rem;
}

.order-picker-controls {
  gap: 0.9rem;
}

.order-category-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.order-category-rail .category-chip {
  width: 100%;
  justify-content: space-between;
}

.order-picker-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
}

.order-picker-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.order-picker-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.order-picker-thumb {
  width: 3.4rem;
  height: 3.4rem;
  overflow: hidden;
  border-radius: 0.95rem;
  background: rgba(69, 111, 101, 0.14);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-weight: 700;
}

.order-picker-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-picker-copy {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.order-picker-title-row strong,
.basket-item-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.order-picker-meta,
.basket-item-copy span {
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.order-picker-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 0.84rem;
  line-height: 1.35;
}

.order-picker-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--accent-strong);
}

.order-stepper {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 2.1rem;
  gap: 0.18rem;
  align-items: center;
  justify-content: end;
}

.stepper-button {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.order-draft-bar {
  display: grid;
  gap: 0.8rem;
  position: static;
  z-index: 12;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(35, 65, 59, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(10, 64, 57, 0.96);
  color: var(--ink-inverse);
  box-shadow: 0 18px 40px rgba(24, 20, 15, 0.22);
}

@media (min-width: 720px) {
  .order-draft-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    position: sticky;
    bottom: 0.75rem;
  }
}

.order-draft-bar-actions .button {
  width: 100%;
}

.order-draft-bar-copy {
  display: grid;
  gap: 0.2rem;
}

.order-draft-bar-copy span {
  color: rgba(246, 239, 226, 0.78);
}

.order-review-layout {
  align-items: start;
}

.order-review-section {
  gap: 1rem;
}

.order-review-list {
  gap: 0.75rem;
}

.basket-item.compact {
  gap: 0.8rem;
  padding: 0.85rem 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.basket-item-copy {
  display: grid;
  gap: 0.18rem;
}

.basket-note-field {
  margin: 0;
}

.basket-note-field span {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.order-preview-panel {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.88);
}

.field-grid,
.order-extra-details {
  display: grid;
  gap: 0.85rem;
}

.order-extra-details {
  padding-top: 0.2rem;
}

.order-extra-details summary {
  cursor: pointer;
  color: var(--accent-strong);
  font-weight: 700;
}

.message-preview {
  min-height: 14rem;
  font-family: var(--font-body), "Segoe UI", sans-serif;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .menu-category-switcher {
    display: none;
  }

  .menu-category-rail {
    display: flex;
  }

  .menu-download-grid,
  .order-draft-bar-actions,
  .order-review-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-item-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-review-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .specials-hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .special-row {
    grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.22fr);
    align-items: start;
  }

  .visit-qr-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (min-width: 920px) {
  .order-picker-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-download-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (hover: hover) {
  .home-gallery-mosaic figcaption {
    transform: translateY(0.7rem);
    opacity: 0.86;
    transition:
      transform 0.4s ease,
      opacity 0.35s ease;
  }

  .home-gallery-mosaic figure:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 30px 80px rgba(31, 24, 17, 0.18);
  }

  .home-gallery-mosaic figure:hover figcaption {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-feature-shell .dish-grid {
  grid-template-columns: 1fr;
}

.home-feature-shell .dish-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-feature-shell .dish-media {
  aspect-ratio: 1.45 / 1;
  min-height: 0;
  border-radius: var(--radius-lg);
}

.home-feature-shell .dish-body {
  padding: 0.85rem 0 0;
}

.home-feature-shell .mini-panel {
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 0.85rem 0;
  background: transparent;
}

.home-feature-shell .mini-panel:last-child {
  border-bottom: 0;
}

@media (min-width: 720px) {
  .home-feature-shell .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-offer-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .home-feature-shell .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .hero-title {
    max-width: 18rem;
    font-size: clamp(2.15rem, 10.6vw, 2.65rem);
    line-height: 1.02;
    text-wrap: wrap;
  }

  .hero-subtitle {
    max-width: 21rem;
    font-size: clamp(0.98rem, 3.9vw, 1.08rem);
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .home-hero .hero-stage-wash {
    background:
      linear-gradient(180deg, rgba(6, 20, 18, 0.02), rgba(6, 20, 18, 0.2) 34%, rgba(6, 20, 18, 0.56)),
      linear-gradient(90deg, rgba(6, 20, 18, 0.18), rgba(6, 20, 18, 0.02) 68%);
  }

  .events-page-hero .page-hero-copy h1 {
    max-width: 21.5rem;
    font-size: clamp(1.42rem, 5.6vw, 1.62rem);
    line-height: 1.1;
    text-wrap: wrap;
  }

  .events-page-hero .page-summary {
    max-width: 21rem;
  }

  .event-updates-panel,
  .event-offers-panel,
  .announcement-panel {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

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