    :root {
      --bg: #f2ecdf;
      --paper: #efe7d8;
      --ink: #0f0f0f;
      --ketchup: #ea1d0f;
      --mustard: #ffcc11;
      --mayo: #fff8ea;
      --pickle: #97cc34;
      --smoke: #a69f92;
      --concrete: #d8d0c0;
      --shadow-hard: 10px 10px 0 #0f0f0f;
      --shadow-red: 8px 8px 0 #ea1d0f;
      --border: 4px solid #0f0f0f;
      --container: min(1280px, calc(100vw - 32px));
      --transition: 180ms steps(2, end);
    }

    * { box-sizing: border-box; }

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

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

    body {
      margin: 0;
      font-family: "Space Mono", monospace;
      color: var(--ink);
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 204, 17, 0.22), transparent 20%),
        radial-gradient(circle at 80% 0%, rgba(234, 29, 15, 0.16), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,0.25), rgba(0,0,0,0)),
        linear-gradient(0deg, rgba(15,15,15,0.03), rgba(15,15,15,0.03)),
        var(--bg);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
      width: 100%;
    }

    main,
    .site-header,
    .hero,
    .section,
    .footer {
      overflow-x: clip;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.22;
      background-image:
        linear-gradient(rgba(15,15,15,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,15,15,0.04) 1px, transparent 1px),
        radial-gradient(circle at 30% 20%, rgba(15,15,15,0.12) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(15,15,15,0.08) 0 1px, transparent 1px);
      background-size: 6px 6px, 6px 6px, 22px 22px, 28px 28px;
      mix-blend-mode: multiply;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .section-tag,
    .sticker,
    .floating-badge {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 14px 0;
      backdrop-filter: blur(10px);
      transition: background 180ms ease;
    }

    .site-header.scrolled {
      background: rgba(242, 236, 223, 0.88);
      border-bottom: var(--border);
    }

    .header-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 8px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: 1.15rem;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 22px;
      height: 22px;
      background: var(--ketchup);
      border: var(--border);
      box-shadow: 4px 4px 0 var(--mustard);
      transform: rotate(-8deg);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-left: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      flex-wrap: nowrap;
    }

    .nav-links a {
      position: relative;
      font-weight: 700;
      display: inline-flex;
      white-space: nowrap;
    }

    .nav-links li {
      flex: 0 0 auto;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 3px;
      background: var(--ketchup);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 160ms ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      transform: scaleX(1);
    }

    .menu-toggle {
      display: none;
      border: var(--border);
      background: var(--mustard);
      width: 58px;
      height: 58px;
      box-shadow: var(--shadow-hard);
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 4px;
      background: var(--ink);
      margin: 4px auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 58px;
      padding: 0 24px;
      border: var(--border);
      box-shadow: var(--shadow-hard);
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      transition: transform var(--transition), box-shadow var(--transition), background 120ms ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translate(-3px, -3px);
      box-shadow: 13px 13px 0 var(--ink);
    }

    .btn-primary {
      background: var(--ketchup);
      color: #fff8ea;
    }

    .btn-secondary {
      background: var(--mustard);
      color: var(--ink);
    }

    .btn-dark {
      background: var(--ink);
      color: #fff;
      box-shadow: var(--shadow-red);
      white-space: nowrap;
    }

    .hero {
      position: relative;
      padding: 30px 0 70px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 22px;
      align-items: stretch;
    }

    .hero-copy,
    .hero-stage,
    .menu-card,
    .difference-card,
    .combo-card,
    .gallery-card,
    .quote-card,
    .cta-band,
    .footer-shell {
      border: var(--border);
      background: var(--paper);
      position: relative;
      overflow: hidden;
    }

    .hero-copy {
      padding: clamp(26px, 4vw, 48px);
      box-shadow: var(--shadow-hard);
      min-height: 720px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.25), transparent),
        var(--paper);
    }

    .hero-copy::before {
      content: "BURGER CLUB CBA";
      position: absolute;
      top: 20px;
      right: -18px;
      background: var(--mustard);
      border: var(--border);
      padding: 8px 14px;
      transform: rotate(8deg);
      font-family: "Archivo Black", sans-serif;
      font-size: 0.8rem;
      z-index: 1;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      max-width: 100%;
      background: #fff;
      border: var(--border);
      padding: 8px 12px;
      box-shadow: 6px 6px 0 var(--ketchup);
      text-transform: uppercase;
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1.25;
    }

    .hero-kicker::before {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--pickle);
      border: 2px solid var(--ink);
    }

    .hero h1,
    .section-title,
    .quote-big,
    .cta-band h2 {
      margin: 0;
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      letter-spacing: -0.04em;
      line-height: 0.9;
    }

    .hero h1 {
      font-size: clamp(3.2rem, 6.2vw, 5.6rem);
      max-width: 100%;
      margin-top: 26px;
      position: relative;
      z-index: 2;
      word-break: normal;
      overflow-wrap: normal;
      letter-spacing: -0.06em;
    }

    .hero-title-line {
      display: block;
      white-space: nowrap;
    }

    .hero-word-mobile {
      display: none;
    }

    .hero-title-line-long {
      font-size: 0.88em;
      letter-spacing: -0.075em;
    }

    .hero-sub {
      max-width: 40ch;
      font-size: 1.06rem;
      line-height: 1.7;
      margin: 22px 0 0;
      font-weight: 700;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    .meta-chip {
      border: var(--border);
      background: #fff;
      padding: 10px 14px;
      box-shadow: 6px 6px 0 var(--ink);
      font-size: 0.86rem;
      text-transform: uppercase;
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }

    .hero-note {
      margin-top: 34px;
      padding-top: 20px;
      border-top: var(--border);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: end;
      font-size: 0.9rem;
    }

    .floating-badge {
      display: inline-block;
      background: var(--ink);
      color: #fff;
      border: var(--border);
      padding: 10px 12px;
      box-shadow: 6px 6px 0 var(--mustard);
      transform: rotate(-6deg);
      font-size: 0.9rem;
    }

    .hero-stage {
      min-height: 720px;
      box-shadow: var(--shadow-red);
      background:
        radial-gradient(circle at 30% 16%, rgba(255, 204, 17, 0.4), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(234, 29, 15, 0.3), transparent 24%),
        linear-gradient(160deg, #f7f1e4 0%, #e4dac6 100%);
      display: grid;
      place-items: center;
      isolation: isolate;
    }

    .stage-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(15,15,15,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,15,15,0.08) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: 0.45;
      mix-blend-mode: multiply;
    }

    .hero-sticker,
    .hero-price,
    .hero-city {
      position: absolute;
      border: var(--border);
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      box-shadow: var(--shadow-hard);
      z-index: 4;
    }

    .hero-sticker {
      top: 26px;
      left: 24px;
      background: #fff;
      padding: 12px 14px;
      transform: rotate(-10deg);
    }

    .hero-price {
      right: 24px;
      bottom: 28px;
      background: var(--mustard);
      padding: 14px 18px;
      font-size: 1.4rem;
      transform: rotate(6deg);
    }

    .hero-city {
      bottom: 28px;
      left: 24px;
      background: var(--ketchup);
      color: #fff;
      padding: 12px 14px;
      transform: rotate(-6deg);
    }

    .burger-scene {
      position: relative;
      width: min(100%, 620px);
      height: 620px;
      z-index: 3;
    }

    .burger-core {
      position: absolute;
      inset: 50% auto auto 50%;
      width: 420px;
      height: 420px;
      transform: translate(-50%, -50%);
      filter: drop-shadow(0 26px 0 rgba(15,15,15,0.22));
    }

    .burger-photo-wrap {
      position: absolute;
      inset: 50% auto auto 50%;
      width: min(100%, 390px);
      aspect-ratio: 1;
      transform: translate(-50%, -50%);
      transition: transform 0.95s cubic-bezier(.21,.98,.24,.99), filter 0.4s ease;
      will-change: transform;
    }

    .burger-photo-wrap::before {
      content: "";
      position: absolute;
      inset: 18px 22px 10px 22px;
      border: var(--border);
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 25%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.08)),
        #fff7e7;
      box-shadow: var(--shadow-hard);
      transform: rotate(-4deg);
    }

    .burger-photo-wrap::after {
      content: "";
      position: absolute;
      inset: auto 18px 18px 18px;
      height: 24px;
      background: rgba(15, 15, 15, 0.18);
      filter: blur(8px);
      border-radius: 50%;
      z-index: 0;
    }

    .burger-photo,
    .burger-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border: var(--border);
      box-shadow: var(--shadow-red);
      background: #f7f1e4;
      transform: rotate(-3deg);
      z-index: 1;
    }

    .burger-video {
      object-position: center;
    }


    .section {
      padding: 72px 0;
      position: relative;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-title {
      font-size: clamp(2.6rem, 6vw, 5rem);
      max-width: 10ch;
    }

    .section-lead {
      max-width: 38ch;
      font-size: 1rem;
      line-height: 1.7;
      font-weight: 700;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      background: #fff;
      border: var(--border);
      padding: 10px 12px;
      box-shadow: 6px 6px 0 var(--ink);
      margin-bottom: 16px;
      font-size: 0.82rem;
    }

    .menu-grid,
    .difference-grid,
    .combo-grid,
    .quotes-grid {
      display: grid;
      gap: 22px;
    }

    .menu-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .menu-card {
      box-shadow: var(--shadow-hard);
      display: flex;
      flex-direction: column;
      transform: rotate(var(--tilt));
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .menu-card:hover {
      transform: translate(-4px, -4px) rotate(0deg);
      box-shadow: 14px 14px 0 var(--ink);
    }

    .menu-image-wrap {
      position: relative;
      aspect-ratio: 0.92;
      overflow: hidden;
      border-bottom: var(--border);
    }

    .menu-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.15) contrast(1.08);
    }

    .card-noise {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(130deg, rgba(255,255,255,0.16), transparent 25%),
        radial-gradient(circle at 30% 18%, rgba(255,204,17,0.22), transparent 18%),
        linear-gradient(0deg, rgba(15,15,15,0.12), rgba(15,15,15,0));
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .price-stamp {
      position: absolute;
      top: 14px;
      right: 14px;
      border: var(--border);
      background: var(--mustard);
      box-shadow: 6px 6px 0 var(--ink);
      font-family: "Archivo Black", sans-serif;
      font-size: 1rem;
      padding: 8px 12px;
      transform: rotate(8deg);
    }

    .menu-content {
      padding: 20px;
      display: grid;
      gap: 12px;
    }

    .menu-content h3,
    .difference-card h3,
    .combo-card h3 {
      margin: 0;
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: 1.6rem;
      line-height: 0.95;
    }

    .menu-content p,
    .difference-card p,
    .combo-card p,
    .quote-card p,
    .footer-copy,
    .cta-band p {
      margin: 0;
      line-height: 1.7;
      font-size: 0.96rem;
      font-weight: 700;
    }

    .difference-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .difference-card {
      padding: 28px;
      box-shadow: var(--shadow-hard);
      min-height: 240px;
      display: grid;
      gap: 18px;
      align-content: start;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.22), transparent 35%),
        var(--paper);
    }

    .difference-num {
      display: inline-flex;
      width: 62px;
      height: 62px;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: #fff;
      border: var(--border);
      box-shadow: 6px 6px 0 var(--mustard);
      font-family: "Archivo Black", sans-serif;
      font-size: 1.4rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 22px;
    }

    .gallery-stack {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .gallery-card {
      box-shadow: var(--shadow-hard);
      min-height: 240px;
      aspect-ratio: 0.94;
      overflow: hidden;
    }

    .gallery-card.tall {
      aspect-ratio: auto;
      min-height: 100%;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: contrast(1.06) saturate(1.08);
      transition: transform 260ms ease;
    }

    .gallery-card:hover img { transform: scale(1.06); }

    .combo-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .combo-card {
      padding: 24px;
      box-shadow: var(--shadow-hard);
      background:
        linear-gradient(135deg, rgba(234,29,15,0.12), transparent 38%),
        var(--paper);
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .combo-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
    }

    .combo-price {
      flex: 0 0 auto;
      background: var(--mustard);
      border: var(--border);
      box-shadow: 6px 6px 0 var(--ink);
      padding: 8px 12px;
      font-family: "Archivo Black", sans-serif;
      font-size: 1.7rem;
      line-height: 1;
    }

    .combo-list {
      display: grid;
      gap: 8px;
      padding: 0;
      margin: 0;
      list-style: none;
      font-size: 0.92rem;
      font-weight: 700;
    }

    .combo-list li::before {
      content: "+ ";
      color: var(--ketchup);
      font-family: "Archivo Black", sans-serif;
    }

    .quotes-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quote-card {
      padding: 26px;
      box-shadow: var(--shadow-hard);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.2), transparent 40%),
        var(--paper);
      display: grid;
      gap: 18px;
      min-height: 280px;
    }

    .quote-big {
      font-size: clamp(2rem, 4vw, 3.4rem);
      max-width: 9ch;
    }

    .quote-author {
      display: inline-block;
      width: fit-content;
      border: var(--border);
      background: #fff;
      padding: 8px 10px;
      box-shadow: 5px 5px 0 var(--mustard);
      text-transform: uppercase;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .cta-band {
      margin-top: 22px;
      padding: clamp(28px, 5vw, 54px);
      box-shadow: var(--shadow-red);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(140deg, #ea1d0f 0%, #ff4d24 55%, #ffcc11 120%);
      color: #fff8ea;
    }

    .cta-band::before {
      content: "ÚLTIMA LLAMADA";
      position: absolute;
      top: 20px;
      right: 22px;
      background: var(--ink);
      color: #fff;
      border: var(--border);
      padding: 10px 12px;
      transform: rotate(6deg);
      font-family: "Archivo Black", sans-serif;
      font-size: 0.8rem;
    }

    .cta-band-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: center;
    }

    .cta-band h2 {
      font-size: clamp(3rem, 7vw, 6.4rem);
      max-width: 8ch;
    }

    .cta-band p {
      max-width: 36ch;
      margin-top: 16px;
    }

    .cta-actions {
      display: grid;
      gap: 14px;
      justify-items: start;
    }

    .footer {
      padding: 26px 0 40px;
    }

    .footer-shell {
      padding: 26px;
      box-shadow: var(--shadow-hard);
      background: var(--ink);
      color: #fff8ea;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: start;
    }

    .footer-title {
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: clamp(2.2rem, 6vw, 5rem);
      line-height: 0.9;
      margin: 0 0 14px;
    }

    .footer-copy { max-width: 44ch; }

    .footer-links {
      display: grid;
      gap: 14px;
      justify-items: start;
    }

    .footer-links a,
    .footer-links span {
      display: inline-flex;
      align-items: center;
      min-height: 52px;
      padding: 0 18px;
      border: 4px solid #fff8ea;
      box-shadow: 6px 6px 0 var(--mustard);
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      background: transparent;
    }

    .made-badge {
      margin-top: 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 4px solid #fff8ea;
      background: var(--ketchup);
      padding: 10px 14px;
      box-shadow: 6px 6px 0 var(--mustard);
      font-family: "Archivo Black", sans-serif;
      text-transform: uppercase;
      font-size: 0.9rem;
      transform: rotate(-3deg);
    }

    .reveal {
      opacity: 0;
      transform: translateY(42px) rotate(1.2deg);
      transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.85,.2,1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0) rotate(0deg);
    }

    .delay-1 { transition-delay: 80ms; }
    .delay-2 { transition-delay: 140ms; }
    .delay-3 { transition-delay: 200ms; }

    .shape-a,
    .shape-b,
    .shape-c {
      position: absolute;
      border: var(--border);
      pointer-events: none;
      z-index: -1;
    }

    .shape-a {
      width: 220px;
      height: 70px;
      background: var(--mustard);
      top: 860px;
      right: -40px;
      transform: rotate(-14deg);
    }

    .shape-b {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(234,29,15,0.18);
      left: -70px;
      top: 1680px;
    }

    .shape-c {
      width: 280px;
      height: 42px;
      background: #fff;
      right: 40px;
      bottom: 230px;
      transform: rotate(8deg);
    }

    body.menu-open {
      overflow: hidden;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .gallery-grid,
      .cta-band-grid,
      .footer-grid,
      .difference-grid,
      .combo-grid,
      .quotes-grid {
        grid-template-columns: 1fr;
      }

      .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-copy,
      .hero-stage {
        min-height: auto;
      }

      .hero-stage {
        min-height: 620px;
      }
    }

    @media (max-width: 1024px) {
      :root {
        --container: min(100vw - 40px, 1280px);
      }

      .header-shell {
        gap: 16px;
      }

      .nav {
        gap: 18px;
      }

      .nav-links {
        gap: 16px;
        font-size: 0.8rem;
      }

      .btn {
        min-height: 54px;
        padding: 0 20px;
      }

      .hero-copy {
        padding: 28px;
      }

      .hero h1 {
        font-size: clamp(3.6rem, 8vw, 6.2rem);
      }

      .hero-sub,
      .section-lead,
      .menu-content p,
      .difference-card p,
      .combo-card p,
      .quote-card p,
      .footer-copy,
      .cta-band p {
        font-size: 0.92rem;
      }

      .section {
        padding: 64px 0;
      }

      .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 820px) {
      .menu-toggle { display: inline-block; }

      .nav {
        position: fixed;
        inset: 0;
        z-index: 60;
        border: 0;
        box-shadow: none;
        background:
          linear-gradient(135deg, rgba(255,255,255,0.16), transparent 28%),
          linear-gradient(180deg, rgba(15,15,15,0.03), rgba(15,15,15,0.03)),
          var(--paper);
        padding: max(92px, env(safe-area-inset-top, 0px) + 76px) 20px 24px;
        display: grid;
        align-content: start;
        gap: 20px;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 180ms ease, transform 180ms ease;
        overflow-y: auto;
      }

      .nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
      }

      .nav-links {
        display: grid;
        gap: 18px;
        margin-bottom: 4px;
      }

      .nav-links a {
        display: inline-flex;
        width: 100%;
        min-height: 62px;
        align-items: center;
        padding: 0 16px;
        border: var(--border);
        background: #fff;
        box-shadow: 8px 8px 0 var(--ink);
        font-family: "Archivo Black", sans-serif;
        font-size: 1rem;
        letter-spacing: 0.04em;
      }

      .nav-links a::after {
        display: none;
      }

      .nav > .btn {
        width: 100%;
        position: sticky;
        bottom: 0;
      }

      .hero {
        padding-top: 18px;
        padding-bottom: 56px;
      }

      .hero h1 {
        font-size: clamp(3rem, 9vw, 4.7rem);
        max-width: 100%;
      }

      .hero-grid {
        gap: 18px;
      }

      .hero-copy,
      .hero-stage {
        min-height: auto;
      }

      .hero-note {
        flex-direction: column;
        align-items: start;
      }

      .menu-grid,
      .gallery-stack {
        grid-template-columns: 1fr;
      }

      .burger-scene {
        width: 100%;
        height: 520px;
      }

      .hero-sticker {
        top: 18px;
        left: 18px;
      }

      .hero-city {
        left: 18px;
        bottom: 18px;
      }

      .hero-price {
        right: 18px;
        bottom: 18px;
      }

      .burger-core { width: 320px; height: 320px; }
      .burger-photo-wrap {
        width: min(100%, 300px);
      }
    }

    @media (max-width: 560px) {
      :root { --container: calc(100vw - 20px); }

      .shape-a,
      .shape-b,
      .shape-c {
        display: none;
      }

      .site-header {
        padding: 10px 0;
      }

      .header-shell {
        gap: 12px;
      }

      .brand {
        font-size: 0.96rem;
        gap: 10px;
      }

      .menu-toggle {
        width: 54px;
        height: 54px;
      }

      .hero-copy,
      .hero-stage,
      .menu-card,
      .difference-card,
      .combo-card,
      .quote-card,
      .cta-band,
      .footer-shell {
        box-shadow: 7px 7px 0 var(--ink);
      }

      .hero-copy {
        padding: 20px;
        overflow: hidden;
      }

      .hero-copy::before {
        content: none !important;
        display: none !important;
      }

      .hero-kicker {
        max-width: 100%;
        width: 100%;
        white-space: normal;
        font-size: 0.7rem;
        padding: 8px 10px;
        overflow: hidden;
      }

      .hero h1 {
        font-size: clamp(2.7rem, 10vw, 4rem);
        line-height: 0.92;
        margin-top: 22px;
      }

      .hero-title-line-long {
        font-size: 0.82em;
        letter-spacing: -0.08em;
      }

      .hero-sub {
        font-size: 0.84rem;
        line-height: 1.55;
        max-width: 28ch;
      }

      .hero-meta {
        gap: 10px;
      }

      .meta-chip {
        width: 100%;
        box-shadow: 5px 5px 0 var(--ink);
        font-size: 0.78rem;
        padding: 9px 12px;
      }

      .hero-actions,
      .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }

      .section {
        padding: 54px 0;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
        gap: 16px;
      }

      .hero-stage {
        min-height: 500px;
      }

      .burger-scene { height: 470px; }
      .burger-core { width: 280px; height: 280px; }
      .burger-photo-wrap {
        width: min(100%, 262px);
      }

      .ingredient-tag {
        font-size: 0.7rem;
        padding: 6px 8px;
      }

      .hero-sticker,
      .hero-price,
      .hero-city {
        font-size: 0.82rem;
      }

      .hero-sticker,
      .hero-price,
      .hero-city {
        padding: 8px 10px;
        box-shadow: 5px 5px 0 var(--ink);
      }

      .hero-price,
      .hero-city {
        max-width: 42vw;
      }

      .hero-sticker,
      .hero-price,
      .hero-city {
        box-sizing: border-box;
      }

      .hero-sticker {
        max-width: calc(100% - 28px);
        overflow: hidden;
      }

      .menu-grid,
      .difference-grid,
      .combo-grid,
      .quotes-grid,
      .gallery-stack {
        grid-template-columns: 1fr;
      }

      .gallery-card,
      .gallery-card.tall {
        min-height: 220px;
      }

      .menu-content,
      .difference-card,
      .combo-card,
      .quote-card,
      .footer-shell {
        padding-left: 18px;
        padding-right: 18px;
      }

      .section-title,
      .cta-band h2 {
        max-width: 100%;
      }

      .footer-links a,
      .footer-links span {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 420px) {
      .hero h1 {
        font-size: clamp(2.35rem, 11.4vw, 3.25rem);
        max-width: 100%;
        line-height: 0.94;
      }

      .hero-title-line {
        white-space: normal;
      }

      .hero-word-full {
        display: none;
      }

      .hero-word-mobile {
        display: inline;
      }

      .hero-title-line-long {
        font-size: 0.74em;
        letter-spacing: -0.085em;
        white-space: normal;
        overflow-wrap: normal;
        line-height: 0.88;
      }

      .hero-kicker {
        font-size: 0.62rem;
        line-height: 1.2;
        padding: 7px 9px;
      }

      .hero-sub {
        font-size: 0.8rem;
        line-height: 1.5;
      }

      .meta-chip {
        font-size: 0.74rem;
      }

      .hero-stage {
        min-height: 440px;
      }

      .burger-scene {
        height: 408px;
      }

      .burger-photo-wrap {
        width: min(100%, 228px);
      }

      .hero-sticker {
        top: 14px;
        left: 14px;
      }

      .hero-price {
        right: 14px;
        bottom: 14px;
      }

      .hero-city {
        left: 14px;
        bottom: 14px;
      }

      .hero-sticker,
      .hero-price,
      .hero-city {
        max-width: calc(100% - 28px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation: none !important;
        transition-duration: 0ms !important;
      }
      .reveal {
        opacity: 1;
        transform: none;
      }
    }

.footer-menu,
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li + li {
  margin-top: 14px;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 4px solid #fff8ea;
  box-shadow: 6px 6px 0 var(--mustard);
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  background: transparent;
}

.brand-has-logo .custom-logo {
  max-height: 56px;
  width: auto;
}

.entry-content > * + * {
  margin-top: 1rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-actions .nav-links,
.hero-actions .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 20px;
  border: var(--border);
  box-shadow: var(--shadow-hard);
  background: #fff;
  font-family: "Archivo Black", sans-serif;
}
