/* ============================================
   Fűzfa vendéglő – Brand Styles
   ============================================ */

:root {
  --green-primary: #3a6b35;
  --green-dark: #2d5429;
  --green-light: #4a7d44;
  --grey-text: #6b6b6b;
  --grey-light: #9a9a9a;
  --white: #ffffff;
  --off-white: #fafafa;
  --shadow: 0 2px 20px rgba(58, 107, 53, 0.08);
  --shadow-lg: 0 8px 40px rgba(58, 107, 53, 0.12);
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  height: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--grey-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.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;
}

main {
  flex: 1;
}

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

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-dark);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.script-title {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: var(--green-primary);
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}

/* ---- Decorative Divider ---- */

.divider-line {
  display: block;
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--green-primary);
}

.divider-diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.5rem auto 2.5rem;
  max-width: 400px;
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--green-primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--green-primary);
  border: 1px solid var(--green-primary);
}

.btn--outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================
   Header / Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(58, 107, 53, 0.08);
  box-shadow: var(--shadow);
}

.header:not(.header--scrolled):not(.header--menu-open) .nav__link:not(.nav__link--cta) {
  color: var(--white);
}

.header:not(.header--scrolled):not(.header--menu-open) .nav__link::after {
  background: var(--white);
}

.header:not(.header--scrolled):not(.header--menu-open) .nav__toggle span {
  background: var(--white);
}

.header--solid,
.page-inner .header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(58, 107, 53, 0.08);
  box-shadow: var(--shadow);
}

.nav__link--active {
  font-weight: 600;
}

.nav__link--active::after {
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.nav__logo-img {
  display: block;
  width: auto;
  height: clamp(2.35rem, 6vw, 2.85rem);
}

.nav__logo-img--green {
  display: none;
}

.header--scrolled .nav__logo-img--light,
.header--solid .nav__logo-img--light,
.header--menu-open .nav__logo-img--light,
.page-inner .header .nav__logo-img--light {
  display: none;
}

.header--scrolled .nav__logo-img--green,
.header--solid .nav__logo-img--green,
.header--menu-open .nav__logo-img--green,
.page-inner .header .nav__logo-img--green {
  display: block;
}

.nav__logo-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--green-primary);
}

.nav__logo-serif {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--grey-light);
  letter-spacing: 0.15em;
  text-transform: lowercase;
  margin-top: -2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-primary);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-primary);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.5rem 1.2rem;
  background: var(--green-primary);
  color: var(--white) !important;
  border-radius: 2px;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--green-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-primary);
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 55, 28, 0.78) 0%,
    rgba(30, 55, 28, 0.58) 45%,
    rgba(30, 55, 28, 0.82) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.hero__logo {
  margin: 0;
  line-height: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__logo-img {
  width: min(48vw, 520px);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.hero__location {
  margin: 0;
  max-width: 24rem;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
}

.hero__nav-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: -0.35rem;
}

.hero__nav-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__nav-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.hero__nav-app-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 4.5vw, 2.15rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.98);
  max-width: 28rem;
  margin: -0.15rem 0 -0.35rem;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.hero__btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero__call-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.hero__call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  background: var(--white);
  color: var(--green-primary);
}

.hero__call-btn--solid {
  background: var(--green-primary);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero__call-btn--solid:hover {
  background: var(--green-dark);
  color: var(--white);
}

.hero__call-btn-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

/* ============================================
   Sections
   ============================================ */

.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: var(--off-white);
}

/* ============================================
   About
   ============================================ */

.about__text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about__text p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about__text strong {
  color: var(--green-primary);
  font-weight: 600;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: 920px;
  margin: 2.75rem auto 0;
  padding: 0;
  list-style: none;
}

.about__feature {
  text-align: center;
}

.about__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(58, 107, 53, 0.08);
  color: var(--green-primary);
}

.about__feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.about__feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 0.4rem;
}

.about__feature-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--grey-text);
}

/* ============================================
   Menu
   ============================================ */

.section.menu .container {
  max-width: 1180px;
}

