

:root {
  --seek-blue: #2B3FD6;
  --seek-blue: oklch(0.47 0.22 268);
  --seek-blue-deep: #1E2FA8;
  --seek-blue-deep: oklch(0.38 0.19 268);
  --seek-ink: #141C5C;
  --seek-ink: oklch(0.24 0.08 275);
  --tile: #F4F5FB;
  --tile: oklch(0.975 0.006 275);
  --grout: #EAECF7;
  --grout: oklch(0.945 0.012 275);
  --sesame: #F2B84B;
  --sesame: oklch(0.83 0.14 80);
  --mint: #7EE7B7;
  --mint: oklch(0.85 0.13 160);
}

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

body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--seek-ink);
  background-color: var(--tile);
  overflow-x: hidden;
}

h1, h2, h3, .display-type {
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2.75rem, 9vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: 1.35rem; }

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

p {
  margin-top: 0;
}

/* Tile walls */
.tile-wall-light {
  background-color: var(--tile);
  background-image: 
    linear-gradient(to right, var(--grout) 2px, transparent 2px),
    linear-gradient(to bottom, var(--grout) 2px, transparent 2px);
  background-size: 64px 64px;
  background-position: top right;
  color: var(--seek-ink);
}

.tile-wall-blue {
  background-color: var(--seek-blue);
  background-image: 
    linear-gradient(to right, color-mix(in oklab, var(--seek-blue-deep) 45%, var(--seek-blue)) 2px, transparent 2px),
    linear-gradient(to bottom, color-mix(in oklab, var(--seek-blue-deep) 45%, var(--seek-blue)) 2px, transparent 2px);
  background-size: 64px 64px;
  background-position: top right;
  color: var(--tile);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 3rem);
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--seek-blue-deep);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.wordmark {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.wordmark svg {
  height: 1em;
  width: auto;
  margin-right: -0.1em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.cta-pill {
  background-color: var(--tile);
  color: var(--seek-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--seek-blue-deep);
}

.cta-pill-blue {
  background-color: var(--seek-blue);
  color: var(--tile);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-pill-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 28, 92, 0.2);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--tile);
  color: var(--tile);
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* Frieze Marquee */
.frieze {
  background-color: var(--seek-blue);
  color: var(--tile);
  border-top: 2px solid var(--seek-blue-deep);
  border-bottom: 2px solid var(--seek-blue-deep);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  user-select: none;
}

.frieze-content {
  display: flex;
  gap: 2rem;
  font-family: 'Baloo Bhaijaan 2', cursive;
  font-weight: 800;
  font-size: 1.5rem;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 0;
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.hero .hero-compact-container {
  min-height: 0;
  padding-block: 5rem;
}

.hero-content {
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-secondary-cta {
  font-weight: 700;
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-secondary-cta:hover {
  opacity: 1;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border: 4px solid var(--tile);
  box-shadow: 0 12px 32px var(--seek-blue-deep);
}

.hero-image-wrap video + img {
  display: none;
}

.sticker {
  position: absolute;
  background-color: var(--sesame);
  color: var(--seek-ink);
  padding: 0.5rem 1rem;
  font-weight: 700;
  transform: rotate(-4deg);
  bottom: -1rem;
  right: -1rem;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(20, 28, 92, 0.2);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* Menu List */
.menu-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.menu-row:nth-child(even) {
  flex-direction: row-reverse;
}

.menu-image {
  flex: 1;
  border: 4px solid var(--seek-blue);
  box-shadow: 0 12px 32px rgba(20, 28, 92, 0.1);
  transform: rotate(-1deg);
}
.menu-row:nth-child(even) .menu-image {
  transform: rotate(1deg);
}
.menu-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.menu-text {
  flex: 1;
}

.menu-text h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--seek-blue);
}

.menu-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--seek-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Why Section (Pinned Notes) */
.why-section {
  overflow: hidden;
}
.why-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.why-header h2 {
  margin-bottom: 0;
  flex-shrink: 0;
}
.why-lead {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 500px;
  margin: 0;
  opacity: 0.9;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: 1.5rem;
  position: relative;
}

.note {
  --rest-rot: 0deg;
  --rest-tx: 0px;
  background-color: var(--tile);
  border: 4px solid var(--seek-blue);
  box-shadow: 8px 8px 0 var(--seek-blue-deep);
  padding: 2rem;
  position: relative;
  will-change: transform, opacity, box-shadow;
}

.note-kicker {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--seek-blue);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.note-reason {
  color: var(--seek-blue);
  margin-bottom: 1rem;
  line-height: 1.1;
  margin-top: 0;
}

.note-explanation {
  color: var(--seek-ink);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.note-1 { --rest-rot: -3deg; grid-column: 1 / 7; grid-row: 1; z-index: 2; align-self: start; }
.note-1 .note-reason { font-size: clamp(2rem, 4vw, 3.5rem); }

.note-2 { --rest-rot: 2deg; grid-column: 8 / 13; grid-row: 1 / 3; z-index: 1; margin-top: 7rem; align-self: start; }
.note-2 .note-reason { font-size: clamp(1.75rem, 3vw, 2.5rem); }

.note-3 { --rest-rot: -1.5deg; grid-column: 1 / 8; grid-row: 2; z-index: 3; margin-top: 1rem; align-self: start; }
.note-3 .note-reason { font-size: clamp(2rem, 4vw, 3rem); }

.note-sticker {
  position: absolute;
  background-color: var(--sesame);
  color: var(--seek-ink);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  transform: rotate(-6deg);
  top: -1.5rem;
  left: -1.5rem;
  right: auto;
  bottom: auto;
  width: max-content;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(20, 28, 92, 0.2);
}

@media (min-width: 1025px) {
  .note {
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
  .note:hover, .note:focus-within {
    transform: translate(var(--rest-tx), -4px) rotate(var(--rest-rot)) !important;
    box-shadow: 12px 12px 0 var(--seek-blue-deep);
  }
}

html.js .note {
  opacity: 0;
  transform: translate(var(--rest-tx), 28px) rotate(calc(var(--rest-rot) + 4deg));
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), 
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 200ms ease;
}

html.js .note.is-in {
  opacity: 1;
  transform: translate(var(--rest-tx), 0px) rotate(var(--rest-rot));
}

html.js .note-1 { transition-delay: 0ms; }
html.js .note-2 { transition-delay: 120ms; }
html.js .note-3 { transition-delay: 240ms; }

html.js .note.is-in:hover,
html.js .note.is-in:focus-within {
  transition-delay: 0ms, 0ms, 0ms;
}

@media (max-width: 1024px) and (min-width: 760px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    min-height: auto;
  }
  .note-1 { grid-column: 1 / 2; grid-row: 1; margin-top: 0; }
  .note-2 { grid-column: 2 / 3; grid-row: 1; margin-top: 4rem; }
  .note-3 { grid-column: 1 / 3; grid-row: 2; margin-top: 2rem; justify-self: center; max-width: 80%; }
}

@media (max-width: 759.98px) {
  .why-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: auto;
  }
  .note {
    width: 100%;
    margin-top: 0 !important;
    max-width: none !important;
  }
  .note-1 { --rest-tx: -6px; }
  .note-2 { --rest-tx: 10px; }
  .note-3 { --rest-tx: -4px; }
}

@media (prefers-reduced-motion: reduce) {
  .note, html.js .note {
    opacity: 1 !important;
    transform: translate(var(--rest-tx), 0px) rotate(var(--rest-rot)) !important;
    transition: none !important;
  }
}

/* Community Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.community-poster {
  width: 100%;
  border: 4px solid var(--tile);
  transform: rotate(-2deg);
  box-shadow: 0 8px 24px rgba(20, 28, 92, 0.15);
  display: block;
}

.community-winners {
  width: 100%;
  border: 4px solid var(--tile);
  transform: rotate(2deg);
  margin-top: 2.5rem;
  box-shadow: 0 8px 24px rgba(20, 28, 92, 0.15);
}

/* Beliefs on the about page: stacked typographic statements on the blue wall */
.statement {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1.25rem;
}
.statement:last-child { margin-bottom: 0; }
.statement-blue { color: var(--tile); }

/* Rating Strip */
.rating-strip {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.stars {
  color: var(--sesame);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}
.stars svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

blockquote {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0;
  opacity: 0.9;
}
.attr {
  font-weight: 700;
  opacity: 0.7;
}

/* Branches Teaser */
.branch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--grout);
  max-width: 720px;
}
@media (max-width: 760px) {
  .branch-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.branch-row:last-child {
  border-bottom: none;
}
.branch-row h3 {
  margin-bottom: 0.25rem;
  color: var(--seek-blue);
}

/* Links Grid on Branches Page */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background-color: var(--grout);
  border: 2px solid var(--grout);
}

.link-tile {
  background-color: var(--tile);
  padding: 3rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--seek-blue);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background-color 0.2s;
}
.link-tile:hover {
  background-color: var(--seek-blue);
  color: var(--tile);
}
.link-tile svg {
  width: 2.5rem;
  height: 2.5rem;
}

