@font-face {
  font-family: Archivo;
  src: url("/assets/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f7f3e9;
  --ink: #252821;
  --muted: #62645b;
  --yellow: #f3c744;
  --line: #d9d7cc;
  --white: #fffdf7;
  --radius: 5px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Archivo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.055em;
}
h1 {
  font-weight: 900;
}
h2 {
  font-size: clamp(32px, 3.7vw, 53px);
  font-weight: 800;
}
h3 {
  font-size: 24px;
  font-weight: 750;
}
p + p {
  margin-top: 18px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #956611;
  outline-offset: 5px;
}
a,
button {
  touch-action: manipulation;
}
.wrap {
  width: min(1280px, calc(100% - 100px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 750;
  line-height: 1.6;
  margin-bottom: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 25px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-weight: 650;
  font-size: 14px;
  line-height: 1.5;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}
.button.dark {
  background: var(--ink);
  color: var(--white);
}
.button.dark:hover {
  background: #45483d;
}
.button.small {
  padding: 12px 18px;
  font-size: 12px;
  gap: 24px;
}
.text-link {
  font-size: 14px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 5px 0;
  line-height: 1.5;
}
.text-link:hover {
  color: #826017;
}
.text-link span {
  font-size: 21px;
}
.status-dot {
  display: inline-block;
  height: 7px;
  width: 7px;
  background: var(--yellow);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px;
  background: var(--yellow);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.topbar {
  height: 35px;
  background: var(--ink);
  color: var(--paper);
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.03em;
}
.topbar strong {
  margin-left: 9px;
  font-weight: 600;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.065em;
  white-space: nowrap;
}
.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-right: 8px;
}
.brand-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-top: 8px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav > a:not(.button) {
  font-size: 13px;
  font-weight: 600;
}
nav > a[aria-current],
nav > a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 7px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: none;
  padding: 10px 13px;
  border-radius: 3px;
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 34px;
  padding-block: 45px 54px;
  align-items: stretch;
}
.hero-copy {
  padding-top: 28px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(54px, 5.6vw, 81px);
  letter-spacing: -0.067em;
  line-height: 0.98;
  white-space: nowrap;
}
.outlined {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--ink);
}
.hero-description {
  max-width: 405px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
}
.hero-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 35px;
}
.hero-note > span {
  font-size: 37px;
  color: #8c6420;
  line-height: 1;
}
.hero-note p {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
}
.hero-note strong {
  color: var(--ink);
  font-weight: 550;
}
.hero-photo {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 47% center;
  border-radius: 6px;
}
.photo-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: white;
  font-weight: 650;
  font-size: 9px;
  letter-spacing: 0.13em;
  background: #252821bd;
  padding: 10px 14px;
  border: 1px solid #ffffff3b;
  border-radius: 3px;
}
.round-stamp {
  position: absolute;
  right: -18px;
  top: 27px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
  width: 131px;
  height: 131px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: rotate(11deg);
  outline: 1px dashed var(--ink);
  outline-offset: -8px;
  box-shadow: 0 3px 0 #25282126;
}
.round-stamp span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.round-stamp b {
  font-size: 20px;
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin: 8px 0;
}
.ticker {
  background: var(--yellow);
  border-block: 1px solid var(--ink);
  overflow: hidden;
}
.ticker > div {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  white-space: nowrap;
  width: min(1380px, calc(100% - 70px));
  margin: auto;
}
.ticker span {
  font-weight: 850;
  letter-spacing: -0.035em;
  font-size: 21px;
}
.ticker i {
  font-style: normal;
  font-size: 29px;
}
.section {
  padding-block: 94px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 39px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-heading .text-link {
  margin-bottom: 4px;
}
.menu-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.food-feature {
  position: relative;
  min-height: 377px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--ink);
}
.food-feature > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 0.4s;
  opacity: 0.88;
}
.food-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, #14170ddd);
}
.food-feature:hover > img {
  transform: scale(1.035);
}
.food-feature > div {
  position: absolute;
  bottom: 29px;
  left: 30px;
  right: 22px;
  z-index: 1;
  color: white;
}
.food-feature .eyebrow {
  font-size: 9px;
}
.food-feature h3 {
  font-size: 31px;
  margin: 10px 0;
}
.food-feature div > span:last-child {
  font-size: 12px;
}
.menu-list {
  display: flex;
  flex-direction: column;
}
.menu-list > a {
  display: flex;
  gap: 15px;
  align-items: center;
  flex: 1;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}
