/* ============================================================
       DESIGN: Sabor de Casa - modern cantina warmth
       Colors: deep agave, toasted gold, chile red, and warm off-white
       Fonts: Abril Fatface (display) | Oswald (labels) | Nunito (body)
       ============================================================ */
    :root {
      --green: #17382e;
      --green-dark: #091a14;
      --green-light: #2f6f58;
      --yellow: #d89a2b;
      --red: #c2412f;
      --red-deep: #9f3023;
      --cream: #f7f1e8;
      --cream-dark: #e7dccb;
      --surface: #fff8f0;
      --charcoal: #2b211b;
      --white: #ffffff;
    }

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

    html {
      max-width: 100%;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
      letter-spacing: 0;
    }

    h1, h2, h3 { font-family: 'Abril Fatface', serif; font-weight: 400; line-height: 1.1; }
    .label {
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--yellow);
      display: inline-block;
      border-bottom: 1px solid var(--yellow);
      padding-bottom: 2px;
      margin-bottom: 12px;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 2rem;
      transition: background 0.3s;
    }
    nav.scrolled { background: var(--green); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
    .nav-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-brand { display: flex; align-items: center; gap: 12px; min-width: 0; text-decoration: none; }
    .nav-logo {
      width: 44px; height: 44px; border-radius: 50%;
      object-fit: cover; border: 2px solid var(--yellow);
    }
    .nav-name { font-family: 'Abril Fatface', serif; color: white; font-size: 18px; }
    .nav-sub { font-family: 'Oswald', sans-serif; color: var(--yellow); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 28px; min-width: 0; }
    .nav-links a {
      font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.8); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--yellow); }
    .nav-menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.24);
      border-radius: 6px;
      background: rgba(255,255,255,0.08);
      color: white;
      cursor: pointer;
    }
    .nav-menu-toggle:hover,
    .nav-menu-toggle:focus-visible {
      background: rgba(255,255,255,0.14);
      outline: 2px solid rgba(216,154,43,0.7);
      outline-offset: 2px;
    }
    .nav-menu-icon,
    .nav-menu-icon::before,
    .nav-menu-icon::after {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 0.2s, opacity 0.2s;
    }
    .nav-menu-icon { position: relative; }
    .nav-menu-icon::before,
    .nav-menu-icon::after {
      content: '';
      position: absolute;
      left: 0;
    }
    .nav-menu-icon::before { top: -6px; }
    .nav-menu-icon::after { top: 6px; }
    nav.menu-open .nav-menu-icon { background: transparent; }
    nav.menu-open .nav-menu-icon::before { top: 0; transform: rotate(45deg); }
    nav.menu-open .nav-menu-icon::after { top: 0; transform: rotate(-45deg); }
    .btn-order {
      background: var(--red); color: white;
      font-family: 'Oswald', sans-serif; font-weight: 700;
      font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 10px 20px; border-radius: 4px; text-decoration: none;
      transition: background 0.2s;
    }
    .btn-order:hover { background: var(--red-deep); }
    @media (max-width: 768px) {
      nav {
        position: sticky;
        background: var(--green);
        padding: 0 0.9rem;
      }
      .nav-inner {
        position: relative;
        height: 72px;
        min-height: 72px;
        align-items: center;
        flex-direction: row;
        gap: 12px;
        padding: 0;
      }
      .nav-menu-toggle { display: inline-flex; }
      .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 4px;
        padding: 12px;
        border: 1px solid rgba(255,248,240,0.14);
        border-radius: 8px;
        background: rgba(9,26,20,0.98);
        box-shadow: 0 18px 32px rgba(0,0,0,0.28);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        visibility: hidden;
        transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      }
      nav.menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
      }
      .nav-links a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 11px;
        white-space: nowrap;
      }
      .nav-links a:not(.btn-order):hover,
      .nav-links a:not(.btn-order):focus-visible {
        background: rgba(255,255,255,0.08);
      }
      .btn-order {
        justify-content: center;
        padding: 11px 12px;
        text-align: center;
      }
    }

    /* ── HERO ── */
    .hero {
      min-height: 92vh;
      background: url('branding/cover-food-photo.webp') center/cover no-repeat;
      position: relative;
      display: flex; align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(100deg, rgba(9,26,20,0.94) 0%, rgba(23,56,46,0.78) 43%, rgba(9,26,20,0.18) 100%),
        radial-gradient(circle at 82% 20%, rgba(216,154,43,0.2), transparent 34%);
    }
    .hero-content {
      position: relative; z-index: 2;
      width: min(100%, 1280px);
      margin: 0 auto;
      padding: 132px 2rem 86px;
    }
    .hero-copy {
      max-width: 660px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,248,240,0.12); border: 1px solid rgba(255,248,240,0.24);
      border-radius: 999px; padding: 7px 14px; margin-bottom: 20px;
    }
    .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
    .hero-badge span { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
    .hero h1 { color: white; font-size: clamp(46px, 7vw, 82px); margin-bottom: 18px; max-width: 720px; }
    .hero h1 em { color: var(--yellow); font-style: normal; }
    .hero p { color: rgba(255,255,255,0.82); font-size: clamp(17px, 2vw, 20px); line-height: 1.6; margin-bottom: 28px; max-width: 600px; }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
    .hero-utility {
      display: flex; flex-wrap: wrap; gap: 16px;
      margin-top: 22px;
    }
    .hero-utility a {
      color: rgba(255,255,255,0.86);
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-decoration: none;
      text-transform: uppercase;
    }
    .hero-utility a:hover { color: var(--yellow); }
    .pill {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2); border-radius: 999px;
      padding: 6px 14px; color: rgba(255,255,255,0.9); font-size: 13px;
      max-width: 100%;
      overflow-wrap: anywhere;
    }
    .pill-icon { color: var(--yellow); font-size: 14px; }
    .btn-primary {
      background: var(--red); color: white;
      font-family: 'Oswald', sans-serif; font-weight: 700;
      font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 16px 28px; border-radius: 6px; text-decoration: none;
      transition: all 0.2s; display: inline-block;
    }
    .btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(194,65,47,0.26); }
    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.68); color: white;
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 15px 26px; border-radius: 6px; text-decoration: none;
      transition: all 0.2s; display: inline-block;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.1); }
    .btn-light {
      background: var(--surface);
      border: 1px solid rgba(43,33,27,0.12);
      color: var(--charcoal);
    }
    .btn-light:hover { background: white; box-shadow: 0 6px 20px rgba(43,33,27,0.1); }
    .order-note-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
    }
    .order-note-actions a {
      display: inline-block;
      border-radius: 4px;
      padding: 11px 18px;
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-decoration: none;
      text-transform: uppercase;
    }
    .order-note-actions .order-online {
      background: var(--green);
      color: white;
    }
    .order-note-actions .order-call {
      border: 1px solid rgba(28,61,46,0.28);
      color: var(--green);
    }
    .dd-order-button {
      background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.22), transparent 28%),
        linear-gradient(135deg, #e93c45 0%, #d92b35 52%, #ae171f 100%) !important;
      border-radius: 999px !important;
      color: white !important;
      display: inline-flex !important;
      letter-spacing: 0 !important;
    }

    /* ── TRUST STRIP + BEST SELLERS ── */
    .trust-strip { background: var(--green); padding: 18px 2rem; }
    .trust-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .trust-item {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 14px 16px;
    }
    .trust-item strong {
      color: var(--yellow);
      display: block;
      font-family: 'Abril Fatface', serif;
      font-size: 20px;
      line-height: 1.1;
      margin-bottom: 5px;
    }
    .trust-item span { color: rgba(255,255,255,0.74); font-size: 13px; line-height: 1.45; }
    .best-sellers { background: var(--surface); }
    .best-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }
    .dish-card {
      background: white;
      border: 1px solid rgba(43,33,27,0.1);
      border-radius: 8px;
      box-shadow: 0 10px 32px rgba(43,33,27,0.08);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .dish-card img {
      aspect-ratio: 4 / 3;
      height: auto;
      object-fit: cover;
      width: 100%;
    }
    .dish-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 10px;
      padding: 18px;
    }
    .dish-card h3 {
      color: var(--green);
      font-size: 24px;
    }
    .dish-card p {
      color: rgba(43,33,27,0.72);
      font-size: 14px;
      line-height: 1.55;
    }
    .dish-card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      padding-top: 8px;
    }
    .dish-link {
      border-bottom: 1px solid var(--yellow);
      color: var(--green);
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-decoration: none;
      text-transform: uppercase;
    }

    /* ── SECTIONS ── */
    section { padding: 86px 2rem; }
    .container { max-width: 1280px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-header h2 { font-size: clamp(32px, 4vw, 48px); color: var(--green); margin-top: 8px; }

    /* ── MENU ── */
    #menu { background: var(--cream); }
    .menu-intro {
      background: var(--surface);
      border: 1px solid rgba(43,33,27,0.1);
      border-radius: 8px;
      margin: 0 auto 34px;
      max-width: 780px;
      padding: 20px 24px;
      text-align: center;
    }
    .menu-intro p {
      color: rgba(43,33,27,0.72);
      font-size: 15px;
      line-height: 1.65;
    }
    .menu-intro-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 16px;
    }
    .menu-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 36px;
      z-index: 20;
    }
    .tab {
      font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 10px 15px; border-radius: 999px; cursor: pointer;
      border: 1px solid rgba(28,61,46,0.16); background: white; color: rgba(28,61,46,0.72);
      transition: all 0.2s;
    }
    .tab:hover { border-color: var(--green); }
    .tab.active { background: var(--green); color: white; border-color: var(--green); }
    .tab .new-badge {
      background: var(--yellow); color: var(--green);
      font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 999px; margin-left: 4px;
    }
    .menu-panel { display: none; }
    .menu-panel.active { display: block; }
    .mariscos-banner {
      background: var(--green); color: white; border-radius: 10px;
      padding: 14px 20px; margin-bottom: 20px;
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    }
    .mariscos-banner .tag { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); font-weight: 600; }
    .mariscos-banner p { color: rgba(255,255,255,0.7); font-size: 13px; }
    .menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
    .menu-item {
      background: white; border-radius: 8px; padding: 15px 16px;
      display: flex; justify-content: space-between; align-items: center;
      border: 1px solid rgba(28,61,46,0.1); box-shadow: 0 1px 4px rgba(28,61,46,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .menu-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28,61,46,0.12); }
    .menu-item-name { font-size: 14px; font-weight: 500; color: var(--green); }
    .menu-item-price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; color: var(--green); margin-left: 12px; white-space: nowrap; }
    .menu-note {
      margin-top: 14px; background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.3);
      border-radius: 8px; padding: 10px 14px; font-size: 13px; color: rgba(28,61,46,0.7); font-style: italic;
    }
    .menu-boards { margin-top: 60px; }
    .menu-boards h3 { font-family: 'Abril Fatface', serif; font-size: 28px; text-align: center; margin-bottom: 24px; }
    .menu-boards p {
      max-width: 720px; margin: 0 auto 24px; text-align: center;
      color: rgba(28,61,46,0.7); font-size: 15px; line-height: 1.6;
    }
    .boards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    @media (max-width: 640px) { .boards-grid { grid-template-columns: 1fr; } }
    .board-card { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
    .board-card img { width: 100%; display: block; transition: transform 0.5s; }
    .board-card:hover img { transform: scale(1.03); }
    .board-overlay {
      position: absolute; inset: 0; background: rgba(28,61,46,0);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s;
    }
    .board-card:hover .board-overlay { background: rgba(28,61,46,0.35); }
    .board-overlay span {
      font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.15em;
      text-transform: uppercase; color: white; background: rgba(28,61,46,0.8);
      padding: 8px 16px; border-radius: 4px; opacity: 0; transition: opacity 0.3s;
    }
    .board-card:hover .board-overlay span { opacity: 1; }

    /* ── MARISCOS FEATURE ── */
    #mariscos {
      background: var(--green);
      position: relative; overflow: hidden;
    }
    #mariscos::before {
      content: '';
      position: absolute; inset: 0;
      background: url('branding/talavera-pattern.webp') repeat;
      background-size: 180px; opacity: 0.05;
    }
    .mariscos-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 60px; align-items: center; position: relative; z-index: 2; }
    @media (max-width: 900px) { .mariscos-grid { grid-template-columns: 1fr; } }
    .mariscos-grid h2 { font-size: clamp(32px, 4vw, 52px); color: white; margin-top: 8px; margin-bottom: 24px; }
    .mariscos-grid h2 em { color: var(--yellow); font-style: normal; }
    .mariscos-grid p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
    .mariscos-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .mariscos-item {
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 12px 16px;
    }
    .mariscos-item-info { }
    .mariscos-item-name { color: white; font-size: 14px; font-weight: 600; }
    .mariscos-item-desc { color: rgba(255,255,255,0.5); font-size: 12px; }
    .mariscos-item-price { font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--yellow); font-size: 15px; }
    .mariscos-img-wrap { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
    .mariscos-img-wrap img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
    .mariscos-img-badge {
      position: absolute; top: -16px; right: -16px;
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--yellow); color: var(--green);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: 'Abril Fatface', serif; font-size: 13px; text-align: center;
      line-height: 1.2; transform: rotate(12deg); box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
    .mariscos-img-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, var(--green));
      padding: 24px 16px 16px;
    }
    .mariscos-img-caption .cap-label { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); }
    .mariscos-img-caption .cap-text { color: white; font-size: 13px; }

    /* ── GALLERY ── */
    #gallery { background: var(--cream); }
    .gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
    @media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
    .gallery-item { border-radius: 14px; overflow: hidden; position: relative; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-item-1 { grid-row: 1 / 3; min-height: 400px; }
    .gallery-item-2, .gallery-item-3 { min-height: 190px; }
    .gallery-item-4 { grid-column: 2 / 4; min-height: 190px; }
    .gallery-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(13,35,24,0.8));
      padding: 24px 16px 14px;
    }
    .gallery-caption h4 { font-family: 'Abril Fatface', serif; color: white; font-size: 18px; }
    .gallery-caption p { color: rgba(255,255,255,0.7); font-size: 12px; }

    /* ── STORY ── */
    #story { background: var(--green); position: relative; overflow: hidden; }
    #story::before {
      content: '';
      position: absolute; inset: 0;
      background: url('branding/talavera-pattern.webp') repeat;
      background-size: 180px; opacity: 0.05;
    }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
    @media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
    .story-img-wrap { position: relative; }
    .story-img { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
    .story-img img { width: 100%; display: block; }
    .story-logo-badge {
      position: absolute; bottom: -20px; left: -20px;
      width: 80px; height: 80px; border-radius: 12px; overflow: hidden;
      border: 4px solid var(--yellow); box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
    .story-logo-badge img { width: 100%; height: 100%; object-fit: cover; }
    .story-text h2 { font-size: clamp(32px, 4vw, 48px); color: white; margin-top: 8px; margin-bottom: 24px; }
    .story-text h2 em { color: var(--yellow); font-style: normal; }
    .story-text p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
    .story-text strong { color: var(--yellow); }
    .story-text b { color: white; }
    .story-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
    .story-icon { text-align: center; }
    .story-icon-circle {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(232,160,32,0.2); border: 1px solid rgba(232,160,32,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; margin: 0 auto 8px;
    }
    .story-icon-label { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

    /* ── REVIEWS ── */
    #reviews { background: var(--surface); }
    .proof-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 22px;
      align-items: stretch;
    }
    .proof-card,
    .special-card {
      background: white;
      border: 1px solid rgba(43,33,27,0.1);
      border-radius: 8px;
      box-shadow: 0 10px 32px rgba(43,33,27,0.08);
      padding: 28px;
    }
    .proof-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .proof-kicker {
      color: var(--red);
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .proof-card blockquote {
      color: var(--green);
      font-family: 'Abril Fatface', serif;
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.15;
      margin: 14px 0 18px;
    }
    .proof-card cite {
      color: rgba(43,33,27,0.66);
      font-style: normal;
      font-size: 14px;
    }
    .proof-mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }
    .proof-mini {
      background: var(--cream);
      border-radius: 8px;
      color: rgba(43,33,27,0.72);
      font-size: 13px;
      line-height: 1.5;
      padding: 14px;
    }
    .proof-mini strong { color: var(--green); display: block; margin-bottom: 3px; }
    .special-card {
      display: grid;
      grid-template-columns: 160px minmax(0, 1fr);
      gap: 20px;
      align-items: center;
    }
    .special-card img {
      border-radius: 8px;
      height: 100%;
      min-height: 220px;
      object-fit: cover;
      width: 100%;
    }
    .special-card h3 {
      color: var(--green);
      font-size: clamp(28px, 3vw, 42px);
      margin: 8px 0 12px;
    }
    .special-card p {
      color: rgba(43,33,27,0.72);
      font-size: 15px;
      line-height: 1.65;
    }
    .special-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
    .review-card {
      background: white; border-radius: 12px; padding: 24px;
      border: 1px solid rgba(28,61,46,0.1); box-shadow: 0 2px 8px rgba(28,61,46,0.06);
      display: flex; flex-direction: column;
    }
    .stars { color: var(--yellow); font-size: 14px; margin-bottom: 12px; }
    .review-text { font-size: 14px; color: rgba(28,61,46,0.8); line-height: 1.7; font-style: italic; flex: 1; }
    .review-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
    .review-name { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
    .review-date { font-size: 11px; color: rgba(28,61,46,0.4); }
    .reviews-cta { text-align: center; margin-top: 32px; }
    .reviews-cta a {
      font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--green); text-decoration: none;
      border-bottom: 2px solid var(--yellow); padding-bottom: 2px;
      transition: color 0.2s;
    }
    .reviews-cta a:hover { color: var(--yellow); }

    /* ── FACEBOOK FEED ── */
    #social { background: var(--green-dark); padding-top: 72px; }
    #social .section-header h2 { color: white; }
    #social .section-header .label { color: var(--yellow); border-color: var(--yellow); }
    #social .section-header p { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 500px; margin: 0 auto; }
    .fb-feed-wrap {
      display: flex; justify-content: center; align-items: flex-start; gap: 32px;
      flex-wrap: wrap;
    }
    .fb-feed-main,
    .fb-video-embed {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 24px;
    }
    .fb-feed-main { flex: 0 0 auto; min-width: 280px; max-width: 420px; }
    .fb-video-embed {
      flex: 1; min-width: 280px; max-width: 500px;
    }
    .fb-video-label {
      font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--yellow); margin-bottom: 12px;
    }
    .fb-video-title {
      font-family: 'Abril Fatface', serif; color: white; font-size: 22px; margin-bottom: 8px;
    }
    .fb-video-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
    .fb-video-container {
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 18px;
    }
    .social-note-list {
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      line-height: 1.7;
      padding-left: 18px;
    }
    .social-note-list li + li { margin-top: 8px; }
    .fb-follow-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: #1877F2; color: white;
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 10px 20px; border-radius: 6px; text-decoration: none;
      margin-top: 16px; transition: background 0.2s;
    }
    .fb-follow-btn:hover { background: #1565d8; }

    /* ── CATERING ── */
    #catering {
      background: url('branding/grand-opening.webp') center/cover no-repeat;
      position: relative;
    }
    #catering::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(13,35,24,0.82);
    }
    .catering-content { position: relative; z-index: 2; max-width: 640px; }
    .catering-content h2 { font-size: clamp(32px, 4vw, 52px); color: white; margin-top: 8px; margin-bottom: 20px; }
    .catering-content h2 em { color: var(--yellow); font-style: normal; }
    .catering-content p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
    .catering-events { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 32px; }
    .catering-event { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 14px; }
    .catering-event::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
    .catering-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

    /* ── VISIT ── */
    #visit { background: var(--cream); }
    .visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    @media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }
    .info-cards { display: flex; flex-direction: column; gap: 14px; }
    .info-card {
      background: white; border-radius: 12px; padding: 18px 20px;
      display: flex; gap: 16px; border: 1px solid rgba(28,61,46,0.1);
      box-shadow: 0 2px 8px rgba(28,61,46,0.06);
    }
    .info-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(28,61,46,0.08); display: flex; align-items: center;
      justify-content: center; font-size: 20px; flex-shrink: 0;
    }
    .info-card-title { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
    .info-card-text { font-size: 14px; color: rgba(28,61,46,0.8); line-height: 1.6; }
    .info-card-note { font-size: 12px; color: var(--red); font-style: italic; margin-top: 4px; }
    .info-card-link {
      display: inline-flex; align-items: center; gap: 4px;
      font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--green); text-decoration: none;
      border-bottom: 1px solid var(--yellow); margin-top: 6px;
      transition: color 0.2s;
    }
    .info-card-link:hover { color: var(--yellow); }
    .visit-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }
    .social-card {
      background: var(--green); border-radius: 12px; padding: 18px 20px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .social-card-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
    .social-card-sub { color: rgba(255,255,255,0.6); font-size: 13px; }
    .social-btns { display: flex; gap: 10px; }
    .social-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.1); display: flex; align-items: center;
      justify-content: center; text-decoration: none; font-size: 18px;
      transition: all 0.2s;
    }
    .social-btn:hover { background: var(--yellow); }
    .visit-right { display: flex; flex-direction: column; gap: 16px; }
    .storefront-card {
      position: relative; border-radius: 16px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(28,61,46,0.15); aspect-ratio: 4 / 3;
    }
    .storefront-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .storefront-card-caption {
      position: absolute; left: 16px; bottom: 16px; right: 16px;
      background: rgba(13,35,24,0.78); color: white; padding: 10px 14px;
      border-radius: 10px; font-family: 'Oswald', sans-serif; font-size: 12px;
      letter-spacing: 0.12em; text-transform: uppercase;
    }
    .storefront-card-caption strong { color: var(--yellow); font-weight: 600; }
    .map-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(28,61,46,0.15); min-height: 320px; }
    .map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

    /* ── FOOTER ── */
    footer { background: var(--green-dark); color: rgba(255,255,255,0.6); padding: 46px 2rem 30px; }
    .footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr); gap: 32px; max-width: 1280px; margin: 0 auto 34px; }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; color: inherit; }
    .footer-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--yellow); }
    .footer-name { font-family: 'Abril Fatface', serif; color: white; font-size: 18px; }
    .footer-sub { font-family: 'Oswald', sans-serif; color: var(--yellow); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }
    .footer-desc { font-size: 13px; line-height: 1.7; }
    .footer-col-title { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--yellow); }
    .footer-bottom {
      max-width: 1280px; margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom-text { font-size: 12px; }
    .footer-social { display: flex; gap: 16px; }
    .footer-social a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 18px; transition: color 0.2s; }
    .footer-social a:hover { color: var(--yellow); }

    /* ── SCROLL ANIMATIONS ── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1020px) {
      .best-grid,
      .trust-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .proof-grid,
      .special-card {
        grid-template-columns: 1fr;
      }

      .special-card img {
        max-height: 320px;
      }
    }

    @media (max-width: 820px) and (min-width: 641px) {
      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 74px 1.4rem 58px;
      }

      .hero h1 {
        font-size: clamp(48px, 8vw, 62px);
      }

      .hero p {
        max-width: 560px;
      }
    }

    @media (max-width: 760px) {
      section {
        padding: 64px 1.1rem;
      }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 72px 1.1rem 58px;
      }

      .hero-copy {
        max-width: 100%;
      }

      .hero h1 {
        font-size: clamp(42px, 13vw, 62px);
      }

      .hero-ctas a,
      .menu-intro-actions a,
      .special-actions a,
      .visit-cta-row a,
      .catering-ctas a {
        justify-content: center;
        text-align: center;
        width: 100%;
      }

      .trust-strip {
        padding: 14px 1.1rem;
      }

      .best-grid,
      .trust-inner,
      .proof-mini-grid {
        grid-template-columns: 1fr;
      }

      .menu-tabs {
        align-items: flex-start;
        justify-content: flex-start;
        margin-left: -2px;
        margin-right: -2px;
      }

      .tab {
        font-size: 10px;
        padding: 9px 12px;
      }

      .gallery-item-1,
      .gallery-item-2,
      .gallery-item-3,
      .gallery-item-4 {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
      }
    }

    @media (max-width: 640px) {
      nav {
        padding: 0 0.75rem;
      }

      .nav-inner {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        width: 100%;
      }

      .nav-links {
        width: 100%;
      }

      .hero {
        background-position: 58% center;
      }

      .hero-content {
        padding: 40px 18px 34px;
      }

      .hero-badge,
      .hero-utility {
        display: none;
      }

      .hero h1 {
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.03;
        margin-bottom: 12px;
      }

      .hero p {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 20px;
      }

      .hero .hero-ctas {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }

      .hero .hero-ctas a {
        justify-content: center;
        max-width: 100%;
        min-height: 44px;
        padding: 12px 10px;
        text-align: center;
        width: auto;
      }

      .hero .dd-order-button.dd-hero {
        font-size: 11px;
        min-height: 44px;
        padding: 12px 10px;
      }

      .mariscos-img-badge {
        right: 12px;
        top: 12px;
        width: 66px;
        height: 66px;
      }

      .story-logo-badge {
        bottom: -14px;
        left: 14px;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 0 0.75rem;
      }

      .nav-inner {
        align-items: center;
        flex-direction: row;
        width: 100%;
        gap: 10px;
      }

      .nav-logo {
        width: 40px;
        height: 40px;
      }

      .nav-name {
        font-size: 16px;
      }

      .nav-sub {
        font-size: 8px;
        letter-spacing: 0.14em;
      }

      .nav-links {
        width: 100%;
      }

      .nav-links a {
        font-size: 10px;
        letter-spacing: 0.1em;
      }

      .hero {
        align-items: flex-start;
        min-height: auto;
        background-position: 57% center;
      }

      .hero-content {
        margin: 0;
        max-width: none;
        padding: 30px 18px 28px;
        width: 100%;
      }

      .hero-badge {
        display: none;
      }

      .hero-badge span {
        font-size: 10px;
        letter-spacing: 0.14em;
        line-height: 1.35;
      }

      .hero h1 {
        font-size: clamp(34px, 11.5vw, 40px);
        line-height: 1.02;
        margin-bottom: 12px;
      }

      .hero p {
        font-size: 14.5px;
        line-height: 1.42;
        margin-bottom: 18px;
        max-width: 100%;
      }

      .hero-pills,
      .hero-ctas {
        width: 100%;
      }

      .hero-utility {
        display: none;
      }

      .pill {
        align-items: flex-start;
        border-radius: 16px;
        font-size: 12px;
        line-height: 1.35;
        padding: 7px 10px;
        width: 100%;
      }

      .pill-icon {
        flex: 0 0 auto;
      }

      .hero-ctas {
        gap: 10px;
      }

      .hero .hero-ctas {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }

      .hero .hero-ctas a {
        justify-content: center;
        max-width: 100%;
        min-height: 44px;
        padding: 12px 10px;
        text-align: center;
        width: auto;
      }

      .hero .dd-order-button.dd-hero {
        font-size: 11px;
        min-height: 44px;
        padding: 12px 10px;
      }

      .menu-intro {
        padding: 18px;
      }

      .mariscos-img-badge {
        right: 12px;
        top: 12px;
        width: 66px;
        height: 66px;
      }

      .story-logo-badge {
        bottom: -14px;
        left: 14px;
      }

      .dish-card-body,
      .proof-card,
      .special-card {
        padding: 20px;
      }

      .btn-primary,
      .btn-secondary {
        font-size: 12px;
        letter-spacing: 0.1em;
        padding-left: 14px;
        padding-right: 14px;
      }
    }
