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

    :root {
      --black:      #faf6ee;
      --dark:       #f2ebe0;
      --gold:       #96601e;
      --gold-light: #b87d30;
      --cream:      #1a1008;
      --text:       #2a1e0c;
      --muted:      #5c4e3a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      padding: 1.2rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(to bottom, rgba(250,246,238,.92) 0%, transparent 100%);
      backdrop-filter: blur(2px);
      transition: background .3s;
    }
    nav.scrolled { background: rgba(250,246,238,.97); border-bottom: 1px solid rgba(168,114,42,.15); }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      letter-spacing: .08em;
      color: var(--gold);
      text-decoration: none;
    }
    .nav-logo span { font-style: italic; color: var(--cream); }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--text); text-decoration: none;
      font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
      opacity: .8; transition: opacity .2s, color .2s;
    }
    .nav-links a:hover { opacity: 1; color: var(--gold); }

    /* ── HERO ── */
    .hero {
      position: relative; height: 100vh; min-height: 600px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background: url('restaurant_interior.png') center center / cover no-repeat;
      transform: scale(1.05);
      animation: slowZoom 18s ease-in-out infinite alternate;
    }
    @keyframes slowZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.12); }
    }

    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        160deg,
        rgba(250,246,238,.78) 0%,
        rgba(250,246,238,.55) 50%,
        rgba(250,246,238,.75) 100%
      );
    }

    .hero-content {
      position: relative; text-align: center; padding: 0 1.5rem;
      animation: fadeUp .9s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-kanji {
      font-family: 'Noto Serif JP', serif;
      font-size: 3.5rem; color: var(--gold); opacity: .35;
      letter-spacing: .3em; display: block; margin-bottom: .5rem;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 700; line-height: 1.1;
      color: var(--cream); letter-spacing: .02em;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }

    .hero-sub {
      margin-top: 1rem;
      font-size: 1rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--muted); font-weight: 300;
    }

    .hero-divider {
      width: 60px; height: 1px;
      background: var(--gold); margin: 1.8rem auto;
    }

    .hero-cta {
      display: inline-block;
      padding: .85rem 2.4rem;
      border: 1px solid var(--gold);
      color: var(--gold); text-decoration: none;
      letter-spacing: .18em; text-transform: uppercase;
      font-size: .82rem; font-weight: 500;
      transition: background .25s, color .25s;
    }
    .hero-cta:hover { background: var(--gold); color: var(--black); }

    /* ── SECTION BASE ── */
    section { padding: 6rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .75rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--cream); margin-bottom: 1.5rem; line-height: 1.2;
    }
    .section-title em { font-style: italic; color: var(--gold-light); }

    /* ── ABOUT ── */
    .about { background: var(--dark); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-text p {
      color: var(--muted); line-height: 1.85; margin-bottom: 1.1rem;
      font-size: .97rem;
    }
    .about-text p strong { color: var(--cream); font-weight: 500; }
    .about-text .section-title { margin-bottom: 1.8rem; }

    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap::before {
      content: '';
      position: absolute;
      inset: -12px -12px 12px 12px;
      border: 1px solid rgba(201,150,63,.25);
      pointer-events: none;
      z-index: 0;
    }
    .about-img {
      width: 100%; aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
      position: relative; z-index: 1;
      filter: brightness(.92) contrast(1.05);
    }
    .about-img-kanji {
      position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 2;
      font-family: 'Noto Serif JP', serif;
      font-size: 5rem; color: rgba(201,150,63,.12);
      line-height: 1; pointer-events: none;
    }

    /* ── MENU ── */
    .menu { background: var(--black); }

    .menu-tabs-wrap {
      position: relative; display: flex; align-items: center; gap: .5rem;
      margin-bottom: 2.5rem;
    }
    .tabs-arrow {
      flex-shrink: 0; width: 1.9rem; height: 1.9rem;
      background: none; border: 1px solid rgba(201,150,63,.35);
      color: var(--gold); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s, opacity .2s;
      border-radius: 2px;
    }
    .tabs-arrow svg { display: block; }
    .tabs-arrow:hover { background: rgba(201,150,63,.1); border-color: var(--gold); }
    .tabs-arrow:disabled { opacity: .18; cursor: default; pointer-events: none; }
    .tabs-arrow svg { display: block; }
    .tabs-arrow:hover { background: rgba(201,150,63,.1); border-color: var(--gold); }
    .tabs-arrow:disabled { opacity: .18; cursor: default; pointer-events: none; }
    .menu-tabs {
      display: flex; gap: .5rem; flex-wrap: nowrap; flex: 1;
      overflow-x: auto; scrollbar-width: none;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }

    .tab-btn {
      flex-shrink: 0;
      padding: .55rem 1.3rem;
      background: none;
      border: 1px solid rgba(201,150,63,.25);
      color: var(--muted);
      font-family: 'Inter', sans-serif;
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
      cursor: pointer; transition: all .2s; white-space: nowrap;
    }
    .tab-btn:hover { border-color: var(--gold); color: var(--cream); }
    .tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 600; }

    .menu-panel { display: none; }
    .menu-panel.active { display: block; }

    .menu-note {
      font-size: .8rem; color: var(--muted); margin-bottom: 2rem;
      padding: .7rem 1rem; border-left: 2px solid rgba(201,150,63,.4);
    }

    .menu-grid {
      columns: 2; column-gap: 2rem;
    }
    .menu-item {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: .85rem 1rem .85rem 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
      gap: 1rem; break-inside: avoid;
    }
    .menu-item-left { flex: 1; }
    .menu-item-name {
      color: var(--cream); font-size: .93rem; font-weight: 400;
    }
    .menu-item-desc {
      color: var(--muted); font-size: .77rem; margin-top: .2rem; line-height: 1.5;
    }
    .menu-item-variant {
      font-size: .78rem; margin-top: .3rem;
      color: var(--muted);
      font-style: italic;
    }
    .menu-item-variant .variant-price {
      font-style: normal;
      color: var(--gold);
    }
    .menu-item-price {
      color: var(--gold); font-family: 'Playfair Display', serif;
      font-size: .95rem; white-space: nowrap; flex-shrink: 0;
    }
    .tag-vegetarisch {
      display: inline-block; font-size: .65rem; letter-spacing: .08em;
      padding: .1rem .4rem; border: 1px solid rgba(30,80,160,.5);
      color: #1a52a0; margin-left: .4rem; vertical-align: middle;
    }
    .tag-vegan {
      display: inline-block; font-size: .65rem; letter-spacing: .08em;
      padding: .1rem .4rem; border: 1px solid rgba(60,140,60,.5);
      color: #2e7d32; margin-left: .4rem; vertical-align: middle;
    }
    .tag-empfehlung {
      display: inline-block; font-size: .65rem; letter-spacing: .08em;
      padding: .1rem .4rem; border: 1px solid rgba(201,150,63,.55);
      color: var(--gold); margin-left: .4rem; vertical-align: middle;
    }

    .menu-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--gold); margin: 2rem 0 1rem;
      padding-bottom: .5rem; border-bottom: 1px solid rgba(201,150,63,.2);
    }

    @media (max-width: 640px) {
      .menu-grid { columns: 1; }
    }

    /* ── ALLERGEN ── */
    .allergen-section { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--dark); }
    .allergen-toggle {
      background: none; border: 1px solid var(--gold); color: var(--gold);
      padding: .45rem 1.1rem; font-size: .78rem; font-weight: 500; letter-spacing: .07em;
      cursor: pointer; border-radius: 2px; display: inline-flex; align-items: center; gap: .5rem;
      transition: background .2s, color .2s; font-family: 'Inter', sans-serif;
    }
    .allergen-toggle:hover { background: var(--gold); color: var(--black); }
    .allergen-toggle .chevron { transition: transform .3s; }
    .allergen-toggle.open .chevron { transform: rotate(180deg); }
    .allergen-content { display: none; margin-top: 1.5rem; }
    .allergen-content.open { display: block; }
    .allergen-note { font-size: .8rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.6; }
    .allergen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
    .allergen-list-title {
      font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
      color: var(--gold); border-bottom: 1px solid var(--dark); padding-bottom: .4rem; margin-bottom: .8rem;
    }
    .allergen-list { list-style: none; padding: 0; }
    .allergen-list li { font-size: .76rem; color: var(--muted); padding: .18rem 0; display: flex; gap: .6rem; line-height: 1.4; }
    .allergen-list li strong { color: var(--text); min-width: 2rem; flex-shrink: 0; font-weight: 600; }
    .allergen-disclaimer { margin-top: 1.2rem; font-size: .74rem; color: var(--muted); font-style: italic; line-height: 1.55; }
    @media (max-width: 640px) { .allergen-grid { grid-template-columns: 1fr; } }
    .item-al { display:block; font-size:.62rem; font-weight:400; color:var(--muted); opacity:.8; margin-top:.2rem; letter-spacing:.02em; }

    /* ── HOURS ── */
    .hours { background: var(--black); }
    .hours-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: start;
    }
    .hours-info p {
      color: var(--muted); line-height: 1.85; font-size: .97rem;
    }

    .hours-table { width: 100%; border-collapse: collapse; }
    .hours-table tr {
      border-bottom: 1px solid rgba(201,150,63,.15);
    }
    .hours-table td {
      padding: .9rem .5rem;
      font-size: .92rem;
    }
    .hours-table td:first-child {
      color: var(--cream); font-weight: 500; width: 40%;
    }
    .hours-table td:last-child {
      color: var(--muted); text-align: right;
    }
    .hours-table .closed td { color: rgba(154,144,128,.4) !important; }
    .hours-table .closed .closed-label {
      color: rgba(201,150,63,.5); font-weight: 300; font-size: .8rem;
    }
    .badge {
      display: inline-block; padding: .2rem .7rem;
      background: rgba(201,150,63,.12); color: var(--gold);
      font-size: .72rem; letter-spacing: .1em;
      border: 1px solid rgba(201,150,63,.3); margin-left: .5rem;
    }

    /* ── LOCATION ── */
    .location { background: var(--dark); }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1.3fr;
      gap: 4rem; align-items: start;
    }
    .location-details { display: flex; flex-direction: column; gap: 1.8rem; }
    .location-item { display: flex; gap: 1rem; align-items: flex-start; }
    .location-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      border: 1px solid rgba(201,150,63,.4);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    .location-icon svg { display: block; }
    .location-item-text strong {
      display: block; color: var(--cream);
      font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: .3rem;
    }
    .location-item-text span { color: var(--muted); font-size: .95rem; line-height: 1.6; }

    .map-frame {
      width: 100%; aspect-ratio: 4/3;
      border: 1px solid rgba(150,96,30,.2);
      filter: grayscale(.4) contrast(1.05);
    }

    .map-consent {
      width: 100%; aspect-ratio: 4/3;
      border: 1px solid rgba(150,96,30,.2);
      background: var(--dark);
      display: flex; align-items: center; justify-content: center;
    }
    .map-consent-inner {
      text-align: center; padding: 2rem;
      max-width: 320px;
    }
    .map-consent-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--cream); margin-bottom: .6rem;
    }
    .map-consent-text {
      font-size: .8rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.4rem;
    }
    .map-consent-text a { color: var(--gold); }
    .map-consent-btn {
      padding: .7rem 1.8rem;
      background: var(--gold); color: #faf6ee;
      border: none; cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
      transition: background .2s;
    }
    .map-consent-btn:hover { background: var(--gold-light); }

    /* ── GALLERY ── */
    .gallery { background: var(--black); }
    .gallery-grid {
      columns: 3;
      column-gap: .75rem;
      margin-top: 3rem;
    }
    .gallery-item {
      break-inside: avoid;
      margin-bottom: .75rem;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }
    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform .4s ease;
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-item::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(26,16,8,0);
      transition: background .3s;
    }
    .gallery-item:hover::after { background: rgba(26,16,8,.15); }

    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 999;
      background: rgba(10,6,2,.93);
      align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-img {
      max-width: 90vw; max-height: 88vh;
      object-fit: contain;
      border: 1px solid rgba(150,96,30,.2);
    }
    .lightbox-close {
      position: absolute; top: 1.5rem; right: 2rem;
      background: none; border: none;
      color: #faf6ee; font-size: 2rem;
      cursor: pointer; opacity: .7; transition: opacity .2s;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: none; border: 1px solid rgba(150,96,30,.4);
      color: var(--gold); font-size: 1.5rem;
      width: 3rem; height: 3rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .lightbox-nav:hover { background: rgba(150,96,30,.15); }
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }
    .lightbox-counter {
      position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      color: rgba(250,246,238,.5); font-size: .78rem; letter-spacing: .15em;
    }

    /* ── RESERVE ── */
    .reserve {
      background: linear-gradient(135deg, #e8dcc8 0%, #ddd0b8 100%);
      text-align: center; padding: 7rem 2rem;
    }
    .reserve .section-title { margin-bottom: .8rem; }
    .reserve p { color: var(--muted); margin-bottom: 2.5rem; font-size: 1rem; }
    .reserve-btn {
      display: inline-block;
      padding: 1rem 3rem;
      background: var(--gold);
      color: var(--black); text-decoration: none;
      letter-spacing: .18em; text-transform: uppercase;
      font-size: .85rem; font-weight: 600;
      transition: background .25s, transform .2s;
    }
    .reserve-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: #e8dcc8;
      border-top: 1px solid rgba(168,114,42,.2);
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--gold);
      letter-spacing: .1em; margin-bottom: .8rem;
    }
    footer p {
      color: rgba(154,144,128,.5);
      font-size: .78rem; letter-spacing: .08em;
    }
    .footer-kanji {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.5rem; color: rgba(201,150,63,.2);
      margin-bottom: .5rem;
    }

    /* ── LEGAL MODALS ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(26,16,8,.55); backdrop-filter: blur(4px);
      align-items: flex-end; justify-content: center;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--black);
      width: 100%; max-width: 720px;
      max-height: 85vh;
      border-top: 2px solid var(--gold);
      overflow-y: auto; padding: 2.5rem 2rem 3rem;
      position: relative;
      animation: slideUp .3s ease;
    }
    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    .modal-close {
      position: sticky; top: 0; float: right;
      background: none; border: none; cursor: pointer;
      color: var(--muted); font-size: 1.4rem; line-height: 1;
      padding: .2rem .4rem;
    }
    .modal-close:hover { color: var(--cream); }
    .modal-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; color: var(--cream); margin-bottom: 1.5rem;
    }
    .modal-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; color: var(--gold);
      margin: 1.5rem 0 .5rem;
    }
    .modal-box p, .modal-box li {
      font-size: .88rem; color: var(--muted);
      line-height: 1.8; margin-bottom: .5rem;
    }
    .modal-box ul { padding-left: 1.2rem; }
    .modal-box a { color: var(--gold); }
    .modal-placeholder {
      background: rgba(150,96,30,.1); border: 1px dashed rgba(150,96,30,.4);
      color: var(--gold); padding: .15rem .4rem; font-size: .82rem;
      font-style: italic;
    }

    /* ── SCROLL INDICATOR ── */
    .scroll-indicator {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .35rem;
      opacity: .5; animation: bounce 2s ease-in-out infinite;
    }
    .scroll-indicator span {
      display: block; width: 1px; height: 40px;
      background: linear-gradient(to bottom, transparent, var(--gold));
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ── MOBILE BOTTOM BAR ── */
    .mobile-bar {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
      background: rgba(250,246,238,.97);
      backdrop-filter: blur(24px);
      border-top: 1px solid rgba(168,114,42,.2);
      padding: .75rem 1rem;
      padding-bottom: calc(.75rem + env(safe-area-inset-bottom));
      gap: .75rem;
    }
    .mobile-bar-btn {
      flex: 1; padding: .85rem .5rem;
      text-align: center; text-decoration: none;
      font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
      font-weight: 600; border: 1px solid rgba(150,96,30,.3);
      color: var(--text); transition: all .2s;
    }
    .mobile-bar-btn.primary {
      background: var(--gold); border-color: var(--gold); color: #faf6ee;
    }

    /* ── LANG SWITCHER ── */
    .lang-switcher {
      display: flex; gap: 0; align-items: center;
      border: 1px solid rgba(201,150,63,.25); overflow: hidden;
    }
    .lang-btn {
      background: none; border: none; border-right: 1px solid rgba(150,96,30,.2);
      color: var(--muted); cursor: pointer;
      font-family: 'Inter', sans-serif; font-size: .7rem;
      letter-spacing: .1em; padding: .35rem .6rem;
      transition: background .2s, color .2s;
    }
    .lang-btn:last-child { border-right: none; }
    .lang-btn:hover { color: var(--cream); }
    .lang-btn.active { background: rgba(150,96,30,.12); color: var(--gold); font-weight: 600; }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: .4rem; background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 1.5px;
      background: var(--cream); transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 0; top: 0;
      background: rgba(250,246,238,.99); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--cream); text-decoration: none;
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; letter-spacing: .04em;
      transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--gold); }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.2rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-bar { display: flex; }
      body { padding-bottom: 70px; }

      section { padding: 3rem 1.1rem; }
      .about-grid, .hours-grid { grid-template-columns: 1fr; gap: 2rem; }
      .about-img-wrap { margin-top: .5rem; }
      .about-img-wrap::before { inset: -8px -8px 8px 8px; }
      .about-img { aspect-ratio: 16/9; }
      .about-img-kanji { font-size: 3.5rem; bottom: -1rem; right: -1rem; }
      .location-grid { grid-template-columns: 1fr; gap: 1.8rem; }

      /* Hero */
      .hero-kanji { font-size: 1.8rem; letter-spacing: .2em; }
      .hero-sub { font-size: .8rem; letter-spacing: .15em; }
      .hero-divider { margin: 1.3rem auto; }
      .hero-cta { display: block; text-align: center; padding: 1rem; }
      .scroll-indicator { bottom: 1.2rem; }

      /* About */
      .about-stats { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
      .stat { padding-left: .9rem; }
      .stat-num { font-size: 1.6rem; }
      .stat-label { font-size: .72rem; }

      .gallery-grid { columns: 2; column-gap: .5rem; }
      .gallery-item { margin-bottom: .5rem; }
      .lightbox-nav { width: 2.4rem; height: 2.4rem; font-size: 1.2rem; }
      .lightbox-prev { left: .5rem; }
      .lightbox-next { right: .5rem; }

      /* Menu tabs → pill-style */
      .menu-tabs { gap: .4rem; padding-bottom: .6rem; margin-bottom: 1.8rem; }
      .tab-btn {
        padding: .55rem 1rem; font-size: .7rem;
        border-radius: 99px; letter-spacing: .1em;
      }

      /* Menu items → card style */
      .menu-grid { columns: 1; }
      .menu-item {
        padding: .9rem 1rem;
        background: rgba(255,255,255,.5);
        border-bottom: none;
        margin-bottom: .45rem;
        border-left: 2px solid rgba(168,114,42,.3);
        border-radius: 0 2px 2px 0;
        align-items: flex-start;
      }
      .menu-item-name { font-size: .9rem; }
      .menu-item-desc { font-size: .75rem; }
      .menu-item-price { font-size: .92rem; padding-top: .15rem; }

      /* Hours */
      .hours-table td { font-size: .83rem; padding: .8rem .3rem; }
      .hours-table td:last-child { font-size: .78rem; }
      .hours-table tr.today td:first-child { color: var(--gold); }
      .hours-table tr.today { background: rgba(201,150,63,.06); }
      .hours-table tr.today td:last-child { color: var(--cream); }

      /* Location */
      .location-details { gap: 1.2rem; }
      .map-frame { aspect-ratio: 4/3; }
      .map-consent { aspect-ratio: 4/3; }

      /* Reserve */
      .reserve { padding: 4rem 1.1rem; }
      .reserve-btn { display: block; text-align: center; padding: 1rem; }

      /* Section titles */
      .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
      .menu-section-title { font-size: 1rem; margin: 1.5rem 0 .8rem; }
    }

    @media (max-width: 400px) {
      .hours-table { display: block; }
      .hours-table tbody { display: block; }
      .hours-table tr {
        display: flex; flex-direction: column;
        padding: .65rem 0; border-bottom: 1px solid rgba(201,150,63,.1);
      }
      .hours-table tr.closed { opacity: .45; }
      .hours-table td { border: none; padding: .1rem .3rem; }
      .hours-table td:first-child { font-size: .78rem; color: var(--gold); }
      .hours-table td:last-child { text-align: left; font-size: .82rem; }
    }
