
  :root {
    --primary: #FF6044;
    --dark: #121313;
    --dark2: #1a1b1b;
    --dark3: #232424;
    --text: #e8e0d8;
    --text-muted: #a09890;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(18,19,19,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,96,68,0.2);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 44px; width: 44px; object-fit: contain; border-radius: 50%; }
  .nav-logo span { font-size: 12px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--primary); }
  .nav-cta {
    background: var(--primary); color: #fff; border: none;
    padding: 10px 22px; font-size: 13px; letter-spacing: 0.08em;
    text-transform: uppercase; cursor: pointer; border-radius: 2px;
    transition: opacity 0.2s; font-family: 'Inter', sans-serif;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 201;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav drawer */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(18,19,19,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,96,68,0.2);
    z-index: 199;
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
  }
  .mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-nav a {
    color: var(--text-muted); text-decoration: none;
    font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--primary); }
  .mobile-nav .mobile-cta {
    margin-top: 1.5rem;
    background: var(--primary); color: #fff;
    text-align: center; padding: 14px;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 2px;
  }

  /* ── SCROLL BAR ── */
  .scroll-bar {
    position: fixed; top: 70px; left: 0;
    height: 2px; background: var(--primary);
    z-index: 101; width: 0%; transition: width 0.1s;
  }

  /* ── BUTTONS ── */
  .btn-primary {
    background: var(--primary); color: #fff;
    padding: 14px 32px; border: none;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px; text-decoration: none;
    display: inline-block; transition: opacity 0.2s, transform 0.2s;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--text);
    padding: 14px 32px; border: 1px solid rgba(255,255,255,0.2);
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px; text-decoration: none;
    display: inline-block; transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

  /* ── SECTIONS ── */
  section { padding: 6rem 2rem; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; line-height: 1.15; margin-bottom: 1.2rem; }
  .section-body { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 600px; }
  .divider-line { width: 48px; height: 2px; background: var(--primary); margin: 1.5rem 0; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative; overflow: hidden;
  }
  .hero-divider { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--primary), transparent); margin: 1rem auto; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 1.5rem; }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 700; line-height: 1.05; color: #fff; margin-bottom: 0.5rem; }
  .hero-tagline { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.8; }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .hero-badge { display: flex; align-items: center; gap: 8px; margin-top: 3rem; color: var(--text-muted); font-size: 12px; letter-spacing: 0.1em; }
  .hero-badge::before, .hero-badge::after { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,0.15); }

  /* ── MENU ── */
  .menu-section { background: var(--dark2); }
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px; margin-top: 3.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
  }
  .menu-card { background: var(--dark2); padding: 2.5rem 2rem; transition: background 0.3s; }
  .menu-card-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.5rem; }
  .menu-card-sub { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.8rem; }
  .menu-card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
  .menu-tag { display: inline-block; margin-top: 1rem; background: rgba(255,96,68,0.12); color: var(--primary); font-size: 11px; padding: 4px 10px; letter-spacing: 0.08em; text-transform: uppercase; }

  .menu-card.plan-card { display: flex; flex-direction: column; min-height: 100%; }
  .plan-pricing { margin: 1.4rem 0 1.2rem; display: flex; flex-direction: column; gap: 0.65rem; }
  .price-row { display: flex; justify-content: space-between; gap: 1rem; color: var(--text); font-size: 0.92rem; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 0.55rem; }
  .price-row span:first-child { color: var(--text-muted); }
  .price-row strong { color: #fff; font-weight: 600; white-space: nowrap; }
  .plan-note-list { list-style: none; margin: 1.1rem 0 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
  .plan-note-list li { color: var(--text-muted); font-size: 0.84rem; line-height: 1.5; padding-left: 1.25rem; position: relative; }
  .plan-note-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
  .menu-card-actions { margin-top: auto; }
  .menu-card-actions .btn-outline { width: 100%; text-align: center; padding: 12px 18px; font-size: 12px; }

  /* ── ABOUT ── */
  .about-section { background: var(--dark); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .feature-item { display: flex; gap: 1rem; align-items: flex-start; }
  .feature-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
  .feature-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
  .feature-text strong { color: var(--text); }
  .about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
  .stat-box { background: var(--dark2); padding: 2rem 1.5rem; text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--primary); line-height: 1; margin-bottom: 0.4rem; }
  .stat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
  .about-logo-display { display: flex; align-items: center; justify-content: center; padding: 2.5rem; background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); margin-bottom: 1px; }
  .about-logo-display img { width: 120px; height: 120px; object-fit: contain; }

  /* ── FRANCHISE ── */
  .franchise-section { background: var(--dark3); position: relative; overflow: hidden; }
  .franchise-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--primary), transparent); }
  .franchise-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
  .franchise-steps { margin-top: 2.5rem; }
  .franchise-step { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
  .step-num { width: 36px; height: 36px; background: rgba(255,96,68,0.15); border: 1px solid rgba(255,96,68,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--primary); flex-shrink: 0; font-weight: 600; }
  .step-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
  .step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
  .franchise-card { background: var(--dark2); border: 1px solid rgba(255,96,68,0.2); padding: 2.5rem; text-align: center; }
  .franchise-card-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; margin-bottom: 1rem; }
  .franchise-card-body { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.8rem; }
  .franchise-card-highlight { display: inline-block; background: rgba(255,96,68,0.12); border: 1px solid rgba(255,96,68,0.3); color: var(--primary); padding: 10px 20px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }

  /* ── LOCATIONS ── */
  .locations-section { background: var(--dark); }
  .locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; margin-top: 3rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); }
  .location-card { background: var(--dark); padding: 2.5rem 2rem; transition: background 0.3s; }
  .location-badge { display: inline-block; background: rgba(255,96,68,0.15); color: var(--primary); font-size: 10px; padding: 4px 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.2rem; }
  .location-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
  .location-detail { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; align-items: flex-start; }
  .location-detail-icon { color: var(--primary); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
  .location-detail-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
  .location-hours { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
  .hours-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
  .hours-time { font-size: 14px; color: var(--text); font-weight: 500; }
  .open-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #4ade80; letter-spacing: 0.08em; text-transform: uppercase; }
  .open-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* ── NEW BADGE ── */
  .new-badge { display: inline-block; background: var(--primary); color: #fff; font-size: 9px; padding: 2px 8px; letter-spacing: 0.15em; text-transform: uppercase; vertical-align: middle; margin-left: 8px; animation: glow 2s infinite; }
  @keyframes glow { 0%, 100% { box-shadow: 0 0 0 rgba(255,96,68,0); } 50% { box-shadow: 0 0 12px rgba(255,96,68,0.6); } }

  /* ── CONTACT ── */
  .contact-section { background: var(--dark2); text-align: center; }
  .contact-section .section-title { text-align: center; }
  .contact-section .section-body { margin: 0 auto; text-align: center; }
  .contact-section .divider-line { margin: 1.5rem auto; }
  .contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 3rem; }
  .contact-card { background: var(--dark3); padding: 2rem; text-align: center; border: 1px solid rgba(255,255,255,0.06); transition: border-color 0.3s; }
  .contact-card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
  .contact-card-title { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem; }
  .contact-card-val { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

  /* ── FOOTER ── */
  footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
  footer img { width: 48px; height: 48px; object-fit: contain; opacity: 0.7; }
  footer p { font-size: 13px; color: var(--text-muted); letter-spacing: 0.05em; }
  footer .footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; justify-content: center; }
  footer .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
  footer .footer-links a:hover { color: var(--primary); }



  /* ════════════════════════════════════
     PHASE 1 IMAGE HIERARCHY & RESTAURANT REALISM
     Implementation notes:
     - Image paths are local-only and organized under src/images/.
     - Architecture, section order, reveal animations, and responsive flow are preserved.
     - Missing recommended asset for self-service sauce-bar hand action:
       src/images/self-service/sauce-bar-hand-action.jpg
       Recommended later because it would communicate the customization ritual better than a static fridge image.
  ════════════════════════════════════ */
  img { max-width: 100%; height: auto; }
  .hero > * { position: relative; z-index: 2; }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(18,19,19,0.72) 0%, rgba(18,19,19,0.46) 42%, rgba(18,19,19,0.86) 100%),
      radial-gradient(ellipse 70% 50% at 50% 42%, rgba(255,96,68,0.32) 0%, rgba(255,96,68,0.08) 42%, transparent 76%),
      url('src/images/hero/hero-broth-main.jpg') center center / cover no-repeat;
    transform: scale(1.02);
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,19,19,0.88) 0%, transparent 24%, transparent 76%, rgba(18,19,19,0.88) 100%);
    pointer-events: none;
  }
  .hero-logo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; }
  .hero-tagline { color: rgba(255,255,255,0.82); text-shadow: 0 2px 18px rgba(0,0,0,0.7); }

  .image-frame {
    position: relative;
    overflow: hidden;
    background: var(--dark3);
    border: 1px solid rgba(255,255,255,0.07);
  }
  .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
  }
  .image-frame:hover img { transform: scale(1.035); filter: saturate(1.06); }
  .image-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 2rem);
    padding: 0.5rem 0.75rem;
    background: rgba(18,19,19,0.78);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }

  .menu-media-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1rem;
    margin-top: 3rem;
  }
  .menu-media-main { min-height: 430px; }
  .menu-media-stack { display: grid; gap: 1rem; grid-template-rows: 1fr 1fr; }
  .menu-media-stack .image-frame { min-height: 205px; }

  .about-visual-stack { display: grid; gap: 1rem; }
  .about-hero-image { min-height: 390px; }
  .about-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-support-grid .image-frame { min-height: 190px; }

  .self-service-panel {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,96,68,0.10), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.07);
  }
  .self-service-images { display: grid; grid-template-columns: 1fr 0.78fr; gap: 1rem; }
  .self-service-images .image-frame:first-child { min-height: 360px; }
  .self-service-images .image-frame:last-child { min-height: 360px; }
  .self-service-copy { padding: 1rem 1.5rem 1rem 0; }
  .self-service-copy .section-body { max-width: 480px; }

  .franchise-brand-image { margin-bottom: 1.5rem; height: 240px; }
  .franchise-card { overflow: hidden; }

  .locations-visual { margin-top: 3rem; min-height: 420px; }
  .locations-visual + .locations-grid { margin-top: 1.5rem; }

  @media (max-width: 768px) {
    .hero::before { background-position: center center; }
    .menu-media-grid,
    .self-service-panel { grid-template-columns: 1fr; }
    .menu-media-main { min-height: 360px; }
    .about-support-grid,
    .self-service-images { grid-template-columns: 1fr 1fr; }
    .self-service-copy { padding: 0 0.5rem 1rem; }
    .locations-visual { min-height: 320px; }
  }

  @media (max-width: 480px) {
    .hero::before {
      background:
        linear-gradient(180deg, rgba(18,19,19,0.68) 0%, rgba(18,19,19,0.44) 38%, rgba(18,19,19,0.9) 100%),
        url('src/images/hero/hero-broth-main.jpg') center center / cover no-repeat;
    }
    .hero-logo { width: 88px; height: 88px; }
    .menu-media-grid { margin-top: 2rem; }
    .menu-media-main,
    .locations-visual { min-height: 280px; }
    .menu-media-stack,
    .about-support-grid,
    .self-service-images { grid-template-columns: 1fr; grid-template-rows: auto; }
    .menu-media-stack .image-frame,
    .about-hero-image,
    .about-support-grid .image-frame,
    .self-service-images .image-frame:first-child,
    .self-service-images .image-frame:last-child { min-height: 240px; }
    .self-service-panel { padding: 0.75rem; margin-top: 3rem; }
    .image-caption { font-size: 10px; left: 0.75rem; bottom: 0.75rem; }
  }


  /* ════════════════════════════════════
     MOBILE RESPONSIVE
  ════════════════════════════════════ */

  /* Tablet: 768px and below */
  @media (max-width: 768px) {

    /* Nav */
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-logo span { display: none; }

    /* Sections */
    section { padding: 4rem 1.25rem; }

    /* Hero */
    .hero { padding: 5rem 1.25rem 3rem; }
    .hero-logo { width: 120px; height: 120px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 0.15em; }
    .hero-badge { font-size: 11px; }
    .hero-badge::before, .hero-badge::after { width: 20px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns a { width: 100%; max-width: 280px; text-align: center; }

    /* Menu */
    .menu-grid { grid-template-columns: 1fr 1fr; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-logo-display { padding: 1.5rem; }
    .about-logo-display img { width: 90px; height: 90px; }

    /* Franchise */
    .franchise-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Locations */
    .locations-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-cards { grid-template-columns: 1fr 1fr; }

    /* Footer */
    footer .footer-links { gap: 1rem; }
  }

  /* Mobile: 480px and below */
  @media (max-width: 480px) {

    /* Nav */
    nav { padding: 0 1.25rem; }

    /* Hero */
    .hero-logo { width: 100px; height: 100px; margin-bottom: 1.2rem; }
    .hero-divider { height: 40px; }
    .hero-tagline { font-size: 0.9rem; }
    .hero-badge { display: none; }

    /* Menu — stack to single column on small phones */
    .menu-grid { grid-template-columns: 1fr; }
    .menu-card { padding: 1.8rem 1.25rem; }

    /* About stats — 2 col stays fine, shrink padding */
    .stat-box { padding: 1.25rem 1rem; }
    .stat-num { font-size: 2.2rem; }

    /* Franchise card */
    .franchise-card { padding: 1.8rem 1.25rem; }
    .franchise-card-title { font-size: 1.3rem; }

    /* Location cards */
    .location-card { padding: 1.8rem 1.25rem; }
    .location-hours { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

    /* Contact */
    .contact-cards { grid-template-columns: 1fr; }
    .contact-card { padding: 1.5rem 1rem; }

    /* Footer */
    footer .footer-links { gap: 0.75rem; }
    footer .footer-links a { font-size: 11px; }
  }

  /* Very small: 360px */
  @media (max-width: 360px) {
    .nav-logo img { width: 36px; height: 36px; }
    .hero-logo { width: 80px; height: 80px; }
    .section-title { font-size: 1.8rem; }
  }

  /* ════════════════════════════════════
     ENGAGEMENT ANIMATIONS & EFFECTS
  ════════════════════════════════════ */

  /* Scroll-reveal: elements start invisible */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* Hero: floating logo */
  @keyframes float {
    0%, 100% { transform: translateY(0px) drop-shadow(0 0 40px rgba(255,96,68,0.3)); }
    50% { transform: translateY(-12px) drop-shadow(0 0 60px rgba(255,96,68,0.5)); }
  }
  .hero-logo { animation: float 4s ease-in-out infinite; }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse 80% 60% at 50% 40%,
      rgba(255,96,68,0.12) 0%,
      rgba(255,96,68,0.04) 40%,
      transparent 70%
    );
    animation: breathe 6s ease-in-out infinite;
  }
  @keyframes breathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  /* Hero particles */
  .hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
  .particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
  }
  @keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
  }

  /* Menu cards: hover lift + glow */
  .menu-card {
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
  }
  .menu-card:hover {
    background: var(--dark3) !important;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,96,68,0.2);
  }

  /* Animated counter for stats */
  .stat-num { transition: transform 0.3s; }
  .stat-box:hover .stat-num { transform: scale(1.15); color: #fff; }
  .stat-box { transition: background 0.3s; cursor: default; }
  .stat-box:hover { background: var(--dark3); }


  /* Location card hover */
  .location-card {
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
    position: relative;
    overflow: hidden;
  }
  .location-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .location-card:hover::before { transform: scaleX(1); }
  .location-card:hover {
    background: var(--dark2) !important;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.3);
  }

  /* Contact card hover */
  .contact-card {
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s !important;
  }
  .contact-card:hover {
    border-color: rgba(255,96,68,0.5) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255,96,68,0.1);
  }
  .contact-card-icon { transition: transform 0.3s; display: block; }
  .contact-card:hover .contact-card-icon { transform: scale(1.2); }

  /* Franchise step reveal */
  .franchise-step {
    transition: transform 0.3s, opacity 0.3s;
  }
  .franchise-step:hover { transform: translateX(8px); }
  .step-num {
    transition: background 0.3s, transform 0.3s;
  }
  .franchise-step:hover .step-num {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
  }

  /* Feature dot pulse */
  .feature-dot {
    animation: dotPulse 2s ease-in-out infinite;
  }
  @keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,96,68,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(255,96,68,0); }
  }

  /* Nav link underline animation */
  .nav-links a {
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* Section divider line animate in */
  .divider-line {
    transform-origin: left;
    animation: lineGrow 1s ease forwards;
    opacity: 0;
  }
  @keyframes lineGrow {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
  }

  /* "Open Now" badge enhanced */
  .open-badge { animation: openPulse 3s ease-in-out infinite; }
  @keyframes openPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }

  /* Hero title character animation */
  .hero-title { animation: titleReveal 1.2s cubic-bezier(.16,1,.3,1) 0.3s both; }
  .hero-tagline { animation: titleReveal 1.2s cubic-bezier(.16,1,.3,1) 0.7s both; }
  .hero-btns { animation: titleReveal 1.2s cubic-bezier(.16,1,.3,1) 0.9s both; }
  .hero-eyebrow { animation: titleReveal 1.2s cubic-bezier(.16,1,.3,1) 0.1s both; }
  @keyframes titleReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Section label typing effect */
  .section-label { animation: fadeIn 0.8s ease; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* About logo slow spin */
  .about-logo-display img {
    transition: transform 0.6s ease;
  }
  .about-logo-display:hover img { transform: scale(1.08) rotate(3deg); }

  /* Franchise card glow border */
  .franchise-card {
    transition: box-shadow 0.4s, border-color 0.4s !important;
  }
  .franchise-card:hover {
    border-color: rgba(255,96,68,0.6) !important;
    box-shadow: 0 0 40px rgba(255,96,68,0.15), 0 20px 40px rgba(0,0,0,0.3);
  }

  /* Mobile: disable heavy transforms */
  @media (max-width: 480px) {
    .menu-card:hover { transform: none; }
    .location-card:hover { transform: none; }
    .contact-card:hover { transform: none; }
  }

  /* Developer */
  .developer-credit {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  .developer-credit a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .developer-credit a:hover {
    opacity: 0.8;
  }

  /* ════════════════════════════════════
     MOBILE HORIZONTAL OVERFLOW FIX
     Added after all responsive/animation rules so it wins the cascade.
     Main culprit: reveal-left / reveal-right translateX animation creates
     off-screen transformed boxes on mobile before reveal.
  ════════════════════════════════════ */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  section,
  nav,
  footer,
  .mobile-nav,
  .container,
  .menu-media-grid,
  .menu-grid,
  .about-grid,
  .about-support-grid,
  .self-service-panel,
  .self-service-images,
  .franchise-grid,
  .locations-grid,
  .contact-cards {
    max-width: 100%;
  }

  .container {
    width: min(1100px, 100%);
  }

  .btn-primary,
  .btn-outline,
  .nav-logo,
  .location-detail-text,
  .contact-card-val,
  footer,
  footer p,
  footer a,
  .developer-credit {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  @media (max-width: 768px) {
    .reveal-left,
    .reveal-right {
      transform: translateY(40px);
    }

    .reveal-left.visible,
    .reveal-right.visible {
      transform: translateY(0);
    }

    .franchise-step:hover,
    .menu-card:hover,
    .location-card:hover,
    .contact-card:hover {
      transform: none !important;
    }

    .hero-particles,
    .hero,
    .image-frame {
      overflow: hidden;
    }
  }

  @media (max-width: 480px) {
    section {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    nav {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .hero-title {
      font-size: clamp(2.6rem, 16vw, 4.2rem);
    }

    .section-label,
    .section-title,
    .section-body {
      max-width: 100%;
    }

    .price-row {
      min-width: 0;
      gap: 0.75rem;
    }

    .price-row strong {
      white-space: normal;
      text-align: right;
    }
  }