.menu__board {
  width: 100%;
  margin: 0 auto;
}

.menu__sheet {
  background: var(--white);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(58, 107, 53, 0.08),
    0 16px 48px rgba(30, 55, 28, 0.08);
  border: 1px solid rgba(58, 107, 53, 0.12);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.menu__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.menu__intro > .menu__allergens,
.menu__intro > .menu__notices,
.menu__intro > .menu__delivery {
  margin-bottom: 0;
}

.menu__categories {
  column-count: 2;
  column-gap: 1.35rem;
}

.menu-category--card {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1.15rem;
  width: 100%;
  padding: 1.1rem 1.15rem 0.95rem;
  background-color: #faf9f6;
  border: 1px solid rgba(58, 107, 53, 0.08);
  border-radius: 10px;
}

.menu-category--card:last-child {
  margin-bottom: 0;
}

.menu-category__header {
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(58, 107, 53, 0.1);
}

.menu-category__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0;
}

.menu-list {
  list-style: none;
  overflow: visible;
}

.menu-item {
  padding: 0.55rem 0;
  transition: background var(--transition);
  border-radius: 4px;
}

.menu-item + .menu-item {
  border-top: none;
}

.menu-item--standard .menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  width: 100%;
}

.menu-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  flex-shrink: 0;
  max-width: 72%;
}

.menu-item__name {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.4rem;
  row-gap: 0.1rem;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: #3d3d3d;
  line-height: 1.4;
}

.menu-item__name-text {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.menu-item__serving {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__leader {
  flex: 1 1 auto;
  min-width: 1.25rem;
  margin: 0 0.15rem;
  border-bottom: 1px dotted rgba(58, 107, 53, 0.35);
  transform: translateY(-0.2em);
}

.menu-item__price {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.menu-item--standard:hover {
  background: rgba(58, 107, 53, 0.04);
  margin: 0 -0.35rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.menu-item--has-allergens {
  position: relative;
}

.menu-item__allergens {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  cursor: help;
}

.menu-item__tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%) translateY(4px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
  max-width: min(280px, 70vw);
  padding: 0.65rem 0.75rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.menu-item__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--green-dark);
}

.menu-item__tooltip-line {
  display: block;
}

.menu-item__tooltip-line strong {
  font-weight: 600;
  margin-right: 0.15rem;
}

.menu-item__allergens:hover .menu-item__tooltip,
.menu-item__allergens:focus-within .menu-item__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-list--dual-price .menu-item--columns,
.menu-list--dual-price .menu-item--dual-price {
  display: grid;
  grid-template-columns: 1fr 6.5rem 6.5rem;
  align-items: center;
  gap: 0.5rem 0.85rem;
  padding: 0.5rem 0;
  border-top: 1px dotted rgba(58, 107, 53, 0.12);
}

.menu-list--dual-price .menu-item--columns {
  border-top: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(58, 107, 53, 0.15);
}

.menu-list--dual-price .menu-item--dual-price .menu-item__name {
  font-size: 1.05rem;
}

.menu-list--dual-price .menu-item--dual-price .menu-item__price {
  font-size: 1rem;
  justify-self: center;
  text-align: center;
}

.menu-item__col-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
  text-align: center;
}

.menu-allergen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--green-primary);
  background: rgba(58, 107, 53, 0.07);
  border: 1px solid rgba(58, 107, 53, 0.16);
  border-radius: 50%;
}

.menu-list--dual-price-single-col .menu-item--columns,
.menu-list--dual-price-single-col .menu-item--dual-price {
  grid-template-columns: 1fr 6.5rem;
}

.menu__allergens,
.menu__notices {
  display: block;
  width: 100%;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px dashed rgba(58, 107, 53, 0.2);
  box-shadow: 0 0 0 1px rgba(58, 107, 53, 0.04);
}

.menu__notices-list {
  display: block;
  list-style: none;
  font-size: 0.95rem;
  color: var(--grey-text);
  text-align: center;
}

.menu__notices-list li {
  display: block;
  line-height: 1.45;
}

