
  :root {
    --cream: #F5F0E8;
    --parchment: #EDE6D6;
    --dark: #1A1A1A;
    --wine: #722F37;
    --wine-dark: #5A252C;
    --gold: #C5A55A;
    --gold-light: #D4B96E;
    --olive: #4A5D3A;
    --warm-gray: #8B8178;
    --terracotta: #C46D4E;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background-color: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── Texture overlay ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ── Navigation ── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26,26,26,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(197,165,90,0.4);
    transition: background 0.4s ease, border-color 0.4s ease;
    padding-top: env(safe-area-inset-top);
  }

  nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 2rem;
  }

  .nav-links-left,
  .nav-links-right {
    display: flex;
    align-items: center;
    gap: 1.15rem;
  }

  .nav-links-right {
    justify-content: flex-end;
  }

  /* Nav logo */
  .nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-left: 1px solid rgba(197,165,90,0.25);
    border-right: 1px solid rgba(197,165,90,0.25);
  }

  .nav-logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0.4rem 0;
    box-shadow: 0 0 20px rgba(197,165,90,0.12);
    padding: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .nav-logo:hover .nav-logo-circle {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(197,165,90,0.25);
  }

  .nav-logo-fork {
    font-size: 0.9rem;
    line-height: 1;
  }

  .nav-logo-ristorante {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.28rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.2;
  }

  .nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.6rem;
    font-weight: 700;
    font-style: italic;
    color: var(--cream);
    line-height: 1;
  }

  .nav-logo-flag {
    display: flex;
    gap: 0;
    margin: 1px 0;
  }

  .nav-logo-flag span {
    width: 7px;
    height: 4px;
    display: inline-block;
  }

  .nav-logo-spqr {
    font-family: 'EB Garamond', serif;
    font-size: 0.24rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    line-height: 1.4;
  }

  nav a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  nav a:hover { color: var(--gold); }
  nav a:hover::after { width: 100%; }
  nav .nav-logo:hover::after { display: none; }

  /* ── Language toggle ── */
  .lang-toggle {
    background: none;
    border: 1px solid rgba(197,165,90,0.45);
    color: var(--gold);
    font-family: 'EB Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    cursor: pointer;
    border-radius: 1px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .lang-toggle:hover {
    background: rgba(197,165,90,0.12);
    border-color: var(--gold);
  }

  /* ── Bilingual show/hide ── */
  .t-pt { display: none; }
  body.lang-pt .t-en { display: none; }
  body.lang-pt .t-pt { display: inline; }

  /* Menu dish descriptions: hide PT by default, show EN */
  .menu-dish-pt { display: none; }
  .menu-dish-en { display: block; }
  body.lang-pt .menu-dish-pt { display: block; }
  body.lang-pt .menu-dish-en { display: none; }

  .nav-dot {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    flex-shrink: 0;
  }

  /* ── Hero Section ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #2a1f15;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55);
    transition: transform 8s ease;
  }

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

  /* Dark gradient at bottom for text legibility */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(10,6,3,0.35) 0%,
        rgba(10,6,3,0.1) 40%,
        rgba(10,6,3,0.55) 75%,
        rgba(10,6,3,0.88) 100%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
  }

  .hero-eyebrow {
    font-family: 'EB Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(245,240,232,0.8);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
  }

  .hero-divider-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
  }

  .hero-divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  .hero-address {
    font-family: 'EB Garamond', serif;
    font-size: 0.9rem;
    color: rgba(245,240,232,0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .flag-green { background: #009246; }
  .flag-white { background: #fff; }
  .flag-red { background: #CE2B37; }

  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
  }

  .scroll-indicator span {
    font-family: 'EB Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm-gray);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  @keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ── Section base ── */
  section {
    padding: 6rem 2rem;
  }

  .section-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }

  .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    color: var(--warm-gray);
    letter-spacing: 0.06em;
    margin-bottom: 3rem;
  }

  .ornament {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    opacity: 0.7;
  }

  /* ── La Nostra Storia ── */
  .storia {
    background: var(--parchment);
    position: relative;
  }

  .storia::before,
  .storia::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .storia::before { top: 0; }
  .storia::after { bottom: 0; }

  .storia-image {
    border-radius: 2px;
    overflow: hidden;
    margin: 2.5rem 0;
    aspect-ratio: 16/7;
  }

  .storia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .storia-text {
    font-size: 1.1rem;
    line-height: 1.95;
    color: #3D3831;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .storia-text p {
    margin-bottom: 1.5rem;
  }

  .storia-text a, .ingredients-intro a, .ingredients-outro a {
    color: var(--wine);
    text-decoration: none;
    border-bottom: 1px solid rgba(114,47,55,0.3);
    transition: color 0.2s, border-color 0.2s;
  }
  .storia-text a:hover, .ingredients-intro a:hover, .ingredients-outro a:hover {
    color: var(--wine-dark);
    border-color: var(--wine-dark);
  }

  .ingredients-intro, .ingredients-outro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #3D3831;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
  }
  .ingredients-outro { margin: 3rem auto 0; font-style: italic; color: var(--warm-gray); }

  .menu-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(245,240,232,0.85);
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
    font-style: italic;
  }
  .menu-intro a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(197,165,90,0.35);
    transition: color 0.2s, border-color 0.2s;
  }
  .menu-intro a:hover { color: var(--gold); border-color: var(--gold); }

  .visit-getting-here {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .visit-getting-here h3 {
    font-family: 'EB Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
  }
  .visit-getting-here p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(245,240,232,0.85);
    margin-bottom: 0.6rem;
  }
  .visit-getting-here p:last-child { margin-bottom: 0; }
  .visit-getting-here strong { color: var(--cream); font-weight: 600; }
  .visit-faq-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin-top: 1.5rem;
  }
  .visit-faq-note a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(197,165,90,0.3);
    transition: color 0.2s, border-color 0.2s;
  }
  .visit-faq-note a:hover { color: var(--gold); border-color: var(--gold); }
  @media (max-width: 700px) {
    .visit-getting-here { grid-template-columns: 1fr; gap: 1.8rem; }
  }

  .storia-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--wine);
    margin: 2rem 0;
    padding: 1.2rem 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .storia-image { aspect-ratio: 16/9; }
  }

  /* ── Menu Section ── */
  .menu-section {
    background: var(--dark);
    color: var(--cream);
  }

  .menu-section .section-title {
    color: var(--cream);
  }

  .menu-section .section-subtitle {
    color: var(--warm-gray);
  }

  .menu-category {
    margin-bottom: 3.5rem;
  }

  .menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
  }

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

  .menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(197,165,90,0.12);
  }

  .menu-item-name {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.25rem;
    letter-spacing: 0.04em;
  }

  .menu-item-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--warm-gray);
    line-height: 1.5;
  }

  .menu-note {
    text-align: center;
    font-style: italic;
    color: var(--warm-gray);
    margin-top: 2rem;
    font-size: 0.95rem;
  }

  /* ── Dishes Showcase ── */
  .showcase {
    background: var(--cream);
  }

  .dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }

  .dish-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(197,165,90,0.25);
    background: var(--parchment);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  }

  .dish-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
  }

  .dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--wine);
    margin-bottom: 0.5rem;
  }

  .dish-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #5A5349;
  }

  /* ── Ingredients ── */
  .ingredients {
    background: var(--parchment);
    position: relative;
  }

  .ingredients::before,
  .ingredients::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .ingredients::before { top: 0; }
  .ingredients::after { bottom: 0; }

  .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .ingredient-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 2px;
    background: var(--cream);
  }

  .ingredient-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }

  .ingredient-body {
    padding: 1.2rem 1rem 1.4rem;
    text-align: center;
    flex: 1;
  }

  .ingredient-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 0.4rem;
  }

  .ingredient-detail {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--warm-gray);
    line-height: 1.6;
  }

  /* ── Visit Us ── */
  .visit {
    background: var(--dark);
    color: var(--cream);
    text-align: center;
  }

  .visit .section-title { color: var(--cream); }
  .visit .section-subtitle { color: var(--warm-gray); }

  .visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  .visit-item h3 {
    font-family: 'EB Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .visit-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
  }

  .visit-item p a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(197,165,90,0.3);
    transition: color 0.25s, border-color 0.25s;
  }

  .visit-item p a:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

  .visit-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .visit-cta:hover {
    background: var(--gold);
    color: var(--dark);
  }

  /* ── Sticky actions (Call + WhatsApp) ── */
  .sticky-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .sticky-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--wine);
    color: var(--cream);
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.75rem 1.3rem;
    border: 1px solid rgba(197,165,90,0.35);
    border-radius: 1px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }

  .sticky-cta:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  }

  .sticky-cta-icon {
    font-size: 1rem;
    line-height: 1;
  }

  .sticky-whatsapp {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  }

  .sticky-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  }

  .sticky-whatsapp svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  @media (max-width: 768px) {
    .sticky-actions {
      bottom: 1.2rem;
      right: 1.2rem;
      gap: 0.5rem;
    }
    .sticky-cta {
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      padding: 0.6rem 0.9rem;
    }
    .sticky-cta-icon {
      font-size: 0.9rem;
    }
    .sticky-whatsapp {
      width: 2.7rem;
      height: 2.7rem;
    }
    .sticky-whatsapp svg {
      width: 1.45rem;
      height: 1.45rem;
    }
  }

  /* ── Footer ── */
  footer {
    background: #111;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(197,165,90,0.2);
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-social a {
    color: var(--warm-gray);
    text-decoration: none;
    font-family: 'EB Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .footer-social a:hover { color: var(--gold); }

  .footer-copy {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
  }

  .footer-spqr {
    font-family: 'EB Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    opacity: 0.5;
    margin-top: 1rem;
  }

  /* ── Decorative borders between certain sections ── */
  .border-ornament {
    text-align: center;
    padding: 0;
    background: var(--cream);
    overflow: hidden;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .border-ornament svg {
    opacity: 0.3;
  }

  /* ── Burger Button ── */
  .burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 103;
    -webkit-tap-highlight-color: transparent;
  }
  .burger-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .burger-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .burger-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── Responsive ── */
  @media (max-width: 1100px) {
    nav .nav-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.4rem 1.2rem;
      position: relative;
      min-height: 70px;
    }
    .nav-links-left, .nav-links-right { display: none; }
    .nav-logo { border: none; padding: 0.3rem; }
    .nav-logo-circle { width: 52px; height: 52px; }
    .burger-btn { display: flex; }
  }

  /* ── Mobile Menu ── */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.97);
    z-index: 102;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: calc(2rem + env(safe-area-inset-top)) 0 2.5rem;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-menu-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: none;
    border-bottom: none;
    backdrop-filter: none;
    padding-top: 0;
  }

  .mobile-menu-close {
    position: absolute;
    top: calc(0.9rem + env(safe-area-inset-top));
    right: 1rem;
    background: none;
    border: 1px solid rgba(197,165,90,0.4);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: var(--gold);
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 103;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }
  .mobile-menu-close:hover, .mobile-menu-close:active {
    color: var(--cream);
    border-color: var(--gold);
    transform: rotate(90deg);
  }
  .mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 6vw, 2rem);
    font-style: italic;
    color: var(--cream);
    text-decoration: none;
    padding: 0.65rem 2rem;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(16px);
    transition: color 0.25s ease, opacity 0.4s ease, transform 0.4s ease;
  }
  .mobile-menu.is-open .mobile-menu-link { opacity: 1; transform: translateY(0); }
  .mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 0.04s; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 0.09s; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 0.14s; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(4) { transition-delay: 0.19s; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(5) { transition-delay: 0.24s; }
  .mobile-menu.is-open .mobile-menu-link:nth-child(6) { transition-delay: 0.29s; }
  .mobile-menu-link:hover, .mobile-menu-link:active { color: var(--gold); }
  .mobile-menu-logo {
    position: absolute;
    top: calc(1rem + env(safe-area-inset-top));
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
  }
  .mobile-menu.is-open .mobile-menu-logo { opacity: 1; transform: translateX(-50%) translateY(0); }
  .mobile-menu-logo .nav-logo-circle { width: 56px; height: 56px; }
  .mobile-menu-footer {
    position: absolute;
    bottom: calc(5rem + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease 0.28s;
  }
  .mobile-menu.is-open .mobile-menu-footer { opacity: 1; }
  .mobile-menu-spqr {
    font-family: 'EB Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    opacity: 0.4;
  }

  /* ── Full Menu Layout — Accordion ── */
  .menu-board {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid rgba(197,165,90,0.25);
  }

  .menu-col {
    border-bottom: 1px solid rgba(197,165,90,0.18);
    padding: 0;
  }
  .menu-col:last-child { border-bottom: none; }

  .menu-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.8rem;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    border-bottom: none;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-col-title:hover {
    background: rgba(197,165,90,0.05);
  }

  .menu-col-title::after {
    content: '+';
    font-family: 'EB Garamond', serif;
    font-size: 1.6rem;
    font-style: normal;
    color: var(--gold);
    opacity: 0.6;
    transition: transform 0.25s ease, opacity 0.25s ease;
    flex-shrink: 0;
  }

  .menu-col.is-open .menu-col-title::after {
    transform: rotate(45deg);
    opacity: 1;
  }

  .menu-col-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .menu-col.is-open .menu-col-body {
    max-height: 9999px;
  }

  .menu-col-body-inner {
    padding: 0.5rem 1.8rem 1.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    align-items: start;
  }

  .menu-info-box {
    grid-column: 1 / -1;
  }

  .menu-sub-title {
    grid-column: 1 / -1;
  }

  .menu-dish {
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(197,165,90,0.1);
  }
  .menu-dish:last-child { border-bottom: none; margin-bottom: 0; }

  .menu-dish-name {
    font-family: 'EB Garamond', serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }

  .menu-dish-variant {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    white-space: nowrap;
  }

  .menu-dish-pt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--warm-gray);
    line-height: 1.35;
  }

  .menu-dish-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(139,129,120,0.7);
    line-height: 1.3;
  }

  .menu-dish-price {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold);
    margin-top: 0.3rem;
  }

  .menu-info-box {
    border: 1.5px solid rgba(197,165,90,0.45);
    padding: 1.2rem 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: rgba(197,165,90,0.05);
  }

  .menu-info-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.4;
  }

  .menu-info-detail {
    font-family: 'EB Garamond', serif;
    font-size: 0.72rem;
    color: var(--warm-gray);
    letter-spacing: 0.06em;
    margin-top: 0.5rem;
    line-height: 1.6;
  }

  .menu-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin: 1.4rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(197,165,90,0.25);
    letter-spacing: 0.04em;
  }

  .menu-note-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--warm-gray);
    text-align: center;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.8;
  }

  @media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .section-title { font-size: 2rem; }
    .menu-items { grid-template-columns: 1fr; }

    .menu-col-title {
      font-size: 1.15rem;
      padding: 1rem 1.2rem;
    }

    .menu-col-body-inner {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 0 1.2rem 1.4rem;
    }

    .menu-dish-name { font-size: 1.05rem; }
    .menu-dish-pt, .menu-dish-en { font-size: 0.88rem; }
    .menu-dish-price { font-size: 1rem; color: var(--gold-light); }
    .menu-dish { padding: 0.9rem 0; }

    .dish-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
    section { padding: 4rem 1.5rem; }
  }

  /* ── Animations ── */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Gallery Filmstrip ── */
  .gallery-filmstrip-section {
    background: var(--dark);
    padding: 3.5rem 0 3.5rem 0;
    overflow: hidden;
  }

  .gallery-filmstrip-header {
    padding: 0 2.5rem 1.8rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }

  .gallery-filmstrip-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.08em;
  }

  /* Scrollable strip — no scrollbar, snaps per image */
  .gallery-filmstrip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .gallery-filmstrip::-webkit-scrollbar { display: none; }

  .gallery-filmstrip-wrap {
    position: relative;
  }

  /* Arrow controls */
  .gallery-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 1.2rem 2.5rem 0;
  }

  .gallery-nav-btn {
    background: none;
    border: 1px solid rgba(196,160,80,0.4);
    color: var(--gold);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
  }
  .gallery-nav-btn:hover {
    background: rgba(196,160,80,0.12);
    border-color: var(--gold);
  }
  .gallery-nav-btn:disabled {
    opacity: 0.25;
    cursor: default;
  }

  .gallery-film-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    height: 480px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
  }

  .gallery-film-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    background: #0d0d0d;
  }

  .gallery-film-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem 0.9rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(245,240,232,0.8);
    letter-spacing: 0.04em;
  }

  @media (max-width: 768px) {
    .gallery-film-item { height: 58vw; min-height: 220px; }
    .gallery-filmstrip { padding-left: 1.2rem; padding-right: 1.2rem; }
    .gallery-nav { padding-right: 1.2rem; }
  }

  /* ── As Seen In (logo wall) ── */
  .seen-in { background: #722F37; border-top: 1px solid rgba(197,165,90,0.4); border-bottom: 1px solid rgba(197,165,90,0.4); padding: 2.8rem 0 3rem; text-align: center; overflow: hidden; }
  .seen-in-label { font-family: 'EB Garamond', serif; font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.8rem; }
  .seen-in-ratings { font-family: 'EB Garamond', serif; font-size: 0.9rem; letter-spacing: 0.04em; color: #f2e6c8; margin: -0.9rem 0 1.8rem; }
  .seen-in-marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%); }
  .seen-in-track { display: flex; width: max-content; align-items: center; animation: seenInScroll 38s linear infinite; }
  .seen-in:hover .seen-in-track { animation-play-state: paused; }
  .seen-in-set { display: flex; align-items: center; flex-shrink: 0; }
  .seen-in-track a { display: inline-flex; align-items: center; flex-shrink: 0; margin: 0 1.9rem; color: rgba(245,240,232,0.85); text-decoration: none; line-height: 1; transition: color 0.25s ease; }
  .seen-in-track a:hover { color: #fff; }
  @keyframes seenInScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .lw { font-family: 'EB Garamond', serif; font-size: 1.2rem; letter-spacing: 0.06em; white-space: nowrap; }
  .lw-serif { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; letter-spacing: 0.01em; }
  .lw-caps { font-family: 'EB Garamond', serif; font-weight: 700; font-size: 1.25rem; letter-spacing: 0.22em; text-transform: uppercase; }
  .lw-italic { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: 1.35rem; letter-spacing: 0.01em; }
  .lw-heavy { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.04em; }
  .lw-box { font-family: 'EB Garamond', serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; border: 1.5px solid currentColor; padding: 0.32rem 0.55rem; border-radius: 1px; }
  .lw-award { display: inline-flex; flex-direction: column; align-items: center; gap: 0.15rem; border: 1px solid rgba(255,255,255,0.45); border-radius: 2px; padding: 0.42rem 1rem; }
  .lw-award .lw-award-name { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--gold-light); transition: color 0.25s ease; }
  .lw-award .lw-award-tag { font-family: 'EB Garamond', serif; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); }
  .seen-in-track a.lw-award:hover { border-color: #fff; }
  .seen-in-track a.lw-award:hover .lw-award-name { color: #fff; }
  .seen-in-more { display: inline-block; margin-top: 1.9rem; font-family: 'EB Garamond', serif; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); transition: color 0.25s ease, border-color 0.25s ease; }
  .seen-in-more:hover { color: #fff; border-color: #fff; }
  @media (prefers-reduced-motion: reduce) { .seen-in-track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; } .seen-in-set[aria-hidden] { display: none; } }
  @media (max-width: 600px) { .seen-in { padding: 2.2rem 0 2.4rem; } .seen-in-track a { margin: 0 1.3rem; } .lw, .lw-serif, .lw-caps, .lw-italic, .lw-heavy { font-size: 1.05rem; } }
