/* =========================================================
   푸드벨 (FoodBell) 시제·제사음식 출장 서비스 스타일시트
========================================================= */

:root {
  color-scheme: only light; /* 다크모드 기기에서도 브라우저가 색을 자동으로 반전하지 않도록 고정 ("light" 만으로는 안 막힌다) */
  --color-primary: #6E1E2B;
  --color-primary-dark: #4E141E;
  --color-gold: #B08D57;
  --color-ink: #120C06;
  --color-ink-soft: #2A2318;
  --color-cream: #F7F2E9;
  --color-cream-deep: #EDE4D3;
  --color-white: #FFFFFF;
  --color-border: #E2D6BF;
  --color-cream-light: #F5ECDD;
  --color-ink-muted: #6B5E48;
  --color-on-dark-soft: #D6CBB9;
  --color-on-dark-dim: #B0A492;

  --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
  --font-display: 'Gowun Batang', serif;

  /* 글자 크기 램프 — 새 글자는 반드시 이 안에서 고른다.
     시니어 손님이 주로 보는 사이트라 전체적으로 한 단계씩 크게 잡음(2026-09 조정). */
  --text-xs: 0.8125rem;      /* 13px  배지, 저작권 */
  --text-caption: 1rem;      /* 16px  아이브로우, 주석 */
  --text-sm: 1.0625rem;      /* 17px  카드 설명, 버튼 */
  --text-base: 1.125rem;     /* 18px  본문 */
  --text-md: 1.1875rem;      /* 19px  섹션 설명 */
  --text-lg: 1.3125rem;      /* 21px  카드 제목 */
  --text-xl: 1.4375rem;      /* 23px  로고, 헤더 전화 */
  --text-2xl: 1.75rem;       /* 28px  작은 제목 */
  --text-3xl: 2.125rem;      /* 34px  대표 전화번호 */
  --text-section: clamp(1.75rem, 3.6vw, 2.4rem);
  --text-hero: clamp(2.2rem, 5.2vw, 3.4rem);

  /* 글자 굵기 — 세 단계만 쓴다.
     본문·설명 400 / 라벨·버튼·네비 600 / 제목·강조 숫자 700 */
  --weight-normal: 400;
  --weight-medium: 600;
  --weight-bold: 700;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 30px -14px rgba(36, 28, 21, 0.28);
  --shadow-hover: 0 18px 40px -16px rgba(36, 28, 21, 0.38);

  /* 간격 스케일 — 배치 간격(gap·margin·섹션 여백)은 이 안에서만 고른다.
     부품 안쪽 여백은 토큰 대신 4의 배수 숫자를 그대로 쓴다. */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 100px;

  --container-w: 1140px;
}

/* 삼성 인터넷 대비: 사이트가 다크모드를 스스로 처리한다고 보이면 강제 반전을 건너뛴다(추정).
   다크모드에서도 같은 밝은 화면을 쓴다고 한 번 더 적어 둔다. */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: only light; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-normal);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.7;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