.menu__notices-list li + li {
  margin-top: 0.35rem;
}

.menu__delivery {
  display: block;
  width: 100%;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem 1.35rem;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px dashed rgba(58, 107, 53, 0.2);
  box-shadow: 0 0 0 1px rgba(58, 107, 53, 0.04);
  scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

.menu__delivery-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.menu__delivery-fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0.9rem;
  text-align: center;
  background: rgba(58, 107, 53, 0.04);
  border-radius: 8px;
}

.menu__delivery-fact dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
}

.menu__delivery-fact dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-dark);
}

.menu__delivery-note {
  margin: 0 0 1.1rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
  color: var(--grey-text);
  background: rgba(58, 107, 53, 0.03);
  border-left: 3px solid rgba(58, 107, 53, 0.28);
  border-radius: 0 6px 6px 0;
}

.menu__delivery-zones {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(58, 107, 53, 0.1);
}

.menu__delivery-zones-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--green-primary);
}

.menu__delivery-zone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu__delivery-zone-list li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: rgba(58, 107, 53, 0.035);
  border: 1px solid rgba(58, 107, 53, 0.08);
  border-radius: 8px;
}

.menu__delivery-zone-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-primary);
  border-radius: 999px;
}

.menu__delivery-zone-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu__delivery-zone-body span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--green-dark);
}

.menu__delivery-zone-body small {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--grey-text);
}

.menu__allergens-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--green-primary);
  margin: 0 0 0.85rem;
}

.menu__allergens-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.5rem 1rem;
  list-style: none;
  font-size: 0.95rem;
  color: var(--grey-text);
}

.menu__allergens-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.35;
}

.menu__allergens-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
}

.menu__allergens-list span {
  flex: 1;
  min-width: 0;
}

.menu-category {
  min-width: 0;
  overflow: visible;
}

.menu__board--mobile {
  display: none;
}

.menu__sheet--mobile {
  padding: 1.15rem 1rem 1.25rem;
}

.menu-mobile__intro {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.menu-mobile__intro > .menu-mobile__allergens,
.menu-mobile__intro > .menu-mobile__notices,
.menu-mobile__intro > .menu-mobile__delivery {
  margin-bottom: 0;
}

/* Mobile étlap */
.menu-mobile__allergens,
.menu-mobile__notices,
.menu-mobile__delivery {
  display: block;
  width: 100%;
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px dashed rgba(58, 107, 53, 0.18);
  box-shadow: 0 0 0 1px rgba(58, 107, 53, 0.04);
}

.menu-mobile__delivery {
  scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

.menu-mobile__notices-list {
  display: block;
  list-style: none;
  font-size: 0.88rem;
  color: var(--grey-text);
  text-align: center;
}

.menu-mobile__notices-list li {
  display: block;
  line-height: 1.45;
}

.menu-mobile__notices-list li + li {
  margin-top: 0.3rem;
}

.menu-mobile__delivery-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
}

.menu-mobile__delivery-fact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.8rem;
  text-align: center;
  background: rgba(58, 107, 53, 0.04);
  border-radius: 8px;
}

.menu-mobile__delivery-fact dt {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
}

.menu-mobile__delivery-fact dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-dark);
}

.menu-mobile__delivery-note {
  margin: 0 0 0.9rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.45;
  text-align: left;
  color: var(--grey-text);
  background: rgba(58, 107, 53, 0.03);
  border-left: 3px solid rgba(58, 107, 53, 0.28);
  border-radius: 0 6px 6px 0;
}

.menu-mobile__delivery-zones {
  margin-top: 0.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(58, 107, 53, 0.1);
}

.menu-mobile__delivery-zones-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--green-primary);
}

.menu-mobile__delivery-zone-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-mobile__delivery-zone-list li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem 0.85rem;
  background: rgba(58, 107, 53, 0.035);
  border: 1px solid rgba(58, 107, 53, 0.08);
  border-radius: 8px;
}

.menu-mobile__delivery-zone-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.18rem 0.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-primary);
  border-radius: 999px;
}

