:root {
  --cream: #f6f0e6;
  --paper: #fbf8f1;
  --blue: #18336b;
  --red: #df493d;
  --mustard: #f4b43f;
  --pickle: #4e7f52;
  --ink: #161817;
  --line: rgba(24, 51, 107, 0.18);
  --font-display: "Oswald", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Allura", cursive;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 180, 63, 0.18), transparent 22vw),
    linear-gradient(135deg, rgba(24, 51, 107, 0.04) 0 25%, transparent 25% 50%, rgba(223, 73, 61, 0.035) 50% 75%, transparent 75%),
    var(--paper);
  background-size: auto, 32px 32px, auto;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: clip;
}

body::after {
  content: "";
  position: fixed;
  z-index: 79;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 24, 23, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 24, 23, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: multiply;
}

body::before {
  content: none;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

.responsive-picture {
  display: contents;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

@media (pointer: fine) and (hover: hover) and (min-width: 901px) {
  body,
  body * {
    cursor: none;
  }
}

::selection {
  color: var(--paper);
  background: var(--red);
}

.bunz-cursor {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.bunz-cursor::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: var(--red);
}

.bunz-cursor.is-active {
  width: 46px;
  height: 46px;
  border-color: var(--mustard);
}

@media (max-width: 900px), (pointer: coarse), (hover: none) {
  .bunz-cursor {
    display: none !important;
  }

  body,
  body * {
    cursor: auto;
  }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  color: white;
  background: transparent;
  border: 0;
  mix-blend-mode: difference;
  pointer-events: none;
}

.brand {
  position: fixed;
  z-index: 51;
  left: calc(clamp(24px, 5vw, 78px) - 48px);
  top: -5px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  pointer-events: auto;
  transform-origin: top left;
  transition: transform 0.45s ease;
}

.brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.language-switch {
  position: fixed;
  top: 18px;
  right: clamp(14px, 3vw, 42px);
  z-index: 60;
  width: max-content;
  max-width: calc(100vw - 48px);
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  pointer-events: auto;
  transform: translateZ(0);
  contain: layout paint;
}

.language-switch a {
  min-width: 32px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  line-height: 1;
  opacity: 0.62;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.language-switch a + a {
  margin-left: -1px;
}

.language-switch a:hover {
  opacity: 1;
}

.language-switch a[aria-current="page"] {
  color: var(--blue);
  background: var(--cream);
  border-color: var(--cream);
  opacity: 1;
}

.arrow-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0;
  transition: transform 0.25s ease;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 3px;
  width: 17px;
  height: 2px;
  background: currentColor;
}

.arrow-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.arrow-icon.arrow-left {
  transform: rotate(180deg);
}

.arrow-icon.arrow-tilt {
  transform: rotate(-45deg);
}

.feature-copy a:hover .arrow-tilt,
.address a:hover .arrow-tilt,
footer a:hover .arrow-tilt {
  transform: translate(3px, -3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: #151515;
  isolation: isolate;
}

.hero video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero video {
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 42%, rgba(244, 180, 63, 0.22), transparent 19vw),
    linear-gradient(90deg, rgba(4, 20, 40, 0.96) 0%, rgba(4, 20, 40, 0.72) 39%, rgba(4, 20, 40, 0.14) 72%, transparent 100%),
    linear-gradient(180deg, rgba(5, 13, 22, 0.12), rgba(5, 13, 22, 0.42));
}

.hero-smoke {
  position: absolute;
  z-index: 1;
  inset: -18% -10%;
  opacity: 0.42;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 74%, rgba(246, 240, 230, 0.25), transparent 26%),
    radial-gradient(ellipse at 48% 68%, rgba(246, 240, 230, 0.18), transparent 25%),
    radial-gradient(ellipse at 74% 62%, rgba(246, 240, 230, 0.16), transparent 28%);
  filter: blur(28px);
  mix-blend-mode: screen;
  animation: smoke-drift 13s ease-in-out infinite alternate;
}

.hero-sparks {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-sparks i {
  position: absolute;
  left: var(--x, 50%);
  bottom: -18px;
  width: 3px;
  height: 18px;
  border-radius: 999px;
  background: var(--mustard);
  box-shadow: 0 0 18px rgba(244, 180, 63, 0.9);
  opacity: 0;
  transform: rotate(var(--r, 12deg));
  animation: spark-rise var(--d, 4.8s) ease-in infinite;
  animation-delay: var(--delay, 0s);
}

.hero-sparks i:nth-child(1) { --x: 58%; --r: -12deg; --d: 4.2s; --delay: 0.2s; }
.hero-sparks i:nth-child(2) { --x: 67%; --r: 18deg; --d: 5.4s; --delay: 1.4s; }
.hero-sparks i:nth-child(3) { --x: 78%; --r: -7deg; --d: 4.9s; --delay: 2.2s; }
.hero-sparks i:nth-child(4) { --x: 43%; --r: 22deg; --d: 5.8s; --delay: 0.9s; }
.hero-sparks i:nth-child(5) { --x: 88%; --r: 8deg; --d: 4.6s; --delay: 3s; }
.hero-sparks i:nth-child(6) { --x: 36%; --r: -18deg; --d: 5.1s; --delay: 2.6s; }

.hero-story {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 5vw, 78px);
  bottom: clamp(26px, 6vh, 72px);
  display: flex;
  gap: 10px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-story span {
  padding: 9px 12px;
  border: 1px solid rgba(246, 240, 230, 0.42);
  background: rgba(22, 24, 23, 0.18);
  backdrop-filter: blur(12px);
}

@keyframes smoke-drift {
  to {
    transform: translate3d(4%, -5%, 0) scale(1.08);
  }
}

@keyframes spark-rise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(var(--r)); }
  16% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(42px, -78vh, 0) rotate(calc(var(--r) + 35deg)); }
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 100svh;
  padding: 110px clamp(24px, 5vw, 78px) 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-actions {
  position: fixed;
  z-index: 55;
  right: 24px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (prefers-reduced-motion: no-preference) {
  .home-page .hero-actions,
  .menu-page-simple .hero-actions {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.hero-actions .button {
  width: 264px;
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 34px rgba(10, 13, 15, 0.2);
}

.hero-actions .button-menu {
  color: var(--blue);
  background: var(--cream);
  border-color: var(--cream);
}

.hero-actions .button-menu:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero-actions .button:hover {
  color: var(--blue);
  background: var(--cream);
  border-color: var(--cream);
}

.button {
  min-height: 58px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10, 13, 15, 0.18);
}

.button > .arrow-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.manifesto {
  min-height: auto;
  padding: 100px clamp(24px, 6vw, 96px) 70px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto auto auto;
  gap: 42px 30px;
  color: var(--blue);
  background:
    linear-gradient(90deg, rgba(244, 180, 63, 0.16), transparent 38%),
    var(--paper);
}

.manifesto-copy {
  grid-column: 2;
  align-self: center;
  max-width: 940px;
}

.manifesto-copy > p,
.contact-heading > p {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 38px);
  font-style: italic;
}

.manifesto h2,
.section-intro h2,
.gallery h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 8.4vw, 132px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.manifesto h2 em,
.section-intro h2 em,
.gallery h2 em {
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: none;
}

.manifesto-note {
  grid-column: 2;
  max-width: 560px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.75vw, 26px);
  font-weight: 600;
  line-height: 1.38;
}