strong, b { font-weight: var(--weight-medium); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: var(--weight-bold); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.accent { color: var(--color-gold); }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }
.btn--outline-light {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-light:hover { background: var(--color-white); color: var(--color-primary); }
.btn--ghost {
  background: var(--color-cream-deep);
  color: var(--color-ink);
  padding: 12px 20px;
  font-size: var(--text-sm);
}
.btn--ghost:hover { background: var(--color-gold); color: var(--color-white); }

.header__cta {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
}

/* ---------- 헤더 ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  margin-right: auto;
}
.logo__mark { color: var(--color-gold); display: inline-flex; }
.logo__text { color: var(--color-primary); }
.logo__text em { font-style: normal; color: inherit; font-weight: inherit; }

.nav__list {
  display: flex;
  gap: var(--space-6);
}
.nav__link {
  font-weight: var(--weight-medium);
  font-size: var(--text-base);
  color: var(--color-ink);
  position: relative;
  padding: 8px 4px;
}
.nav__link:hover { color: var(--color-primary); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-1);
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  margin-left: var(--space-1);
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 22% 38%;
  transform: scale(1.02);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(26,14,12,0.5) 0%, rgba(26,14,12,0.4) 34%, rgba(26,14,12,0.24) 66%, rgba(26,14,12,0.14) 100%),
    linear-gradient(180deg, rgba(26,14,12,0.05) 0%, rgba(26,14,12,0) 40%, rgba(26,14,12,0.28) 100%);
}

.hero__inner { position: relative; text-align: left; max-width: 680px; margin: 0; padding: 104px var(--space-6); }
.eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-cream-deep);
  color: var(--color-primary-dark);
  font-weight: var(--weight-medium);
  font-size: var(--text-caption);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}
.eyebrow--light {
  background: rgba(0,0,0,0.48);
  color: var(--color-cream-light);
  border: 1px solid rgba(240,223,192,0.55);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero__title {
  font-size: var(--text-hero);
  line-height: 1.4;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 4px 20px rgba(0,0,0,0.6);
}
.hero__desc {
  margin: var(--space-6) 0 0;
  color: var(--color-cream-light);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium); /* 사진 위라 본문보다 한 단계 굵게 */
  max-width: 520px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 3px 14px rgba(0,0,0,0.6);
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: flex-start;
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

/* ---------- 공통 섹션 타이틀 ---------- */
.section-eyebrow {
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  font-size: var(--text-caption);
  margin-bottom: var(--space-2);
}
.section-title {
  font-size: var(--text-section);
  margin-bottom: var(--space-4);
  color: var(--color-ink);
}
.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: var(--space-3);
  background: var(--color-gold);
}
.section-desc {
  color: var(--color-ink-soft);
  max-width: 620px;
  font-size: var(--text-md);
  font-weight: var(--weight-normal);
}

/* ---------- 소개 ---------- */
.about { padding: var(--space-24) 0; }
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.feature-card {
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-cream-deep);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.feature-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); font-weight: var(--weight-bold); }
.feature-card p { color: var(--color-ink-soft); font-size: var(--text-base); font-weight: var(--weight-normal); }

/* ---------- 서비스 / 메뉴 ---------- */
.menu { padding: var(--space-24) 0; background: var(--color-cream-deep); }
.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-12) 0 var(--space-8);
}
.menu__tab {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: var(--color-cream-light);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  color: var(--color-ink);
  transition: all 0.2s ease;
}
.menu__tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.menu__tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}
.menu-card {
  background: var(--color-cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.menu-card__thumb {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  font: inherit;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-cream-deep);
  cursor: zoom-in;
}
.menu-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card__thumb img { transform: scale(1.06); }
.menu-card__body { padding: 16px 20px 24px; }
.menu-card__body h3 { font-size: var(--text-lg); font-weight: var(--weight-bold); margin-bottom: var(--space-2); }
.menu-card__body p { color: var(--color-ink-soft); font-size: var(--text-sm); font-weight: var(--weight-normal); min-height: 2.6em; }

.menu__note {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  color: var(--color-ink-soft);
  text-align: center;
}

/* 카테고리별 사진 앨범 (사진 더보기) */
.album-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin: var(--space-8) auto 0;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: var(--color-cream-light);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.album-toggle::after {
  content: "▾";
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.album-toggle:hover,
.album-toggle.is-open { border-color: var(--color-primary); color: var(--color-primary); }
.album-toggle.is-open::after { transform: rotate(180deg); }
.album-toggle__count {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 999px;
  padding: 4px 8px;
}

.album {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  animation: fadeIn 0.35s ease;
}
.album[hidden] { display: none; }
.album__item {
  border: none;
  padding: 0;
  background: var(--color-cream-deep);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  position: relative;
}
.album__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.album__item:hover img { transform: scale(1.07); }
.album__item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(36,28,21,0.08);
  border-radius: var(--radius-sm);
}

/* ---------- 갤러리 ---------- */
.gallery { padding: var(--space-24) 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}
@media (max-width: 1180px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery__item {
  border: none;
  padding: 0;
  background: var(--color-cream-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(36,28,21,0.08);
  border-radius: var(--radius-md);
}

/* ---------- 라이트박스 ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 14, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  font-size: 1.1rem;
}
.lightbox__close:hover { background: rgba(255,255,255,0.24); }
.lightbox__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.lightbox__count {
  color: rgba(255,255,255,0.95);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
}
.lightbox__count:empty { display: none; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.24); }
.lightbox__nav[hidden] { display: none; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ---------- 문의 ---------- */
.contact { padding: var(--space-24) 0; background: var(--color-cream-deep); }
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: var(--space-12);
  align-items: center;
}
.contact__list { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-6); }
.contact__list li { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact__icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.contact__list strong { display: block; font-size: var(--text-base); font-weight: var(--weight-medium); margin-bottom: var(--space-1); color: var(--color-ink); }
.contact__list p { color: var(--color-ink-soft); font-size: var(--text-base); font-weight: var(--weight-normal); }
.contact__list a:hover { color: var(--color-primary); }

/* 전화 상담 카드 — 문의 폼이 있던 자리를 채우는 큰 전화 안내 */
.contact__cta {
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-12) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}
.contact__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.contact__cta-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink-soft);
}
.contact__cta-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
.contact__cta-number:hover { color: var(--color-primary-dark); }
.contact__cta-hours {
  font-size: var(--text-caption);
  font-weight: var(--weight-normal);
  color: var(--color-ink-muted);
  margin-bottom: var(--space-4);
}