.menu-mobile__delivery-zone-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-mobile__delivery-zone-body span {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--green-dark);
}

.menu-mobile__delivery-zone-body small {
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--grey-text);
}

.menu-mobile__allergens-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--green-primary);
  margin: 0 0 0.65rem;
}

.menu-mobile__allergens-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.65rem;
  list-style: none;
  font-size: 0.82rem;
  color: var(--grey-text);
}

.menu-mobile__allergens-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.35;
}

.menu-mobile__allergens-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
}

.menu-mobile__allergens-list span {
  flex: 1;
  min-width: 0;
}

.menu-mobile__categories {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.menu-mobile-category--card {
  padding: 1rem 0.85rem 0.85rem;
  background-color: #faf9f6;
  border: 1px solid rgba(58, 107, 53, 0.1);
  border-radius: 10px;
}

.menu-mobile-category__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.3;
  padding-bottom: 0.55rem;
  margin: 0 0 0.5rem;
  border-bottom: 2px solid rgba(58, 107, 53, 0.12);
}

.menu-mobile-list {
  list-style: none;
}

.menu-mobile-item {
  padding: 0.75rem 0;
  border-bottom: 1px dotted rgba(58, 107, 53, 0.14);
}

.menu-mobile-item--has-allergens .menu-mobile-item__content {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-mobile-item:last-child {
  border-bottom: none;
}

.menu-mobile-item__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 0.65rem;
  row-gap: 0.2rem;
}

.menu-mobile-item__label {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.4;
}

.menu-mobile-item__label .menu-mobile-item__name-text,
.menu-mobile-item__label .menu-item__serving {
  display: inline;
}

.menu-mobile-item__label .menu-item__serving {
  margin-left: 0.2rem;
}

.menu-mobile-item__name {
  flex: 1;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.4rem;
  row-gap: 0.12rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.4;
}

.menu-mobile-item__name-text {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.menu-mobile-item__price {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: baseline;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-dark);
  text-align: right;
  white-space: nowrap;
}

.menu-mobile-item__allergens {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.45rem;
  cursor: help;
}

.menu-mobile-item__allergen-entry {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-mobile-item__allergen-name {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.4;
  color: #4a4a4a;
}

.menu-mobile-item.is-allergens-open .menu-mobile-item__label,
.menu-mobile-item.is-allergens-open .menu-mobile-item__name,
.menu-mobile-item.is-allergens-open .menu-mobile-item__price {
  font-weight: 700;
  color: var(--green-dark);
}

.menu-mobile-item.is-allergens-open .menu-mobile-item__allergens {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.menu-mobile-item.is-allergens-open .menu-mobile-item__allergen-name {
  display: inline;
}

.menu-mobile-item--dual {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
}

.menu-mobile-item--dual .menu-mobile-item__name {
  flex: 1 1 8rem;
  min-width: 0;
  margin: 0;
}

.menu-mobile-item--dual .menu-mobile-item__price-row {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.menu-mobile-item__price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.menu-mobile-price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--green-dark);
}

.menu-mobile-price__value {
  font-weight: 600;
  white-space: nowrap;
}

.menu-mobile-price__sep {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  opacity: 0.65;
}

.menu-mobile-price__label {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  white-space: nowrap;
}

/* ============================================
   Weekly Menu
   ============================================ */

.weekly-menu .container {
  max-width: 1280px;
}

.weekly-menu__notice {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.15rem 1.35rem;
  background: rgba(58, 107, 53, 0.06);
  border: 1px solid rgba(58, 107, 53, 0.12);
  border-radius: 8px;
}

.weekly-menu__notice p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.55;
}

.weekly-menu__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.weekly-menu__phone-icon {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

.weekly-menu__subscribe {
  margin-bottom: 1.25rem;
}

.weekly-menu__subscribe > p {
  margin-bottom: 1rem;
}

.weekly-menu__subscribe-form {
  display: grid;
  gap: 0.85rem;
}

.weekly-menu__subscribe-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.weekly-menu__subscribe-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.weekly-menu__subscribe-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(58, 107, 53, 0.28);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark, #2a2a2a);
  background: #fff;
}

