    :root {
      --yellow: #f5b62f;
      --gold: #d88b1f;
      --orange: #c85222;
      --maroon: #6f1722;
      --maroon-dark: #3d1013;
      --brown: #2b160d;
      --cream: #fff2d2;
      --paper: #f8e0ad;
      --ink: #24140c;
      --green: #3e5f34;
      --white: #fffaf0;
      --shadow: 0 18px 45px rgba(45, 18, 8, 0.25);
      --radius: 8px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: Inter, Arial, sans-serif;
      background:
        linear-gradient(rgba(43, 22, 13, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 22, 13, 0.05) 1px, transparent 1px),
        #fff4d8;
      background-size: 34px 34px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    .icon-sprite {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    .inline-icon {
      width: 16px;
      height: 16px;
      margin-right: 6px;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      vertical-align: -3px;
    }

    .social-icon .inline-icon {
      margin-right: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(var(--max), calc(100% - 36px));
      margin: 0 auto;
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--maroon);
      font-family: "Permanent Marker", cursive;
      font-size: clamp(1rem, 2vw, 1.35rem);
      margin: 0 0 8px;
    }

    h1,
    h2,
    h3 {
      font-family: "Barlow Condensed", Impact, sans-serif;
      line-height: 0.92;
      margin: 0;
      color: var(--brown);
      text-transform: uppercase;
      letter-spacing: 0;
    }

    h1 {
      font-size: clamp(4rem, 12vw, 8.2rem);
      max-width: 820px;
      text-shadow: 3px 3px 0 var(--yellow);
    }

    h2 {
      font-size: clamp(3rem, 7vw, 5.6rem);
    }

    h3 {
      font-size: clamp(2rem, 4.5vw, 3rem);
    }

    p {
      margin: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 20px;
      border: 2px solid var(--brown);
      border-radius: var(--radius);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
      color: var(--brown);
      background: var(--yellow);
      box-shadow: 5px 5px 0 var(--brown);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translate(3px, 3px);
      box-shadow: 2px 2px 0 var(--brown);
      background: #ffd76c;
    }

    .btn.dark {
      color: var(--white);
      background: var(--maroon);
      border-color: var(--brown);
    }

    .btn.dark:hover {
      background: var(--orange);
      color: var(--brown);
    }

    .btn.ghost {
      background: var(--white);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--cream);
      box-shadow: 0 4px 0 var(--brown);
    }

    .top-bar {
      color: var(--white);
      background: var(--maroon-dark);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .top-bar .container {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
    }

    .top-contact {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .top-label {
      color: var(--yellow);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.02rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .top-contact a {
      display: inline-flex;
      align-items: center;
      line-height: 1.2;
    }

    .social-icon {
      display: inline-grid;
      place-items: center;
      width: 26px;
      height: 26px;
      border: 1px solid var(--cream);
      border-radius: 50%;
      color: var(--cream);
      font-weight: 900;
      transition: background 180ms ease, color 180ms ease;
    }

    .social-icon:hover {
      color: var(--brown);
      background: var(--yellow);
    }

    .nav-wrap {
      background: var(--cream);
      border-bottom: 3px solid var(--brown);
    }

    .main-nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo-image {
      width: 164px;
      height: 66px;
      object-fit: contain;
      border-radius: 6px;
      filter: drop-shadow(3px 3px 0 var(--brown));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.22rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 180ms ease;
    }

    .nav-links a:hover::after,
    .nav-links a[aria-current="page"]::after {
      transform: scaleX(1);
    }

    .nav-links a[aria-current="page"] {
      color: var(--maroon);
    }

    .mobile-order-link {
      display: none;
    }

    .hamburger {
      display: none;
      width: 46px;
      height: 44px;
      border: 2px solid var(--brown);
      border-radius: var(--radius);
      background: var(--yellow);
      box-shadow: 3px 3px 0 var(--brown);
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 3px;
      margin: 4px auto;
      background: var(--brown);
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .hero {
      min-height: calc(100vh - 116px);
      display: grid;
      align-items: center;
      padding: 56px 0 72px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(255, 242, 210, 0.98) 0%, rgba(255, 242, 210, 0.88) 44%, rgba(61, 16, 19, 0.35) 100%),
        url("../images/food/hero-roast.webp") center / cover;
      border-bottom: 8px solid var(--brown);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
      gap: 38px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero-logo {
      margin-bottom: 22px;
    }

    .hero-logo .logo-image {
      width: min(360px, 76vw);
      height: auto;
      border: 3px solid var(--brown);
      background: var(--yellow);
      box-shadow: 7px 7px 0 var(--brown);
    }

    .hero-copy .lead {
      max-width: 700px;
      margin-top: 22px;
      font-size: clamp(1.08rem, 2vw, 1.35rem);
      font-weight: 650;
      color: #3f2414;
    }

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

    .hero-plate {
      position: relative;
      min-height: 520px;
    }

    .photo-card {
      position: absolute;
      inset: 26px 0 0 22px;
      border: 5px solid var(--brown);
      border-radius: 50%;
      overflow: hidden;
      box-shadow: var(--shadow), 12px 12px 0 var(--orange);
      background: var(--paper);
      transform: rotate(3deg);
    }

    .photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.06);
    }

    .badge {
      position: absolute;
      display: grid;
      place-items: center;
      width: 142px;
      height: 142px;
      padding: 16px;
      border-radius: 50%;
      border: 3px solid var(--brown);
      color: var(--brown);
      background: var(--yellow);
      box-shadow: 6px 6px 0 var(--brown);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.35rem;
      font-weight: 900;
      line-height: 0.95;
      text-align: center;
      text-transform: uppercase;
    }

    .badge.script {
      font-family: "Permanent Marker", cursive;
      font-size: 1.05rem;
      line-height: 1.05;
      text-transform: none;
      background: var(--cream);
      color: var(--maroon);
    }

    .hero .badge.one {
      top: 18px;
      right: -12px;
    }

    .hero .badge.two {
      bottom: 8px;
      left: -2px;
      background: var(--maroon);
      color: var(--white);
    }

    .brand-strip {
      color: var(--white);
      background: var(--brown);
      border-bottom: 6px solid var(--yellow);
    }

    .strip-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(130px, 1fr));
      gap: 1px;
    }

    .strip-item {
      min-height: 122px;
      display: grid;
      place-items: center;
      gap: 8px;
      padding: 20px 12px;
      background: linear-gradient(135deg, rgba(111, 23, 34, 0.92), rgba(200, 82, 34, 0.82));
      text-align: center;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.35rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .strip-icon {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border: 2px solid var(--cream);
      border-radius: 50%;
      color: var(--brown);
      background: var(--yellow);
      box-shadow: 3px 3px 0 var(--brown);
      font-family: "Permanent Marker", cursive;
      font-size: 1.18rem;
      line-height: 1;
      text-transform: none;
    }

    .about {
      background:
        linear-gradient(rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0.94)),
        url("../images/food/about-bg.webp") center / cover;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
    }

    .about-photo {
      position: relative;
      border: 4px solid var(--brown);
      box-shadow: 10px 10px 0 var(--maroon);
      transform: rotate(-2deg);
      overflow: hidden;
      min-height: 430px;
    }

    .about-photo img {
      height: 100%;
      object-fit: cover;
    }

    .about-copy {
      padding: 24px 0;
    }

    .about-copy p {
      margin-top: 22px;
      max-width: 690px;
      font-size: 1.12rem;
      font-weight: 560;
    }

    .mini-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .mini-badge {
      padding: 9px 14px;
      border: 2px solid var(--brown);
      border-radius: 999px;
      background: var(--yellow);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      text-transform: uppercase;
    }

    .menu {
      background: linear-gradient(180deg, #fff2d2, #f8dfaa);
    }

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

    .section-head p {
      max-width: 520px;
      font-weight: 650;
    }

    .notice {
      margin-bottom: 26px;
      padding: 15px 18px;
      border: 3px solid var(--brown);
      border-radius: var(--radius);
      color: var(--white);
      background: repeating-linear-gradient(-45deg, var(--maroon), var(--maroon) 16px, #832130 16px, #832130 32px);
      font-weight: 850;
      box-shadow: 5px 5px 0 var(--brown);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .menu-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      border: 3px solid var(--brown);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--white);
      box-shadow: 6px 6px 0 rgba(43, 22, 13, 0.9);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .menu-card:hover {
      transform: translateY(-4px);
      box-shadow: 9px 11px 0 rgba(43, 22, 13, 0.9);
    }

    .menu-card figure {
      margin: 0;
      height: 178px;
      overflow: hidden;
      border-bottom: 3px solid var(--brown);
    }

    .menu-card figure img {
      height: 100%;
      object-fit: cover;
      transition: transform 400ms ease;
    }

    .menu-card:hover figure img {
      transform: scale(1.08);
    }

    .menu-card-content {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 20px;
    }

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

    .menu-card li,
    .platter-list li {
      display: flex;
      align-items: start;
      gap: 9px;
      padding: 7px 0;
      border-bottom: 1px dashed rgba(43, 22, 13, 0.25);
      font-weight: 650;
    }

    .menu-card li::before,
    .platter-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 9px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 3px rgba(200, 82, 34, 0.16);
    }

    .card-note {
      margin-top: auto;
      padding-top: 14px;
      color: var(--maroon);
      font-size: 0.92rem;
      font-weight: 850;
    }

    .promo {
      color: var(--white);
      overflow: hidden;
      background:
        linear-gradient(105deg, rgba(61, 16, 19, 0.98) 0%, rgba(111, 23, 34, 0.91) 38%, rgba(200, 82, 34, 0.72) 100%),
        url("../images/food/sunday-promo-bg.webp") center / cover;
      border-top: 8px solid var(--brown);
      border-bottom: 8px solid var(--brown);
    }

    .promo h2,
    .promo h3 {
      color: var(--white);
      text-shadow: 3px 3px 0 var(--brown);
    }

    .promo-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 34px;
      align-items: center;
    }

    .promo-copy p {
      max-width: 670px;
      margin-top: 18px;
      font-size: 1.16rem;
      font-weight: 650;
    }

    .price-stamp {
      width: 240px;
      height: 240px;
      margin: auto;
      display: grid;
      place-items: center;
      border: 4px solid var(--brown);
      border-radius: 50%;
      color: var(--brown);
      background: var(--yellow);
      box-shadow: 10px 10px 0 var(--brown);
      text-align: center;
      transform: rotate(5deg);
    }

    .price-stamp strong {
      display: block;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 4.3rem;
      line-height: 0.9;
      text-transform: uppercase;
    }

    .price-stamp span {
      display: block;
      font-family: "Permanent Marker", cursive;
      color: var(--maroon);
      font-size: 1.4rem;
    }

    .platter {
      background:
        linear-gradient(90deg, rgba(248, 224, 173, 0.96), rgba(255, 250, 240, 0.9)),
        url("../images/food/platter-bg.webp") center / cover;
    }

    .platter-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: stretch;
    }

    .poster-panel {
      border: 4px solid var(--brown);
      border-radius: var(--radius);
      padding: clamp(24px, 4vw, 42px);
      background: var(--white);
      box-shadow: 10px 10px 0 var(--orange);
    }

    .poster-panel .btn {
      margin-top: 22px;
    }

    .platter-photo {
      position: relative;
      min-height: 500px;
      border: 4px solid var(--brown);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 10px 10px 0 var(--maroon);
    }

    .platter-photo img {
      height: 100%;
      object-fit: cover;
    }

    .platter-photo .badge {
      right: 18px;
      bottom: 18px;
    }

    .branches {
      background: #fff7e5;
    }

    .branch-hours-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 24px;
    }

    .branch-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .branch-card,
    .hours-card,
    .contact-panel {
      border: 3px solid var(--brown);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 6px 6px 0 var(--brown);
      padding: 24px;
    }

    .branch-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .branch-card p {
      font-weight: 650;
    }

    .branch-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: auto;
    }

    .hours-card {
      background: var(--brown);
      color: var(--white);
    }

    .hours-card h3 {
      color: var(--yellow);
    }

    .hours-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 250, 240, 0.3);
      font-weight: 750;
    }

    .gallery {
      background: linear-gradient(180deg, var(--paper), #fff2d2);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .gallery-item {
      position: relative;
      min-height: 290px;
      overflow: hidden;
      border: 4px solid var(--brown);
      border-radius: var(--radius);
      box-shadow: 6px 6px 0 var(--brown);
      background: var(--brown);
    }

    .gallery-item img {
      height: 100%;
      object-fit: cover;
      transition: transform 420ms ease, opacity 220ms ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
      opacity: 0.82;
    }

    .gallery-caption {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 10px 12px;
      border: 2px solid var(--brown);
      border-radius: var(--radius);
      color: var(--brown);
      background: var(--yellow);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.42rem;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
    }

    .contact {
      background:
        linear-gradient(rgba(61, 16, 19, 0.9), rgba(61, 16, 19, 0.93)),
        url("../images/food/contact-bg.webp") center / cover;
      color: var(--white);
    }

    .contact h2,
    .contact h3 {
      color: var(--white);
    }

    .contact-panel h2,
    .contact-panel h3 {
      color: var(--brown);
    }

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

    .contact-panel {
      color: var(--ink);
    }

    .contact-details {
      display: grid;
      gap: 14px;
      margin: 22px 0;
      font-weight: 750;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .form-grid label {
      display: grid;
      gap: 7px;
      font-weight: 850;
    }

    .form-grid label.full {
      grid-column: 1 / -1;
    }

    input,
    textarea {
      width: 100%;
      border: 2px solid var(--brown);
      border-radius: var(--radius);
      padding: 12px;
      background: #fffaf0;
      color: var(--brown);
      outline: none;
    }

    input:focus,
    textarea:focus {
      box-shadow: 0 0 0 4px rgba(245, 182, 47, 0.45);
    }

    textarea {
      min-height: 126px;
      resize: vertical;
    }

    .map-placeholder {
      position: relative;
      min-height: 100%;
      overflow: hidden;
      border: 4px solid var(--brown);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(245, 182, 47, 0.88), rgba(200, 82, 34, 0.84)),
        repeating-linear-gradient(45deg, rgba(43, 22, 13, 0.18) 0 2px, transparent 2px 18px);
      box-shadow: 8px 8px 0 var(--brown);
    }

    .map-label {
      position: absolute;
      inset: 24px;
      display: grid;
      place-items: center;
      border: 3px solid var(--brown);
      color: var(--brown);
      background: rgba(255, 250, 240, 0.9);
      text-align: center;
      padding: 20px;
    }

    .map-label strong {
      display: block;
      font-family: "Barlow Condensed", sans-serif;
      font-size: clamp(2rem, 5vw, 3.6rem);
      line-height: 0.95;
      text-transform: uppercase;
    }

    .site-footer {
      color: var(--white);
      background: var(--brown);
      border-top: 8px solid var(--yellow);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.9fr 1.2fr 0.95fr 1.05fr;
      gap: 30px;
      padding: 54px 0 38px;
    }

    .footer-brand .logo {
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer h4 {
      color: var(--white);
    }

    .footer-brand .logo-image {
      background: var(--yellow);
      border: 2px solid rgba(255, 250, 240, 0.35);
    }

    .site-footer h4 {
      margin: 0 0 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(245, 182, 47, 0.55);
      color: var(--yellow);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.45rem;
      text-transform: uppercase;
    }

    .footer-list {
      display: grid;
      gap: 8px;
      margin: 0;
    }

    .footer-list a:hover {
      color: var(--yellow);
    }

    .icon-list {
      gap: 10px;
    }

    .icon-list li,
    .icon-list a {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .icon-list li {
      line-height: 1.35;
    }

    .branch-footer-list li {
      align-items: flex-start;
      gap: 7px;
      font-size: 0.9rem;
      line-height: 1.3;
    }

    .branch-footer-list .footer-icon {
      width: 15px;
      height: 15px;
      flex-basis: 15px;
      margin-top: 2px;
    }

    .branch-footer-list a {
      display: inline-flex;
      margin-top: 2px;
      color: var(--yellow);
      font-size: 0.84rem;
      font-weight: 850;
    }

    .footer-icon {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      color: var(--yellow);
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .copyright {
      padding: 16px 0;
      border-top: 1px solid rgba(255, 250, 240, 0.16);
      color: rgba(255, 250, 240, 0.76);
      font-size: 0.88rem;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
    }

    .footer-bottom a {
      color: var(--yellow);
      font-weight: 850;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 520ms ease, transform 520ms ease;
    }

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

    .order-hero {
      background:
        linear-gradient(90deg, rgba(255, 242, 210, 0.98) 0%, rgba(255, 242, 210, 0.9) 44%, rgba(61, 16, 19, 0.38) 100%),
        url("../images/food/hero-roast.webp") center / cover;
    }

    .compact-hero {
      min-height: auto;
      padding: 54px 0 58px;
    }

    .compact-hero-grid {
      display: block;
    }

    .compact-hero h1 {
      max-width: 760px;
      font-size: clamp(3.7rem, 9vw, 6.4rem);
    }

    .compact-hero .lead {
      max-width: 700px;
    }

    .order-notice {
      max-width: 720px;
      margin: 24px 0 0;
    }

    .frozen-foods {
      background:
        linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(248, 224, 173, 0.94)),
        url("../images/food/takeaway.webp") center / cover;
    }

    .contact-hero {
      background:
        linear-gradient(90deg, rgba(255, 242, 210, 0.98) 0%, rgba(255, 242, 210, 0.9) 50%, rgba(61, 16, 19, 0.34) 100%),
        url("../images/food/contact-bg.webp") center / cover;
    }

    .order-section {
      background:
        linear-gradient(rgba(255, 250, 240, 0.9), rgba(248, 224, 173, 0.96)),
        url("../images/food/about-bg.webp") center / cover;
    }

    .branch-selector {
      display: grid;
      grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
      gap: 20px;
      align-items: start;
      margin-bottom: 26px;
      padding: 20px;
      border: 4px solid var(--brown);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 8px 8px 0 var(--brown);
    }

    .branch-selector h3 {
      font-size: clamp(1.9rem, 3vw, 2.3rem);
      line-height: 0.98;
    }

    .branch-selector p {
      margin-top: 7px;
      font-size: 0.95rem;
      line-height: 1.38;
      font-weight: 700;
    }

    .branch-helper {
      color: var(--maroon);
      font-weight: 900;
    }

    .branch-clear {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 34px;
      margin-top: 10px;
      padding: 6px 10px;
      border: 2px solid var(--brown);
      border-radius: var(--radius);
      color: var(--brown);
      background: var(--white);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.92rem;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 3px 3px 0 var(--brown);
      cursor: pointer;
    }

    .branch-clear[hidden] {
      display: inline-flex;
      visibility: hidden;
      pointer-events: none;
    }

    .branch-clear:hover {
      color: var(--white);
      background: var(--maroon);
    }

    .branch-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      align-self: start;
      align-items: start;
    }

    .branch-option {
      position: relative;
      display: grid;
      align-content: center;
      gap: 6px;
      min-height: 108px;
      padding: 16px 46px 16px 18px;
      border: 3px solid var(--brown);
      border-radius: var(--radius);
      color: var(--brown);
      background: var(--white);
      box-shadow: 6px 6px 0 var(--brown);
      text-align: left;
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
      overflow: hidden;
    }

    .branch-option::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 8px;
      background: var(--orange);
    }

    .branch-option::after {
      content: "Selected";
      position: absolute;
      right: 10px;
      bottom: 9px;
      display: none;
      padding: 3px 7px;
      border: 2px solid var(--brown);
      border-radius: 999px;
      color: var(--white);
      background: var(--maroon);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.82rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .branch-option strong {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.34rem;
      line-height: 1;
      text-transform: uppercase;
    }

    .branch-option span {
      font-size: 0.92rem;
      font-weight: 850;
    }

    .branch-option:hover,
    .branch-option.active {
      transform: translate(3px, 3px);
      background: var(--yellow);
      border-color: var(--maroon);
      box-shadow: 2px 2px 0 var(--brown);
    }

    .branch-option.active::after {
      display: inline-flex;
    }

    .category-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 24px;
    }

    .category-tab {
      min-height: 42px;
      padding: 9px 14px;
      border: 2px solid var(--brown);
      border-radius: 999px;
      color: var(--brown);
      background: var(--white);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.12rem;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 180ms ease, color 180ms ease;
    }

    .category-tab:hover,
    .category-tab.active {
      color: var(--white);
      background: var(--maroon);
    }

    .order-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 24px;
      align-items: start;
    }

    .order-menu-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .order-item-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-height: 100%;
      padding: 20px;
      border: 3px solid var(--brown);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 6px 6px 0 rgba(43, 22, 13, 0.9);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .order-item-card:hover {
      transform: translateY(-4px);
      box-shadow: 9px 11px 0 rgba(43, 22, 13, 0.9);
    }

    .item-category {
      width: fit-content;
      padding: 5px 9px;
      border: 2px solid var(--brown);
      border-radius: 999px;
      color: var(--white);
      background: var(--orange);
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 900;
      text-transform: uppercase;
    }

    .order-item-card p {
      font-weight: 650;
    }

    .item-price {
      margin-top: auto;
      color: var(--maroon);
      font-weight: 900;
    }

    .item-actions {
      display: grid;
      grid-template-columns: 116px 1fr;
      gap: 12px;
      align-items: center;
    }

    .quantity-field {
      min-height: 48px;
      text-align: center;
      font-weight: 900;
    }

    .order-summary {
      position: sticky;
      top: 142px;
      display: grid;
      gap: 16px;
      padding: 22px;
      border: 4px solid var(--brown);
      border-radius: var(--radius);
      background: var(--cream);
      box-shadow: 8px 8px 0 var(--maroon);
      z-index: 10;
    }

    .order-summary .summary-head {
      margin: -22px -22px 0;
      padding: 18px 22px;
      border-bottom: 3px solid var(--brown);
      color: var(--white);
      background: var(--maroon);
    }

    .order-summary .summary-head h3,
    .order-summary .summary-head .eyebrow {
      color: var(--white);
    }

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

    .summary-close {
      display: none;
      min-height: 38px;
      padding: 7px 10px;
      border: 2px solid var(--brown);
      border-radius: var(--radius);
      color: var(--brown);
      background: var(--yellow);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1rem;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
    }

    .selected-branch,
    .cart-count {
      padding: 12px;
      border: 2px dashed rgba(43, 22, 13, 0.35);
      border-radius: var(--radius);
      background: var(--white);
      font-weight: 850;
    }

    .cart-items {
      display: grid;
      gap: 10px;
      max-height: 260px;
      overflow: auto;
    }

    .empty-cart {
      color: rgba(36, 20, 12, 0.72);
      font-weight: 750;
    }

    .cart-line {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      align-items: center;
      padding: 10px;
      border: 2px solid rgba(43, 22, 13, 0.18);
      border-radius: var(--radius);
      background: #fff7e5;
      font-weight: 750;
    }

    .remove-item {
      border: 2px solid var(--brown);
      border-radius: var(--radius);
      color: var(--white);
      background: var(--maroon);
      font-weight: 900;
      cursor: pointer;
    }

    .order-summary label {
      display: grid;
      gap: 7px;
      font-weight: 850;
    }

    .form-message {
      min-height: 22px;
      color: var(--maroon);
      font-weight: 900;
    }

    .checkout-button {
      width: 100%;
    }

    .view-order-button {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 90;
      min-height: 54px;
      border: 3px solid var(--brown);
      border-radius: var(--radius);
      color: var(--brown);
      background: var(--yellow);
      box-shadow: 5px 5px 0 var(--brown);
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
    }

    .view-order-button.is-open {
      color: var(--white);
      background: var(--maroon);
    }

    .view-order-button span {
      display: inline-grid;
      place-items: center;
      min-width: 28px;
      height: 28px;
      margin-left: 8px;
      border: 2px solid var(--brown);
      border-radius: 999px;
      color: var(--white);
      background: var(--maroon);
    }

    @media (max-width: 1080px) {
      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 116px;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        background: var(--cream);
        border-top: 3px solid var(--brown);
        transform: translateX(100%);
        transition: transform 220ms ease;
        z-index: 45;
      }

      .nav-links a {
        padding: 16px;
        border-bottom: 2px solid var(--brown);
        font-size: 1.7rem;
      }

      .nav-links .mobile-order-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
        border: 2px solid var(--brown);
        border-radius: var(--radius);
        color: var(--white);
        background: var(--maroon);
        box-shadow: 5px 5px 0 var(--brown);
      }

      .nav-links.open {
        transform: translateX(0);
      }

      .hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
      }

      .hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .menu-grid,
      .strip-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .order-layout {
        grid-template-columns: 1fr;
      }

      .order-summary {
        position: static;
      }

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

    @media (max-width: 860px) {
      .section {
        padding: 64px 0;
      }

      .top-bar .container {
        justify-content: center;
      }

      .hero {
        min-height: auto;
        padding-top: 44px;
      }

      .compact-hero {
        padding: 38px 0 42px;
      }

      .hero-grid,
      .about-grid,
      .promo-grid,
      .platter-grid,
      .branch-hours-grid,
      .contact-grid,
      .branch-selector {
        grid-template-columns: 1fr;
      }

      .hero-plate {
        min-height: 430px;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
      }

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

      .menu-grid,
      .gallery-grid,
      .branch-cards,
      .branch-options,
      .order-menu-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .map-placeholder {
        min-height: 360px;
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(100% - 24px, var(--max));
      }

      .top-contact {
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
        padding: 7px 0;
        width: 100%;
        min-width: 0;
        font-size: 0.74rem;
      }

      .top-label {
        display: none;
      }

      .top-contact a {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 100%;
        text-align: center;
        line-height: 1.25;
        white-space: nowrap;
      }

      .main-nav {
        min-height: 72px;
      }

      .nav-links {
        top: 112px;
      }

      .logo-image {
        width: 136px;
        height: 56px;
      }

      h1 {
        font-size: clamp(3.5rem, 18vw, 5.4rem);
      }

      .order-hero h1 {
        font-size: clamp(3.15rem, 15vw, 4.35rem);
        max-width: 100%;
      }

      .compact-hero h1 {
        font-size: clamp(3rem, 14vw, 4.2rem);
      }

      .hero-actions,
      .branch-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-plate {
        min-height: 350px;
      }

      .badge {
        width: 118px;
        height: 118px;
        font-size: 1.08rem;
      }

      .hero .badge.one {
        right: 0;
      }

      .strip-grid,
      .menu-grid,
      .gallery-grid,
      .branch-cards,
      .form-grid,
      .footer-grid,
      .branch-options,
      .order-menu-grid,
      .item-actions {
        grid-template-columns: 1fr;
      }

      .strip-item {
        min-height: 88px;
      }

      .branch-option {
        min-height: 96px;
        padding: 14px 40px 14px 16px;
      }

      .branch-option strong {
        font-size: 1.2rem;
      }

      .branch-option span {
        font-size: 0.86rem;
      }

      .footer-grid {
        gap: 24px;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .about-photo,
      .platter-photo {
        min-height: 330px;
      }

      .price-stamp {
        width: 190px;
        height: 190px;
      }

      .price-stamp strong {
        font-size: 3.45rem;
      }

      .order-page {
        padding-bottom: 76px;
      }

      .order-summary {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 82px;
        top: auto;
        max-height: calc(100vh - 124px);
        overflow: auto;
        transform: translateY(calc(100% + 100px));
        transition: transform 220ms ease;
        z-index: 70;
      }

      .order-summary.open {
        transform: translateY(0);
      }

      .summary-close,
      .view-order-button {
        display: block;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
      }
    }
