
  /* ============================================================
     MAROGUI — colors & type from the official brand manual
     ============================================================ */
  :root {
    --lime: #9BD729;       /* official brand mark color, sampled from logo */
    --lime-deep: #7eb31a;
    --ink: #1a1c14;        /* near-black with green undertone */
    --gray: #6a6a60;
    --gray-soft: #b5b3a7;
    --paper: #faf6ea;      /* warm cream */
    --paper-deep: #efe9d6;
    --line: rgba(26,28,20,0.12);

    /* Type — Galano Grotesque substitute. Manual permits Arial as secondary. */
    --font-display: 'Mulish', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Mulish', 'Helvetica Neue', Arial, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar { display: none; width: 0; }
  body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  body::-webkit-scrollbar { display: none; width: 0; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }

  /* ============================================================
     UTILITIES
     ============================================================ */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
  }
  .eyebrow.lime { color: var(--lime-deep); }
  .display {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.012em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .body-copy {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    font-weight: 400;
  }

  /* ============================================================
     NAV — small logo left, links right, like Máximo
     ============================================================ */
  nav.top {
    position: fixed;
    top: -1px; left: 0; right: 0;
    padding-top: 1px;
    z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  nav.top.scrolled { border-bottom-color: var(--line); }
  nav.top .nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  nav.top .nav-logo img {
    width: 92px;
    height: auto;
    display: block;
  }
  nav.top .nav-links {
    display: flex;
    gap: 38px;
    align-items: center;
  }
  nav.top .nav-links a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.2s;
  }
  nav.top .nav-links a:hover { color: var(--lime-deep); }
  nav.top .lang {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-soft);
    font-weight: 600;
  }
  nav.top .lang .active { color: var(--ink); }
  nav.top .lang span:not(.active):hover { color: var(--ink); cursor: pointer; }

  /* mobile menu */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px; height: 28px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--ink);
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-drawer {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--paper);
    padding: 30px 24px 40px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 49;
  }
  .nav-drawer.open { transform: translateY(0); }
  .nav-drawer a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer .lang-row {
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--gray);
    font-weight: 600;
  }

  /* ============================================================
     HERO — typographic, like Máximo. No logo here.
     ============================================================ */
  .hero {
    padding: 180px 0 120px;
    background: var(--paper);
  }
  .hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .hero .opener {
    max-width: 1100px;
  }
  .hero .opener .display {
    font-size: clamp(40px, 7vw, 96px);
  }
  .hero .opener .display .accent { color: var(--lime-deep); }
  .hero .opener .lede {
    margin-top: 48px;
    max-width: 720px;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    color: var(--gray);
  }
  .hero .opener .meta {
    margin-top: 56px;
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .hero .opener .meta .item .lbl {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .hero .opener .meta .item .val {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  /* ============================================================
     FULL-BLEED IMAGE BAND — recurring section divider
     ============================================================ */
  .image-band {
    width: calc(100% - 96px);
    margin: 0 48px;
    height: 78vh;
    min-height: 460px;
    max-height: 800px;
    background: var(--paper-deep);
    position: relative;
    overflow: hidden;
  }
  .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 36px;
    color: var(--ink);
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background:
      repeating-linear-gradient(45deg,
        rgba(26,28,20,0.06) 0 22px,
        rgba(26,28,20,0.02) 22px 44px),
      linear-gradient(180deg, var(--paper-deep), #d8cfb4);
  }
  .image-placeholder.dark {
    color: var(--paper);
    background:
      repeating-linear-gradient(45deg,
        rgba(0,0,0,0.18) 0 22px,
        rgba(0,0,0,0.06) 22px 44px),
      linear-gradient(180deg, #2a2d20, #1a1c14);
  }
  .image-placeholder.lime {
    color: var(--ink);
    background:
      repeating-linear-gradient(45deg,
        rgba(26,28,20,0.10) 0 22px,
        rgba(26,28,20,0.04) 22px 44px),
      linear-gradient(180deg, var(--lime), #b5db74);
  }
  .image-placeholder .tag {
    background: rgba(250,246,234,0.92);
    padding: 8px 14px;
    color: var(--ink);
  }
  .image-placeholder.dark .tag { background: rgba(26,28,20,0.85); color: var(--paper); }

  /* ============================================================
     SECTIONS — restrained, lots of whitespace
     ============================================================ */
  section.spread {
    padding: 140px 0;
    background: var(--paper);
  }
  section.spread.alt {
    background: var(--paper-deep);
  }
  .spread-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
  }
  .spread-grid .col-label .eyebrow { display: block; }
  .spread-grid .col-label .num {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 64px;
    color: var(--lime-deep);
    line-height: 1;
    margin-top: 18px;
  }
  .spread-content .display {
    font-size: clamp(28px, 3.6vw, 48px);
    max-width: 860px;
    margin-bottom: 36px;
  }
  .spread-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 22px;
    max-width: 680px;
  }
  .spread-content .sig {
    margin-top: 36px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lime-deep);
  }

  /* ============================================================
     MENU — sparse list, like a printed page
     ============================================================ */
  .menu-section { padding: 160px 0; background: var(--paper); }
  .menu-section .menu-head {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
  }
  .menu-section .menu-head .display {
    font-size: clamp(36px, 4.4vw, 56px);
  }
  .menu-section .menu-tabs {
    display: flex;
    gap: 28px;
    margin-bottom: 64px;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .menu-section .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-section .menu-tabs button {
    background: none;
    border: none;
    padding: 18px 0;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-soft);
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
    transition: color 0.2s;
  }
  .menu-section .menu-tabs button:hover { color: var(--ink); }
  .menu-section .menu-tabs button.active { color: var(--ink); }
  .menu-section .menu-tabs button.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--lime);
  }
  .menu-list { max-width: 880px; margin: 0 auto; }
  .menu-list .row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
  }
  .menu-list .row .name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .menu-list .row .desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 400;
    max-width: 560px;
  }
  .menu-list .row .price {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
  .menu-list .row .tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lime-deep);
    font-weight: 700;
    margin-left: 10px;
    vertical-align: middle;
  }
  .menu-foot { text-align: center; margin-top: 64px; }
  .menu-foot p {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 0.02em;
  }
  .menu-foot a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--lime);
    padding-bottom: 2px;
    font-weight: 600;
  }

  /* ============================================================
     GALLERY — editorial 3-image strip
     ============================================================ */
  .gallery {
    padding: 0;
    background: var(--paper);
  }
  .gallery .gallery-head {
    padding: 120px 0 60px;
  }
  .gallery .gallery-head .eyebrow { display: block; margin-bottom: 24px; }
  .gallery .gallery-head .display { font-size: clamp(32px, 4vw, 52px); max-width: 720px; }
  .gallery .strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    padding: 0 48px;
  }
  .gallery .strip .image-placeholder { height: 60vh; min-height: 360px; max-height: 600px; padding: 24px; font-size: 10px; }
  .gallery .strip .image-placeholder .tag { padding: 6px 10px; }

  /* ============================================================
     CTA BAND — Reservar
     ============================================================ */
  .cta-band {
    background: var(--ink);
    color: var(--paper);
    padding: 140px 0;
    text-align: center;
  }
  .cta-band .display {
    color: var(--paper);
    font-size: clamp(36px, 5vw, 72px);
    max-width: 900px;
    margin: 0 auto 32px;
  }
  .cta-band .display .accent { color: var(--lime); }
  .cta-band p {
    color: rgba(250,246,234,0.7);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  .cta-band .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .reservar-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cta-band a.reservar-tel {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,246,234,0.5);
    transition: color 0.2s;
  }
  .cta-band a.reservar-tel:hover { color: var(--paper); }
  .cta-band a.tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(250,246,234,0.45);
    font-size: 11px;
    letter-spacing: 0.08em;
    transition: color 0.2s;
  }
  .cta-band a.tc-badge:hover { color: rgba(250,246,234,0.8); }
  .cta-band a.tc-badge svg { flex-shrink: 0; opacity: 0.8; }
  .cta-band a.tc-badge strong { color: #00aa6c; font-weight: 700; }
  .ratings-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ratings-sep {
    color: rgba(250,246,234,0.2);
    font-size: 12px;
  }
  .cta-band a.primary,
  .cta-band a.secondary {
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 0;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
  }
  .cta-band a.primary {
    background: var(--lime);
    color: var(--ink);
  }
  .cta-band a.primary:hover { background: var(--paper); }
  .cta-band a.secondary {
    color: var(--paper);
    border: 1px solid rgba(250,246,234,0.3);
  }
  .cta-band a.secondary:hover {
    border-color: var(--lime);
    color: var(--lime);
  }

  /* ============================================================
     VISIT — hours / address / contact in 3-col
     ============================================================ */
  .visit {
    padding: 140px 0;
    background: var(--paper);
  }
  .visit-head { margin-bottom: 80px; max-width: 720px; }
  .visit-head .eyebrow { display: block; margin-bottom: 22px; }
  .visit-head .display { font-size: clamp(32px, 4vw, 52px); }
  .visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  .visit-col h4 {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lime-deep);
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .visit-col .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
  }
  .visit-col .row .day { font-weight: 600; color: var(--ink); }
  .visit-col .row .time { color: var(--gray); }
  .visit-col .row.closed .day, .visit-col .row.closed .time { color: var(--gray-soft); }
  .visit-col p.addr {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--ink);
  }
  .visit-col .contact a {
    display: block;
    text-decoration: none;
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
  }
  .visit-col .contact a:hover { color: var(--lime-deep); }
  .visit-col .contact .label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 4px;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer {
    background: var(--ink);
    color: rgba(250,246,234,0.7);
    padding: 80px 0 30px;
    font-size: 13px;
  }
  footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250,246,234,0.1);
  }
  footer .footer-brand img {
    width: 130px;
    margin-bottom: 22px;
    display: block;
  }
  footer .footer-brand p {
    line-height: 1.7;
    max-width: 320px;
    color: rgba(250,246,234,0.55);
    font-size: 13px;
  }
  footer .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 24px;
  }
  footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(250,246,234,0.2);
    border-radius: 50%;
    color: rgba(250,246,234,0.6);
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
  }
  footer .social-icons a:hover {
    border-color: var(--lime);
    color: var(--lime);
  }
  footer .social-icons svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
  footer h5 {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 700;
    margin-bottom: 20px;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 10px; }
  footer ul li a,
  footer ul li {
    color: rgba(250,246,234,0.65);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 13px;
  }
  footer ul li a:hover { color: var(--lime); }
  footer .footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(250,246,234,0.4);
    letter-spacing: 0.04em;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1024px) {
    .container { padding: 0 32px; }
    nav.top .nav-inner { padding: 16px 32px; }
    .hero { padding: 140px 0 90px; }
    .spread-grid, .menu-section .menu-head { grid-template-columns: 1fr; gap: 32px; }
    .visit-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .gallery .strip { grid-template-columns: 1fr 1fr; }
    .gallery .strip .image-placeholder:nth-child(3) { grid-column: 1 / -1; }
  }

  @media (max-width: 720px) {
    .container { padding: 0 20px; }
    nav.top .nav-inner { padding: 14px 20px; }
    nav.top .nav-links a:not(.lang) { display: none; }
    nav.top .nav-links { gap: 0; }
    .nav-toggle { display: flex; }
    nav.top .lang { display: none; }

    .hero { padding: 110px 0 70px; }
    .hero .opener .display { font-size: clamp(32px, 9vw, 56px); }
    .hero .opener .lede { margin-top: 32px; font-size: 15px; }
    .hero .opener .meta { gap: 30px; padding-top: 24px; margin-top: 40px; }
    .hero .opener .meta .item .val { font-size: 14px; }

    .image-band { height: 50vh; min-height: 320px; width: calc(100% - 40px); margin-left: 20px; margin-right: 20px; }
    .image-placeholder { padding: 20px; }

    section.spread, .menu-section, .visit, .gallery .gallery-head { padding-top: 80px; padding-bottom: 80px; }
    .menu-section { padding: 80px 0; }
    .spread-content .display { font-size: clamp(24px, 7vw, 36px); }
    .spread-content p { font-size: 15px; line-height: 1.7; }
    .menu-section .menu-head { margin-bottom: 40px; }
    .menu-section .menu-head .display { font-size: clamp(28px, 8vw, 40px); }
    .menu-section .menu-tabs { margin-bottom: 36px; gap: 20px; }
    .menu-section .menu-tabs button { font-size: 11px; padding: 14px 0; letter-spacing: 0.16em; }
    .menu-list .row { padding: 20px 0; grid-template-columns: 1fr auto; gap: 16px; }
    .menu-list .row .name { font-size: 15px; }
    .menu-list .row .desc { font-size: 13px; }
    .menu-list .row .price { font-size: 14px; }
    .menu-foot { margin-top: 40px; }

    .gallery .gallery-head { padding: 60px 0 30px; }
    .gallery .gallery-head .display { font-size: clamp(26px, 8vw, 36px); }
    .gallery .strip { grid-template-columns: 1fr; gap: 2px; }
    .gallery .strip .image-placeholder { height: 56vh; min-height: 280px; }

    .cta-band { padding: 90px 0; }
    .cta-band .display { font-size: clamp(28px, 8vw, 42px); }
    .cta-band a.primary, .cta-band a.secondary { padding: 16px 28px; font-size: 11px; }

    .visit { padding: 80px 0; }
    .visit-head { margin-bottom: 50px; }
    .visit-head .display { font-size: clamp(26px, 7.5vw, 38px); }
    .visit-grid { grid-template-columns: 1fr; gap: 40px; }
    .visit-col p.addr { font-size: 16px; }
    .visit-col .row { font-size: 14px; }
    .visit-col .contact a { font-size: 15px; }

    footer { padding: 60px 0 24px; }
    footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 36px; }
    footer .footer-brand { grid-column: 1 / -1; }
    footer .footer-bottom { padding-top: 22px; font-size: 10px; flex-direction: column; gap: 8px; }
  }

  /* ============================================================
     HERO — line-by-line reveal on load
     ============================================================ */
  .hl { display: block; overflow: hidden; line-height: 1.08; }
  .hli {
    display: block;
    transform: translateY(108%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hli.in { transform: translateY(0); }

  .hero-fade {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .hero-fade.in { opacity: 1; transform: none; }

  /* ============================================================
     SCROLL REVEAL
     ============================================================ */
  [data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  [data-reveal].revealed { opacity: 1; transform: translateY(0); }
  [data-reveal].d1 { transition-delay: 0.10s; }
  [data-reveal].d2 { transition-delay: 0.22s; }
  [data-reveal].d3 { transition-delay: 0.36s; }

  /* ============================================================
     NAV — sliding underline + active state
     ============================================================ */
  nav.top .nav-links a { position: relative; }
  nav.top .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1.5px;
    background: var(--lime-deep);
    transition: width 0.3s ease;
  }
  nav.top .nav-links a:hover::after,
  nav.top .nav-links a.active::after { width: 100%; }
  nav.top .nav-links a.active { color: var(--lime-deep); }

  /* ============================================================
     MICRO-INTERACTIONS
     ============================================================ */

  /* Buttons — lift + shadow */
  .cta-band a.primary,
  .cta-band a.secondary {
    transition: background 0.25s ease, color 0.25s ease,
                border-color 0.25s ease, transform 0.22s ease,
                box-shadow 0.22s ease;
  }
  .cta-band a.primary:hover {
    background: var(--paper);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26,28,20,0.20);
  }
  .cta-band a.secondary:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-3px);
  }

  /* Gallery cells */
  .gallery .strip .image-placeholder {
    transition: filter 0.45s ease;
  }
  .gallery .strip .image-placeholder:hover { filter: brightness(0.88); }

  /* Hero meta items */
  .hero .opener .meta .item {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero .opener .meta .item:hover { transform: translateY(-5px); }

  /* Visit schedule rows */
  .visit-col .row {
    transition: padding-left 0.25s ease;
  }
  .visit-col .row:not(.closed):hover { padding-left: 8px; }

  /* Spread section number */
  .spread-grid .col-label .num {
    transition: color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  section.spread:hover .col-label .num {
    color: var(--lime);
    transform: translateX(4px);
  }

  /* Footer links */
  footer ul li a {
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  footer ul li a:hover {
    color: var(--lime);
    padding-left: 6px;
  }

  /* ============================================================
     PAGE TITLE — nombre grande en verde en el col-label
     ============================================================ */
  .page-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 6.5vw, 88px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 0.95;
    color: var(--lime-deep);
    margin-top: 14px;
  }

  /* ============================================================
     SERVICE TABS — Desayuno / Comida / Cena
     ============================================================ */
  .service-tabs {
    display: inline-flex;
    gap: 0;
    border: 1.5px solid var(--line);
    margin-bottom: 48px;
  }
  .service-tabs button {
    background: none;
    border: none;
    border-right: 1.5px solid var(--line);
    padding: 14px 32px;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-soft);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .service-tabs button:last-child { border-right: none; }
  .service-tabs button:hover {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 0 22px rgba(155,215,41,0.45), 0 0 48px rgba(155,215,41,0.15);
  }
  .service-tabs button.active {
    background: var(--ink);
    color: var(--paper);
  }

  /* ============================================================
     MENU TABS — fix para funcionar fuera de .menu-section
     ============================================================ */
  .menu-tabs {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs button {
    background: none;
    border: none;
    padding: 18px 0;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-soft);
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
    transition: color 0.2s;
  }
  .menu-tabs button:hover { color: var(--ink); }
  .menu-tabs button.active { color: var(--ink); }
  .menu-tabs button.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--lime);
  }

  /* ============================================================
     GALLERY — "Ver más" link
     ============================================================ */
  .gallery-cta {
    padding: 36px 0 80px;
    display: flex;
    justify-content: flex-end;
  }
  .gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--lime-deep);
    padding-bottom: 4px;
    transition: color 0.2s ease, gap 0.25s ease;
  }
  .gallery-more:hover {
    color: var(--lime-deep);
    gap: 16px;
  }

  /* ============================================================
     CULT-UI GLOBAL ENHANCEMENTS
     ============================================================ */

  /* 1. Page fade-in on load */
  body { animation: page-fade-in 0.38s ease both; }
  @keyframes page-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* 2. Nav logo entrance */
  nav.top .nav-logo img {
    animation: logo-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
  }
  @keyframes logo-in {
    from { opacity: 0; transform: scale(0.93) translateY(-7px); }
    to   { opacity: 1; transform: none; }
  }

  /* 3. Footer line draw-in */
  footer .footer-grid { border-bottom: none; position: relative; }
  footer .footer-grid::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    height: 1px; background: rgba(250,246,234,0.1);
    width: 0;
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  footer .footer-grid.line-in::after { width: 100%; }

  /* 4. Eyebrow lateral line on scroll-reveal */
  [data-reveal].eyebrow {
    display: flex; align-items: center; gap: 14px;
  }
  [data-reveal].eyebrow::after {
    content: ''; display: inline-block;
    height: 1px; background: currentColor; opacity: 0.35;
    width: 0; flex-shrink: 0;
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
  }
  [data-reveal].eyebrow.revealed::after { width: 44px; }

  /* 5. Image placeholder tilt — GPU only */
  .image-placeholder { will-change: transform; }

  /* 6. Floating CTA badge */
  .float-cta {
    position: fixed; bottom: 28px; right: 28px;
    background: var(--lime); color: var(--ink);
    font-family: var(--font-body);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    padding: 14px 22px;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s;
    z-index: 90; pointer-events: none;
  }
  .float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
  .float-cta:hover {
    background: var(--lime);
    box-shadow: 0 0 28px rgba(155,215,41,0.55), 0 0 60px rgba(155,215,41,0.2);
  }
  @media (max-width: 720px) {
    .float-cta { bottom: 18px; right: 18px; padding: 12px 18px; }
  }

  /* ── Menu symbols (chef / vegetariano) ── */
  .sym {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    margin-left: 7px; vertical-align: middle; flex-shrink: 0;
  }
  .sym-chef { background: var(--lime); color: var(--ink); font-size: 11px; font-family: var(--font-body); font-weight: 700; }
  .sym-veg  { background: #2d6e3e; color: #fff; }
  .sym-veg svg { display: block; }

  .menu-legend {
    display: flex; gap: 28px; flex-wrap: wrap;
    padding: 22px 0 0; margin-top: 28px;
    border-top: 1px solid rgba(26,28,20,0.08);
    font-size: 12px; color: var(--gray); letter-spacing: 0.03em;
  }
  .menu-legend-item { display: flex; align-items: center; gap: 9px; }

  /* ── Menu subtitles (section headers within a panel) ── */
  .menu-subtitle {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lime-deep);
    padding: 32px 0 10px;
    border-bottom: 1px solid rgba(26,28,20,0.08);
    margin-bottom: 4px;
  }
  .menu-subtitle:first-child { padding-top: 8px; }

  /* ── Chilaquiles salsas note ── */
  .salsas-note {
    background: rgba(155,215,41,0.06);
    border-left: 2px solid var(--lime);
    padding: 14px 18px;
    margin: 8px 0 16px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }
  .salsas-note strong { color: var(--ink); font-weight: 600; letter-spacing: 0.04em; }

  /* ── Café 2-col grid ── */
  .cafe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 4px;
  }
  .cafe-grid .row { border-bottom: 1px solid rgba(26,28,20,0.07); }
  @media (max-width: 600px) { .cafe-grid { grid-template-columns: 1fr; } }