.weekly-menu__subscribe-input:focus {
  outline: 2px solid rgba(58, 107, 53, 0.35);
  outline-offset: 1px;
  border-color: var(--green-primary);
}

.weekly-menu__subscribe-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.weekly-menu__subscribe-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.weekly-menu__subscribe-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--grey-text);
  cursor: pointer;
}

.weekly-menu__subscribe-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.weekly-menu__subscribe-consent a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.weekly-menu__subscribe-status {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.45;
  color: var(--grey-text);
}

.weekly-menu__subscribe-status--ok {
  color: var(--green-dark);
}

.weekly-menu__subscribe-status--err {
  color: #8b2e2e;
}

.weekly-menu__board {
  max-width: 100%;
  margin: 0 auto;
}

.weekly-menu__tabs {
  position: relative;
}

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

.weekly-menu__tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.weekly-menu__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: var(--white);
  border: 1px solid rgba(58, 107, 53, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.weekly-menu__tab:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow);
}

.weekly-menu__tab--active {
  color: var(--white);
  background: var(--green-primary);
  border-color: var(--green-primary);
  box-shadow: var(--shadow);
}

.weekly-menu__panel {
  display: none;
  animation: weekly-menu-fade 0.35s ease;
}

.weekly-menu__panel--active {
  display: block;
}

@keyframes weekly-menu-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.weekly-menu__panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}

.weekly-menu__range {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green-dark);
}

.weekly-menu__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(58, 107, 53, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.weekly-menu__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.weekly-menu__col-day {
  width: 10rem;
}

.weekly-menu__col-soup,
.weekly-menu__col-main {
  width: auto;
}

.weekly-menu__col-menu-price {
  width: 13.5rem;
}

.weekly-menu__col-single-price {
  width: 10rem;
}

.weekly-menu__menu-block {
  margin-bottom: 2.25rem;
}

.weekly-menu__menu-block:last-child {
  margin-bottom: 0;
}

.weekly-menu__menu-title {
  margin-bottom: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  font-style: italic;
  color: var(--green-dark);
}

.weekly-menu__menu-title--a {
  color: var(--green-primary);
}

.weekly-menu__menu-title--b {
  color: var(--green-primary);
}

.weekly-menu__menu-title--c {
  color: var(--green-dark);
}

.weekly-menu__menu-note {
  margin-bottom: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--grey-text);
}

.weekly-menu__col-type {
  width: 11rem;
}

.weekly-menu__col-name {
  width: auto;
}

.weekly-menu__col-price {
  width: 8.5rem;
}

.weekly-menu__table thead th {
  padding: 1.05rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: var(--white);
  background: var(--green-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  vertical-align: middle;
}

.weekly-menu__th-price {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  text-align: center;
}

.weekly-menu__table thead tr:first-child th[colspan] {
  text-align: center;
}

.weekly-menu__table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.weekly-menu__table tbody tr {
  border-bottom: 1px solid rgba(58, 107, 53, 0.1);
}

.weekly-menu__table tbody tr:last-child {
  border-bottom: none;
}

.weekly-menu__table tbody tr:nth-child(even) {
  background: rgba(58, 107, 53, 0.03);
}

.weekly-menu__table tbody tr:hover {
  background: rgba(58, 107, 53, 0.06);
}

.weekly-menu__row--today {
  background: rgba(58, 107, 53, 0.1) !important;
  box-shadow: inset 3px 0 0 var(--green-primary);
}

.weekly-menu__table th[scope='row'],
.weekly-menu__table td {
  padding: 1.1rem 1.2rem;
  vertical-align: middle;
  text-align: left;
  line-height: 1.5;
}

.weekly-menu__table td:not(:last-child),
.weekly-menu__table th[scope='row'] {
  border-right: 1px solid rgba(58, 107, 53, 0.08);
}

.weekly-menu__cell-day {
  white-space: nowrap;
}

.weekly-menu__day-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-primary);
}