/* ---------- 푸터 ---------- */
.footer {
  background: var(--color-ink);
  color: var(--color-cream-deep);
  padding: var(--space-12) 0 var(--space-8);
}
.footer__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.footer__brand { display: flex; align-items: center; gap: var(--space-2); font-weight: var(--weight-bold); font-size: var(--text-2xl); color: var(--color-white); }
.footer__brand .logo__text,
.footer__brand .logo__text em { color: inherit; }
.footer__biz { font-size: var(--text-caption); font-weight: var(--weight-normal); line-height: 1.9; color: var(--color-on-dark-soft); }
.footer__copy { font-size: var(--text-xs); font-weight: var(--weight-normal); color: var(--color-on-dark-dim); margin-top: var(--space-2); }

/* ---------- 맨 위로 ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 90;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--color-primary-dark); }

/* =========================================================
   반응형
========================================================= */
@media (max-width: 960px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .album { grid-template-columns: repeat(3, 1fr); }
  .lg-only { display: none; }
}

@media (max-width: 720px) {
  .header__cta { display: none; }
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; }
  .nav__list { flex-direction: column; padding: var(--space-6); gap: var(--space-1); }
  .nav__link { display: block; padding: var(--space-3) 0; border-bottom: 1px solid var(--color-cream-deep); }
  .nav__toggle { display: flex; }

  .hero { min-height: 560px; }
  .hero__inner { padding: var(--space-16) var(--space-6); }
  .about, .menu, .gallery, .contact { padding: var(--space-16) 0; }
  .features { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .album { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
  .menu__tab { padding: 12px 16px; font-size: var(--text-caption); }
  .album-toggle { width: 100%; }

  /* 문의: 좁은 화면에서는 안내글 위 · 전화 카드 아래로 쌓음 */
  .contact__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .contact__cta { padding: var(--space-8) var(--space-6); }

  /* 서비스 카드: 좁은 화면에서는 한 줄에 하나, 사진 왼쪽 · 설명 오른쪽 (설명 글이 길쭉하게 눌리지 않도록) */
  .menu__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .menu-card { display: flex; align-items: stretch; }
  .menu-card:hover { transform: none; box-shadow: none; }
  .menu-card__thumb {
    flex: 0 0 40%;
    aspect-ratio: auto;
    align-self: stretch;
    position: relative;      /* 사진이 카드 높이(설명 글 기준)에 딱 맞게 채워지도록 */
  }
  .menu-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .menu-card__body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .menu-card__body h3 { font-size: var(--text-base); margin-bottom: var(--space-1); }
  .menu-card__body p { min-height: 0; font-size: var(--text-sm); line-height: 1.55; }
  .lightbox { padding: var(--space-6); }
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}
