@font-face {
  font-family: "Arial Narrow Custom";
  src: url("fonts/ARIALN.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial Narrow Custom";
  src: url("fonts/ARIALNB.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --white: #ffffff;
  --accent: #f3a536;
  --light-grey: #eeeeee;
  --dark-grey: #242424;
  --line: rgba(255, 255, 255, 0.22);
  --dark-line: rgba(0, 0, 0, 0.15);
  --content-width: 1180px;
  --header-height: 138px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background-color: var(--black);
  background-image: url("images/backgrounds/brick-background.jpg");
  background-repeat: repeat;
  background-position: top center;
  font-family: Arial, Helvetica, sans-serif;
}

main {
  flex: 1;
}

main.home-video {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--black);
}

a {
  color: inherit;
}

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

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





/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.header-top {
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
}

.header-top__inner {
  position: relative;
  width: min(calc(100% - 40px), var(--content-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-socials {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.header-socials .social-link {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease;
}

.header-socials .social-link img {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.header-socials .social-link:hover,
.header-socials .social-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.header-socials .social-link:hover img,
.header-socials .social-link:focus-visible img {
  transform: scale(1.1);
  filter: brightness(1.4);
}

.site-logo {
  display: block;
  width: clamp(205px, 24vw, 305px);
  justify-self: center;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.header-contact {
  justify-self: end;
  text-align: right;
  font-size: 17px;
  line-height: 1.15;
}

.header-address {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.header-phone {
  display: inline-block;
  margin-top: 4px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 900;
  text-decoration: none;
}

.header-phone:hover,
.header-phone:focus-visible {
  text-decoration: underline;
  outline: none;
}



/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
  position: sticky;
  top: 0;
  z-index: 950;
  width: 100%;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--white);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--black);
  background: var(--white);
  outline: none;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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



/* =========================================================
   HOMEPAGE
   ========================================================= */

.home-video {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  background: var(--black);
}

.home-video video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.home-video + .home-video {
  margin-top: 0;
}

.home-video + .site-footer {
  margin-top: 0;
  line-height: 0;
}

.home-main {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
body.home-page {
  background: var(--black);
}



/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
  width: 100%;
}

.about-parallax {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.about-parallax--top {
  min-height: 620px;
  background-image: url("images/about/012.jpg");
  background-position: center center;
}

.about-copy {
  padding: 80px 24px;
  color: var(--black);
  background-image: url("images/backgrounds/brick-background.jpg");
  background-repeat: repeat;
  background-position: top center;
}

.about-copy__inner {
  width: min(100%, 850px);
  margin: 0 auto;
  text-align: center;
}

.about-copy h1 {
  margin: 0 0 28px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
}

.about-copy p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.65;
}

.about-parallax--chef {
  min-height: 850px;
  background-image: url("images/about/rcoko.jpg");
  background-position: center top;
}



/* =========================================================
   PLACEHOLDER PAGES
   ========================================================= */

.page-placeholder {
  min-height: 55vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.page-placeholder h1 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 7vw, 76px);
  text-transform: uppercase;
}



/* =========================================================
   MENU PAGE
   ========================================================= */

.menu-page {
  width: 100%;
  color: var(--black);
}

.menu-content {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.menu-hero {
  padding: 80px 24px;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.menu-hero__inner {
  width: min(100%, 850px);
  margin: 0 auto;
}

.menu-hero h1 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(54px, 9vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-hero__intro {
  margin: 22px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}



/* =========================================================
   HALF-WIDTH / SINGLE-COLUMN MENU GROUPS
   ========================================================= */

/* Bao Buns and similar sub-groups */
.menu-half-left {
  width: calc(50% - 21px);
}

/* Pasta and Salads: heading and dishes occupy one normal column */
.menu-category--half-left > .menu-section-heading,
.menu-category--half-left > .menu-items-grid {
  width: calc(50% - 21px);
}

/* Any intentionally single-column menu grid */
.menu-half-left .menu-items-grid,
.menu-category--half-left > .menu-items-grid {
  grid-template-columns: 1fr;
  column-gap: 0;
}



/* =========================================================
   MENU CATEGORY NAVIGATION
   ========================================================= */

.menu-category-nav {
  position: sticky;
  top: 52px;
  z-index: 900;

  width: 100%;
  margin: 0;

  color: var(--white);
  background: var(--black);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-category-nav__inner {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;

  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-category-nav a {
  flex: 1 0 auto;
  min-width: 115px;
  padding: 17px 16px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid var(--line);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.menu-category-nav a:first-child {
  border-left: 1px solid var(--line);
}

.menu-category-nav a:hover,
.menu-category-nav a:focus-visible,
.menu-category-nav a.is-active {
  color: var(--black);
  background: var(--accent);
  outline: none;
}



/* =========================================================
   WEEKDAY OFFERS
   ========================================================= */

.menu-offers {
  padding: 65px 0;
  color: var(--white);
  background: var(--black);
}

.menu-section-heading {
  margin-bottom: 32px;
}

.menu-section-heading h2 {
  margin: 0;
  color: var(--accent);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.menu-section-heading p {
  margin: 9px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.menu-section-kicker {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offers-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offers-grid {
  display: grid;
  gap: 18px;
}

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

.offers-grid--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc((100% - 36px) / 3 * 2 + 18px);
  margin: 0 auto;
}

.offer-card--featured {
  min-height: 230px;
  border: 2px solid var(--accent);
  background: rgba(243, 165, 54, 0.07);
}

.offer-card--featured h3 {
  font-size: 34px;
}

.offer-card--featured p {
  font-size: 20px;
}

.offer-price {
  display: inline;
  margin-left: 8px;
  font: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.offer-card {
  min-height: 190px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);

  opacity: 0;
  transform: translateY(22px);
  animation: offerFadeIn 700ms ease forwards;
}

.offer-card h3 {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.offer-card p {
  margin: 0 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.offer-price {
  display: inline;
  margin-left: 8px;
  font: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

@keyframes offerFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-card:nth-child(1) {
  animation-delay: 100ms;
}

.offer-card:nth-child(2) {
  animation-delay: 180ms;
}

.offer-card:nth-child(3) {
  animation-delay: 260ms;
}

.offer-card:nth-child(4) {
  animation-delay: 340ms;
}

.offer-card:nth-child(5) {
  animation-delay: 420ms;
}

.offer-card:nth-child(6) {
  animation-delay: 500ms;
}

.offer-card {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
}

.price-pence {
  font-size: 0.82em;
}



/* =========================================================
   RESTAURANT MENU / CATEGORY PANELS
   ========================================================= */

.restaurant-menu {
  padding: 60px 0 0;
  background-image: url("images/backgrounds/brick-background.jpg");
  background-repeat: repeat;
  background-position: top center;
}
.menu-events > * {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.restaurant-menu > .menu-content {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.menu-category {
  margin-bottom: 36px;
  padding: 55px;
  background: var(--white);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.22);
  scroll-margin-top: 65px;
}

.menu-category + .menu-category {
  border-top: 0;
}



/* =========================================================
   MENU ITEM GRID
   ========================================================= */

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 0;
}

.menu-item {
  width: 100%;
  display: block;
  margin: 0;
  padding: 18px 0 26px;
  border-bottom: 1px solid var(--dark-line);
}

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

.menu-item h3 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.menu-item h3 small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72em;
  font-weight: 700;
}

.menu-price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.menu-item p {
  margin: 7px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}



/* =========================================================
   HIGHLIGHTED / SPECIAL MENU ITEMS
   ========================================================= */

.menu-item--featured {
  position: relative;
  margin: 12px 0 20px;
  padding: 18px 0 26px;
  border: 0;
  outline: 2px solid var(--accent);
  outline-offset: 12px;
}

.menu-item--supplement {
  width: 100%;
  max-width: none;
  margin: 12px 0 34px;
  padding: 14px 0;
  border: 0;
  outline: 2px solid var(--accent);
  outline-offset: 12px;
}



/* =========================================================
   CHEF'S SPECIALITY BOX + PHOTO
   ========================================================= */

.menu-feature-box {
  position: relative;
  margin-top: 52px;
  padding: 32px 0 22px;
  border: 0;
  outline: 3px solid var(--accent);
  outline-offset: 12px;
}


.menu-feature-layout .menu-half-left {
  width: 100%;
}



.menu-feature-box .menu-section-heading {
  position: relative;
  margin-bottom: 18px;
}

.menu-feature-box .menu-section-heading h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
}







/* =========================================================
   MENU SUBCATEGORIES
   ========================================================= */

.menu-subcategory {
  margin-top: 45px;
}

.menu-section-heading--small {
  margin-bottom: 15px;
}

.menu-section-heading--small h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.menu-section-heading--small p {
  margin-top: 5px;
  font-weight: 700;
}

/* Starter subcategory + square photo rows */

.menu-subcategory-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
  margin-top: 45px;
}

.menu-subcategory-photo-row .menu-subcategory {
  width: 100%;
  margin-top: 0;
}

.menu-subcategory-photo-row .menu-half-left {
  width: 100%;
}

.menu-subcategory-photo-row .menu-items-grid {
  grid-template-columns: 1fr;
  column-gap: 0;
}

.menu-subcategory-photo {
  width: 100%;
}

.menu-subcategory-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}



/* =========================================================
   CATEGORY HEADER PHOTOS
   ========================================================= */

.menu-category--has-photo {
  padding-top: 0;
  overflow: hidden;
}

.menu-category-photo {
  display: block;
  width: calc(100% + 110px);
  max-width: none;
  height: clamp(280px, 34vw, 430px);
  margin: 0 -55px 45px;
  object-fit: cover;
  object-position: center;
}



/* =========================================================
   SIDES AND SAUCES
   ========================================================= */

.menu-category--extras {
  padding-bottom: 20px;
}

.menu-extras-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
}

.menu-extra-group {
  padding: 25px;
  border: 2px solid var(--accent);
}

.menu-simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-simple-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--dark-line);
}

.menu-simple-list li:last-child {
  border-bottom: 0;
}

.menu-simple-list strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  white-space: nowrap;
}



/* =========================================================
   INFORMATION AND EVENTS
   ========================================================= */

.menu-information {
  margin-top: 36px;
  padding: 0;
  color: var(--black);
  background: transparent;
}

.menu-events {
  width: 100vw;
  margin-top: 36px;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0;
  padding: 42px 24px;

  color: var(--white);
  background: var(--black);
  text-align: center;
}

.menu-information h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-information p,
.menu-events p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.menu-events {
  text-align: center;
}

.menu-events .menu-section-heading {
  margin-bottom: 18px;
}

.menu-events .menu-section-heading h2 {
  font-size: clamp(26px, 4vw, 42px);
}

.menu-contact-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-decoration: underline;
}

.menu-contact-link:hover,
.menu-contact-link:focus-visible {
  color: var(--white);
  outline: none;
}





/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 32px 20px 24px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-socials .social-link {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease;
}

.footer-socials .social-link img {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.footer-socials .social-link:hover,
.footer-socials .social-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.footer-socials .social-link:hover img,
.footer-socials .social-link:focus-visible img {
  transform: scale(1.1);
  filter: brightness(1.4);
}

.footer-credit {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: none;
  outline: none;
}


/* =========================================================
   TAKEAWAY PAGE
   ========================================================= */

.takeaway-page {
  min-height: calc(100vh - 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;

  background-color: transparent;
  background-image: url("images/backgrounds/brick-background.jpg");
  background-repeat: repeat;
  background-position: top center;
}

.takeaway-links {
  width: min(100%, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(50px, 8vw, 110px);
}

.takeaway-provider {
  width: min(36vw, 330px);
  display: block;
  opacity: 0;
  transform: scale(0);
  text-decoration: none;
  will-change: transform, opacity;
}

.takeaway-provider img {
  width: 100%;
  height: auto;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}


/* Deliveroo enters first */

.takeaway-provider--deliveroo {
  animation:
    takeawayPop 850ms
    cubic-bezier(0.16, 1.35, 0.3, 1)
    120ms
    forwards;
}


/* Uber enters shortly afterwards */

.takeaway-provider--uber {
  animation:
    takeawayPop 850ms
    cubic-bezier(0.16, 1.35, 0.3, 1)
    330ms
    forwards;
}


/* Main entrance */

@keyframes takeawayPop {

  0% {
    opacity: 0;
    transform: scale(0) rotate(-8deg);
  }

  65% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }

  82% {
    transform: scale(0.96) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}


/* Hover */

.takeaway-provider:hover img,
.takeaway-provider:focus-visible img {
  transform: scale(1.08) translateY(-7px);
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.28));
}

.takeaway-provider:focus-visible {
  outline: none;
}


/* =========================================================
   BOOKING / CONTACT PAGE
   ========================================================= */

.booking-page {
  min-height: calc(100vh - 190px);
  padding: 70px 24px;

  color: var(--black);

  background-image: url("images/backgrounds/brick-background.jpg");
  background-repeat: repeat;
  background-position: top center;
}

.booking-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 50px;

  background: var(--white);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.18);
}

.booking-heading {
  margin-bottom: 38px;
  text-align: center;
}

.booking-heading h1 {
  margin: 0;

  color: var(--accent);

  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  line-height: 1;

  text-transform: uppercase;
}

.booking-heading p {
  max-width: 560px;
  margin: 18px auto 0;

  font-size: 17px;
  line-height: 1.5;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field label {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.booking-field label span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 14px 15px;

  color: var(--black);
  background: var(--white);

  border: 2px solid #bbbbbb;
  border-radius: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-field textarea {
  resize: vertical;
  min-height: 135px;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--accent);

  box-shadow:
    0 0 0 3px rgba(243, 165, 54, 0.17);

  outline: none;
}

.booking-submit {
  min-height: 58px;
  margin-top: 8px;
  padding: 15px 24px;

  color: var(--black);
  background: var(--accent);

  border: 2px solid var(--accent);

  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  color: var(--white);
  background: var(--black);

  transform: translateY(-2px);

  outline: none;
}

.booking-success {
  padding: 40px 30px;

  color: var(--white);
  background: var(--black);

  border: 3px solid var(--accent);

  text-align: center;
}

.booking-success h2 {
  margin: 0 0 16px;

  color: var(--accent);

  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
}

.booking-success p {
  margin: 0;

  font-size: 18px;
  line-height: 1.5;
}

.booking-errors {
  margin-bottom: 28px;
  padding: 20px 24px;
  color: #7a0000;
  background: #ffe8e8;
  border: 2px solid #c90000;
}

.booking-errors h2 {
  margin: 0 0 12px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 19px;
}

.booking-errors ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.55;
}

.booking-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-items-grid {
    column-gap: 30px;
  }

  .menu-feature-layout {
    gap: 30px;
  }

  .menu-half-left {
    width: calc(50% - 15px);
  }

  .menu-category--half-left > .menu-section-heading,
  .menu-category--half-left > .menu-items-grid {
    width: calc(50% - 15px);
  }
}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {
  :root {
    --header-height: 90px;
  }

  html {
    scroll-padding-top: 58px;
  }

  .header-top__inner {
    width: min(calc(100% - 24px), var(--content-width));
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .site-logo {
    width: 180px;
    justify-self: start;
  }

  .mobile-menu-button {
    display: block;
    justify-self: end;
  }

  .header-socials,
  .header-contact {
    display: none;
  }

  .main-nav {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 220ms ease;
  }

  .main-nav.is-open {
    grid-template-rows: 1fr;
  }

  .nav-inner {
    min-height: 0;
    overflow: hidden;
  }

  .nav-list {
    grid-template-columns: 1fr;
    padding: 8px 12px 14px;
  }

  .nav-link {
    min-height: 46px;
    border-bottom: 1px solid var(--line);
  }

  .nav-list li:last-child .nav-link {
    border-bottom: 0;
  }

  .about-parallax {
    background-attachment: scroll;
  }

  .about-parallax--top {
    min-height: 420px;
  }

  .about-parallax--chef {
    min-height: 600px;
  }

  .about-copy {
    padding: 55px 22px;
  }

  .menu-content {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .menu-hero {
    padding: 58px 20px;
  }

  .menu-category-nav__inner {
    justify-content: flex-start;
  }

  .menu-category-nav a {
    min-width: auto;
    padding: 15px 17px;
    font-size: 13px;
  }

  .menu-offers {
    padding: 45px 0;
  }

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

  .restaurant-menu {
    padding: 25px 0;
  }

  .restaurant-menu > .menu-content {
    width: calc(100% - 20px);
    padding: 0;
  }

  .menu-category {
    margin-bottom: 22px;
    padding: 32px 24px;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .menu-half-left,
  .menu-category--half-left > .menu-section-heading,
  .menu-category--half-left > .menu-items-grid {
    width: 100%;
  }

  .menu-category-photo {
    width: calc(100% + 48px);
    height: clamp(220px, 55vw, 340px);
    margin: 0 -24px 32px;
  }

  .menu-feature-box {
    padding: 22px 0;
  }

  .menu-feature-box .menu-subcategory-photo-row {
  margin-top: 0;
  }

  .menu-feature-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-feature-photo {
    width: 100%;
  }

  .menu-extras-grid {
    grid-template-columns: 1fr;
  }

  .menu-information,
  .menu-events {
    padding: 25px 20px;
  }

  .menu-subcategory-photo-row {
  grid-template-columns: 1fr;
  gap: 28px;
}

.menu-subcategory-photo {
  width: 100%;
}

.offers-grid--top,
.offers-grid--bottom {
  grid-template-columns: 1fr;
  width: 100%;
}

.offer-card--featured {
  min-height: 0;
}

.menu-category-nav {
  top: 0;
}

.menu-category-nav {
  width: calc(100% - 20px);
}

.takeaway-page {
  min-height: calc(100vh - 140px);
  padding: 55px 24px;
}

.takeaway-links {
  flex-direction: column;
  gap: 48px;
}

.takeaway-provider {
  width: min(72vw, 320px);
}

.booking-page {
  padding: 35px 12px;
}

.booking-panel {
  padding: 35px 24px;
}

.booking-form-row {
  grid-template-columns: 1fr;
}

}



/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .site-logo {
    width: 155px;
  }

  .menu-hero h1 {
    font-size: 54px;
  }

  .restaurant-menu > .menu-content {
    width: calc(100% - 12px);
  }

  .menu-category {
    padding: 28px 17px;
  }

  .menu-section-heading h2 {
    font-size: 30px;
  }

  .menu-item__heading {
    gap: 10px;
  }

  .menu-item h3 {
    font-size: 17px;
  }

  .menu-price {
    font-size: 14px;
  }

  .menu-item p {
    font-size: 14px;
  }

  .menu-feature-box {
    padding: 17px 0;
  }

  .menu-extra-group {
    padding: 20px 17px;
  }

  .menu-category-photo {
    width: calc(100% + 34px);
    margin: 0 -17px 28px;
  }
}