    /* ================================================================
       DESIGN TOKENS — La Flamenca UK
       Burgundy · Gold/Amber · Dark Black
       ================================================================ */
    :root {
      /* Colors */
      --color-cream:      #F0E5D0;
      --color-charcoal:   #1A0B0B;
      --color-smoke:      #F8F1E4;
      --color-taupe:      #C9A96A;
      --color-greige:     #D8C29A;
      --color-obsidian:   #140808;
      --color-burgundy:   #6E1423;
      --color-burgundy-d: #4A0D18;
      --color-ember:      #A31621;
      --color-gold:       #C69A3E;
      --color-gold-light: #E2C67C;
      --color-stone:      #9A7F63;
      --color-bark:       #6A4A34;

      /* Fonts */
      --font-serif: 'Playfair Display', 'TT Ramillas Variable', Georgia, serif;
      --font-sans:  'Satoshi', system-ui, sans-serif;

      /* Type scale */
      --text-caption:     12px;
      --text-body-sm:     14px;
      --text-body:        15px;
      --text-heading-sm:  26px;
      --text-subheading:  42px;
      --text-heading:     50px;
      --text-heading-lg:  69px;
      --text-display:     115px;

      /* Spacing */
      --sp-4:   4px;
      --sp-6:   6px;
      --sp-8:   8px;
      --sp-10:  10px;
      --sp-12:  12px;
      --sp-16:  16px;
      --sp-20:  20px;
      --sp-24:  24px;
      --sp-28:  28px;
      --sp-32:  32px;
      --sp-42:  42px;
      --sp-64:  64px;
      --sp-92:  92px;

      /* Layout */
      --max-w:       1200px;
      --radius:      3px;
      --nav-h:       72px;
      --topbar-h:    38px;
    }

    /* ================================================================
       RESET
       ================================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--color-cream);
      color: var(--color-charcoal);
      font-family: var(--font-sans);
      font-weight: 500;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; }

    /* ================================================================
       BUTTONS
       ================================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: var(--sp-10) var(--sp-20);
      border: 1px solid currentColor;
      border-radius: var(--radius);
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      letter-spacing: 0.01em;
      text-transform: uppercase;
      background: transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.25s ease;
    }
    .btn:hover { opacity: 0.6; }
    .btn--light { color: var(--color-cream); }
    .btn--dark  { color: var(--color-charcoal); }
    .btn--solid { align-self: flex-start; background: var(--color-obsidian); color: var(--color-cream); border-color: var(--color-obsidian); padding: var(--sp-16) var(--sp-32); font-size: 13px; }
    .btn--solid:hover { opacity: 0.85; }

    /* Prominent gold reservation button */
    .btn--gold {
      background: var(--color-gold);
      color: var(--color-obsidian);
      border-color: var(--color-gold);
      padding: var(--sp-16) var(--sp-32);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      box-shadow: 0 6px 24px rgba(198,154,62,0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(198,154,62,0.5); opacity: 1; background: var(--color-gold-light); }
    .btn--lg { padding: var(--sp-20) var(--sp-42); font-size: 14px; }
    .btn--lg-outline { padding: var(--sp-16) var(--sp-32); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; }

    /* ================================================================
       LAYOUT
       ================================================================ */
    .wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--sp-32);
    }

    /* ================================================================
       NAV
       ================================================================ */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 210;
      height: var(--topbar-h);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-obsidian);
      border-bottom: 1px solid rgba(198,154,62,0.25);
    }
    .topbar__text {
      display: flex;
      align-items: center;
      gap: var(--sp-8, 8px);
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.02em;
      color: var(--color-gold-light);
      text-align: center;
      padding: 0 var(--sp-32);
    }
    .topbar__text svg { width: 13px; height: 13px; stroke: var(--color-gold-light); fill: none; stroke-width: 1.6; flex-shrink: 0; }
    .nav {
      position: fixed;
      top: var(--topbar-h);
      left: 0;
      right: 0;
      z-index: 200;
      padding: 0 var(--sp-32);
      height: var(--nav-h);
      display: flex;
      align-items: center;
      transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }
    .nav--hidden { transform: translateY(-100%); }
    .nav__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: var(--sp-24);
    }
    .nav__logo { grid-column: 1; }
    .nav__links { grid-column: 2; justify-self: center; }
    .nav__right { grid-column: 3; justify-self: end; }
    .nav__logo {
      display: flex;
      align-items: center;
      gap: var(--sp-12, 12px);
      line-height: 1;
      white-space: nowrap;
    }
    .nav__logo-img {
      height: 40px;
      width: auto;
      object-fit: contain;
      border-radius: var(--radius);
    }
    .nav__logo-name {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 22px;
      letter-spacing: 0.04em;
      color: var(--color-smoke);
    }
    .nav__logo-sub {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 9px;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-top: 4px;
    }
    .nav__links {
      display: flex;
      align-items: center;
      gap: var(--sp-28);
      list-style: none;
    }
    .nav__links a {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      letter-spacing: 0.01em;
      text-transform: uppercase;
      color: var(--color-smoke);
      transition: opacity 0.2s;
    }
    .nav__links a:hover { opacity: 0.55; }
    .nav--onlight .nav__links a { color: var(--color-charcoal); }
    .nav__right {
      display: flex;
      align-items: center;
      gap: var(--sp-16);
    }
    .nav__order {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: var(--text-caption);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--color-obsidian);
      background: var(--color-gold);
      border: 1px solid var(--color-gold);
      border-radius: var(--radius);
      padding: var(--sp-10) var(--sp-16);
      white-space: nowrap;
      transition: opacity 0.2s, background 0.2s;
    }
    .nav__order:hover { background: var(--color-gold-light); }
    .nav__social {
      width: 28px;
      height: 28px;
      background: var(--color-ember);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, background 0.2s;
    }
    .nav__social:hover { opacity: 0.85; }
    .nav__social svg {
      width: 14px;
      height: 14px;
      stroke: var(--color-smoke);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .nav__social--facebook svg,
    .nav__social--tiktok svg {
      stroke: none;
      fill: var(--color-smoke);
    }
    .nav__social--facebook { background: #1877F2; }
    .nav__social--tiktok { background: var(--color-obsidian); }
    .nav__social--map { background: var(--color-gold); }
    .nav__social--map svg { fill: none; stroke: var(--color-obsidian); }

    /* ================================================================
       HERO
       ================================================================ */
    .hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--color-obsidian);
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      background-image: url('section2.png');
      background-size: cover;
      background-position: center 40%;
      opacity: 0.62;
    }
    .hero__scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(20,8,8,0.55) 0%,
        rgba(74,13,24,0.35) 45%,
        rgba(20,8,8,0.82) 100%
      );
    }
    .hero__content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 100dvh;
      width: 100%;
    }
    .hero__center {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--sp-28);
      padding: calc(var(--nav-h) + var(--topbar-h)) var(--sp-32) var(--sp-32);
      width: 100%;
    }
    @media (min-width: 769px) {
      .hero__center {
        padding-top: calc(var(--nav-h) + var(--topbar-h) + 15vh);
      }
    }
    .hero__flank {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: var(--sp-32);
    }
    .hero__flank .hero__label:first-child { justify-self: end; text-align: right; }
    .hero__flank .hero__label:last-child { justify-self: start; text-align: left; }
    .hero__flank .hero__headline { justify-self: center; }
    .hero__label {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-gold-light);
    }
    .hero__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(52px, 8.4vw, 108px);
      line-height: 0.92;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--color-smoke);
      text-align: center;
      font-feature-settings: "liga" on, "dlig" on;
    }
    .hero__headline em {
      font-style: normal;
      color: inherit;
    }
    .hero__cta-row {
      display: flex;
      align-items: center;
      gap: var(--sp-16);
      flex-wrap: wrap;
      justify-content: center;
      margin-top: var(--sp-8);
    }
    .hero__menu-row {
      display: flex;
      align-items: center;
      gap: var(--sp-16);
      flex-wrap: wrap;
      justify-content: center;
      margin-top: var(--sp-12);
    }
    .hero__menu-link {
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--color-gold-light);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: opacity 0.2s;
    }
    .hero__menu-link:hover { opacity: 0.75; }
    .hero__bottom {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: var(--sp-32);
    }
    .hero__bottom-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: var(--sp-12);
      max-width: 320px;
    }
    .hero__tagline {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.5;
      color: var(--color-cream);
      max-width: 300px;
    }
    .hero__rating {
      background: var(--color-cream);
      border-radius: var(--radius);
      padding: var(--sp-20) var(--sp-24);
      min-width: 260px;
      display: flex;
      flex-direction: column;
      gap: var(--sp-8);
    }
    .hero__rating-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .hero__rating-stars {
      display: flex;
      gap: 3px;
    }
    .hero__rating-stars svg { fill: var(--color-gold); }
    .hero__rating-bottom {
      display: flex;
      align-items: baseline;
      gap: var(--sp-12);
    }
    .hero__rating-score {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 48px;
      line-height: 1;
      color: var(--color-charcoal);
    }
    .hero__rating-score sup {
      font-size: 18px;
      vertical-align: super;
    }
    .hero__rating-meta {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .hero__rating-label {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 14px;
      color: var(--color-charcoal);
    }
    .hero__rating-count {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 12px;
      color: var(--color-stone);
    }

    /* ================================================================
       RESERVATION — PRIORITY 1
       ================================================================ */
    .reserve {
      background: var(--color-burgundy);
      background-image: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-d) 100%);
      padding: var(--sp-64) var(--sp-32);
    }
    .reserve__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-42);
      align-items: stretch;
    }
    .reserve__intro {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .reserve__eyebrow {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-gold-light);
      margin-bottom: var(--sp-16);
    }
    .reserve__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(38px, 5vw, 62px);
      line-height: 0.9;
      letter-spacing: -1.5px;
      color: var(--color-smoke);
      margin-bottom: var(--sp-20);
    }
    .reserve__headline em { font-style: italic; color: var(--color-gold-light); }
    .reserve__body {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 15px;
      line-height: 1.6;
      color: rgba(248,241,228,0.82);
      max-width: 440px;
      margin-bottom: var(--sp-24);
    }
    .reserve__notice {
      display: flex;
      gap: var(--sp-12);
      align-items: flex-start;
      background: rgba(20,8,8,0.35);
      border-left: 3px solid var(--color-gold);
      border-radius: var(--radius);
      padding: var(--sp-16) var(--sp-20);
      max-width: 460px;
    }
    .reserve__notice svg { width: 22px; height: 22px; stroke: var(--color-gold-light); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 2px; }
    .reserve__notice-text {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 13px;
      line-height: 1.55;
      color: var(--color-cream);
    }
    .reserve__notice-text strong { color: var(--color-gold-light); font-weight: 700; }

    .reserve__card {
      background: var(--color-cream);
      border-radius: var(--radius);
      padding: var(--sp-32);
      box-shadow: 0 20px 60px rgba(20,8,8,0.35);
    }
    .reserve__card-title {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 26px;
      color: var(--color-charcoal);
      margin-bottom: var(--sp-6);
    }
    .reserve__card-sub {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 13px;
      color: var(--color-stone);
      margin-bottom: var(--sp-24);
    }
    .rform {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-16);
    }
    .rform__field { display: flex; flex-direction: column; gap: 6px; }
    .rform__field--full { grid-column: 1 / -1; }
    .rform label {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--color-bark);
    }
    .rform input,
    .rform select,
    .rform textarea {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      color: var(--color-charcoal);
      background: #fff;
      border: 1px solid var(--color-greige);
      border-radius: var(--radius);
      padding: var(--sp-12) var(--sp-12);
      width: 100%;
      transition: border-color 0.2s;
    }
    .rform textarea { resize: vertical; min-height: 90px; font-family: var(--font-sans); }
    .rform input:focus,
    .rform select:focus,
    .rform textarea:focus { outline: none; border-color: var(--color-gold); }
    .rform__honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
    .rform__success {
      display: none;
      align-items: center;
      gap: var(--sp-12);
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 14px;
      color: var(--color-charcoal);
      background: rgba(198,154,62,0.16);
      border: 1px solid var(--color-gold);
      border-radius: var(--radius);
      padding: var(--sp-16) var(--sp-20);
      margin-top: var(--sp-16);
    }
    .rform__success.is-visible { display: flex; }
    .rform__error {
      display: none;
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 13px;
      color: var(--color-ember);
      margin-top: var(--sp-12);
    }
    .rform__error.is-visible { display: block; }
    .rform.is-hidden { display: none; }
    .rform__submit {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-8);
      width: 100%;
      margin-top: var(--sp-4);
      cursor: pointer;
      border: none;
    }
    .rform__submit svg { width: 18px; height: 18px; fill: currentColor; }
    .reserve__alt {
      grid-column: 1 / -1;
      text-align: center;
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 12px;
      color: var(--color-stone);
      margin-top: var(--sp-4);
    }
    .reserve__alt a { color: var(--color-ember); font-weight: 700; }

    /* ================================================================
       STORY / ABOUT
       ================================================================ */
    .story {
      position: relative;
      background: var(--color-obsidian);
      min-height: 150dvh;
    }
    .story__bg {
      position: absolute;
      inset: 0;
      background-image: url('herov2.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      opacity: 0.24;
    }
    .story__inner {
      position: sticky;
      top: calc(var(--nav-h) + var(--topbar-h) + var(--sp-42));
      z-index: 2;
      width: 100%;
      padding: var(--sp-92) var(--sp-32) var(--sp-92);
    }
    .story__eyebrow {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: var(--sp-20);
    }
    .story__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(44px, 5.5vw, 69px);
      line-height: 0.9;
      letter-spacing: -2px;
      color: var(--color-smoke);
      font-feature-settings: "liga" on, "dlig" on;
      max-width: 540px;
      margin-bottom: var(--sp-28);
    }
    .story__headline em { font-style: italic; color: var(--color-gold-light); }
    .story__body {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-body);
      line-height: 1.55;
      color: var(--color-cream);
      max-width: 480px;
      margin-bottom: var(--sp-32);
    }

    /* ================================================================
       BANNER
       ================================================================ */
    .banner {
      position: relative;
      height: 52vw;
      max-height: 600px;
      min-height: 320px;
      overflow: hidden;
    }
    .banner__bg {
      position: absolute;
      inset: 0;
      background-image: url('herov1-web.jpg');
      background-size: cover;
      background-position: center;
    }
    .banner__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.5) 100%);
    }
    .banner__content {
      position: relative;
      z-index: 2;
      padding: var(--sp-42) var(--sp-32);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .banner__eyebrow {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-gold-light);
      margin-bottom: var(--sp-16);
    }
    .banner__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(44px, 6vw, 80px);
      line-height: 0.9;
      letter-spacing: -2px;
      color: var(--color-cream);
      text-transform: uppercase;
    }
    .banner__headline em { font-style: italic; color: var(--color-gold-light); text-transform: none; }

    /* ================================================================
       REVIEWS
       ================================================================ */
    .reviews {
      background: var(--color-cream);
      padding: var(--sp-92) 0 var(--sp-64);
      overflow: hidden;
    }
    .reviews__head {
      margin: 0 0 var(--sp-42);
      padding: 0 var(--sp-32);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: var(--sp-32);
    }
    .reviews__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(40px, 5vw, 69px);
      line-height: 0.9;
      letter-spacing: -2px;
      color: var(--color-charcoal);
      font-feature-settings: "liga" on, "dlig" on;
    }
    .reviews__headline em { font-style: italic; color: var(--color-burgundy); }

    /* Google Rating Widget */
    .grating {
      background: transparent;
      border: 1px solid var(--color-taupe);
      border-radius: var(--radius);
      padding: var(--sp-16) var(--sp-20);
      flex-shrink: 0;
      min-width: 260px;
    }
    .grating__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: var(--sp-12);
    }
    .grating__stars { display: flex; gap: 3px; }
    .grating__stars svg { width: 16px; height: 16px; fill: var(--color-gold); }
    .grating__logo { width: 22px; height: 22px; }
    .grating__bottom { display: flex; align-items: baseline; gap: var(--sp-12); }
    .grating__score {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 42px;
      line-height: 1;
      color: var(--color-charcoal);
    }
    .grating__score sup { font-size: 16px; vertical-align: super; }
    .grating__meta { display: flex; flex-direction: column; gap: 2px; }
    .grating__label {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 13px;
      color: var(--color-charcoal);
    }
    .grating__count {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 12px;
      color: var(--color-stone);
      white-space: nowrap;
    }

    /* Marquee */
    .reviews__marquee {
      display: flex;
      width: max-content;
      animation: marquee 80s linear infinite;
    }
    .reviews__marquee:hover { animation-play-state: paused; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .reviews__set {
      display: flex;
      gap: var(--sp-16);
      padding: 0 var(--sp-8);
    }
    .rcard {
      background: transparent;
      border: 1px solid var(--color-taupe);
      border-radius: var(--radius);
      padding: var(--sp-20);
      width: 300px;
      height: 460px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
    }
    .rcard__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: var(--sp-28);
    }
    .rcard__stars { display: flex; gap: 2px; }
    .rcard__stars svg { width: 14px; height: 14px; fill: var(--color-gold); }
    .rcard__source {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      color: var(--color-stone);
    }
    .rcard__text {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: 20px;
      line-height: 1.3;
      color: var(--color-charcoal);
      flex: 1;
      margin-bottom: var(--sp-28);
    }
    .rcard__byline { display: flex; flex-direction: column; gap: 3px; }
    .rcard__byline-label {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 11px;
      color: var(--color-stone);
      letter-spacing: 0.04em;
    }
    .rcard__author {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: var(--text-caption);
      color: var(--color-charcoal);
      letter-spacing: 0.01em;
    }

    /* ================================================================
       MENU SPLIT
       ================================================================ */
    .menu-sec {
      display: grid;
      grid-template-columns: 44% 56%;
    }
    .menu-sec__left {
      background: var(--color-burgundy);
      padding: var(--sp-42) var(--sp-32);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }
    .menu-sec__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: var(--sp-32);
    }
    .menu-sec__title {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(36px, 4vw, 56px);
      line-height: 0.9;
      letter-spacing: -1.5px;
      color: var(--color-smoke);
      font-feature-settings: "liga" on, "dlig" on;
    }
    .menu-sec__title em { font-style: italic; color: var(--color-gold-light); }
    .menu-sec__icon {
      width: 28px;
      height: 28px;
      opacity: 0.75;
      flex-shrink: 0;
      margin-top: 4px;
      stroke: var(--color-gold-light);
    }
    .menu-list { list-style: none; flex: 1; }
    .menu-sec__cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-12);
      margin-top: var(--sp-28);
    }
    .menu-sec__cta {
      align-self: flex-start;
      margin-top: 0;
      padding: var(--sp-16) var(--sp-32);
      font-size: 13px;
    }
    .menu-sec__share { display: inline-flex; align-items: center; background: transparent; }
    .menu-sec__share.is-copied .menu-sec__share-label::after { content: " \2013 Link copied!"; }
    .menu-item {
      border-top: 1px solid rgba(226,198,124,0.25);
      padding: var(--sp-16) 0;
    }
    .menu-item:last-child { border-bottom: 1px solid rgba(226,198,124,0.25); }
    .menu-item--clickable {
      cursor: pointer;
      margin: 0 calc(var(--sp-16) * -1);
      padding-left: var(--sp-16);
      padding-right: var(--sp-16);
      border-radius: var(--radius);
      transition: background 0.2s;
    }
    .menu-item--clickable:hover,
    .menu-item--clickable:focus-visible {
      background: rgba(226,198,124,0.1);
      outline: none;
    }
    .menu-item__row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: var(--sp-16);
      margin-bottom: var(--sp-4);
    }
    .menu-item__name {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 14px;
      color: var(--color-smoke);
      letter-spacing: -0.01em;
    }
    .menu-item__price {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 14px;
      color: var(--color-gold-light);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .menu-item__desc {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 12px;
      line-height: 1.5;
      color: rgba(245,235,218,0.72);
    }
    .menu-sec__right { display: flex; flex-direction: column; }
    .menu-sec__copy {
      background: var(--color-cream);
      padding: var(--sp-42);
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .menu-sec__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(36px, 4vw, 56px);
      line-height: 0.92;
      letter-spacing: -2px;
      color: var(--color-charcoal);
      font-feature-settings: "liga" on, "dlig" on;
      margin-bottom: var(--sp-24);
    }
    .menu-sec__headline em { font-style: italic; color: var(--color-burgundy); }
    .menu-sec__body {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.6;
      color: var(--color-bark);
      max-width: 440px;
      margin-bottom: var(--sp-32);
    }
    .menu-sec__photo { flex: 1; overflow: hidden; min-height: 300px; }
    .menu-sec__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.02);
    }

    /* ================================================================
       DRINKS SECTION
       ================================================================ */
    .drinks {
      display: grid;
      grid-template-columns: 44% 56%;
    }
    .drinks__left {
      background: var(--color-cream);
      padding: var(--sp-28) var(--sp-42) var(--sp-32);
      position: sticky;
      top: calc(var(--nav-h) + var(--topbar-h));
      height: calc(100dvh - var(--nav-h) - var(--topbar-h));
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow-y: auto;
      scrollbar-width: none;
    }
    .drinks__left::-webkit-scrollbar { display: none; }
    .drinks__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(36px, 4vw, 56px);
      line-height: 0.92;
      letter-spacing: -2px;
      color: var(--color-charcoal);
      margin-bottom: var(--sp-16);
    }
    .drinks__headline em { font-style: italic; color: var(--color-burgundy); }
    .drinks__body {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 13px;
      line-height: 1.5;
      color: var(--color-bark);
      max-width: 380px;
      margin-bottom: var(--sp-16);
    }
    .offer-badge {
      display: flex;
      flex-direction: column;
      gap: 2px;
      background: var(--color-gold);
      color: var(--color-obsidian);
      border-radius: var(--radius);
      padding: var(--sp-10) var(--sp-16);
      margin-bottom: var(--sp-16);
      max-width: 380px;
    }
    .offer-badge__title {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .offer-badge__text {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 14px;
    }
    .drinks__divider {
      border: none;
      border-top: 1px solid rgba(26,11,11,0.15);
      margin: var(--sp-16) 0 0;
    }
    .drink-item {
      border-bottom: 1px solid rgba(26,11,11,0.12);
      padding: var(--sp-10) 0;
    }
    .drink-item__name {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 14px;
      color: var(--color-charcoal);
    }
    .drink-item__desc {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 12px;
      line-height: 1.5;
      color: rgba(26,11,11,0.55);
    }
    .drinks__right {
      display: flex;
      flex-direction: column;
      gap: var(--sp-8);
    }
    .drinks__photo {
      flex: 0 0 100dvh;
      overflow: hidden;
    }
    .drinks__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.0);
    }

    /* ================================================================
       GALLERY STRIP
       ================================================================ */
    .gallery {
      background: var(--color-cream);
      padding: var(--sp-92) var(--sp-32);
    }
    .gallery__inner { max-width: var(--max-w); margin: 0 auto; }
    .gallery__head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: var(--sp-24);
      margin-bottom: var(--sp-42);
      flex-wrap: wrap;
    }
    .gallery__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(40px, 5vw, 69px);
      line-height: 0.9;
      letter-spacing: -2px;
      color: var(--color-charcoal);
      font-feature-settings: "liga" on, "dlig" on;
    }
    .gallery__headline em { font-style: italic; color: var(--color-burgundy); }
    .gallery__sub {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      color: var(--color-stone);
      max-width: 320px;
    }
    .gallery__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: var(--sp-8);
      height: 540px;
    }
    .gitem { overflow: hidden; border-radius: var(--radius); }
    .gitem:first-child { grid-row: 1 / 3; }
    .gitem img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
      filter: saturate(1.02);
    }
    .gitem:hover img { transform: scale(1.04); }

    /* ================================================================
       EVENTS / FLAMENCO & CELEBRATIONS
       ================================================================ */
    .catering {
      background: var(--color-cream);
      padding: var(--sp-92) var(--sp-32) var(--sp-64);
    }
    .catering__inner { max-width: var(--max-w); margin: 0 auto; }
    .catering__top { text-align: center; margin-bottom: var(--sp-42); }
    .catering__flank {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-16);
      margin-bottom: var(--sp-24);
    }
    .catering__flank-label {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-stone);
      white-space: nowrap;
    }
    .catering__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(40px, 6vw, 78px);
      line-height: 0.9;
      letter-spacing: -2px;
      color: var(--color-charcoal);
      font-feature-settings: "liga" on, "dlig" on;
      text-align: center;
      flex-shrink: 0;
      padding: 0 var(--sp-24);
    }
    .catering__headline em { font-style: italic; color: var(--color-burgundy); }
    .catering__body {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.6;
      color: var(--color-bark);
      max-width: 500px;
      margin: 0 auto var(--sp-42);
      text-align: center;
    }
    .catering__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-8);
      margin-bottom: var(--sp-20);
    }
    .catering__slide { display: flex; flex-direction: column; }
    .catering__photo {
      overflow: hidden;
      border-radius: var(--radius);
      height: 72vh;
      flex-shrink: 0;
    }
    .catering__photo img,
    .catering__photo video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
      filter: saturate(1.02);
    }
    .catering__photo:hover img,
    .catering__photo:hover video { transform: scale(1.04); }
    .catering__captions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-8);
    }
    .catering__caption-item { padding-top: var(--sp-10); text-align: center; }
    .catering__caption {
      display: block;
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: 22px;
      color: var(--color-charcoal);
      margin-bottom: var(--sp-8);
    }
    .catering__caption-desc {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.6;
      color: var(--color-stone);
    }

    /* ================================================================
       NEWS / FLAMENCO NIGHTS
       ================================================================ */
    .news {
      background: var(--color-obsidian);
      padding: var(--sp-92) var(--sp-32);
    }
    .news__inner { max-width: var(--max-w); margin: 0 auto; }
    .news__head { margin-bottom: var(--sp-42); }
    .news__eyebrow {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: var(--sp-16);
    }
    .news__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(38px, 5vw, 62px);
      line-height: 0.92;
      letter-spacing: -1.5px;
      color: var(--color-smoke);
    }
    .news__headline em { font-style: italic; color: var(--color-gold-light); }
    .news__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-20);
    }
    .ncard {
      border: 1px solid rgba(226,198,124,0.22);
      border-radius: var(--radius);
      padding: var(--sp-28);
      display: flex;
      flex-direction: column;
      gap: var(--sp-12);
      transition: border-color 0.25s, background 0.25s;
    }
    .ncard:hover { border-color: var(--color-gold); background: rgba(110,20,35,0.25); }
    .ncard__tag {
      align-self: flex-start;
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-obsidian);
      background: var(--color-gold);
      border-radius: 100px;
      padding: 4px var(--sp-10);
    }
    .ncard__title {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 24px;
      line-height: 1.05;
      color: var(--color-smoke);
    }
    .ncard__date {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--color-gold-light);
    }
    .ncard__text {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.55;
      color: rgba(245,235,218,0.72);
    }

    /* ================================================================
       CONTACT + MAP — PRIORITY 2
       ================================================================ */
    .contact {
      background: var(--color-cream);
      padding: var(--sp-92) var(--sp-32) var(--sp-64);
    }
    .contact__inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: var(--sp-42);
      align-items: stretch;
    }
    .contact__info { display: flex; flex-direction: column; }
    .contact__eyebrow {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-burgundy);
      margin-bottom: var(--sp-16);
    }
    .contact__headline {
      font-family: var(--font-serif);
      font-weight: 300;
      font-size: clamp(36px, 4.5vw, 58px);
      line-height: 0.92;
      letter-spacing: -1.5px;
      color: var(--color-charcoal);
      margin-bottom: var(--sp-24);
    }
    .contact__headline em { font-style: italic; color: var(--color-burgundy); }
    .contact__body {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 15px;
      line-height: 1.6;
      color: var(--color-bark);
      max-width: 440px;
      margin-bottom: var(--sp-24);
    }

    .contact__firstfloor {
      display: flex;
      gap: var(--sp-16);
      align-items: flex-start;
      background: var(--color-burgundy);
      border-radius: var(--radius);
      padding: var(--sp-20) var(--sp-24);
      margin-bottom: var(--sp-28);
    }
    .contact__firstfloor-icon {
      width: 40px; height: 40px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--color-gold);
      display: flex; align-items: center; justify-content: center;
    }
    .contact__firstfloor-icon svg { width: 22px; height: 22px; stroke: var(--color-obsidian); fill: none; stroke-width: 1.8; }
    .contact__firstfloor-title {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--color-gold-light);
      margin-bottom: 4px;
    }
    .contact__firstfloor-text {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 14px;
      line-height: 1.5;
      color: var(--color-smoke);
    }

    .contact__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-20); }
    .contact__row { display: flex; gap: var(--sp-16); align-items: flex-start; }
    .contact__row svg { width: 20px; height: 20px; stroke: var(--color-burgundy); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 2px; }
    .contact__row-label {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-stone);
      margin-bottom: 3px;
    }
    .contact__row-value {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 15px;
      line-height: 1.5;
      color: var(--color-charcoal);
    }
    .contact__row-value a { color: var(--color-burgundy); font-weight: 700; }
    .contact__hours-line { display: flex; justify-content: space-between; gap: var(--sp-16); max-width: 300px; }
    .contact__hours-line span:last-child { color: var(--color-bark); }
    .contact__closed { color: var(--color-ember) !important; font-weight: 700; }

    .contact__map {
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 480px;
      border: 1px solid var(--color-greige);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .contact__map iframe { width: 100%; flex: 1; border: 0; min-height: 400px; }
    .contact__map-note {
      background: var(--color-burgundy);
      color: var(--color-gold-light);
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.02em;
      padding: var(--sp-12) var(--sp-16);
      display: flex;
      align-items: center;
      gap: var(--sp-8);
    }
    .contact__map-note svg { width: 18px; height: 18px; stroke: var(--color-gold-light); fill: none; stroke-width: 1.8; flex-shrink: 0; }
    .contact__map-directions {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-8);
      background: var(--color-obsidian);
      color: var(--color-gold-light);
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: var(--sp-16);
      transition: background 0.2s;
    }
    .contact__map-directions:hover { background: var(--color-burgundy-d); }
    .contact__map-directions svg { width: 17px; height: 17px; stroke: var(--color-gold-light); fill: none; stroke-width: 1.7; }
    .contact__map-directions-text { position: relative; display: inline-flex; align-items: center; }

    .map-sticker {
      position: absolute;
      left: 100%;
      top: 50%;
      margin-left: 10px;
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      gap: 6px;
      pointer-events: none;
      z-index: 5;
      animation: mapStickerBounce 1.8s ease-in-out infinite;
    }
    .map-sticker__label {
      font-family: var(--font-sans);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--color-obsidian);
      background: var(--color-gold-light);
      padding: 6px 12px;
      border-radius: 999px;
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(0,0,0,0.35);
      transform: rotate(-4deg);
    }
    .map-sticker__arrow {
      width: 26px;
      height: 26px;
      color: var(--color-gold-light);
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
      flex-shrink: 0;
      transform: rotate(-90deg);
    }
    @keyframes mapStickerBounce {
      0%, 100% { transform: translateY(-50%) translateX(0); }
      50% { transform: translateY(-50%) translateX(-6px); }
    }
    @media (max-width: 600px) {
      .map-sticker {
        left: 50%;
        top: auto;
        bottom: 100%;
        margin-left: 0;
        margin-bottom: 8px;
        flex-direction: column;
        transform: translateX(-50%);
        animation: mapStickerBounceMobile 1.8s ease-in-out infinite;
      }
      .map-sticker__arrow { transform: rotate(0deg); }
      @keyframes mapStickerBounceMobile {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-6px); }
      }
    }

    /* ================================================================
       FOOTER
       ================================================================ */
    .footer {
      background: var(--color-obsidian);
      padding: var(--sp-92) var(--sp-32) var(--sp-42);
    }
    .footer__inner { max-width: var(--max-w); margin: 0 auto; }
    .footer__map-wrap {
      padding-bottom: var(--sp-42);
      margin-bottom: var(--sp-42);
      border-bottom: 1px solid var(--color-bark);
    }
    .footer__map-wrap .footer__col-head { margin-bottom: var(--sp-16); }
    .footer__map-wrap .contact__map { min-height: 360px; }
    .footer__map-wrap .contact__map iframe { min-height: 300px; }
    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--sp-42);
      padding-bottom: var(--sp-42);
      border-bottom: 1px solid var(--color-bark);
      margin-bottom: var(--sp-32);
    }
    .footer__logo-img {
      height: 56px;
      width: auto;
      object-fit: contain;
      display: block;
      margin-bottom: var(--sp-16);
      border-radius: var(--radius);
    }
    .footer__logo-name {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: 26px;
      letter-spacing: 0.03em;
      color: var(--color-smoke);
      display: block;
      margin-bottom: 4px;
    }
    .footer__logo-sub {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 9px;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--color-gold);
      display: block;
      margin-bottom: var(--sp-16);
    }
    .footer__tagline {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      line-height: 1.6;
      color: var(--color-stone);
      max-width: 240px;
    }
    .footer__socials {
      display: flex;
      gap: var(--sp-12);
      margin-top: var(--sp-20);
    }
    .footer__col-head {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: var(--text-caption);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-greige);
      margin-bottom: var(--sp-16);
    }
    .footer__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--sp-10);
    }
    .footer__list a,
    .footer__list li {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      color: var(--color-stone);
      letter-spacing: 0.01em;
      line-height: 1.5;
      transition: color 0.2s;
    }
    .footer__list a:hover { color: var(--color-gold-light); }
    .footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: var(--sp-8) var(--sp-24);
    }
    .footer__copy {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      color: var(--color-bark);
      letter-spacing: 0.01em;
    }
    .footer__copy a.footer__credit { color: var(--color-gold); transition: opacity 0.2s; }
    .footer__copy a.footer__credit:hover { opacity: 0.75; }
    .footer__legal-links {
      display: flex;
      align-items: center;
      gap: var(--sp-20);
    }
    .footer__legal-links a {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-caption);
      color: var(--color-bark);
      letter-spacing: 0.01em;
      transition: color 0.2s;
    }
    .footer__legal-links a:hover { color: var(--color-gold); }

    /* ================================================================
       WHATSAPP FLOAT
       ================================================================ */
    .wa-float {
      position: fixed;
      bottom: 22px;
      right: 22px;
      z-index: 300;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.28);
      transition: transform 0.2s ease;
      animation: wa-pulse 2.6s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.08); }
    .wa-float svg { width: 30px; height: 30px; fill: #fff; }
    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.5); }
      50% { box-shadow: 0 8px 24px rgba(0,0,0,0.28), 0 0 0 12px rgba(37,211,102,0); }
    }

    /* ================================================================
       MOBILE APP-STYLE MENU BAR
       ================================================================ */
    .mobile-menu-bar {
      display: none;
    }

    /* ================================================================
       LIGHTBOX (Full Menu)
       ================================================================ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(20,8,8,0.94);
      display: none;
      align-items: center;
      justify-content: center;
      padding: var(--sp-24);
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .lightbox.is-open { display: flex; opacity: 1; }
    .lightbox__img {
      max-width: 96vw;
      max-height: 92vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 24px 70px rgba(0,0,0,0.6);
    }
    .lightbox__close {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 46px;
      height: 46px;
      background: transparent;
      border: 1px solid var(--color-gold);
      color: var(--color-gold-light);
      border-radius: 50%;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }
    .lightbox__close:hover { background: rgba(198,154,62,0.22); }

    /* ================================================================
       NAV SCROLLED
       ================================================================ */
    .nav--scrolled {
      background: var(--color-obsidian);
      box-shadow: 0 1px 16px rgba(20,8,8,0.4);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    /* ================================================================
       RESPONSIVE
       ================================================================ */
    @media (max-width: 1024px) {
      .menu-sec { grid-template-columns: 1fr 1fr; }
      .gallery__grid { height: 400px; }
      .news__grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 860px) {
      .reserve__inner { grid-template-columns: 1fr; }
      .contact__inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      :root { --nav-h: 60px; --topbar-h: 44px; }

      .topbar__text { font-size: 11px; padding: 0 var(--sp-16); text-align: center; line-height: 1.3; }

      .story__bg { background-attachment: scroll; background-size: cover; background-position: center center; }
      .banner { margin-top: var(--sp-8); }

      .drinks { grid-template-columns: 1fr; }
      .drinks__left { position: relative; top: auto; height: auto; overflow-y: visible; padding: var(--sp-32) var(--sp-20); }
      .drinks__photo { flex: none; height: 70vw; }
      .drinks__right .drinks__photo:last-child img { transform: scale(1.12); object-position: center 65%; }

      .hero__rating { display: none; }
      .hero__cta-row { flex-direction: column; width: 100%; }
      .hero__cta-row .btn { width: 100%; max-width: 320px; }
      .hero__bottom { justify-content: center; }
      .hero__bottom-left { align-items: center; text-align: center; max-width: 100%; }
      .hero__tagline { text-align: center; max-width: 100%; }
      .hero__flank { display: flex; flex-direction: column; gap: var(--sp-12); max-width: 90%; }
      .hero__flank .hero__label:last-child { order: 3; }
      .hero__flank .hero__headline { order: 2; }
      .hero__flank .hero__label:first-child { order: 1; }
      .hero__headline { font-size: clamp(56px, 16vw, 110px); }
      .hero__label { font-size: 10px; letter-spacing: 0.08em; }

      .nav__links { display: none; }

      .wrap, .nav, .story__inner, .reviews__head, .gallery,
      .catering__inner, .news, .contact, .footer, .reserve { padding-left: var(--sp-20); padding-right: var(--sp-20); }

      .reviews__head { flex-direction: column; align-items: flex-start; }
      .grating { width: 100%; }

      .rform { grid-template-columns: 1fr; }

      .menu-sec { grid-template-columns: 1fr; min-height: auto; }
      .menu-sec__left { padding: var(--sp-32) var(--sp-20); }
      .menu-sec__copy { padding: var(--sp-32) var(--sp-20); }
      .menu-sec__photo { flex: 0 0 280px; }

      .catering { overflow: hidden; padding-left: 0; padding-right: 0; }
      .catering__inner { max-width: none; }
      .catering__top { padding: 0 var(--sp-20); }
      .catering__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--sp-12);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 var(--sp-20) var(--sp-8);
      }
      .catering__grid::-webkit-scrollbar { display: none; }
      .catering__slide { flex: 0 0 80vw; scroll-snap-align: start; min-width: 0; }
      .catering__photo { height: 130vw; margin-bottom: var(--sp-12); }
      .catering__flank { flex-direction: column; gap: var(--sp-12); }

      .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
      }
      .gitem:first-child { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/9; }
      .gitem:not(:first-child) { aspect-ratio: 4/3; }

      .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-32); }
      .footer__bottom { flex-direction: column; gap: var(--sp-8); text-align: center; }
      .footer__legal-links { flex-direction: column; gap: var(--sp-8); }

      /* App-style fixed bottom menu bar */
      .hero__menu-row { display: none; }
      body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
      .mobile-menu-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 320;
        height: 58px;
        padding-bottom: env(safe-area-inset-bottom);
        background: var(--color-obsidian);
        border-top: 1px solid rgba(198,154,62,0.3);
        box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
      }
      .mobile-menu-bar__btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-family: var(--font-sans);
        font-weight: 700;
        font-size: 12.5px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: var(--color-smoke);
        background: var(--color-burgundy);
      }
      .mobile-menu-bar__btn--alt {
        color: var(--color-obsidian);
        background: var(--color-gold);
      }
      .wa-float { bottom: calc(58px + env(safe-area-inset-bottom) + 16px); }
    }

    @media (max-width: 480px) {
      .footer__grid { grid-template-columns: 1fr; }
    }

    /* ================================================================
       LEGAL PAGES
       ================================================================ */
    .legal {
      padding: calc(var(--nav-h) + var(--topbar-h) + var(--sp-64)) 0 var(--sp-92);
      background: var(--color-cream);
    }
    .legal__inner {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 var(--sp-32);
    }
    .legal__back {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-8);
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: var(--text-caption);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--color-bark);
      margin-bottom: var(--sp-32);
      transition: opacity 0.2s;
    }
    .legal__back:hover { opacity: 0.6; }
    .legal__eyebrow {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: var(--text-caption);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: var(--sp-16);
    }
    .legal__title {
      font-family: var(--font-serif);
      font-weight: 400;
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1.05;
      letter-spacing: -1px;
      color: var(--color-charcoal);
      margin-bottom: var(--sp-8);
    }
    .legal__updated {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-body-sm);
      color: var(--color-stone);
      margin-bottom: var(--sp-42);
    }
    .legal__content h2 {
      font-family: var(--font-serif);
      font-weight: 500;
      font-size: 24px;
      color: var(--color-charcoal);
      margin: var(--sp-42) 0 var(--sp-16);
    }
    .legal__content h2:first-child { margin-top: 0; }
    .legal__content p {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: var(--text-body);
      line-height: 1.75;
      color: var(--color-bark);
      margin-bottom: var(--sp-16);
    }
    .legal__content ul {
      margin: 0 0 var(--sp-16);
      padding-left: var(--sp-20);
      color: var(--color-bark);
      font-family: var(--font-sans);
      font-size: var(--text-body);
      line-height: 1.75;
    }
    .legal__content li { margin-bottom: var(--sp-8); }
    .legal__content a { color: var(--color-burgundy); text-decoration: underline; }
    .legal__content a:hover { opacity: 0.75; }
    .legal__content strong { color: var(--color-charcoal); }