.menu-list > a:first-child {
  border-top: 1px solid var(--line);
}
.menu-number {
  align-self: flex-start;
  margin-top: 29px;
  font-size: 10px;
  color: var(--muted);
}
.menu-list h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
}
.menu-list p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.circle-arrow {
  margin-left: auto;
  flex-shrink: 0;
  border: 1px solid var(--line);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  transition: background 0.2s;
}
.menu-list > a:hover .circle-arrow {
  background: var(--yellow);
  border-color: var(--yellow);
}
.about-section {
  background: #eeeadf;
  border-block: 1px solid var(--line);
  padding: 72px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.truck-scene {
  position: relative;
  min-width: 0;
  padding-top: 35px;
}
.scene-word {
  font-size: clamp(42px, 6vw, 85px);
  font-weight: 900;
  letter-spacing: -0.075em;
  color: #d5d1c3;
  position: absolute;
  top: 0;
  left: 6%;
}
.truck-scene img {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: rotate(-3deg);
}
.scene-caption {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: block;
  text-align: center;
  margin-top: 18px;
}
.about-copy h2 {
  font-size: clamp(31px, 3vw, 43px);
  margin-bottom: 25px;
}
.about-copy p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.about-copy .text-link {
  margin-top: 25px;
}
.heading-aside {
  font-size: 13px;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.steps article {
  padding: 32px 35px 10px 0;
}
.steps article + article {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}
.steps article > span {
  font-size: 32px;
  font-weight: 800;
  color: #9a7840;
  letter-spacing: -0.07em;
}
.steps h3 {
  margin: 22px 0 15px;
  font-size: 24px;
}
.steps p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 300px;
}
.gallery-section {
  padding-bottom: 20px;
}
.handwritten {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 23px;
  transform: rotate(-5deg);
  color: #776343;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery figure {
  margin: 0;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.gallery figcaption {
  font-size: 11px;
  margin-top: 10px;
  color: var(--muted);
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
}
.faq-section h2 {
  font-size: 42px;
  margin-bottom: 24px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  padding: 22px 28px 22px 0;
  position: relative;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 17px;
  font-size: 24px;
  font-weight: 400;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 24px 24px 0;
}
.faq a,
.legal p a,
.practical a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta {
  background: var(--yellow);
  padding-block: 70px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta h2 {
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.065em;
}
.cta .eyebrow {
  margin-bottom: 18px;
}
.cta-inner > div:last-child {
  max-width: 350px;
}
.cta p:not(.eyebrow) {
  font-size: 14px;
  margin-bottom: 24px;
}
.cta-phone {
  display: block;
  font-size: 11px;
  margin-top: 16px;
  text-align: center;
}
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 20px;
  font-size: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr;
  gap: 60px;
  padding-bottom: 45px;
}
.footer-brand {
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.07em;
}
.yellow {
  color: var(--yellow);
}
.footer-grid p {
  color: #c3c5b9;
  line-height: 1.8;
  margin: 17px 0;
}
.footer-grid h2 {
  font-size: 12px;
  letter-spacing: 0;
  margin: 8px 0 18px;
  font-weight: 650;
  color: #c3c5b9;
}
.footer-grid > div > a:not(.footer-brand):not(.text-link) {
  display: block;
  margin: 8px 0;
}
.footer-grid .text-link {
  font-size: 11px;
}
address {
  font-style: normal;
}
.footer-grid address {
  margin-top: 17px;
  color: #c3c5b9;
}
.footer-bottom {
  border-top: 1px solid #4a4e42;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #c3c5b9;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
footer a:hover {
  color: var(--yellow);
}
.page-intro {
  padding-block: 75px 55px;
}
.page-intro h1 {
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1;
  overflow-wrap: anywhere;
}
.page-intro .lead {
  max-width: 610px;
  margin-top: 28px;
  font-size: 16px;
  color: var(--muted);
}
.menu-page {
  padding-bottom: 80px;
}
.category-nav {
  border-block: 1px solid var(--line);
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px 30px;
}
.full-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
  margin-top: 50px;
}
.full-menu h2 {
  font-size: 39px;
}
.full-menu ul {
  padding: 0;
  list-style: none;
}
.full-menu li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.notice {
  background: #ece8dc;
  border-left: 3px solid #aa802a;
  padding: 24px 28px;
  font-size: 14px;
  margin-top: 40px;
}
.notice p {
  margin-top: 8px;
  color: var(--muted);
}
.prices-section {
  padding-bottom: 80px;
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--yellow);
  border-color: var(--yellow);
}
.price-card h2 {
  font-size: 33px;
}
.price-card .price {
  font-size: 75px;
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1.05;
  margin: 32px 0 24px;
}
.price small {
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 500;
}
.price span {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  margin: 10px 0 0 33px;
}
.price-card p:not(.price):not(.eyebrow):not(.custom-price),
.price-card li {
  font-size: 13px;
}
.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.price-card li strong {
  white-space: nowrap;
}
.price-card ul {
  padding-left: 17px;
  margin-bottom: 30px;
}
.price-card .button {
  margin-top: auto;
  gap: 12px;
}
.custom-price {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.05em;
  margin: 32px 0 24px;
}
.price-card .custom-price + p {
  margin-bottom: 26px;
}
.practical {
  max-width: 650px;
  margin-top: 55px;
}
.practical h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
.practical p {
  font-size: 14px;
  color: var(--muted);
}
.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  padding-bottom: 90px;
}
.booking-contact > a {
  display: block;
}
.big-phone {
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
}
.booking-contact img {
  margin: 35px 0;
  max-width: 380px;
}
.booking-contact > p:last-child {
  font-size: 13px;
  max-width: 340px;
  color: var(--muted);
}
.booking-form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 5px;
}
.booking-form-panel h2 {
  font-size: 29px;
}
.booking-form-panel > p {
  font-size: 13px;
  color: var(--muted);
  margin: 15px 0 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label,
.mail-result label {
  font-size: 12px;
  font-weight: 650;
}
.form-grid input,
.form-grid select,
.form-grid textarea,
.mail-result textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #bbbdb2;
  border-radius: 3px;
  background: var(--white);
  padding: 12px;
  margin-top: 7px;
  font-size: 14px;
  color: var(--ink);
}
textarea {
  resize: vertical;
}
.span-two {
  grid-column: 1/-1;
}
.optional {
  font-weight: 400;
  color: var(--muted);
}
form > .button {
  margin-top: 24px;
  width: 100%;
}
.form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}
.mail-result {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 25px;
  font-size: 13px;
}
.mail-result p {
  margin: 12px 0;
}
.mail-result button {
  margin-top: 12px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 90px;
}
.contact-grid h2 {
  font-size: 21px;
  margin: 35px 0 15px;
}
.contact-grid p {
  font-size: 14px;
  color: var(--muted);
  max-width: 350px;
  margin: 20px 0;
}
.contact-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 5px;
}
.contact-email {
  overflow-wrap: anywhere;
}
.legal {
  max-width: 850px;
  padding-bottom: 90px;
}
.legal .notice {
  margin-top: 0;
}
.legal h2 {
  font-size: 28px;
  margin: 35px 0 20px;
}
.legal li {
  padding-bottom: 9px;
}
.legal p,
.legal li {
  font-size: 15px;
  color: var(--muted);
}
.error-actions {
  display: flex;
  gap: 20px;
  padding-bottom: 90px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1500px) {
  .hero h1 {
    font-size: 87px;
  }
  .hero-photo {
    min-height: 565px;
  }
  .hero-copy {
    padding-top: 42px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .topbar {
    padding-inline: 28px;
  }
  .brand {
    font-size: 18px;
  }
  .brand img {
    width: 58px;
    height: 58px;
  }
  .header-inner {
    height: 88px;
  }
  nav {
    gap: 17px;
  }
  nav > a:not(.button) {
    font-size: 12px;
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    font-size: 5.8vw;
  }
  .hero-photo {
    min-height: 485px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding: 15px 18px;
    gap: 18px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 13px;
  }
  .round-stamp {
    right: -10px;
    width: 112px;
    height: 112px;
  }
  .round-stamp b {
    font-size: 18px;
  }
  .round-stamp span {
    font-size: 6px;
  }
  .menu-preview {
    gap: 30px;
  }
  .menu-list h3 {
    font-size: 18px;
  }
  .about-grid {
    gap: 40px;
  }
  .price-card {
    padding: 25px;
  }
  .price-card h2 {
    font-size: 29px;
  }
  .booking-grid {
    gap: 35px;
  }
  .footer-grid {
    gap: 30px;
  }
  .ticker > div {
    justify-content: flex-start;
    width: max-content;
    padding-inline: 30px;
    gap: 35px;
  }
  .ticker span {
    font-size: 19px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .topbar {
    height: 30px;
    padding-inline: 18px;
    font-size: 9px;
  }
  .topbar > a {
    font-size: 0;
  }
  .topbar strong {
    font-size: 10px;
  }
  .header-inner {
    min-height: 79px;
    height: auto;
    flex-wrap: wrap;
    padding-block: 8px;
    gap: 0;
  }
  .brand {
    font-size: 19px;
  }
  .brand-sub {
    font-size: 7px;
  }
  .brand img {
    width: 54px;
    height: 54px;
    margin-right: 5px;
  }
  .menu-toggle:not([hidden]) {
    display: block;
    font-size: 12px;
    min-height: 44px;
  }
  .menu-toggle span {
    margin-left: 9px;
  }
  #navigation {
    width: 100%;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 22px;
  }
  .js #navigation {
    display: none;
  }
  .js #navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .js #navigation.is-open > a {
    padding: 15px 10px;
    font-size: 15px;
  }
  .js #navigation.is-open .button {
    margin-top: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 28px 34px;
  }
  .hero-copy {
    padding: 0;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 19px;
  }
  .hero h1 {
    font-size: clamp(44px, 10.4vw, 77px);
    letter-spacing: -0.06em;
    line-height: 1.02;
  }
  .hero-description {
    font-size: 14px;
    max-width: 440px;
    margin-top: 23px;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 25px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 15px 20px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-note {
    margin-top: 23px;
  }
  .hero-photo {
    min-height: 360px;
    max-height: 450px;
    aspect-ratio: 1.12;
  }
  .hero-photo > img {
    object-position: center 45%;
  }
  .round-stamp {
    top: 20px;
    right: 14px;
    width: 113px;
    height: 113px;
  }
  .photo-label {
    bottom: 16px;
    left: 16px;
    font-size: 8px;
  }
  .ticker > div {
    min-height: 57px;
    gap: 24px;
  }
  .ticker span {
    font-size: 17px;
  }
  .ticker i {
    font-size: 23px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 23px;
    flex-direction: column;
    margin-bottom: 28px;
  }
  h2 {
    font-size: 35px;
  }
  .menu-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .food-feature {
    min-height: 320px;
  }
  .food-feature h3 {
    font-size: 28px;
  }
  .menu-list > a {
    padding: 19px 0;
    min-height: 90px;
  }
  .menu-number {
    margin-top: 3px;
  }
  .menu-list h3 {
    font-size: 19px;
  }
  .menu-list p {
    font-size: 11px;
    max-width: 245px;
  }
  .about-section {
    padding: 45px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .truck-scene {
    max-width: 520px;
    margin: auto;
  }
  .scene-word {
    font-size: 15vw;
  }
  .scene-caption {
    font-size: 8px;
  }
  .about-copy h2 {
    font-size: 35px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article,
  .steps article + article {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .steps h3 {
    margin: 13px 0 12px;
    font-size: 24px;
  }
  .steps p {
    max-width: 100%;
  }
  .steps article > span {
    font-size: 25px;
  }
  .heading-aside {
    font-size: 12px;
  }
  .gallery {
    gap: 22px;
    grid-template-columns: 1fr;
  }
  .gallery figure {
    display: grid;
    grid-template-columns: 1fr;
  }
  .gallery img {
    aspect-ratio: 1.5;
  }
  .handwritten {
    font-size: 20px;
    align-self: flex-end;
    margin-top: -4px;
  }
  .gallery-section {
    padding-bottom: 0;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 35px;
  }
  .faq summary {
    font-size: 13px;
  }
  .cta {
    padding-block: 47px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .cta h2 {
    font-size: 49px;
  }
  .cta-inner > div:last-child {
    max-width: 100%;
  }
  .cta p:not(.eyebrow) {
    font-size: 13px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
    padding-bottom: 30px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid address {
    font-size: 10px;
  }
  .footer-grid > div:last-child > a {
    font-size: 11px;
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    flex-direction: column;
    font-size: 9px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 18px;
  }
  footer {
    padding-top: 40px;
  }
  .page-intro {
    padding-block: 45px 35px;
  }
  .page-intro h1 {
    font-size: clamp(35px, 11.5vw, 62px);
  }
  .page-intro .lead {
    font-size: 14px;
    margin-top: 23px;
  }
  .full-menu {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 35px;
  }
  .full-menu h2 {
    font-size: 34px;
  }
  .category-nav {
    gap: 13px 22px;
  }
  .category-nav > a {
    min-height: 30px;
  }
  .notice {
    padding: 20px;
    font-size: 13px;
  }
  .menu-page,
  .prices-section {
    padding-bottom: 55px;
  }
  .price-cards {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 28px;
  }
  .price-card .price {
    margin-block: 22px;
  }
  .price-card h2 {
    font-size: 33px;
  }
  .price-card .button {
    align-self: flex-start;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 55px;
  }
  .booking-contact img {
    display: none;
  }
  .booking-contact > p:last-child {
    margin-top: 20px;
    max-width: 100%;
  }
  .booking-form-panel {
    padding: 22px 18px;
  }
  .booking-form-panel h2 {
    font-size: 26px;
  }
  .form-grid {
    gap: 15px;
  }
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 16px;
    padding: 11px 9px;
  }
  .form-grid label {
    min-width: 0;
    font-size: 11px;
  }
  form > .button {
    font-size: 12px;
    padding-inline: 16px;
    gap: 15px;
  }
  .big-phone {
    font-size: 34px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 55px;
  }
  .contact-image {
    height: 330px;
  }
  .legal {
    padding-bottom: 55px;
  }
  .legal h2 {
    font-size: 26px;
  }
  .legal p,
  .legal li {
    font-size: 14px;
  }
  .legal ul {
    padding-left: 20px;
  }
  .error-actions {
    flex-wrap: wrap;
  }
}
.hero-copy,
.hero-photo {
  min-width: 0;
}
.hero-photo {
  width: 100%;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 70px;
  height: auto;
}
.footer-brand > span {
  font-size: 23px;
}
.hero h1 {
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  white-space: normal;
  font-weight: 800;
}
.hero {
  padding-block: 58px 48px;
  align-items: center;
  min-height: 510px;
}
.hero-copy {
  padding-top: 0;
}
.hero-description {
  font-size: 15px;
  max-width: 440px;
}
.hero-truck {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  isolation: isolate;
}
.hero-truck:before {
  content: "";
  position: absolute;
  inset: 15% 0 3%;
  background: #eee8d7;
  border-radius: 50%;
  z-index: -1;
}
.hero-truck img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 12px #25282115);
}
.occasion-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-block: 1px solid var(--line);
  padding-block: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 5px;
}
.brand img {
  width: 78px;
  height: 60px;
  margin-right: 12px;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 14px;
  margin-bottom: 24px;
}
.form-status.success {
  background: #e7efe3;
  border-color: #8ea584;
  color: #31442b;
}
.form-status.error {
  background: #fbebe6;
  border-color: #c78570;
  color: #773b2c;
}
.field-error {
  display: block;
  font-size: 11px;
  color: #963523;
  font-weight: 500;
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
[aria-invalid="true"] {
  border-color: #963523 !important;
}
.form-note a {
  text-decoration: underline;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.contact-grid {
  align-items: start;
}
.booking-contact > a {
  overflow-wrap: anywhere;
}
@media (max-width: 760px) {
  .hero {
    min-height: 0;
    padding-block: 36px 24px;
    gap: 18px;
  }
  .hero h1 {
    font-size: clamp(35px, 9.3vw, 57px);
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-truck {
    max-width: 540px;
    width: 100%;
    margin: auto;
  }
  .occasion-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    font-size: 12px;
    padding-block: 17px;
  }
  .brand img {
    width: 62px;
    height: 48px;
    margin-right: 8px;
  }
  .brand {
    font-size: 17px;
  }
  .brand-sub {
    font-size: 6.5px;
  }
  .topbar {
    gap: 16px;
  }
  .topbar > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar > a {
    flex-shrink: 0;
  }
  .about-grid {
    gap: 28px;
  }
  .form-status {
    padding: 15px;
    font-size: 13px;
  }
  .contact-grid > .booking-form-panel {
    min-width: 0;
  }
}
@media (max-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero h1 {
    white-space: normal;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