.qualities {
  padding: 70px clamp(24px, 4vw, 72px) 110px;
  background: #fff;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 58px);
}

.quality-card {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
}

.quality-visual {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
}

.quality-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quality-visual strong {
  position: absolute;
  z-index: 2;
  display: block;
  left: 50%;
  width: max-content;
  max-width: 100%;
  margin: 0;
  text-align: center;
  pointer-events: none;
}

.badge-top {
  top: 27%;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.6vw, 74px);
  font-weight: 600;
  line-height: 1;
  transform: translateX(-50%);
}

.badge-bottom {
  bottom: 17%;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(31px, 3.2vw, 53px);
  font-weight: 500;
  line-height: 1.03;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.badge-meat .badge-bottom {
  top: 55%;
  bottom: auto;
  font-size: clamp(27px, 2.7vw, 45px);
  letter-spacing: 0.13em;
  text-shadow: 4px 4px 0 var(--red), 8px 8px 0 var(--blue);
  transform: translate(-50%, -50%);
}

.badge-script {
  top: 39%;
  color: var(--blue);
  font-family: var(--font-script);
  font-size: clamp(41px, 4.4vw, 70px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.badge-brioche .badge-bottom {
  top: 58%;
  bottom: auto;
  font-size: clamp(30px, 3vw, 49px);
  transform: translate(-50%, -50%);
}

.badge-brioche .badge-script {
  top: 42%;
}

.badge-ingredients .badge-script {
  top: 42%;
  color: #fff;
  font-size: clamp(38px, 4vw, 64px);
  transform: translate(calc(-50% - 7px), -50%);
}

.badge-ingredients .badge-bottom {
  top: 58%;
  bottom: auto;
  font-size: clamp(29px, 3vw, 50px);
  text-shadow: 5px 5px 0 rgba(24, 51, 107, 0.55);
  transform: translate(calc(-50% - 4px), -50%);
}

.features {
  padding: 110px clamp(24px, 6vw, 96px) 150px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(244, 180, 63, 0.1), transparent 36%),
    var(--blue);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 95px;
}

.section-intro h2 {
  grid-column: 2;
}

.section-intro h2 em {
  color: var(--red);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(45px, 8vw, 130px);
}

.feature-row.reverse {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.feature-row.reverse .feature-image {
  grid-column: 2;
  grid-row: 1;
}

.feature-row.reverse .feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-image {
  position: relative;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  background: #0f2249;
  box-shadow: 18px 18px 0 var(--red), -18px -18px 0 rgba(244, 180, 63, 0.82);
}

.feature-image img {
  width: 100%;
  height: 120%;
  margin-top: -10%;
  object-fit: cover;
  will-change: transform;
}

.feature-copy {
  max-width: 430px;
}

.feature-copy .eyebrow {
  margin-bottom: 24px;
  color: var(--red);
}

.feature-copy h3 {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.feature-copy > p:not(.eyebrow) {
  margin: 0 0 34px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.35;
}

.feature-copy a,
.address a {
  width: fit-content;
  padding: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery {
  position: relative;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 1825 / 862;
  height: auto;
  min-height: 0;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.gallery-slides,
.gallery-slide,
.gallery-slide img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.gallery-slides {
  z-index: 0;
}

.gallery-slide.responsive-picture {
  display: block;
}

.gallery-slide {
  opacity: 0;
  will-change: opacity, transform;
}

.gallery-slide.is-active {
  opacity: 1;
}

.gallery-slide img {
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 15, 15, 0.74), rgba(12, 15, 15, 0.08) 70%),
    linear-gradient(180deg, transparent 74%, rgba(12, 15, 15, 0.42));
}

.gallery-copy {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 6vw, 96px);
  bottom: 10vh;
}

.gallery-copy > p {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.3vw, 36px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
}

.gallery h2 em {
  color: var(--red);
}

.contact {
  padding: 110px clamp(24px, 6vw, 96px) 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--red);
}

.contact-grid {
  padding: 80px 0 115px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: clamp(40px, 7vw, 110px);
}

.contact h2 {
  font-size: clamp(72px, 8vw, 120px);
}

.hours h3,
.address h3 {
  margin: 0 0 35px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.35);
}

.hours dt,
.hours dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.hours dd {
  text-align: right;
}

.hours small {
  display: block;
  margin-top: 20px;
  max-width: 260px;
  font-size: 10px;
  line-height: 1.5;
  opacity: 0.7;
}

.address p {
  margin: 0 0 35px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.address a {
  margin-bottom: 20px;
}

.marquee-order {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.35);
  font-family: var(--font-display);
  font-size: clamp(90px, 12vw, 190px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.marquee-order-track {
  min-width: max-content;
  display: flex;
  flex: 0 0 auto;
  animation: marquee-order 18s linear infinite;
}

.marquee-order-word {
  padding-right: clamp(54px, 7vw, 120px);
}

@keyframes marquee-order {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

footer {
  padding: 75px clamp(24px, 6vw, 96px) 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  color: var(--cream);
  background: var(--ink);
}

.sign {
  position: relative;
  z-index: 12;
  width: 100%;
  margin: 0;
  padding: 18px 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--ink);
}

.sign-trigger {
  color: currentColor;
  font-family: "League Gothic", var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: color 280ms ease;
}

.sign:hover .sign-trigger,
.sign:focus-visible .sign-trigger {
  color: var(--mustard);
}

.sign-hover-card {
  position: absolute;
  left: calc(50% - 190px);
  bottom: calc(100% + 10px);
  width: 150px;
  min-height: 150px;
  padding: 13px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: var(--blue);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.08;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(14px, 14px, 0) scale(0.92);
  transform-origin: right bottom;
  transition: opacity 380ms ease, visibility 380ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sign:hover .sign-hover-card,
.sign:focus-visible .sign-hover-card {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.footer-brand {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 330px);
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

footer > p,
footer > div {
  margin: 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.58;
}

.footer-legal a {
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-legal a:hover {
  color: var(--red);
  opacity: 1;
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .brand {
    left: 0;
    top: 1px;
    width: calc(72px * 0.85);
    height: calc(72px * 0.85);
  }

  .brand img {
    width: calc(70px * 0.85);
    height: calc(70px * 0.85);
  }

  .language-switch {
    top: 14px;
    right: 12px;
    max-width: calc(100vw - 24px);
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .language-switch a {
    min-width: 24px;
    height: 23px;
  }

  .manifesto,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .manifesto {
    min-height: auto;
    padding-top: 90px;
  }

  .manifesto-copy,
  .manifesto-note,
  .section-intro h2 {
    grid-column: 1;
  }

  .manifesto-copy {
    margin: 90px 0 40px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .quality-visual {
    width: min(100%, 430px);
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .feature-row.reverse .feature-image,
  .feature-row.reverse .feature-copy {
    grid-column: 1;
  }

  .feature-row.reverse .feature-image {
    grid-row: 1;
  }

  .feature-row.reverse .feature-copy {
    grid-row: 2;
  }

  .feature-copy {
    padding-left: 8vw;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-heading {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

}

@media (max-width: 620px) {
  .sign {
    justify-content: flex-start;
    padding-left: 22px;
  }

  .sign-hover-card {
    left: 22px;
    right: auto;
    transform-origin: left bottom;
  }

  .hero-actions {
    left: auto;
    right: 16px;
    bottom: 16px;
    align-items: flex-end;
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(48vw, 161px);
    min-height: 35px;
    padding: 0 13px;
    gap: 10px;
    font-size: 8px;
  }

  .hero-actions .button > .arrow-icon {
    width: 14px;
    height: 14px;
  }

  .hero-actions .arrow-icon::before {
    top: 6px;
    left: 2px;
    width: 10px;
    height: 1.5px;
  }

  .hero-actions .arrow-icon::after {
    top: 3px;
    right: 2px;
    width: 6px;
    height: 6px;
    border-width: 1.5px;
  }

  .manifesto {
    padding: 75px 22px;
  }

  .manifesto-copy {
    margin-top: 70px;
  }

  .manifesto h2,
  .section-intro h2,
  .gallery h2,
  .contact h2 {
    font-size: clamp(54px, 17vw, 84px);
  }

  .qualities {
    padding: 55px 22px 80px;
  }

  .quality-grid {
    gap: 24px;
  }

  .badge-top {
    font-size: clamp(48px, 16vw, 70px);
  }

  .badge-bottom {
    font-size: clamp(34px, 11vw, 48px);
  }

  .badge-meat .badge-bottom {
    font-size: clamp(29px, 9.4vw, 42px);
  }

  .badge-script,
  .badge-ingredients .badge-script {
    font-size: clamp(44px, 14vw, 64px);
  }

  .badge-brioche .badge-bottom,
  .badge-ingredients .badge-bottom {
    font-size: clamp(31px, 10vw, 45px);
  }

  .badge-ingredients .badge-script {
    transform: translate(calc(-50% - 5px), -50%);
  }

  .badge-ingredients .badge-bottom {
    transform: translate(calc(-50% - 3px), -50%);
  }

  .features {
    padding: 80px 22px 100px;
  }

  .section-intro {
    margin-bottom: 70px;
  }

  .section-intro h2 {
    margin-top: 60px;
  }

  .feature-list {
    gap: 90px;
  }

  .feature-image {
    aspect-ratio: 1;
  }

  .feature-copy {
    padding-left: 0;
  }

  .feature-copy h3 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .gallery {
    aspect-ratio: auto;
    height: clamp(390px, 92vw, 540px);
    min-height: 0;
    background: var(--red);
  }

  .gallery-slides,
  .gallery-slide {
    top: auto;
    height: auto;
    aspect-ratio: 1825 / 862;
  }

  .gallery-slide img {
    object-fit: contain;
  }

  .gallery-overlay {
    background: linear-gradient(180deg, rgba(12, 15, 15, 0.55) 0%, rgba(12, 15, 15, 0.05) 48%, transparent 100%);
  }

  .gallery-copy {
    top: clamp(90px, 24vw, 150px);
    bottom: auto;
    left: 22px;
    max-width: calc(100% - 44px);
  }

  .gallery-copy > p {
    margin-bottom: 10px;
    font-size: clamp(18px, 5vw, 25px);
  }

  .gallery h2 {
    font-size: clamp(48px, 16vw, 82px);
    line-height: 0.84;
  }

  .contact {
    padding: 80px 22px 0;
  }

  .contact-grid {
    padding: 70px 0 85px;
    grid-template-columns: 1fr;
  }

  .contact-heading {
    grid-column: 1;
  }

  .hours,
  .address {
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.35);
  }

  footer {
    grid-template-columns: 1fr;
    padding: 60px 22px 35px;
  }

  .footer-brand {
    grid-column: 1;
    font-size: 38vw;
  }

  footer > div {
    flex-direction: column;
  }
}

/* Simple menu page */
.menu-page-simple {
  color: var(--blue);
  background: var(--paper);
}

.simple-menu {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 78px) 80px;
}

.simple-menu-intro h1 {
  margin: 20px 0 30px;
  font-family: var(--font-display);
  font-size: clamp(110px, 15vw, 225px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.simple-menu-lead {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.18;
}

.simple-menu-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  overflow-x: auto;
  border-top: 1px solid rgba(24, 51, 107, 0.42);
  border-bottom: 1px solid rgba(24, 51, 107, 0.42);
  background: rgba(251, 248, 241, 0.82);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.simple-menu-nav::-webkit-scrollbar {
  display: none;
}

.simple-menu-nav-row {
  display: contents;
}

.simple-menu-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.simple-menu-nav a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.simple-menu-nav a:hover::before {
  transform: scaleX(1);
}

.simple-menu-category {
  padding: 105px 0 20px;
  scroll-margin-top: 52px;
}

.simple-menu-category > h2 {
  margin: 0 0 45px;
  font-family: var(--font-display);
  font-size: clamp(62px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.simple-menu-category > h2::first-letter {
  color: var(--red);
}

.simple-menu-item {
  min-height: 240px;
  position: relative;
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 228px;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid rgba(24, 51, 107, 0.22);
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.simple-menu-item::before {
  content: "";
  position: absolute;
  inset: 12px -18px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 180, 63, 0.2), transparent 54%),
    rgba(255, 255, 255, 0.46);
  opacity: 0;
  transform: scaleX(0.985);
  transform-origin: left;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.simple-menu-item:hover {
  border-color: rgba(223, 73, 61, 0.5);
  transform: translateX(8px);
}

.simple-menu-item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.simple-menu-item:last-child {
  border-bottom: 1px solid rgba(24, 51, 107, 0.28);
}

.simple-menu-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.simple-menu-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.simple-menu-title strong,
.simple-drinks strong {
  padding: 7px 10px;
  color: var(--cream);
  background: var(--red);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.simple-menu-options {
  min-width: 170px;
}

.simple-menu-options p {
  margin: 0;
  padding: 0 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.simple-menu-options small {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-menu-options strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.simple-menu-copy > p {
  max-width: 770px;
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}

.simple-menu-item > .responsive-picture > img {
  width: 228px;
  height: 228px;
  object-fit: cover;
}

.simple-menu-item > .responsive-picture {
  width: 228px;
  height: 228px;
  display: block;
  overflow: hidden;
  background: var(--blue);
  box-shadow: 10px 10px 0 var(--mustard);
}

.simple-menu-item > .responsive-picture > img {
  height: 100%;
}

.simple-drinks {
  border-top: 1px solid rgba(24, 51, 107, 0.28);
}

.simple-drink-item {
  position: relative;
  margin: 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid rgba(24, 51, 107, 0.28);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.simple-drink-item:hover {
  border-color: rgba(223, 73, 61, 0.5);
  transform: translateX(8px);
}

.simple-drink-item > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 600;
}

.simple-drink-item img {
  width: 132px;
  height: 132px;
  object-fit: cover;
}

.simple-drink-item > .responsive-picture {
  width: 132px;
  height: 132px;
  display: block;
  overflow: hidden;
}

@media (max-width: 760px) {
  .simple-menu {
    padding: 0 22px 55px;
  }

  .simple-menu-nav {
    margin: 0 -22px;
    padding-right: 22px;
    padding-left: 96px;
  }

  .simple-menu-category {
    padding-top: 80px;
  }

  .simple-menu-category > h2 {
    margin-bottom: 30px;
    font-size: clamp(56px, 18vw, 86px);
  }

  .simple-menu-item {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 18px;
  }

  .simple-menu-item::before {
    inset: 8px -8px;
  }

  .simple-menu-item:hover,
  .simple-drink-item:hover {
    transform: none;
  }

  .simple-menu-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .simple-menu-title h3 {
    font-size: clamp(21px, 6vw, 29px);
  }

  .simple-menu-title strong {
    color: var(--cream);
  }

  .simple-menu-copy > p {
    margin-top: 13px;
    font-size: 17px;
  }

  .simple-menu-item > .responsive-picture > img {
    width: 110px;
    height: 139px;
  }

  .simple-menu-item > .responsive-picture {
    width: 110px;
    height: 139px;
    box-shadow: 6px 6px 0 var(--mustard);
  }

  .simple-drink-item {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 18px;
  }

  .simple-drink-item > div {
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
  }

  .simple-drink-item img {
    width: 96px;
    height: 115px;
  }

  .simple-drink-item > .responsive-picture {
    width: 96px;
    height: 115px;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .simple-menu-nav {
    padding: 13px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
  }

  .simple-menu-nav-row {
    display: flex;
    justify-content: center;
  }

  .simple-menu-nav a {
    position: relative;
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .simple-menu-nav a::after {
    content: "|";
    display: inline-block;
    margin: 0 9px;
    color: currentColor;
  }

  .simple-menu-nav-row a:last-child::after {
    content: none;
  }
}

/* Hero lockup based on the supplied visual */
.hero-lockup {
  width: min(64vw, 1120px);
  margin: 0 auto;
  color: var(--cream);
  text-align: center;
}

.hero .hero-title {
  margin: 0;
  width: auto;
  max-width: none;
  overflow: visible;
  color: var(--cream);
  font-family: "League Gothic", "Oswald", sans-serif;
  font-size: clamp(88px, 17vw, 305px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-rule {
  width: 100%;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 13px 1fr;
  align-items: center;
  gap: 12px;
}

.hero-rule span {
  height: 4px;
  display: block;
  background: var(--red);
  transform-origin: center;
}

.hero-rule i {
  width: 13px;
  height: 13px;
  display: block;
  background: var(--red);
}

.hero-tagline {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 26px);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.6vw, 27px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-tagline b {
  color: var(--red);
  font-size: 1.1em;
}

@media (max-width: 760px) {
  .hero-content {
    min-height: 100svh;
    padding: 100px 22px 55px;
  }

  .hero-lockup {
    width: 100%;
  }

  .hero .hero-title {
    font-size: clamp(72px, 23vw, 112px);
  }

  .hero-rule {
    margin-top: 14px;
    grid-template-columns: 1fr 9px 1fr;
    gap: 8px;
  }

  .hero-rule span {
    height: 3px;
  }

  .hero-rule i {
    width: 9px;
    height: 9px;
  }

  .hero-tagline {
    margin-top: 14px;
    gap: 8px;
    font-size: clamp(10px, 3vw, 13px);
    letter-spacing: 0.22em;
  }

  .hero-story {
    right: 22px;
    left: 22px;
    bottom: 86px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-story span {
    padding: 7px 5px;
    text-align: center;
  }
}

/* Full-screen hero for the menu page */
.simple-menu-intro {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  padding: 130px clamp(24px, 5vw, 78px) 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: #021c35;
  isolation: isolate;
}

.simple-menu-intro::before {
  content: "BUNZ";
  position: absolute;
  z-index: 1;
  right: -0.08em;
  bottom: -0.18em;
  color: rgba(246, 240, 230, 0.08);
  font-family: var(--font-display);
  font-size: clamp(180px, 30vw, 520px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.simple-menu-intro::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 36%, rgba(244, 180, 63, 0.18), transparent 18vw),
    linear-gradient(90deg, rgba(2, 24, 47, 0.38), transparent 58%);
}

.simple-menu-intro > div {
  position: relative;
  z-index: 2;
  width: min(48vw, 760px);
}

.simple-menu-intro .eyebrow,
.simple-menu-intro h1,
.simple-menu-intro .simple-menu-lead {
  color: var(--cream);
}

.simple-menu-intro > .responsive-picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
}

.simple-menu-intro > .responsive-picture > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .simple-menu-intro {
    min-height: 100svh;
    padding: 110px 22px 85px;
    display: flex;
  }

  .simple-menu-intro > div {
    width: min(78vw, 470px);
  }

  .simple-menu-intro > .responsive-picture {
    height: 100%;
    min-height: 0;
  }

  .simple-menu-intro > .responsive-picture > img {
    height: 100%;
    min-height: 0;
    object-position: 62% center;
  }

  .simple-menu-intro h1 {
    font-size: clamp(92px, 31vw, 150px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