/* Map */
.map-wrap {
  width: 100%;
  height: 400px;
  border: 4px solid var(--seek-blue);
  margin-top: 2rem;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Story text */
.story-text {
  max-width: 70ch;
  margin: 0 auto;
  font-size: 1.25rem;
  text-align: center;
}
.story-text p {
  margin-bottom: 1.5rem;
}
.story-text p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 2px solid var(--seek-blue-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h3.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.6;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
  font-weight: 500;
}

/* Motion & Reveal */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes settleIn {
  from { transform: rotate(6deg); }
  to { transform: rotate(2deg); }
}

.word-rise {
  display: inline-block;
  opacity: 0;
  animation: riseIn 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.word-rise:nth-child(1) { animation-delay: 0ms; }
.word-rise:nth-child(2) { animation-delay: 60ms; }
.word-rise:nth-child(3) { animation-delay: 120ms; }
.word-rise:nth-child(4) { animation-delay: 180ms; }
.word-rise:nth-child(5) { animation-delay: 240ms; }
.word-rise:nth-child(6) { animation-delay: 300ms; }

.photo-settle {
  animation: settleIn 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-image-wrap {
  perspective: 1000px;
}

.reveal {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
}
html.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.open-pill {
  background-color: var(--mint);
  color: var(--seek-ink);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-block;
  margin-right: 1rem;
}

.open-pill.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap video {
    display: none;
  }
  .hero-image-wrap video + img {
    display: block;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .word-rise {
    opacity: 1;
    transform: none;
  }
  .photo-settle {
    transform: rotate(2deg) !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .frieze-content {
    animation: none !important;
  }
  .nav-links {
    transition: none !important;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .hero .hero-compact-container {
    padding-block: 3rem;
  }
  .hero .container, .split {
    grid-template-columns: 1fr;
  }
  .menu-row, .menu-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .nav-links {
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
    gap: 1rem;
  }
  html.js .nav-links {
    display: none;
  }
  html.js .nav-links.is-open {
    display: flex;
  }
  .site-header .container {
    flex-wrap: wrap;
  }
  html.js .nav-toggle {
    display: block;
  }
  .community-images { gap: 1rem; }
  .community-winners { margin-top: 1.5rem; }
}

/* Utility classes replacing inline styles */
.text-center { text-align: center; }
.text-tile { color: var(--tile); }
.text-blue { color: var(--seek-blue); }
.opacity-80 { opacity: 0.8; }
.font-500 { font-weight: 500; }
.mb-0 { margin-bottom: 0; }
.mb-0-5 { margin-bottom: 0.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-0 { margin-top: 0; }
.pt-0 { padding-top: 0; }
.pb-8 { padding-bottom: 4rem; }
.hero-col-1 { grid-template-columns: 1fr; }
.justify-center { justify-content: center; }
.text-1-25 { font-size: 1.25rem; }
.text-2-5 { font-size: 2.5rem; }
.d-none { display: none; }
.max-w-800 { max-width: 800px; }

.pt-2 { padding-top: 2rem; }
.font-700 { font-weight: 700; }
.py-0-5 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-1-5 { padding-left: 1.5rem; padding-right: 1.5rem; }

.svg-mark { fill: none; stroke: currentColor; stroke-width: 16; overflow: visible; height: 1em; width: auto; }

/* Menu page specific styles */
.category-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--tile);
  border-bottom: 2px solid var(--grout);
}
.category-jump a {
  font-weight: 700;
  color: var(--seek-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.menu-table {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3rem;
}
/* Desktop: two dense columns (client request 2026-08-18) */
@media (min-width: 900px) {
  .menu-table {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
  }
  .menu-table-row {
    max-width: none;
  }
  .menu-category {
    margin-bottom: 2.5rem;
  }
}
/* Menu category band: blue on the light wall, tile-white text (client request 2026-08-18) */
.menu-cat-title {
  display: inline-block;
  background-color: var(--seek-blue);
  color: var(--tile);
  padding: 0.35rem 1.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.menu-table-row {
  display: grid;
  grid-template-columns: auto max-content 1fr;
  grid-template-areas: "thumb title price" "thumb details details";
  align-items: center;
  padding: 1rem 1.25rem;
  gap: 0.5rem 1.5rem;
  background-color: var(--tile);
  border: 2px solid var(--grout);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20, 28, 92, 0.06);
  max-width: 920px;
  margin-bottom: 1rem;
}
.menu-thumb {
  grid-area: thumb;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.menu-category:last-child { margin-bottom: 0; }

.menu-thumb-glyph {
  display: grid;
  place-items: center;
  background-color: var(--seek-blue);
  color: var(--tile);
}
.menu-thumb-glyph svg { width: 56%; height: 56%; }

.menu-item-title {
  grid-area: title;
  font-size: 1.5rem;
  color: var(--seek-blue);
  margin: 0;
  align-self: end;
}
.menu-item-desc {
  font-size: 1rem;
  opacity: 0.8;
  display: inline;
}
.menu-item-meta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-right: 0.5rem;
}
.menu-item-cals {
  font-size: 0.875rem;
}
.menu-item-order {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--seek-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.menu-item-price {
  font-size: 1.25rem;
  flex-shrink: 0;
}


.menu-item-details {
  grid-area: details;
  align-self: start;
}

/* Mobile tap targets */
@media (max-width: 760px) {
  .nav-links a,
  .category-jump a,
  .menu-item-order,
  .hero-secondary-cta,
  .menu-link,
  .footer-col a {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }
}
.menu-item-price {
  grid-area: price;
  font-size: 1.25rem;
  align-self: end;
}

@media (max-width: 760px) {
  .menu-table-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "thumb title price" "details details details";
    gap: 0.5rem 1rem;
  }
  .menu-thumb {
    width: 72px;
    height: 72px;
  }
  .menu-item-title {
    font-size: 1.25rem;
    align-self: center;
  }
  .menu-item-price {
    align-self: center;
  }
  .menu-item-details {
    padding-top: 0.5rem;
  }
}

.site-header .wordmark { order: 3; }
.site-header nav { order: 2; }
.site-header .cta-pill { order: 1; }

/* Mobile Action Bar */
html {
  scroll-padding-top: 5.5rem;
  scroll-behavior: smooth;
}

@media (max-width: 759.98px) {
  /* Menu jump list */
  .category-jump {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-jump::-webkit-scrollbar {
    display: none;
  }
  .category-jump a {
    background-color: var(--tile);
    color: var(--seek-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(20, 28, 92, 0.1);
  }

  /* Drawer nav */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--seek-blue);
    background-image: 
      linear-gradient(to right, var(--seek-blue-deep) 2px, transparent 2px),
      linear-gradient(to bottom, var(--seek-blue-deep) 2px, transparent 2px);
    background-size: 64px 64px;
    background-position: top right;
    border-bottom: 2px solid var(--seek-blue-deep);
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  html.js .nav-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
  html.js .nav-links.is-open {
    max-height: 300px;
    padding: 0.75rem 1rem 1rem !important;
    gap: 0.5rem !important;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links li a {
    border: 2px solid color-mix(in oklab, var(--tile) 35%, transparent);
    border-radius: 12px;
  }
  .nav-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
    height: 56px;
    color: var(--tile);
    opacity: 1 !important;
  }
}