.weekly-menu__day-date {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
}

.weekly-menu__cell-soup,
.weekly-menu__cell-main,
.weekly-menu__table--extras td {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  color: var(--green-dark);
}

.weekly-menu__cell-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-primary);
  white-space: nowrap;
}

.weekly-menu__table--a .weekly-menu__cell-price {
  text-align: center;
}

.weekly-menu__table--fixed .weekly-menu__cell-price {
  text-align: left;
}

.weekly-menu__table--fixed tbody td:last-child {
  font-weight: 600;
}

.weekly-menu__desktop {
  display: block;
}

.weekly-menu__mobile {
  display: none;
}

.weekly-menu__day-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.weekly-menu__day-card,
.weekly-menu__menu-card {
  border: 1px solid rgba(58, 107, 53, 0.14);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.weekly-menu__day-card--today {
  border-color: rgba(58, 107, 53, 0.35);
  box-shadow: inset 3px 0 0 var(--green-primary), var(--shadow);
}

.weekly-menu__day-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(58, 107, 53, 0.06);
  border-bottom: 1px solid rgba(58, 107, 53, 0.1);
}

.weekly-menu__day-card-head .weekly-menu__day-name {
  margin: 0;
}

.weekly-menu__day-card-head .weekly-menu__day-date {
  margin: 0;
  font-size: 1.05rem;
  white-space: nowrap;
}

.weekly-menu__day-card-body,
.weekly-menu__menu-card-body {
  margin: 0;
  padding: 0.35rem 0;
}

.weekly-menu__day-field {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(58, 107, 53, 0.08);
}

.weekly-menu__day-field:last-child {
  border-bottom: none;
}

.weekly-menu__day-field dt {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-primary);
}

.weekly-menu__day-field dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--green-dark);
  word-break: break-word;
}

.weekly-menu__day-field--price dd {
  font-weight: 600;
  color: var(--green-primary);
}

