  /* ========== RESET & VARIABLES ========== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brand:       #5366ad;
    --brand-dark:  #3d4f96;
    --dark-bg:     #1a1a2e;
    --footer-bg:   #111122;
    --text-light:  #e8e8e8;
    --accent:      #c8002c;
    --grey-pill:   #c9c9c9;
    --purple-text: #745f7e;
    --font-head:   'Exo', sans-serif;
    --font-body:   'Playfair Display', serif;
    --max-w:       860px;   /* carta content narrower, more readable */
    --max-w-full:  1200px;
    --header-h:    80px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-head); color: #222; background: #fff; overflow-x: hidden; }
  img  { display: block; max-width: 100%; }
  a    { text-decoration: none; color: inherit; }
  ul   { list-style: none; }

  /* ========== HEADER ========== */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26,26,46,0.93);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(83,102,173,0.3);
  }

  .header-inner {
    max-width: var(--max-w-full);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }

  .logo img { height: 55px; width: auto; object-fit: contain; }

  nav ul { display: flex; gap: 4px; }

  nav ul li a {
    color: var(--text-light);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: color 0.2s;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  nav ul li a:hover { color: #fff; }
  nav ul li a:hover::after { transform: scaleX(1); }
  nav ul li.active a { color: var(--brand); }
  nav ul li.active a::after { transform: scaleX(1); }

  /* ========== HAMBURGER ========== */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-light); transition: 0.3s; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(26,26,46,0.98);
    padding: 16px 0;
    z-index: 998;
    flex-direction: column;
    border-top: 1px solid rgba(83,102,173,0.3);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav li a {
    display: block;
    padding: 12px 30px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav li a:hover { color: var(--brand); padding-left: 40px; }
  .mobile-nav li.active a { color: var(--brand); }

  /* ========== HERO con caption ========== */
  .hero {
    position: relative;
    width: 100%;
    margin-top: var(--header-h);
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    aspect-ratio: 21/10;
    position: relative;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: heroZoom 8s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(26,26,46,0.15) 0%,
      rgba(26,26,46,0.5) 60%,
      rgba(26,26,46,0.72) 100%);
  }

  .hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-caption h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(28px, 5vw, 62px);
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.65);
    padding: 16px 48px;
  }

  /* ========== MAIN CONTENT WRAPPER ========== */
  .page-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 56px 30px 20px;
  }

  /* ========== SECTION PILL (grey rounded badge) ========== */
  .section-pill {
    background: var(--grey-pill);
    border-radius: 15px;
    padding: 12px 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .section-pill strong {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(18px, 2.5vw, 25px);
    color: var(--purple-text);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* ========== DISH LIST ========== */
  .dish-list {
    margin-bottom: 40px;
  }

  .dish-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #ebebeb;
    transition: background 0.15s;
  }

  .dish-item:last-child { border-bottom: none; }

  .dish-item:hover {
    background: #fafafa;
    padding-left: 8px;
    padding-right: 8px;
    margin: 0 -8px;
    border-radius: 6px;
  }

  .dish-name {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 16px);
    color: #333;
    line-height: 1.4;
    flex: 1;
    text-align: center;
  }

  .dish-price {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 15px;
    color: var(--brand);
    white-space: nowrap;
    min-width: 56px;
    text-align: right;
  }

  /* Single centered item (txuleton) */
  .dish-item.centered {
    justify-content: center;
    text-align: center;
  }

  .dish-item.centered .dish-name {
    text-align: center;
  }

  /* ========== SECTION SPACER ========== */
  .section-gap { height: 36px; }

  /* ========== DIVIDER ========== */
  .divider { height: 1px; background: #e8e8e8; margin-top: 20px; }

  /* ========== FOOTER INFO GRID ========== */
  .footer-info {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0;
  }

  .footer-info .container {
    max-width: var(--max-w-full);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .footer-col h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 13px;
    color: #aaa;
    line-height: 2;
  }

  .footer-col a:hover { color: var(--brand); }
  .footer-col .closed { color: var(--accent); font-weight: 700; }
  .footer-col .note   { font-size: 11px; color: #777; font-style: italic; margin-top: 6px; }

  .badge-imgs { display: flex; flex-direction: column; gap: 10px; }
  .badge-imgs img { max-width: 150px; height: auto; object-fit: contain; border-radius: 4px; }
  .recommended-label {
    font-size: 12px; font-weight: 700; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
  }

  /* ========== SOCKET ========== */
  .socket {
    background: var(--footer-bg);
    padding: 18px 30px;
    text-align: center;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
    font-family: var(--font-head);
  }

  /* ========== SCROLL TOP ========== */
  #scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 42px; height: 42px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
    cursor: pointer;
  }
  #scroll-top.visible { opacity: 1; pointer-events: all; }
  #scroll-top:hover { transform: translateY(-3px); }

  /* ========== CALL NOW (mobile) ========== */
  #callnow { display: none; }
  @media (max-width: 650px) {
    #callnow {
      display: flex; align-items: center; justify-content: center;
      position: fixed; bottom: 15px; right: 20px;
      width: 65px; height: 65px; border-radius: 50%;
      background: #00bb00; box-shadow: 0 3px 6px rgba(0,0,0,0.3);
      z-index: 9999;
    }
    #callnow svg { width: 30px; height: 30px; fill: white; }
  }

  /* ========== COOKIE BAR ========== */
  #cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(26,26,46,0.97); color: #bbb;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    z-index: 9998; font-size: 13px;
    transform: translateY(100%); transition: transform 0.4s ease;
  }
  #cookie-bar.show { transform: translateY(0); }
  #cookie-bar button {
    background: var(--brand); color: #fff; border: none;
    padding: 8px 22px; font-family: var(--font-head);
    font-weight: 700; font-size: 13px; letter-spacing: 1px;
    cursor: pointer; border-radius: 3px; white-space: nowrap;
    transition: background 0.2s;
  }
  #cookie-bar button:hover { background: var(--brand-dark); }

  /* ========== FADE-IN ========== */
  .fade-in {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .hero-image { aspect-ratio: 4/3; }
    .hero-caption h2 { font-size: clamp(20px, 6vw, 36px); padding: 12px 22px; }
    .footer-info .container { grid-template-columns: 1fr 1fr; gap: 28px; }
    .page-content { padding: 36px 20px 20px; }
  }

  @media (max-width: 550px) {
    .footer-info .container { grid-template-columns: 1fr; }
    .hero-image { aspect-ratio: 3/2; }
    .dish-item { flex-direction: column; gap: 4px; align-items: center; }
    .dish-price { text-align: center; min-width: auto; }
  }