
    /* ═══════════════════════════════════
       TOKENS
    ═══════════════════════════════════ */
    :root {
      --bg:         #17251f;
      --bg-nav:     #111d18;
      --bg-modal:   #20312a;
      --bg-el:      #273a31;
      --accent:     #f0a77a;
      --accent-u:   #f0a77a;
      --text-hi:    #fff5e7;
      --text-lo:    #d5dfd4;
      --text-mute:  #9caea2;
      --border:     rgba(255,255,255,.06);
      --f-serif:    'Playfair Display', Georgia, serif;
      --f-sans:     'Poppins', system-ui, sans-serif;
      --ease:       cubic-bezier(.4,0,.2,1);
      --max:        520px;
    }

    /* ═══════════════════════════════════
       RESET
    ═══════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text-hi);
      font-family: var(--f-sans);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { display: block; }
    a   { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: var(--f-sans); border: none; background: none; }
    .agency-demo-bar { min-height: 46px; padding: .55rem 1.4rem; background: #f8f8f6; color: #191919; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font: 500 .72rem/1.35 Arial, sans-serif; letter-spacing: .02em; }
    .agency-demo-bar strong { color: #ee1b0e; }
    .agency-demo-bar a { text-decoration: underline; text-underline-offset: 3px; }
    .agency-demo-bar a:hover { color: #ee1b0e; }
    .agency-sales { max-width: 620px; margin: 5rem auto; padding: 3.5rem 1.5rem; text-align: center; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
    .agency-sales > p:first-child { color: var(--accent-u); text-transform: uppercase; letter-spacing: .18em; font-size: .62rem; margin-bottom: 1rem; }
    .agency-sales h2 { font: 400 clamp(2.3rem,7vw,4rem)/1.05 var(--f-serif); margin-bottom: 1.2rem; }
    .agency-sales h2 em { color: var(--accent-u); }
    .agency-sales > p:nth-of-type(2) { color: var(--text-lo); font-size: .82rem; line-height: 1.65; max-width: 40ch; margin: 0 auto 1.5rem; }
    .agency-sales > div { display: flex; justify-content: center; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
    .agency-sales-main { display: inline-flex; gap: 1.4rem; align-items: center; border-radius: 100px; padding: .85rem 1.2rem; background: #f8f8f6; color: #191919; font-size: .72rem; font-weight: 600; }
    .agency-sales-main:hover { background: var(--accent-u); }
    .agency-sales-secondary { color: var(--text-lo); font-size: .72rem; text-decoration: underline; text-underline-offset: 4px; }

    /* ═══════════════════════════════════
       HERO  (60vh)
    ═══════════════════════════════════ */
    #hero {
      position: relative;
      height: 60vh;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: var(--hero-image) center 30% / cover no-repeat;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,10,10,.50) 0%,
        rgba(10,10,10,.25) 40%,
        rgba(10,10,10,.75) 75%,
        var(--bg) 100%
      );
    }
    .hero-body {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
      padding: 0 1.5rem;
      text-align: center;
    }
    .hero-title {
      font-family: var(--f-serif);
      font-size: clamp(3.4rem, 13vw, 6rem);
      font-weight: 600;
      line-height: .95;
      letter-spacing: -.01em;
      color: var(--text-hi);
      text-shadow: 0 2px 30px rgba(0,0,0,.5);
    }
    .hero-sub {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--accent-u);
    }
    .hero-tagline {
      font-size: .88rem;
      font-weight: 300;
      color: var(--text-lo);
      letter-spacing: .03em;
      margin-top: .1rem;
    }
    .hero-logo {
      width: 305px;
      max-width: 70vw;
      height: auto;
      filter: drop-shadow(0 2px 30px rgba(0,0,0,.5));
      margin-bottom: .5rem;
    }
    .hero-demo-label {
      color: var(--text-hi);
      font-size: .56rem;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      opacity: .78;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: .6rem;
      margin-top: .75rem;
    }
    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .35rem;
      padding: .8rem 1.4rem;
      border-radius: 100px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      transition: transform .2s, background .2s, color .2s;
    }
    .hero-btn-primary {
      background: var(--accent-u);
      color: var(--bg);
    }
    .hero-btn-primary:hover { transform: translateY(-2px); }
    .hero-btn-secondary {
      background: rgba(255,255,255,.08);
      color: var(--text-hi);
      border: 1px solid rgba(255,255,255,.15);
    }
    .hero-btn-secondary:hover { background: rgba(255,255,255,.15); }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .hero-secreto {
      margin-top: .5rem;
      font-size: .82rem;
      font-weight: 400;
      color: var(--accent-u);
      text-decoration: underline;
      text-underline-offset: 3px;
      letter-spacing: .03em;
      background: none;
      border: none;
      cursor: pointer;
      transition: opacity .2s;
    }
    .hero-secreto:hover { opacity: .75; }

    /* ═══════════════════════════════════
       STICKY NAV
    ═══════════════════════════════════ */
    #nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--bg-nav);
      border-bottom: 1px solid var(--border);
      padding-top: .5rem;
      padding-bottom: .5rem;
    }
    .nav-inner {
      display: flex;
      max-width: var(--max);
      margin: 0 auto;
    }
    .nav-btn {
      flex: 1;
      padding: 1rem .5rem;
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #a2b1a7;
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
      text-align: center;
    }
    .nav-btn:hover  { color: var(--text-hi); }
    .nav-btn.active { color: var(--accent-u); border-bottom-color: var(--accent-u); background: rgba(240,167,122,.11); font-weight: 600; }

    /* ═══════════════════════════════════
       CARTA WRAPPER
    ═══════════════════════════════════ */
    #carta { max-width: var(--max); margin: 0 auto; }

    /* ═══════════════════════════════════
       PIZZA SUBTABS
    ═══════════════════════════════════ */
    #pizza-subtabs {
      display: block;
      background: var(--bg-nav);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 60px;
      z-index: 99;
    }
    .subtabs-inner {
      display: flex;
      max-width: var(--max);
      margin: 0 auto;
    }
    .subtab-btn {
      flex: 1;
      padding: .65rem .5rem;
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #94a69a;
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
      text-align: center;
    }
    .subtab-btn:hover { color: var(--text-hi); }
    .subtab-btn.active { color: var(--accent-u); border-bottom-color: var(--accent-u); }

    /* Pizza group header — replaces generic sec-header inside pizzas */
    .pizza-group-header {
      padding: 2.5rem 1.5rem .75rem;
      text-align: center;
    }
    .pizza-group-title {
      font-family: var(--f-serif);
      font-size: clamp(2rem, 6vw, 3rem);
      font-weight: 600;
      font-style: italic;
      color: var(--text-hi);
      line-height: 1;
      margin-bottom: .6rem;
    }
    .pizza-group-desc {
      font-size: .78rem;
      font-weight: 300;
      color: var(--text-lo);
      line-height: 1.65;
      max-width: 40ch;
      margin: 0 auto;
    }

    /* ═══════════════════════════════════
       SECTION HEADER — editorial divider
    ═══════════════════════════════════ */
    .sec-header {
      padding: 3.5rem 1.5rem .5rem;
      text-align: center;
    }
    .sec-label { display: inline-block; }
    .sec-eyebrow {
      display: block;
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-u);
      margin-bottom: .3rem;
    }
    .sec-title {
      font-family: var(--f-serif);
      font-size: clamp(1.8rem, 5vw, 2.4rem);
      font-weight: 500;
      font-style: italic;
      color: var(--text-hi);
      line-height: 1;
    }

    /* ═══════════════════════════════════
       DISH CARD – VERTICAL CENTERED
    ═══════════════════════════════════ */
    .dish-list { padding: 0 0 2rem; }

    .dish-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2.5rem 1.5rem 0;
    }

    /* Product image — PNG floats on black */
    .dish-img-wrap {
      width: 100%;
      max-width: 280px;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .dish-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 12px 28px rgba(0,0,0,.55));
      transform: rotate(0deg) scale(1);
      transition: transform .45s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    /* Card is clickable */
    .dish-card { cursor: pointer; }

    .dish-card.open .dish-img-wrap img {
      transform: rotate(180deg) scale(1);
    }
    @media (hover: hover) {
      .dish-card:not(.open):hover .dish-img-wrap img {
        transform: scale(1.03);
      }
      .dish-card.open:hover .dish-img-wrap img {
        transform: rotate(180deg) scale(1.03);
      }
    }

    /* Collapsible detail */
    .dish-detail {
      width: 100%;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease;
    }
    .dish-card.open .dish-detail {
      max-height: 400px;
      opacity: 1;
    }
    .dish-detail-inner {
      padding-top: .5rem;
      padding-bottom: .2rem;
    }

    /* Cards without image (bebidas) */
    .dish-card.no-img {
      padding-top: 0;
      flex-direction: row;
      align-items: stretch;
    }
    .dish-card.no-img .dish-body {
      padding-top: 1rem;
      padding-bottom: 1rem;
      border-left: none;
      margin-left: 0;
      padding-left: 1.5rem;
    }
    .dish-card.no-img .dish-name {
      font-weight: 400;
      letter-spacing: .08em;
    }
    .dish-card.no-img:first-child .dish-body { padding-top: 1.5rem; }

    /* Chevron toggle indicator */
    .dish-chevron {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 1.4rem;
      height: 1.4rem;
      border-radius: 50%;
      border: 1px solid var(--border);
      color: var(--text-mute);
      font-size: .6rem;
      flex-shrink: 0;
      transition: transform .35s var(--ease), border-color .2s, color .2s;
    }
    .dish-card.open .dish-chevron {
      transform: rotate(180deg);
      border-color: var(--accent-u);
      color: var(--accent-u);
    }

    /* Text block */
    .dish-body {
      width: 100%;
      padding-top: 1.1rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
      border-left: 2px solid transparent;
      padding-left: .75rem;
      margin-left: -.75rem;
      transition: border-color .25s var(--ease);
    }
    .dish-card:last-child .dish-body { border-bottom: none; }
    @media (hover: hover) {
      .dish-card:hover .dish-body { border-left-color: var(--accent-u); }
    }

    .dish-name-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: .55rem;
    }
    .dish-name {
      font-family: var(--f-sans);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text-hi);
      line-height: 1.3;
    }
    .dish-price {
      font-family: var(--f-sans);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--accent-u);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .dish-tag {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .58rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--accent-u);
      background: rgba(240,167,122,.10);
      border: 1px solid rgba(240,167,122,.22);
      border-radius: 100px;
      padding: .18rem .6rem;
      margin-bottom: .4rem;
    }
    .dish-desc {
      font-size: .8rem;
      font-weight: 300;
      color: var(--text-lo);
      line-height: 1.6;
      margin-bottom: .4rem;
    }
    .dish-note {
      font-size: .72rem;
      color: var(--text-mute);
    }
    .dish-allergens {
      font-size: .68rem;
      color: var(--text-mute);
      margin-top: .3rem;
      letter-spacing: .02em;
    }
    .dish-hint {
      display: inline-block;
      font-size: .65rem;
      color: var(--accent-u);
      margin-top: .2rem;
      opacity: .75;
      transition: opacity .2s;
    }
    .dish-card.open .dish-hint { opacity: 0; }

    /* ═══════════════════════════════════
       MODAL
    ═══════════════════════════════════ */
    .modal-veil {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(0,0,0,.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }
    .modal-veil.open { opacity: 1; pointer-events: all; }

    .modal-box {
      position: relative;
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      border-radius: 20px;
      overflow: hidden;
      transform: translateY(20px) scale(.97);
      transition: transform .42s cubic-bezier(.34,1.56,.64,1);
      box-shadow: 0 40px 80px rgba(0,0,0,.8);
    }
    .modal-veil.open .modal-box { transform: none; }

    /* Oven image header */
    .modal-hero {
      position: relative;
      height: 200px;
      background: var(--hero-image) center 40% / cover no-repeat;
      flex-shrink: 0;
    }
    .modal-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(5,5,5,.3) 0%,
        rgba(5,5,5,.15) 40%,
        var(--bg-modal) 100%
      );
    }
    .modal-hero-label {
      position: absolute;
      bottom: 1.4rem;
      left: 1.8rem;
      right: 1.8rem;
    }
    .modal-hero-kicker {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--accent-u);
      display: block;
      margin-bottom: .35rem;
    }
    .modal-hero-title {
      font-family: var(--f-serif);
      font-size: clamp(1.9rem, 6vw, 2.6rem);
      font-weight: 700;
      line-height: .95;
      color: var(--text-hi);
      text-transform: uppercase;
      letter-spacing: -.01em;
    }

    /* Scrollable body */
    .modal-body {
      background: var(--bg-modal);
      padding: 1.5rem 1.8rem 2rem;
      overflow-y: auto;
      max-height: calc(90vh - 200px);
    }
    .modal-body::-webkit-scrollbar { width: 3px; }
    .modal-body::-webkit-scrollbar-track { background: transparent; }
    .modal-body::-webkit-scrollbar-thumb { background: rgba(240,167,122,.3); border-radius: 10px; }

    .modal-tagline {
      font-family: var(--f-serif);
      font-size: 1rem;
      font-style: italic;
      color: var(--accent-u);
      margin-bottom: 1.1rem;
      line-height: 1.3;
    }
    .modal-body p {
      font-size: .82rem;
      font-weight: 300;
      color: var(--text-lo);
      line-height: 1.75;
      margin-bottom: .9rem;
    }
    .modal-body p:last-child { margin-bottom: 0; }

    .modal-box-small {
      max-width: 420px;
      text-align: center;
    }

    /* Popup novedades */
    .popup-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
      background: var(--bg-modal);
    }
    .popup-label {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--accent-u);
      margin: 1.2rem 0 .6rem;
    }
    .popup-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.2rem;
      font-size: .85rem;
      color: var(--text-lo);
    }
    .popup-list li {
      padding: .4rem 0;
      border-bottom: 1px solid var(--border);
    }
    .popup-list li:last-child { border-bottom: none; }

    @media (max-width: 480px) {
      .modal-box-small { max-width: 92vw; }
      .popup-img { max-height: 34vh; }
      .modal-box-small .modal-body { max-height: calc(90vh - 34vh - 2rem); padding: 1.2rem 1.4rem 1.4rem; }
      .popup-list { font-size: .8rem; margin-bottom: 1rem; }
      .popup-list li { padding: .3rem 0; }
      .modal-reserva-title { font-size: 1.15rem; }
      .modal-reserva-text { font-size: .78rem; }
      .hero-btn { padding: .85rem 1rem; font-size: .65rem; }
    }
    .modal-box-small .modal-body {
      max-height: none;
      padding: 2rem 1.8rem;
    }
    .modal-reserva-title {
      font-family: var(--f-serif);
      font-size: 1.8rem;
      font-weight: 500;
      font-style: italic;
      color: var(--text-hi);
      margin-bottom: 1rem;
    }
    .modal-reserva-text {
      font-size: .85rem;
      font-weight: 300;
      color: var(--text-lo);
      line-height: 1.6;
      margin-bottom: .6rem;
    }
    .modal-reserva-text strong { color: var(--text-hi); font-weight: 500; }

    .modal-close-btn {
      position: absolute;
      top: .9rem; right: .9rem;
      z-index: 10;
      width: 2rem; height: 2rem;
      border-radius: 50%;
      background: rgba(0,0,0,.55);
      border: 1px solid rgba(255,255,255,.15);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem;
      transition: all .2s;
      backdrop-filter: blur(6px);
    }
    .modal-close-btn:hover { background: var(--accent); border-color: var(--accent); }

    /* ═══════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════ */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* ═══════════════════════════════════
       ALLERGEN BAR
    ═══════════════════════════════════ */
    #allergen-bar {
      max-width: var(--max);
      margin: 0 auto;
      padding: 1.5rem 1.5rem 3rem;
      border-top: 1px solid var(--border);
    }
    .allergen-legend-title {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--text-mute);
      margin-bottom: .75rem;
    }
    .allergen-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
    .a-pill {
      font-size: .65rem;
      color: var(--text-mute);
      background: var(--bg-nav);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: .2rem .65rem;
    }

    /* ═══════════════════════════════════
       FOOTER — editorial
    ═══════════════════════════════════ */
    footer {
      background: var(--bg-nav);
      margin-top: 1rem;
    }
    .footer-top {
      max-width: var(--max);
      margin: 0 auto;
      padding: 4rem 1.5rem 3rem;
      border-bottom: 1px solid var(--border);
    }
    .footer-headline {
      font-family: var(--f-sans);
      font-size: clamp(2.4rem, 8vw, 4.2rem);
      font-weight: 600;
      line-height: 1;
      color: var(--text-hi);
      margin-bottom: 1.5rem;
    }
    .footer-headline em {
      display: block;
      font-style: italic;
      color: var(--accent-u);
    }
    .footer-claim {
      font-size: .78rem;
      font-weight: 300;
      color: var(--text-lo);
      line-height: 1.7;
      max-width: 38ch;
      margin-bottom: 2rem;
    }
    .footer-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem 3rem;
    }
    .footer-meta-label {
      font-size: .55rem;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--text-mute);
      margin-bottom: .55rem;
      display: block;
    }
    .footer-meta-value {
      font-family: var(--f-sans);
      font-size: .95rem;
      color: var(--text-hi);
      line-height: 1.55;
    }
    .footer-meta-value a {
      color: var(--text-hi);
      transition: color .2s;
    }
    .footer-meta-value a:hover { color: var(--accent-u); }
    .footer-hours {
      font-size: .78rem;
      font-weight: 300;
      color: var(--text-lo);
      line-height: 1.9;
    }
    .footer-hours strong { color: var(--text-hi); font-weight: 500; }
    .footer-hours-note {
      display: block;
      margin-top: .4rem;
      font-size: .65rem;
      color: var(--text-mute);
      font-style: italic;
    }
    .footer-reviews {
      max-width: var(--max);
      margin: 0 auto;
      padding: 2.5rem 1.5rem 1rem;
      text-align: center;
    }
    .footer-reviews-text {
      font-size: .85rem;
      color: var(--text-lo);
      margin-bottom: .7rem;
    }
    .footer-reviews-btn {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .75rem 1.4rem;
      border-radius: 100px;
      background: var(--bg-el);
      border: 1px solid var(--border);
      color: var(--text-hi);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: background .2s, border-color .2s, color .2s;
    }
    .footer-reviews-btn:hover {
      background: var(--accent-u);
      border-color: var(--accent-u);
      color: var(--bg);
    }
    .demo-note {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 1.5rem 1.5rem;
      color: #a9baad;
      font-size: .68rem;
      line-height: 1.65;
    }
    .footer-bottom {
      max-width: var(--max);
      margin: 0 auto;
      padding: 1.1rem 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-size: .65rem;
      color: var(--text-mute);
      letter-spacing: .04em;
    }
    .footer-bottom .fb-accent { color: var(--accent-u); }
    .agency-credit a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
    .agency-credit a:hover, .agency-credit a:focus-visible { color: var(--text-hi); border-bottom-color: currentColor; }

    /* ═══════════════════════════════════
       FAQ SEO LOCAL
    ═══════════════════════════════════ */
    .faq-section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 3rem 1.5rem;
      background: var(--bg-el);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .faq-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .faq-eyebrow {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-u);
      display: block;
      margin-bottom: .6rem;
    }
    .faq-title {
      font-family: var(--f-serif);
      font-size: clamp(1.8rem, 5vw, 2.6rem);
      font-weight: 500;
      font-style: italic;
      color: var(--text-hi);
      line-height: 1.1;
      margin: 0;
    }
    .faq-list {
      display: grid;
      gap: 1.5rem;
    }
    .faq-item {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.2rem 1.5rem;
    }
    .faq-question {
      font-size: .95rem;
      font-weight: 600;
      color: var(--text-hi);
      margin: 0 0 .6rem 0;
      line-height: 1.4;
    }
    .faq-answer {
      font-size: .85rem;
      color: var(--text-lo);
      line-height: 1.6;
      margin: 0;
    }
    .faq-answer strong {
      color: var(--text-hi);
      font-weight: 500;
    }

    /* ═══════════════════════════════════
       BREADCRUMBS
    ═══════════════════════════════════ */
    .breadcrumbs {
      max-width: var(--max);
      margin: 0 auto;
      padding: 1rem 1.5rem;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .breadcrumbs ol {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .75rem;
      color: var(--text-lo);
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .breadcrumbs li:not(:last-child)::after {
      content: '/';
      margin-left: .5rem;
      color: var(--text-mute);
    }
    .breadcrumbs a {
      color: var(--text-lo);
      text-decoration: none;
      transition: color .2s;
    }
    .breadcrumbs a:hover {
      color: var(--accent-u);
    }
    .breadcrumbs li[aria-current="page"] {
      color: var(--text-hi);
      font-weight: 500;
    }

    /* ═══════════════════════════════════
       TESTIMONIOS
    ═══════════════════════════════════ */
    .testimonials-section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 3rem 1.5rem;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .testimonials-eyebrow {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-u);
      display: block;
      margin-bottom: .6rem;
    }
    .testimonials-title {
      font-family: var(--f-serif);
      font-size: clamp(1.8rem, 5vw, 2.6rem);
      font-weight: 500;
      font-style: italic;
      color: var(--text-hi);
      line-height: 1.1;
      margin: 0;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .testimonial-card {
      background: var(--bg-el);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      position: relative;
    }
    .testimonial-card::before {
      content: none;
    }
    .testimonial-text {
      font-size: .9rem;
      color: var(--text-lo);
      line-height: 1.6;
      margin: 0 0 1rem 0;
      font-style: italic;
    }
    .testimonial-author {
      font-size: .8rem;
      color: var(--text-mute);
      margin: 0;
      text-align: right;
      font-weight: 500;
    }

    /* ═══════════════════════════════════
       TOAST
    ═══════════════════════════════════ */
    #toast {
      position: fixed;
      bottom: 1.8rem; left: 50%;
      transform: translateX(-50%) translateY(60px);
      background: var(--bg-modal);
      color: var(--text-hi);
      border: 1px solid rgba(240,167,122,.3);
      border-radius: 100px;
      padding: .6rem 1.3rem;
      font-size: .78rem;
      font-weight: 500;
      z-index: 998;
      box-shadow: 0 8px 24px rgba(0,0,0,.5);
      opacity: 0;
      transition: transform .36s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
      pointer-events: none;
      white-space: nowrap;
    }
    #toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

    #back-to-top {
      position: fixed;
      bottom: 1.2rem;
      right: 1.2rem;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg-el);
      color: var(--text-hi);
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .25s ease, transform .25s ease, background .2s;
      z-index: 997;
      pointer-events: none;
      box-shadow: 0 6px 18px rgba(0,0,0,.4);
    }
    #back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    #back-to-top:hover { background: var(--accent-u); color: var(--bg); }

    /* ═══════════════════════════════════
       RESPONSIVE — SMALL MOBILE
    ═══════════════════════════════════ */
    @media (max-width: 420px) {
      #hero { height: 55vh; min-height: 380px; }
      .hero-logo { width: 210px; max-width: 55vw; }
      .hero-actions { flex-direction: column; align-items: stretch; gap: .5rem; }
      .hero-btn { width: 100%; padding: .7rem 1rem; font-size: .68rem; }
      .nav-btn { padding: .85rem .3rem; font-size: .58rem; letter-spacing: .12em; }
      .dish-img-wrap { max-width: 240px; }
      .footer-grid   { grid-template-columns: 1fr; }
      #back-to-top { width: 2.8rem; height: 2.8rem; font-size: 1.2rem; }
    }

    @media (max-width: 360px) {
      .nav-btn { font-size: .52rem; letter-spacing: .08em; padding: .8rem .2rem; }
    }

    /* ═══════════════════════════════════
       RESPONSIVE — TABLET  ≥ 700px
    ═══════════════════════════════════ */
    @media (min-width: 700px) {
      :root { --max: 680px; }

      .dish-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 1.5rem;
      }

      /* last card spanning full width if odd total */
      .dish-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
      }

      .dish-img-wrap { max-width: 260px; }
    }

    /* ═══════════════════════════════════
       RESPONSIVE — DESKTOP  ≥ 1100px
    ═══════════════════════════════════ */
    @media (min-width: 1100px) {
      :root { --max: 1080px; }

      #hero { height: 70vh; }

      .hero-title { font-size: clamp(5rem, 8vw, 8rem); }

      /* Nav wider */
      .nav-inner { max-width: var(--max); }

      /* Section header centered on wide */
      .sec-header {
        padding: 4rem 0 0;
        text-align: center;
      }

      /* 3-column dish grid on desktop */
      .dish-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 2rem;
      }

      .dish-card:last-child:nth-child(odd) {
        grid-column: unset;
        max-width: unset;
        margin: 0;
      }

      .dish-img-wrap { max-width: 280px; }

      .dish-name { font-size: .88rem; letter-spacing: .08em; }

      /* Footer wider */
      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 2rem 3rem;
      }
    }

    /* ═══════════════════════════════════
       RESPONSIVE — WIDE  ≥ 1400px
    ═══════════════════════════════════ */
    @media (min-width: 1400px) {
      :root { --max: 1280px; }

      .dish-list { grid-template-columns: repeat(4, 1fr); }

      .dish-img-wrap { max-width: 300px; }
    }

    /* Reservation form */
    .reserva-form { text-align: left; margin-top: 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
    .reserva-form label { font-size: .65rem; font-weight: 500; color: var(--text-mute); text-transform: uppercase; letter-spacing: .1em; margin-bottom: -.2rem; }
    .reserva-form input,
    .reserva-form textarea { width: 100%; background: var(--bg-nav); border: 1px solid var(--border); border-radius: 999px; padding: .8rem 1rem; color: var(--text-hi); font-family: var(--f-sans); font-size: .85rem; }
    .reserva-form textarea { border-radius: 14px; resize: none; }
    .reserva-form input:focus,
    .reserva-form textarea:focus { outline: 1px solid var(--accent); }
    .reserva-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
    .reserva-form input[type="date"],
    .reserva-form input[type="time"] { padding: .65rem 1rem; color-scheme: dark; }
    .reserva-form input[type="date"]::-webkit-calendar-picker-indicator,
    .reserva-form input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
  