@media (max-width: 768px) {
  .weekly-menu .container {
    padding-inline: 1rem;
  }

  .weekly-menu__notice {
    margin-bottom: 1.35rem;
    padding: 1rem;
  }

  .weekly-menu__notice p {
    font-size: 1.05rem;
  }

  .weekly-menu__phone {
    font-size: 1rem;
  }

  .weekly-menu__tab-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    overflow: visible;
  }

  .weekly-menu__tab {
    flex: 0 1 auto;
    min-width: 0;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

  .weekly-menu__panel-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .weekly-menu__range {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .weekly-menu__menu-block {
    margin-bottom: 1.5rem;
  }

  .weekly-menu__menu-title {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
  }

  .weekly-menu__desktop {
    display: none;
  }

  .weekly-menu__mobile {
    display: block;
  }
}

/* ============================================
   Gallery
   ============================================ */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__grid--preview {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

.gallery__grid--full {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.gallery__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery__view-all {
  min-width: 260px;
  text-align: center;
}

.gallery__intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

.gallery__back {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.section.gallery--page {
  padding-top: calc(var(--header-height) + 3rem);
}

.section.legal-page {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 5rem;
  background: var(--off-white);
}

.legal-page__container {
  max-width: 1040px;
}

.legal-page__header {
  margin-bottom: 2.5rem;
}

.legal-page__subtitle {
  margin: -1.25rem auto 0;
  max-width: 28rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--grey-light);
}

.legal-page__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-page__main {
  min-width: 0;
}

.legal-page__back {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 0.5rem;
}

/* ---- Table of contents ---- */

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  background: var(--white);
  border: 1px solid rgba(58, 107, 53, 0.1);
  border-radius: 8px;
  padding: 1.15rem 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.legal-toc__label {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
}

.legal-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-height: calc(100dvh - var(--header-height) - 4rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(58, 107, 53, 0.25) transparent;
}

.legal-toc__link {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--grey-text);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.legal-toc__link:hover {
  background: rgba(58, 107, 53, 0.06);
  color: var(--green-dark);
}

.legal-toc__num {
  flex-shrink: 0;
  width: 1.25rem;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--green-primary);
  text-align: center;
}

.legal-toc__text {
  flex: 1;
}

/* ---- Intro ---- */

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-intro {
  background: var(--white);
  border: 1px dashed rgba(58, 107, 53, 0.28);
  border-radius: 8px;
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.legal-intro__lead {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--grey-text);
}

.legal-intro__meta {
  margin: 0;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  background: rgba(58, 107, 53, 0.08);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.legal-intro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legal-badge--muted {
  background: rgba(107, 107, 107, 0.08);
  color: var(--grey-text);
}

.legal-card--highlight {
  border-color: rgba(58, 107, 53, 0.18);
  background: linear-gradient(180deg, rgba(58, 107, 53, 0.04) 0%, var(--white) 100%);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 1rem;
  border: 1px solid rgba(58, 107, 53, 0.1);
  border-radius: 6px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  line-height: 1.45;
}

.legal-table th,
.legal-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(58, 107, 53, 0.08);
}

.legal-table th {
  background: rgba(58, 107, 53, 0.06);
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0.75rem 0 0;
}

.footer__legal-sep {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

/* ---- Section cards ---- */

.legal-card {
  background: var(--white);
  border: 1px solid rgba(58, 107, 53, 0.08);
  border-radius: 8px;
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.legal-card--provider {
  border-color: rgba(58, 107, 53, 0.16);
  background: linear-gradient(180deg, rgba(58, 107, 53, 0.03) 0%, var(--white) 100%);
}

.legal-card--closing {
  border-color: rgba(58, 107, 53, 0.14);
}

.legal-card__title {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(58, 107, 53, 0.1);
}

.legal-card__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50%;
  line-height: 1;
}

.legal-card__title-text {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.35;
  padding-top: 0.2rem;
}

.legal-card__body {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--grey-text);
}

.legal-card__body > :last-child {
  margin-bottom: 0;
}

.legal-card__body p {
  margin: 0 0 0.85rem;
}

.legal-card__body p strong:first-child {
  color: var(--green-primary);
  font-weight: 600;
}

.legal-card__body a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-card__body .CookieDeclaration,
.legal-card__body #CookieDeclaration {
  margin-top: 1rem;
}

.legal-card__body a:hover {
  color: var(--green-dark);
}

/* ---- Lists ---- */

.legal-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  border-bottom: 1px solid rgba(58, 107, 53, 0.06);
}

.legal-list li:last-child {
  border-bottom: none;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 5px;
  height: 5px;
  background: var(--green-primary);
  transform: rotate(45deg);
}

.legal-list li strong {
  color: var(--green-dark);
}

.legal-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.legal-hours li {
  padding: 0.4rem 0.85rem;
  background: rgba(58, 107, 53, 0.06);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-dark);
}

/* ---- Provider table ---- */

.legal-provider {
  margin: 0;
}

.legal-provider__row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 10rem) 1fr;
  gap: 0.5rem 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(58, 107, 53, 0.08);
}

.legal-provider__row:last-child {
  border-bottom: none;
}

.legal-provider__row dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-primary);
}

.legal-provider__row dd {
  margin: 0;
  font-size: 0.93rem;
  color: var(--green-dark);
}

.legal-provider__row dd a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Contact highlight ---- */

.legal-contact-box {
  margin: 0.25rem 0 1rem;
  padding: 1rem 1.15rem;
  background: rgba(58, 107, 53, 0.04);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 6px 6px 0;
}

.legal-contact-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.legal-contact-box__list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.legal-contact-box__list li span {
  font-weight: 600;
  color: var(--green-dark);
}

.legal-contact-box__list a {
  color: var(--green-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0.75rem 0 0;
}

.footer__legal-sep {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.footer__legal-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal-link:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .legal-page__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-toc {
    position: static;
  }

  .menu__delivery-facts {
    grid-template-columns: 1fr;
  }

  .menu__delivery-zone-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .legal-card {
    padding: 1.15rem 1.15rem 1.25rem;
  }

  .legal-provider__row,
  .legal-contact-box__list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .legal-card__title-text {
    font-size: 1.1rem;
  }
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery__item:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Gallery Lightbox Viewer */
.gallery-viewer[hidden] {
  display: none;
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-viewer-open {
  overflow: hidden;
}

.gallery-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 18, 0.92);
  cursor: pointer;
}

.gallery-viewer__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3.5rem;
}

