/* =========================================================
   Yuzu Dining — Global Styles
   Design ref: Millie-inspired (near-black ink, white canvas,
   subtle #F7F7F7 surfaces, Pretendard Variable) + yuzu accent
   ========================================================= */

:root {
  --ink: #242424;
  --canvas: #FFFFFF;
  --surface: #F7F7F7;
  --muted: #6F6F6F;
  --divider: #ECECEC;
  --yuzu: #E8B923;        /* yuzu yellow accent */
  --yuzu-deep: #C9971A;
  --leaf: #4F6B3E;        /* yuzu leaf green */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", "Apple SD Gothic Neo",
          "Noto Sans KR", sans-serif;
  --header-h: 72px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--surface { background: var(--surface); }
.section-title { font-size: 34px; margin-bottom: 12px; }
.section-lead { color: var(--muted); max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 22px; height: 48px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; }
.btn--yuzu { background: var(--yuzu); color: #fff; }
.btn--yuzu:hover { background: var(--yuzu-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: rgba(255,255,255,.92); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }

/* =========================
   Header
   ========================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--divider);
}
.site-header__inner {
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 54px; width: auto; display: block; }
.brand--footer .brand__logo { height: 72px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 14px; color: var(--ink); background: transparent; border: 0; cursor: pointer; font-family: inherit;
}
.nav__link:hover, .nav__link[aria-current="page"] { background: var(--surface); }
.nav__link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav__item.is-open > .nav__link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--divider); border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,.10); padding: 8px; display: none;
}
/* 버튼과 드롭다운 사이 8px 틈을 투명 브리지로 메워 hover 가 끊기지 않게 */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__item.is-open > .dropdown { display: block; }
.dropdown a {
  display: flex; flex-direction: column; padding: 10px 12px; border-radius: 6px; font-size: 14px; font-weight: 500;
}
.dropdown a span { font-size: 12px; color: var(--muted); font-weight: 400; }
.dropdown a:hover { background: var(--surface); }

.header-cta { display: flex; align-items: center; gap: 8px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .brand__logo { height: 46px; }
  .nav, .header-cta .btn--ghost { display: none; }
  .hamburger { display: flex; }
  .site-header.menu-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    /* header's backdrop-filter makes it the containing block for fixed children,
       so anchor to the header box instead of the viewport */
    position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100vh - var(--header-h)); height: calc(100svh - var(--header-h));
    background: #fff; padding: 12px 20px 40px; overflow-y: auto; border-top: 1px solid var(--divider);
  }
  .site-header.menu-open .nav__link { width: 100%; justify-content: space-between; padding: 14px 8px; border-radius: 8px; font-size: 16px; }
  .site-header.menu-open .dropdown {
    position: static; box-shadow: none; border: 0; padding: 0 0 8px 12px; min-width: 0;
  }
  .site-header.menu-open .nav__mobile-cta { display: block; margin-top: 16px; }
  .nav__mobile-cta { display: none; }
  .nav__mobile-cta .btn { width: 100%; }
}
@media (min-width: 901px) { .nav__mobile-cta { display: none; } }

/* =========================
   Hero
   ========================= */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h)); min-height: calc(100svh - var(--header-h));
  display: flex; align-items: flex-end; color: #fff; overflow: hidden;
  border-radius: 0;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.72) 100%);
}
.hero__content { position: relative; z-index: 1; padding: 80px 0 64px; width: 100%; }
.hero__title { font-size: clamp(40px, 7vw, 84px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; max-width: 12ch; }
.hero__title em { font-style: normal; color: var(--yuzu); }
.hero__sub { margin-top: 20px; font-size: 18px; max-width: 520px; color: rgba(255,255,255,.86); }
.hero__actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__venues { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13px; color: rgba(255,255,255,.75); }
.hero__venues li::before { content: "·"; margin-right: 8px; color: var(--yuzu); }
.hero__venues li:first-child::before { display: none; }

/* =========================
   Intro / Philosophy
   ========================= */
.intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.intro__text .section-title { font-size: 36px; }
.intro__text p + p { margin-top: 14px; }
.intro__text p { color: #3f3f3f; }

/* =========================
   70/30 concept
   ========================= */
.ratio { display: grid; grid-template-columns: 7fr 3fr; gap: 12px; margin-top: 40px; }
.ratio__card {
  border-radius: var(--radius-lg); padding: 32px; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between;
}
.ratio__card--core { background: var(--ink); color: #fff; }
.ratio__card--local { background: var(--yuzu); color: var(--ink); }
.ratio__num { font-size: clamp(56px, 8vw, 96px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.ratio__card h3 { font-size: 20px; margin-top: 16px; }
.ratio__card p { margin-top: 8px; font-size: 14px; opacity: .85; }
.ratio__card--core p { color: rgba(255,255,255,.8); }
.ratio__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.ratio__tags li { font-size: 12px; padding: 4px 10px; border-radius: var(--radius-pill); border: 1px solid currentColor; opacity: .85; }
.ratio__bar { display: flex; height: 8px; border-radius: var(--radius-pill); overflow: hidden; margin-top: 24px; }
.ratio__bar span:first-child { flex: 7; background: var(--ink); }
.ratio__bar span:last-child { flex: 3; background: var(--yuzu); }
.ratio__legend { display: flex; gap: 20px; margin-top: 10px; font-size: 13px; color: var(--muted); }
.ratio__legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 6px; vertical-align: -1px; }

/* =========================
   Signature dishes
   ========================= */
.dishes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.dish { background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--divider); }
.dish img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.dish__body { padding: 16px 18px 20px; }
.dish h3 { font-size: 17px; }
.dish p { font-size: 13px; color: var(--muted); margin-top: 6px; }
.dish__price { margin-top: 12px; font-weight: 700; font-size: 15px; }

/* =========================
   Timeline
   ========================= */
.timeline { position: relative; margin-top: 48px; }
.timeline::before {
  content: ""; position: absolute; left: 0; right: 0; top: 14px; height: 1px; background: var(--divider);
}
.timeline__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.timeline__item { position: relative; padding-top: 36px; }
.timeline__item::before {
  content: ""; position: absolute; top: 8px; left: 0; width: 13px; height: 13px; border-radius: 50%;
  background: #fff; border: 3px solid var(--ink);
}
.timeline__item.is-now::before { background: var(--yuzu); border-color: var(--yuzu); box-shadow: 0 0 0 5px rgba(232,185,35,.25); }
.timeline__year { font-size: 13px; font-weight: 700; color: var(--yuzu-deep); letter-spacing: .06em; }
.timeline__item h3 { font-size: 18px; margin-top: 4px; }
.timeline__item p { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* =========================
   Venues
   ========================= */
.venues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.venue {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; color: #fff; display: flex; align-items: flex-end;
}
.venue img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.venue:hover img { transform: scale(1.05); }
.venue::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.75) 100%); }
.venue__body { position: relative; z-index: 1; padding: 22px; width: 100%; }
.venue__body h3 { font-size: 22px; }
.venue__body p { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 4px; }
.venue__local { display: block; margin-top: 8px; font-size: 13px; color: var(--yuzu); }
.venue--cta { background: var(--ink); aspect-ratio: 4/3; }
.venue--cta::after { display: none; }
.venue--cta .venue__body { height: 100%; display: flex; flex-direction: column; justify-content: center; text-align: center; align-items: center; gap: 14px; }

/* =========================
   Booking CTA
   ========================= */
.booking {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 56px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.booking h2 { font-size: 34px; }
.booking p { color: rgba(255,255,255,.75); margin-top: 12px; }
.booking__form { display: grid; gap: 10px; }
.booking__form select, .booking__form input {
  width: 100%; height: 50px; padding: 0 16px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 15px; appearance: none; -webkit-appearance: none;
}
.booking__form select option { color: var(--ink); }
.booking__form input::placeholder { color: rgba(255,255,255,.5); }
.booking__form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking__form .btn { width: 100%; height: 50px; }
.booking__note { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* =========================
   Footer
   ========================= */
.site-footer { background: var(--surface); border-top: 1px solid var(--divider); padding: 56px 0 28px; margin-top: 72px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 320px; }
.footer__col h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer__col li + li { margin-top: 8px; }
.footer__col a { font-size: 14px; }
.footer__col a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer__contact li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--yuzu-deep); }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--muted);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .dishes { grid-template-columns: repeat(2, 1fr); }
  .timeline__list { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .hero { min-height: 88svh; }
  .hero__content { padding: 60px 0 40px; }
  .hero__sub { font-size: 16px; }
  .intro { grid-template-columns: 1fr; gap: 40px; }
  .intro__media img { aspect-ratio: 4/3; }
  .intro__text .section-title { font-size: 28px; }
  .ratio { grid-template-columns: 1fr; }
  .ratio__card { min-height: 0; padding: 24px; }
  .timeline::before { top: 0; bottom: 0; left: 6px; right: auto; width: 1px; height: auto; }
  .timeline__list { grid-template-columns: 1fr; gap: 28px; }
  .timeline__item { padding: 0 0 0 32px; }
  .timeline__item::before { top: 6px; }
  .venues { grid-template-columns: 1fr 1fr; gap: 12px; }
  .venue__body { padding: 16px; }
  .venue__body h3 { font-size: 18px; }
  .booking { grid-template-columns: 1fr; padding: 36px 24px; }
  .booking h2 { font-size: 26px; }
  .booking__form .row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .dishes { grid-template-columns: 1fr; }
  .venues { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* =========================================================
   Sub-pages — shared components
   (menu / contact / venue pages)
   ========================================================= */

/* Page hero (compact) */
.page-hero {
  position: relative; min-height: 420px; display: flex; align-items: flex-end; color: #fff; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.7) 100%); }
.page-hero__content { position: relative; z-index: 1; padding: 64px 0 48px; width: 100%; }
.page-hero__title { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.page-hero__sub { margin-top: 16px; font-size: 17px; max-width: 560px; color: rgba(255,255,255,.85); }
.page-hero__meta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.page-hero__actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
}
.chip svg { width: 14px; height: 14px; }
.chip--yuzu { background: var(--yuzu); color: var(--ink); border-color: var(--yuzu); }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); padding: 16px 0 0; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: #CFCFCF; }
.crumbs li[aria-current] { color: var(--ink); font-weight: 500; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; padding: 2px 8px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; line-height: 1.6; vertical-align: middle;
}
.badge--core { background: var(--ink); color: #fff; }
.badge--local { background: var(--yuzu); color: var(--ink); }
.badge--veg { background: #E8F0E3; color: var(--leaf); }
.badge--spicy { background: #FBE9E4; color: #B5432A; }
.badge--gf { background: #EEF1F7; color: #3F4E73; }
.badge--new { background: #FFF4D6; color: var(--ink); }

/* Sticky in-page nav (menu categories) */
.subnav { position: sticky; top: var(--header-h); z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--divider); }
.subnav__inner { display: flex; gap: 6px; overflow-x: auto; padding: 10px 20px; scrollbar-width: none; -ms-overflow-style: none; }
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav a { flex: none; padding: 8px 14px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500; color: var(--muted); white-space: nowrap; }
.subnav a:hover { background: var(--surface); color: var(--ink); }
.subnav a.is-active { background: var(--ink); color: #fff; }

/* Menu lists */
.menu-section { padding: 56px 0; scroll-margin-top: calc(var(--header-h) + 60px); }
.menu-section + .menu-section { border-top: 1px solid var(--divider); }
.menu-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.menu-section__head h2 { font-size: 28px; }
.menu-section__head p { color: var(--muted); margin-top: 6px; max-width: 520px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding: 14px 0; border-bottom: 1px dashed var(--divider); }
.menu-item__name { font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-item__price { font-weight: 700; font-size: 15px; white-space: nowrap; }
.menu-item__desc { grid-column: 1 / -1; font-size: 13.5px; color: var(--muted); }
.menu-item--featured { grid-column: 1 / -1; grid-template-columns: 200px 1fr auto; align-items: center; gap: 0 24px; padding: 16px 0; }
.menu-item--featured img { width: 200px; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); grid-row: span 2; }
.menu-item--featured .menu-item__desc { grid-column: 2 / -1; }
.menu-legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--muted); margin-top: 8px; }
.menu-legend span { display: inline-flex; align-items: center; gap: 6px; }

/* Tabs (venue local chapters) */
.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin: 28px 0 24px; }
.tab {
  padding: 10px 18px; border-radius: var(--radius-pill); border: 1px solid var(--divider); background: #fff; color: var(--ink);
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.tab:hover { border-color: var(--ink); }
.tab[aria-selected="true"] { background: var(--yuzu); border-color: var(--yuzu); color: #fff; font-weight: 700; }
.tab-panel[hidden] { display: none; }
.tab-panel__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.tab-panel__head h3 { font-size: 22px; }
.tab-panel__head p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.tab-panel__head a { font-size: 14px; font-weight: 600; }
.tab-panel__head a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Info cards / at-a-glance */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.info-card { background: #fff; border: 1px solid var(--divider); border-radius: var(--radius-md); padding: 22px; }
.info-card__label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.info-card__label svg { width: 15px; height: 15px; color: var(--yuzu-deep); }
.info-card p, .info-card li { font-size: 14.5px; line-height: 1.6; }
.info-card li + li { margin-top: 4px; }
.info-card a:hover { text-decoration: underline; text-underline-offset: 3px; }
.info-card .hours { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-card .hours td { padding: 3px 0; vertical-align: top; }
.info-card .hours td:last-child { text-align: right; white-space: nowrap; }
.info-card .hours tr.is-today td { font-weight: 700; }
.info-card .hours td.closed { color: var(--muted); }

/* Split layout (text + media) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split .section-title { font-size: 32px; }
.split p + p { margin-top: 14px; }
.split p { color: #3f3f3f; }
.split--reverse > :first-child { order: 2; }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.feature { background: var(--surface); border-radius: var(--radius-md); padding: 22px; }
.feature h3 { font-size: 16px; }
.feature p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; margin-top: 32px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.gallery > :first-child { grid-column: span 2; grid-row: span 2; }

/* Map */
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--divider); background: var(--surface); aspect-ratio: 16/8; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map--tall { aspect-ratio: auto; height: 100%; min-height: 360px; }

/* Venue switcher (other venues) */
.venue-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.venue-strip a { display: block; padding: 18px; border-radius: var(--radius-md); border: 1px solid var(--divider); background: #fff; transition: border-color .15s, transform .15s; }
.venue-strip a:hover { border-color: var(--ink); transform: translateY(-2px); }
.venue-strip strong { display: block; font-size: 16px; }
.venue-strip span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Forms (light) */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; height: 50px; padding: 0 16px; border-radius: var(--radius-md); border: 1px solid #D6D6D6; background: #fff;
  color: var(--ink); font: inherit; font-size: 15px; appearance: none; -webkit-appearance: none; transition: border-color .15s, box-shadow .15s;
}
.field textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23242424' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 14px; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(232,185,35,.35); }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form__consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--ink); }
.form__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.form__hint { font-size: 12.5px; color: var(--muted); }
.form-card { background: #fff; border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 36px; }
.form-card h2 { font-size: 26px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 24px; }
.notice { display: none; padding: 16px 18px; border-radius: var(--radius-md); font-size: 14px; }
.notice.is-visible { display: block; }
.notice--ok { background: #E8F0E3; color: var(--leaf); border: 1px solid #C9DBBE; }
.notice strong { display: block; font-size: 15px; margin-bottom: 2px; }

/* Contact layout */
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: start; }
.contact-aside { display: grid; gap: 16px; position: sticky; top: calc(var(--header-h) + 24px); }
.contact-card { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; }
.contact-card h3 { font-size: 18px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--muted); }
.contact-card ul { display: grid; gap: 10px; margin-top: 14px; }
.contact-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.contact-card li svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--yuzu-deep); }
.contact-card li a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-card--dark { background: var(--ink); color: #fff; }
.contact-card--dark p { color: rgba(255,255,255,.75); }
.contact-card--dark li svg { color: var(--yuzu); }
.contact-card .big { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; display: block; margin-top: 8px; }

/* Venue directory */
.directory { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 32px; }
.directory__item { background: #fff; border: 1px solid var(--divider); border-radius: var(--radius-md); padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.directory__item h3 { font-size: 17px; }
.directory__item p { font-size: 13px; color: var(--muted); }
.directory__item a.link { font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; margin-top: auto; padding-top: 10px; }
.directory__item a.link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq { max-width: 760px; margin: 32px auto 0; border-top: 1px solid var(--divider); }
.faq details { border-bottom: 1px solid var(--divider); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-size: 16px; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 300; color: var(--muted); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--muted); font-size: 14.5px; max-width: 640px; }

/* Bottom CTA band */
.cta-band { background: var(--yuzu); color: var(--ink); border-radius: var(--radius-lg); padding: 44px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: 28px; }
.cta-band p { margin-top: 6px; color: rgba(36,36,36,.75); }
.cta-band .btn--primary { flex: none; }

/* Responsive for sub-pages */
@media (max-width: 1024px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .directory { grid-template-columns: repeat(3, 1fr); }
  .venue-strip { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse > :first-child { order: 0; }
  .features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 340px; }
  .page-hero__content { padding: 48px 0 36px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item--featured { grid-template-columns: 1fr auto; }
  .menu-item--featured img { width: 100%; grid-row: auto; grid-column: 1 / -1; margin-bottom: 10px; }
  .menu-item--featured .menu-item__desc { grid-column: 1 / -1; }
  .menu-section { padding: 40px 0; }
  .menu-section__head h2 { font-size: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .directory { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery > :first-child { grid-column: span 2; grid-row: span 1; }
  .cta-band { padding: 32px 24px; }
  .cta-band .btn { width: 100%; }
  .page-hero__actions .btn { width: 100%; }
}
@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .directory { grid-template-columns: 1fr; }
  .venue-strip { grid-template-columns: 1fr; }
}

/* =========================
   Menu boards (image menus) + lightbox
   ========================= */
.boards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.board { margin: 0; }
.board a { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--divider); background: #fff; }
.board img { width: 100%; height: auto; display: block; transition: transform .35s ease; }
.board a:hover img { transform: scale(1.015); }
.board__zoom {
  position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(36,36,36,.85); color: #fff; display: grid; place-items: center; opacity: 0; transition: opacity .2s;
}
.board__zoom svg { width: 18px; height: 18px; }
.board a:hover .board__zoom, .board a:focus-visible .board__zoom { opacity: 1; }
.board figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }
@media (hover: none) { .board__zoom { opacity: 1; } }

.local-board { display: grid; grid-template-columns: 420px 1fr; gap: 40px; align-items: start; }
.local-board__text h3 { font-size: 24px; }
.local-board__chef { font-size: 14px; color: var(--muted); margin: 4px 0 14px; }
.local-board__text > p:not(.local-board__chef) { color: #3f3f3f; }
.local-board__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

/* Venue page: single board + text */
.board--single { max-width: 480px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.88); }
.lightbox__dialog { position: absolute; inset: 0; overflow-y: auto; padding: 64px 72px 72px; text-align: center; }
.lightbox__img { display: inline-block; width: min(100%, 860px); height: auto; border-radius: 6px; background: #fff; box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.lightbox__btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; transition: background .15s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { position: fixed; top: 16px; right: 16px; }
.lightbox__prev { position: fixed; left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { position: fixed; right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__btn[hidden] { display: none; }
.lightbox__caption { position: fixed; left: 0; right: 0; bottom: 0; padding: 14px 72px; text-align: center; color: rgba(255,255,255,.85); font-size: 14px; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.75)); pointer-events: none; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 900px) {
  .local-board { grid-template-columns: 1fr; gap: 24px; }
  .local-board .board { max-width: 480px; }
}
@media (max-width: 768px) {
  .boards { grid-template-columns: 1fr; }
  .lightbox__dialog { padding: 64px 12px 56px; }
  .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
  .lightbox__caption { padding: 0 16px; }
}

/* Venue page: local chapter highlights */
.highlights { display: grid; gap: 10px; }
.highlights li { padding-left: 14px; border-left: 3px solid var(--yuzu); }
.highlights strong { display: block; font-size: 15px; }
.highlights span { display: block; font-size: 13px; color: var(--muted); }
