/* Finney's Homepage, overlays, modals, internal pages */
  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--black);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('../images/brick-texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* Dark overlay for text legibility */
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,3,3,0.78) 0%, rgba(15,8,8,0.68) 50%, rgba(20,10,10,0.74) 100%);
  }
  .hero-texture {
    position: absolute; inset: 0; z-index: 1;
    background-image: radial-gradient(circle at 20% 50%, rgba(200,39,45,0.07) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(200,39,45,0.04) 0%, transparent 40%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
  }


  /* ── MARQUEE STRIP ── */
  .marquee-strip {
    background: var(--red);
    padding: 0.75rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex; gap: 3rem;
    animation: marquee 75s linear infinite;
  }
  .marquee-strip:hover .marquee-track { animation-play-state: paused; }
  .marquee-item {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: #fff;
  }
  .marquee-dot { color: rgba(255,255,255,0.5); }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 6rem 3rem; }
  .section-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -0.01em;
  }
  .section-title em { font-style: italic; color: var(--red); font-weight: 400; }

  /* ── ABOUT ── */
  #about {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    max-width: 1200px; margin: 0 auto;
    padding: 7rem 3rem;
  }
  .about-text p {
    font-size: 1.05rem; line-height: 1.75;
    color: #4a4540; margin-top: 1.5rem;
    font-weight: 300;
  }
  .about-img {
    border-radius: 14px; overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--tan);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 6rem; color: rgba(0,0,0,0.08);
    position: relative;
  }
  .about-img::before {
    content: 'F';
    position: absolute;
    font-family: var(--font-display);
    font-size: 14rem; font-weight: 900;
    color: rgba(200,39,45,0.08);
  }
  .about-img .about-placeholder-content {
    position: relative; text-align: center;
  }
  .about-badge {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--red); color: #FFFFFF;
    padding: 0.6rem 1.25rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
    margin-top: 2rem;
  }

  /* ── MENU ── */
  #menu { background: #fff; padding: 7rem 3rem; }
  .menu-inner { max-width: 1200px; margin: 0 auto; }
  .menu-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
  }
  .location-tabs {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  .tab {
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer; border: 1.5px solid var(--tan);
    background: transparent; color: var(--muted);
    transition: all 0.2s;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .tab:hover { border-color: var(--red); color: var(--red); }
  .tab.active { background: var(--red); border-color: var(--red); color: #FFFFFF; }

  .menu-cats {
    display: flex; gap: 1rem; margin-bottom: 2.5rem;
  }
  .menu-cat {
    padding: 0.55rem 1.5rem;
    border-radius: 8px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
    cursor: pointer; border: 1.5px solid transparent;
    background: var(--cream); color: var(--charcoal);
    transition: all 0.2s;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .menu-cat:hover { background: var(--tan); }
  .menu-cat.active { background: var(--black); color: #fff; }

  .menu-cta-text {
    font-size: 0.88rem; color: var(--muted); font-weight: 300;
    margin-top: 0.5rem; letter-spacing: 0.01em;
  }

  /* ── HAPPY HOUR ── */
  #happy-hour {
    background: var(--black); padding: 7rem 3rem;
    position: relative; overflow: hidden;
  }
  #happy-hour::before {
    content: 'HAPPY HOUR';
    position: absolute; right: -2rem; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-display);
    font-size: 10rem; font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap; letter-spacing: -0.05em;
  }
  .hh-inner { max-width: 1100px; margin: 0 auto; }
  .hh-header { margin-bottom: 3.5rem; }
  .hh-header .section-title { color: #fff; }
  .hh-time {
    display: inline-flex; align-items: center; gap: 1rem;
    margin-top: 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 1rem 1.75rem;
  }
  .hh-time-main {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700; color: #fff;
  }
  .hh-time-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
  .hh-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

  .hh-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .hh-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 2rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .hh-card:hover {
    border-color: rgba(200,39,45,0.4);
    background: rgba(200,39,45,0.04);
  }
  .hh-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem;
  }
  .hh-card ul { list-style: none; }
  .hh-card li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem; color: rgba(255,255,255,0.65);
    font-weight: 300;
  }
  .hh-card li:last-child { border-bottom: none; }
  .hh-card .price { color: var(--red); font-weight: 600; font-size: 0.9rem; }

  /* ── LOCATIONS ── */
  #locations { background: var(--cream); padding: 7rem 3rem; }
  .loc-inner { max-width: 1200px; margin: 0 auto; }
  .loc-header { margin-bottom: 3rem; }
  .loc-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0 1rem 0 1.1rem;
    gap: 0.65rem;
    max-width: 420px;
    margin-top: 2rem;
    box-shadow: 0 1px 2px rgba(17, 16, 16, 0.04), 0 4px 16px rgba(17, 16, 16, 0.04);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  }
  .loc-search:focus-within {
    border-color: rgba(200, 39, 45, 0.35);
    box-shadow: 0 1px 2px rgba(17, 16, 16, 0.04), 0 6px 24px rgba(200, 39, 45, 0.08);
  }
  .loc-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--muted);
    transition: color 0.2s var(--ease);
  }
  .loc-search:focus-within .loc-search-icon {
    color: var(--red);
  }
  .loc-search input {
    flex: 1;
    min-width: 0;
    padding: 0.95rem 0;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--black);
    background: transparent;
  }
  .loc-search input::placeholder {
    color: #a39e96;
    font-weight: 300;
  }
  .loc-search input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
  }

  .loc-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem; margin-top: 0;
  }
  .loc-card {
    background: #fff; border-radius: 12px;
    padding: 1.5rem;
    border: 1.5px solid transparent;
    transition: all 0.22s var(--ease);
  }
  .loc-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  .loc-name {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem;
  }
  .loc-address { font-size: 0.82rem; color: var(--muted); line-height: 1.5; font-weight: 300; }
  .loc-hours {
    margin-top: 0.75rem; font-size: 0.78rem; color: var(--charcoal); font-weight: 500;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .loc-status {
    display: inline-block; width: 7px; height: 7px;
    border-radius: 50%; background: #22c55e;
  }
  .loc-actions {
    display: flex; gap: 0.5rem; margin-top: 1.1rem;
  }
  .loc-btn {
    flex: 1; padding: 0.5rem 0; border-radius: 7px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; text-align: center;
    cursor: pointer; transition: all 0.2s; border: none;
  }
  .loc-btn-primary { background: var(--red); color: #FFFFFF !important; }
  .loc-btn-primary:hover,
  .loc-btn-primary:focus,
  .loc-btn-primary:active { background: var(--red-dark); color: #FFFFFF !important; }
  .loc-btn-secondary { background: var(--cream); color: var(--charcoal); }
  .loc-btn-secondary:hover { background: var(--tan); }

  /* ── GIFT CARDS ── */
  #gift-cards {
    background: var(--warm-white);
    padding: 7rem 3rem;
  }
  .gc-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .gc-visual {
    position: relative;
  }
  .gc-card-preview {
    background: linear-gradient(135deg, var(--black) 0%, #2d1515 100%);
    border-radius: 18px;
    padding: 2.5rem;
    aspect-ratio: 1.6;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative; overflow: hidden;
  }
  .gc-card-preview::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(200,39,45,0.15);
  }
  .gc-card-logo {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 900; color: #fff;
  }
  .gc-card-logo span { color: var(--red); }
  .gc-card-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
  }
  .gc-card-value {
    font-family: var(--font-display);
    font-size: 2.75rem; font-weight: 700; color: #fff;
  }
  .gc-card-tag { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
  .gc-text .section-title { margin-bottom: 1.25rem; }
  .gc-text p {
    font-size: 1rem; line-height: 1.75; color: #4a4540; font-weight: 300;
    margin-bottom: 2rem;
  }
  .gc-amounts { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
  .gc-amount {
    padding: 0.6rem 1.25rem; border-radius: 8px;
    border: 1.5px solid var(--tan);
    font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
  }
  .gc-amount:hover, .gc-amount.active { border-color: var(--red); color: var(--red); background: rgba(200,39,45,0.05); }

  /* ── ORDER ONLINE ── */
  #order {
    background: var(--red);
    padding: 6rem 3rem;
    text-align: center;
  }
  .order-inner { max-width: 700px; margin: 0 auto; }
  #order .section-label { color: rgba(255,255,255,0.6); }
  #order .section-title { color: #fff; margin-bottom: 1.25rem; }
  #order p { color: rgba(255,255,255,0.75); font-size: 1.05rem; font-weight: 300; line-height: 1.6; margin-bottom: 2.5rem; }
  .order-locs {
    display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
    margin-bottom: 2.5rem;
  }
  .order-loc-chip {
    padding: 0.45rem 1rem; border-radius: 50px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
    cursor: pointer; transition: background 0.15s;
  }
  .order-loc-chip:hover { background: rgba(255,255,255,0.22); }
  .btn-white { background: #fff; color: var(--red); }
  .btn-white:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

  /* ── ABOUT (full bleed) ── */
  #about {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
  .about-left {
    background: var(--cream);
    padding: 7rem 5rem 7rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-left p {
    font-size: 1rem;
    line-height: 1.85;
    color: #4a4540;
    font-weight: 300;
    margin-top: 1.25rem;
  }
  .about-left .about-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }
  .about-right {
    background: var(--black);
    padding: 7rem 6rem 7rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .about-right::before {
    content: 'F';
    position: absolute;
    font-family: var(--font-display);
    font-size: 28rem;
    font-weight: 700;
    color: rgba(200,39,45,0.06);
    line-height: 1;
    top: -2rem;
    right: -3rem;
    pointer-events: none;
  }
  .about-right-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
  }
  .about-right-heading em { color: var(--red); font-weight: 400; }
  .about-right-sub {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }
  .about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .about-stat {
    background: rgba(255,255,255,0.04);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: background 0.2s;
  }
  .about-stat:hover { background: rgba(200,39,45,0.08); }
  .about-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }
  .about-stat-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    margin-top: 0.4rem;
  }
  @media (max-width: 900px) {
    #about { grid-template-columns: 1fr; }
    .about-left { padding: 5rem 1.75rem; }
    .about-right { padding: 5rem 1.75rem; }
    .about-right::before { font-size: 16rem; }
  }

  /* ── INSTAGRAM ── */
  #instagram { background: #fff; padding: 5rem 3rem; text-align: center; }
  .insta-inner { max-width: 600px; margin: 0 auto; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    section { padding: 5rem 1.5rem; }
    #about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    .hh-grid { grid-template-columns: 1fr; }
    .gc-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
    .gc-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .hh-grid { grid-template-columns: 1fr !important; }
    .loc-grid { grid-template-columns: 1fr !important; }
    section { padding: 4rem 1.5rem; }
    #order { padding: 4rem 1.5rem; }
    #instagram { padding: 4rem 1.5rem; }
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 200;
    background: var(--black);
    display: flex; flex-direction: column;
    padding: 5rem 2rem 3rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; cursor: pointer;
    font-size: 1.5rem; color: #fff;
  }
  .mobile-menu nav { display: block; }
  .mobile-nav-links {
    list-style: none;
    display: flex; flex-direction: column; gap: 0;
  }
  .mobile-nav-links li a {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 700; color: rgba(255,255,255,0.85);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.15s;
  }
  .mobile-nav-links li a:hover { color: var(--red); }
  .mobile-cta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

  /* ── WAITLIST MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
  }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal {
    background: #fff; border-radius: 18px;
    padding: 2.5rem;
    width: min(480px, 90vw);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s var(--ease);
    position: relative;
  }
  .modal-overlay.open .modal { transform: scale(1) translateY(0); }
  .modal h3 {
    font-family: var(--font-display);
    font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem;
  }
  .modal p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.75rem; font-weight: 300; }
  .modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; cursor: pointer;
    font-size: 1.25rem; color: var(--muted); line-height: 1;
  }
  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 0.4rem; color: var(--charcoal);
  }
  .form-group input, .form-group select {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid var(--tan); border-radius: 8px;
    font-family: var(--font-body); font-size: 0.9rem;
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
  }
  .form-group input:focus, .form-group select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200,39,45,0.1);
  }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  /* Hero content */
  .hero-content {
    position: relative; z-index: 2;
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 2rem 80px;
    gap: 2rem;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--red);
    animation: fadeUp 0.8s var(--ease) 0.2s both;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; display: block; width: 32px; height: 1px; background: var(--red);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 9.5rem);
    font-weight: 700;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s var(--ease) 0.35s both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--red);
    font-weight: 400;
  }
  .hero-subtitle {
    font-size: 1.1rem; font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 480px; line-height: 1.6;
    letter-spacing: 0.01em;
    animation: fadeUp 0.8s var(--ease) 0.5s both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.8s var(--ease) 0.65s both;
  }
  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 2;
  }
  .hero-scroll .arrow { font-size: 1rem; }
  @keyframes menuSpin { to { transform: rotate(360deg); } }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* ── INTERNAL PAGES ── */
  #page-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: var(--warm-white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
  }
  #page-overlay.open { transform: translateX(0); }

  .page-header {
    background: var(--black);
    padding: 5rem 4rem 4rem;
    position: relative;
  }
  .page-header-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem;
  }
  .page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700; color: #fff; line-height: 1;
  }
  .page-header h1 em { font-style: italic; color: var(--red); font-weight: 400; }
  .page-close {
    position: fixed; top: 1.25rem; right: 1.5rem; z-index: 510;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff; border-radius: 50%;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; cursor: pointer;
    transition: all 0.2s; backdrop-filter: blur(8px);
  }
  .page-close:hover { background: var(--red); border-color: var(--red); color: #FFFFFF; }

  .page-body { max-width: 1100px; margin: 0 auto; padding: 5rem 4rem; }

  /* Menu overlay page */
  .finneys-menu-intro {
    font-size: 0.9rem;
    color: #4a4540;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .finneys-menu-loc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }

  .finneys-menu-loc-btn {
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.5px solid var(--tan);
    background: transparent;
    color: var(--charcoal);
    transition: all 0.18s;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 1;
    pointer-events: auto;
  }

  .finneys-menu-loc-btn:hover {
    border-color: var(--red);
    color: var(--red);
  }

  .finneys-menu-loc-btn.is-active {
    background: var(--red);
    border-color: var(--red);
    color: #FFFFFF;
  }

  .finneys-menu-viewer {
    border: 1.5px solid var(--tan);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .finneys-menu-cat-tabs {
    display: flex;
    border-bottom: 1.5px solid var(--tan);
    background: var(--cream);
    position: relative;
    z-index: 3;
  }

  .finneys-menu-cat-tab {
    flex: 1;
    padding: 0.8rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--muted);
    transition: all 0.18s;
    border-right: 1px solid var(--tan);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 1;
    pointer-events: auto;
  }

  .finneys-menu-cat-tab:last-child {
    border-right: none;
  }

  .finneys-menu-cat-tab.is-active {
    background: var(--red);
    color: #FFFFFF;
  }

  .finneys-menu-pdf-wrap {
    background: #f0ebe2;
    min-height: 680px;
    position: relative;
  }

  .finneys-menu-pdf-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    background: #f0ebe2;
    z-index: 2;
    pointer-events: none;
  }

  .finneys-menu-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid var(--tan);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: menuSpin 0.8s linear infinite;
  }

  .finneys-menu-pdf-loading span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
  }

  .finneys-menu-pdf-frame {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
  }

  .finneys-menu-pdf-footer {
    padding: 0.65rem 1.25rem;
    background: var(--cream);
    border-top: 1.5px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .finneys-menu-pdf-footer span {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
  }

  .finneys-menu-pdf-footer a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--red);
  }

  @media (max-width: 768px) {
    .finneys-menu-loc-btn,
    .finneys-menu-cat-tab,
    .tab,
    .menu-cat {
      min-height: 44px;
    }

    .finneys-menu-cat-tab {
      padding: 0.85rem 0.35rem;
      font-size: 0.65rem;
    }

    .finneys-menu-pdf-wrap {
      min-height: 55vh;
    }

    .finneys-menu-pdf-frame {
      height: 55vh;
      min-height: 420px;
    }

    .page-body {
      padding: 3.5rem 1.25rem;
    }

    .menu-cats {
      flex-wrap: wrap;
    }
  }

  /* About page */
  .page-about-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    margin-bottom: 5rem; align-items: start;
  }
  .page-about-intro p {
    font-size: 1rem; line-height: 1.85; color: #4a4540;
    font-weight: 300; margin-bottom: 1rem;
  }
  .page-about-intro h2 {
    font-family: var(--font-display); font-size: 2rem;
    font-weight: 700; margin-bottom: 1.25rem; line-height: 1.1;
  }
  .page-about-intro h2 em { color: var(--red); font-style: italic; font-weight: 400; }
  .page-pillars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 4rem;
  }
  .page-pillar {
    background: var(--cream); border-radius: 12px; padding: 2rem;
    border-top: 3px solid var(--red);
  }
  .page-pillar h3 {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 700; margin-bottom: 0.75rem;
  }
  .page-pillar p { font-size: 0.88rem; line-height: 1.7; color: #4a4540; font-weight: 300; }

  /* Team page */
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
  }
  .team-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    border: 1.5px solid var(--tan);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
  .team-avatar {
    height: 220px; background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .team-avatar img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    display: block;
    transition: transform 0.35s var(--ease);
  }
  .team-card:hover .team-avatar img { transform: scale(1.04); }
  .team-avatar .team-initials {
    font-family: var(--font-display); font-size: 4rem; font-weight: 700;
    color: var(--red); background: linear-gradient(135deg, var(--cream), var(--tan));
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  }
  .team-info { padding: 1.25rem; }
  .team-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
  .team-role { font-size: 0.78rem; color: var(--red); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }
  .team-bio { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin-top: 0.75rem; }

  /* Gallery page */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    border-radius: 12px; overflow: hidden;
  }
  .gallery-cell {
    aspect-ratio: 1; background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; overflow: hidden; position: relative;
  }
  .gallery-cell:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; }
  .gallery-cell img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s var(--ease);
  }
  .gallery-cell:hover img { transform: scale(1.06); }
  .gallery-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.6rem 0.85rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    font-size: 0.72rem; font-weight: 600; color: #fff;
    letter-spacing: 0.05em; text-transform: uppercase;
    opacity: 0; transition: opacity 0.25s;
  }
  .gallery-cell:hover .gallery-label { opacity: 1; }
  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-cell:first-child { grid-column: span 1; grid-row: span 1; }
  }

  /* Careers page */
  .careers-intro { max-width: 680px; margin-bottom: 3.5rem; }
  .careers-intro p { font-size: 1rem; line-height: 1.8; color: #4a4540; font-weight: 300; }
  .jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .job-card {
    background: #fff; border: 1.5px solid var(--tan);
    border-radius: 12px; padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .job-card:hover { border-color: var(--red); transform: translateY(-2px); }
  .job-type {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem;
  }
  .job-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
  .job-loc { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
  .job-desc { font-size: 0.82rem; color: #4a4540; line-height: 1.6; font-weight: 300; margin-top: 0.75rem; }
  .job-apply {
    display: inline-block; margin-top: 1.25rem;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--red);
  }

  /* Contact page */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .contact-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
  .contact-info h2 em { color: var(--red); font-style: italic; font-weight: 400; }
  .contact-block { margin-bottom: 2rem; }
  .contact-block-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem;
  }
  .contact-block p { font-size: 0.9rem; line-height: 1.7; color: #4a4540; font-weight: 300; }
  .contact-block a { color: var(--red); }
  .contact-form { background: var(--cream); border-radius: 16px; padding: 2.5rem; }
  .contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  @media (max-width: 900px) {
    .page-body { padding: 3rem 1.5rem; }
    .page-header { padding: 5rem 1.5rem 3rem; }
    .page-about-intro { grid-template-columns: 1fr; gap: 2rem; }
    .page-pillars { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-cell:nth-child(1), .gallery-cell:nth-child(5) { grid-column: span 1; aspect-ratio: 1; }
    .cf-row { grid-template-columns: 1fr; }
  }


  /* ── LOCATION PAGE STYLES ── */
  .loc-page-hero {
    min-height: 100vh; background: var(--black);
    display: flex; flex-direction: column; position: relative; overflow: hidden;
  }
  .loc-page-hero .lp-bg {
    position: absolute; inset: 0;
    background-image: url('../images/brick-texture.png');
    background-size: cover; background-position: center;
  }
  .loc-page-hero .lp-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,3,3,0.82) 0%, rgba(15,8,8,0.72) 50%, rgba(20,10,10,0.78) 100%);
  }
  .loc-page-hero .lp-texture {
    position: absolute; inset: 0; z-index: 1;
    background-image: radial-gradient(circle at 20% 50%, rgba(200,39,45,0.07) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(200,39,45,0.04) 0%, transparent 40%);
  }
  .loc-page-hero .lp-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .lp-hero-content {
    position: relative; z-index: 2; flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 120px 2rem 80px; gap: 1.5rem;
  }
  .lp-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--red);
    animation: fadeUp 0.8s var(--ease) 0.2s both;
  }
  .lp-eyebrow::before, .lp-eyebrow::after { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
  .lp-title {
    font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 700; line-height: 0.95; color: #fff; letter-spacing: -0.02em;
    animation: fadeUp 0.8s var(--ease) 0.35s both;
  }
  .lp-title em { font-style: italic; color: var(--red); font-weight: 400; }
  .lp-subtitle {
    font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.65);
    max-width: 520px; line-height: 1.6; animation: fadeUp 0.8s var(--ease) 0.5s both;
  }
  .lp-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.8s var(--ease) 0.6s both;
  }
  .lp-nap {
    display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.75rem;
    animation: fadeUp 0.8s var(--ease) 0.72s both;
  }
  .lp-nap-item { text-align: center; }
  .lp-nap-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
  .lp-nap-value { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.5; }
  .lp-nap-value a { color: rgba(255,255,255,0.75); }
  .lp-nap-value a:hover { color: var(--red); }
  .lp-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: bounce 2s infinite; z-index: 2;
  }

  /* Location page body sections */
  .lp-body { overflow-y: auto; }
  .lp-marquee { background: var(--red); padding: 0.75rem 0; overflow: hidden; white-space: nowrap; }
  .lp-marquee-track { display: inline-flex; gap: 3rem; animation: marquee 30s linear infinite; }
  .lp-marquee-item { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; }
  .lp-marquee-dot { color: rgba(255,255,255,0.5); }

  /* Intro split */
  .lp-intro { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
  .lp-intro-left { background: var(--cream); padding: 7rem 5rem 7rem 6rem; display: flex; flex-direction: column; justify-content: center; }
  .lp-intro-left p { font-size: 1rem; line-height: 1.85; color: #4a4540; font-weight: 300; margin-top: 1.25rem; }
  .lp-features { display: flex; flex-direction: column; margin-top: 2.5rem; border-top: 1px solid var(--tan); }
  .lp-feature { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--tan); }
  .lp-feature-icon { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
  .lp-feature-text { font-size: 0.88rem; color: #4a4540; line-height: 1.6; font-weight: 300; }
  .lp-intro-btns { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
  .lp-intro-right {
    background: var(--black); padding: 7rem 6rem 7rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
  }
  .lp-intro-right::before {
    content: attr(data-city); position: absolute;
    font-family: var(--font-display); font-size: 14rem; font-weight: 700;
    color: rgba(200,39,45,0.05); line-height: 1;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none; white-space: nowrap;
  }
  .lp-right-heading { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 0.5rem; position: relative; z-index: 1; }
  .lp-right-heading em { color: var(--red); font-weight: 400; }
  .lp-right-sub { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; margin-bottom: 2.5rem; position: relative; z-index: 1; }
  .lp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; position: relative; z-index: 1; }
  .lp-stat { background: rgba(255,255,255,0.04); padding: 1.5rem 1.25rem; text-align: center; transition: background 0.2s; }
  .lp-stat:hover { background: rgba(200,39,45,0.08); }
  .lp-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--red); line-height: 1; }
  .lp-stat-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); font-weight: 600; margin-top: 0.4rem; }

  /* Food section */
  .lp-food { background: var(--black); padding: 7rem 3rem; position: relative; overflow: hidden; }
  .lp-food::before { content: 'CRAFTHOUSE'; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%) rotate(90deg); font-family: var(--font-display); font-size: 10rem; font-weight: 900; color: rgba(255,255,255,0.025); white-space: nowrap; letter-spacing: -0.05em; }
  .lp-food-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .lp-food-left .section-title { color: #fff; }
  .lp-food-left p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; margin-top: 1rem; }
  .lp-highlights { display: flex; flex-direction: column; margin-top: 2rem; }
  .lp-highlight { display: flex; align-items: flex-start; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .lp-highlight:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
  .lp-highlight-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); margin-top: 0.55rem; flex-shrink: 0; }
  .lp-highlight-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }
  .lp-highlight-text strong { color: rgba(255,255,255,0.85); font-weight: 500; }
  .lp-food-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
  .lp-menu-cards { display: grid; gap: 1rem; }
  .lp-menu-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; transition: border-color 0.2s, background 0.2s; }
  .lp-menu-card:hover { border-color: rgba(200,39,45,0.35); background: rgba(200,39,45,0.04); }
  .lp-menu-card-hdr { background: rgba(255,255,255,0.03); padding: 0.85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; }
  .lp-menu-card-body { padding: 0.5rem 1.5rem 0.85rem; }
  .lp-menu-card-item { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.83rem; color: rgba(255,255,255,0.6); font-weight: 300; }
  .lp-menu-card-item:last-child { border-bottom: none; }

  /* Map section */
  .lp-map-sec { background: var(--cream); padding: 7rem 3rem; }
  .lp-map-inner { max-width: 1200px; margin: 0 auto; }
  .lp-map-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start; margin-top: 3rem; }
  .lp-map-wrap { width: 100%; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; border: 1.5px solid var(--tan); background: #e8e0d4; }
  .lp-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
  .lp-details { display: flex; flex-direction: column; }
  .lp-detail-block { padding: 1.5rem 0; border-bottom: 1px solid var(--tan); }
  .lp-detail-block:first-child { padding-top: 0; }
  .lp-detail-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
  .lp-detail-val { font-size: 0.95rem; color: var(--charcoal); line-height: 1.7; font-weight: 300; }
  .lp-detail-val a { color: var(--red); }
  .lp-hrs-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.2rem 0; }
  .lp-hrs-day { font-weight: 500; }
  .lp-action-btns { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.75rem; }
  .lp-action-btn { width: 100%; padding: 0.75rem; border-radius: 8px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; transition: all 0.2s; display: block; cursor: pointer; }
  .lp-btn-primary { background: var(--red); color: #FFFFFF; border: none; }
  .lp-btn-primary:hover,
  .lp-btn-primary:focus,
  .lp-btn-primary:active { background: var(--red-dark); color: #FFFFFF; }
  .lp-btn-outline { background: transparent; border: 1.5px solid var(--tan); color: var(--charcoal); }
  .lp-btn-outline:hover { border-color: var(--red); color: var(--red); }

  /* FAQ */
  .lp-faq { background: #fff; padding: 7rem 3rem; }
  .lp-faq-inner { max-width: 1100px; margin: 0 auto; }
  .lp-faq-list { display: flex; flex-direction: column; margin-top: 3rem; }
  .lp-faq-item { border-bottom: 1px solid var(--tan); }
  .lp-faq-item:first-child { border-top: 1px solid var(--tan); }
  .lp-faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.5rem 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 2rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--black); transition: color 0.15s; }
  .lp-faq-q:hover { color: var(--red); }
  .lp-faq-chevron { flex-shrink: 0; font-size: 1rem; color: var(--red); transition: transform 0.25s var(--ease); }
  .lp-faq-item.open .lp-faq-chevron { transform: rotate(180deg); }
  .lp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
  .lp-faq-item.open .lp-faq-a { max-height: 200px; }
  .lp-faq-a-inner { padding-bottom: 1.5rem; font-size: 0.9rem; color: #4a4540; line-height: 1.75; font-weight: 300; max-width: 680px; }

  /* More locations */
  .lp-more { background: var(--cream); padding: 7rem 3rem; }
  .lp-more-inner { max-width: 1200px; margin: 0 auto; }
  .lp-more-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
  .lp-more-card { background: #fff; border-radius: 12px; padding: 1.5rem; border: 1.5px solid transparent; transition: all 0.22s var(--ease); cursor: pointer; }
  .lp-more-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
  .lp-more-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; }
  .lp-more-addr { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
  .lp-more-acts { display: flex; gap: 0.5rem; margin-top: 1rem; }
  .lp-more-btn { flex: 1; padding: 0.45rem 0; border-radius: 6px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; transition: all 0.18s; display: block; border: none; cursor: pointer; }
  .lp-more-outline { border: 1.5px solid var(--tan); color: var(--charcoal); background: transparent; }
  .lp-more-outline:hover { border-color: var(--red); color: var(--red); }
  .lp-more-fill { background: var(--red); color: #FFFFFF; }
  .lp-more-fill:hover,
  .lp-more-fill:focus,
  .lp-more-fill:active { background: var(--red-dark); color: #FFFFFF; }

  @media (max-width: 900px) {
    .lp-intro { grid-template-columns: 1fr; }
    .lp-intro-left { padding: 5rem 1.75rem; }
    .lp-intro-right { padding: 5rem 1.75rem; }
    .lp-food-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .lp-map-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .lp-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .lp-nap { gap: 1.5rem; }
  }