.gallery-viewer__figure {
  margin: 0;
  width: 100%;
  text-align: center;
}

.gallery-viewer__image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.gallery-viewer__caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.gallery-viewer__counter {
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.gallery-viewer__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.gallery-viewer__close:hover {
  opacity: 1;
}

.gallery-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), opacity var(--transition);
}

.gallery-viewer__nav svg {
  width: 22px;
  height: 22px;
}

.gallery-viewer__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-viewer__nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.gallery-viewer__nav--prev {
  left: 0;
}

.gallery-viewer__nav--next {
  right: 0;
}

/* ============================================
   Contact
   ============================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--green-primary);
  margin-top: 2px;
}

.contact__icon svg {
  width: 100%;
  height: 100%;
}

.contact__item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact__item p,
.contact__item a {
  font-size: 0.9rem;
  color: var(--grey-text);
}

.contact__map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  margin-bottom: 0.35rem;
}

.footer__logo-img {
  display: block;
  width: auto;
  height: clamp(2.35rem, 6vw, 2.85rem);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
}

.footer__credit {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
    height: 100dvh;
    padding: 0 1.25rem;
  }

  .hero__logo-img {
    width: min(72vw, 280px);
  }

  .hero__call-btn {
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }

  .nav__toggle {
    display: flex;
  }

  .header:not(.header--scrolled) .nav__menu .nav__link:not(.nav__link--cta) {
    color: var(--green-primary);
  }

  .header:not(.header--scrolled) .nav__menu .nav__link::after {
    background: var(--green-primary);
  }

  .header.header--menu-open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(58, 107, 53, 0.08);
    box-shadow: var(--shadow);
  }

  .header.header--menu-open .nav__toggle span {
    background: var(--green-primary);
  }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .menu__categories {
    column-count: 1;
    column-gap: 0;
  }

  .menu__board--desktop {
    display: none;
  }

  .menu__board--mobile {
    display: block;
  }

  .section.menu .container {
    max-width: 100%;
  }

  .menu__sheet {
    padding: 1.15rem 0.85rem;
    border-radius: 10px;
  }

  .menu-item__head {
    max-width: 100%;
  }

  .menu-item__leader {
    display: none;
  }

  .menu-item--standard .menu-item__row {
    flex-wrap: wrap;
    row-gap: 0.15rem;
  }

  .menu-item--standard .menu-item__price {
    margin-left: auto;
  }

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

  .menu-list--dual-price .menu-item--columns,
  .menu-list--dual-price .menu-item--dual-price {
    grid-template-columns: minmax(0, 1fr) minmax(4.5rem, auto) minmax(4.5rem, auto);
    gap: 0.35rem 0.5rem;
  }

  .menu-list--dual-price-single-col .menu-item--columns,
  .menu-list--dual-price-single-col .menu-item--dual-price {
    grid-template-columns: minmax(0, 1fr) minmax(4.5rem, auto);
  }

  .menu-item__name {
    font-size: 1.05rem;
  }

  .menu-item__price {
    font-size: 1rem;
    white-space: normal;
  }

  .menu__notices-list {
    font-size: 0.92rem;
  }

  .gallery__grid,
  .gallery__grid--preview,
  .gallery__grid--full {
    grid-template-columns: 1fr;
  }

  .gallery-viewer__panel {
    padding: 0 2.5rem;
  }

  .gallery-viewer__nav {
    width: 38px;
    height: 38px;
  }

  .gallery-viewer__close {
    top: -2rem;
    right: -0.5rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__features {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    margin-top: 2rem;
  }

}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .section.gallery--page {
    padding-top: calc(var(--header-height) + 2rem);
  }
}
