:root {
  --orange: #f28c00;
  --orange-soft: #ffad42;
  --black: #080808;
  --charcoal: #151515;
  --white: #ffffff;
  --off-white: #f7f6f1;
  --gray: #6e6e6e;
  --line: rgba(0, 0, 0, 0.16);
  --font: "Montserrat", Arial, sans-serif;
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #2b75ff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.announcement {
  position: relative;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  padding: 6px max(20px, calc((100% - 1180px) / 2));
  color: var(--black);
  background: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement a {
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 38px;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(7, 7, 7, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: var(--content);
  min-height: 88px;
  margin: 0 auto;
}

.brand,
.footer-logo {
  display: block;
}

.brand {
  width: 230px;
}

.brand img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.8vw, 42px);
}

.site-nav a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-order {
  padding: 13px 18px;
  color: var(--black);
  background: var(--orange);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-order:hover {
  background: var(--orange-soft);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 38px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  background: url("/assets/hero-burger.webp") center 68% / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.63) 50%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 50%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--content);
  min-height: calc(100svh - 38px);
  margin: 0 auto;
  padding: 170px 0 90px;
}

.location-label,
.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7.3vw, 104px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 22px;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  display: block;
  margin-left: 5px;
  font-size: 9px;
}

.button-yellow {
  color: var(--black);
  background: var(--orange);
}

.button-yellow:hover {
  background: var(--orange-soft);
}

.button-outline {
  color: var(--white);
  border-color: var(--white);
  background: rgba(0, 0, 0, 0.12);
}

.button-outline:hover {
  color: var(--black);
  background: var(--white);
}

.button-black {
  color: var(--white);
  background: var(--black);
}

.button-black:hover {
  background: #2a2a2a;
}

.scroll-cue {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue b {
  color: var(--orange);
  font-size: 22px;
}

.gallery-section,
.reviews-section {
  padding: clamp(74px, 9vw, 130px) 0;
}

.section-heading {
  width: var(--content);
  margin: 0 auto;
}

.center-heading {
  max-width: 820px;
  text-align: center;
}

.center-heading h2,
.catering-content h2,
.chef-copy h2,
.contact-details h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-transform: uppercase;
}

.center-heading > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--gray);
}

.food-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
  width: min(1420px, calc(100% - 24px));
  margin: 54px auto 0;
}

.gallery-item {
  grid-column: span 3;
  height: clamp(300px, 31vw, 500px);
  margin: 0;
  overflow: hidden;
  background: #d8d8d8;
}

.gallery-item.gallery-feature {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:nth-child(8) img {
  object-position: center 42%;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-action {
  margin-top: 44px;
  text-align: center;
}

.catering-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--orange);
}

.catering-photo {
  min-height: 620px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    url("/assets/catering-original.webp") center 58% / cover no-repeat;
}

.catering-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(55px, 8vw, 120px);
}

.kicker-dark {
  color: var(--black);
}

.catering-content p:not(.kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.catering-content .catering-note {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.catering-content .button {
  margin-top: 28px;
}

.chef-section {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(0, 1fr);
  color: var(--white);
  background: var(--black);
}

.chef-photo {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--charcoal);
}

.chef-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
}

.chef-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.08) 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 55%);
}

.experience-badge,
.chef-photo blockquote {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 5vw, 66px);
  left: clamp(24px, 5vw, 66px);
}

.experience-badge {
  bottom: 142px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.experience-badge strong {
  color: var(--orange);
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.experience-badge span {
  max-width: 165px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.chef-photo blockquote {
  bottom: 46px;
  max-width: 540px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.35);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.chef-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}

.chef-copy h2 {
  max-width: 720px;
}

.chef-copy p:not(.kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d1d1d1;
}

.reviews-section {
  color: var(--white);
  background: #101010;
}

.light-heading h2 {
  color: var(--white);
}

.stars {
  margin-top: 22px;
  color: var(--orange);
  font-size: 28px;
  letter-spacing: 0.12em;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.google-reviews-link:hover,
.google-reviews-link:focus-visible {
  color: var(--orange);
}

.google-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #4285f4;
  background: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: var(--content);
  margin: 55px auto 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  margin: 0;
  padding: 38px;
  border: 1px solid rgba(255,255,255,0.22);
  background: #181818;
}

.featured-review {
  color: var(--black);
  background: var(--orange);
  transform: translateY(-18px);
}

.featured-review .small-stars {
  color: var(--black);
}

.small-stars {
  margin: 0;
  font-size: 18px;
}

.review-card p {
  margin: 40px 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.45;
}

.review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card cite {
  font-style: normal;
}

.review-card footer a {
  color: inherit;
  text-underline-offset: 4px;
}

.reviews-action {
  width: var(--content);
  margin: 36px auto 0;
  text-align: center;
}

.button-orange {
  color: var(--black);
  background: var(--orange);
}

.button-orange:hover {
  background: var(--orange-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
}

.contact-details,
.contact-form-wrap {
  padding: clamp(55px, 8vw, 110px);
}

.contact-details > p:not(.kicker) {
  max-width: 660px;
  margin-top: 24px;
  color: var(--gray);
}

.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 42px 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-blocks h3,
.contact-form-wrap h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-blocks address {
  font-style: normal;
}

.phone-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  margin-bottom: 12px;
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  color: var(--gray);
}

.contact-form-wrap {
  color: var(--white);
  background: var(--black);
}

.contact-form-wrap h3 {
  margin-bottom: 28px;
  font-size: 32px;
}

.contact-form {
  display: grid;
  gap: 11px;
  max-width: 620px;
}

.contact-form label {
  margin-top: 10px;
  color: #d8d8d8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.42);
  border-radius: 0;
  color: var(--white);
  background: transparent;
}

.contact-form input {
  min-height: 52px;
}

.contact-form textarea {
  padding: 14px 0;
  resize: vertical;
}

.form-button {
  justify-self: start;
  min-width: 150px;
  margin-top: 18px;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 6px 0 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  color: var(--white);
  background: #050505;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 70px 0 55px;
  text-align: center;
}

.footer-logo {
  width: min(390px, 82vw);
}

.footer-main > p {
  max-width: 580px;
  margin: 22px 0 0;
  color: #bcbcbc;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 30px;
}

.social-links a {
  color: var(--orange);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--content);
  min-height: 66px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

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

@media (max-width: 1080px) {
  .header-inner {
    gap: 20px;
  }

  .brand {
    width: 190px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 10px;
  }

  .gallery-item,
  .gallery-item.gallery-feature {
    grid-column: span 6;
  }

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

@media (max-width: 860px) {
  .announcement {
    padding-inline: 16px;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 38px;
  }

  .site-header.is-scrolled {
    position: fixed;
    top: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand {
    width: 185px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 45;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 100px 28px 130px;
    background: rgba(5,5,5,0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    font-size: 23px;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-order {
    display: none;
  }

  .hero-content {
    padding-top: 145px;
  }

  .hero h1 {
    max-width: 720px;
  }

  .catering-section,
  .chef-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .catering-photo {
    min-height: 520px;
  }

  .catering-content {
    order: -1;
  }

  .chef-photo {
    min-height: 620px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .featured-review {
    transform: none;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: var(--black);
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(0,0,0,0.28);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .site-footer {
    padding-bottom: 76px;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100% - 28px, 1180px);
  }

  .announcement {
    justify-content: center;
    min-height: 34px;
    font-size: 9px;
  }

  .announcement a {
    display: none;
  }

  .site-header {
    top: 34px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 170px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    justify-content: flex-end;
    min-height: 780px;
    padding: 130px 0 92px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button span {
    display: inline;
  }

  .scroll-cue {
    display: none;
  }

  .gallery-section,
  .reviews-section {
    padding: 72px 0;
  }

  .center-heading h2,
  .catering-content h2,
  .chef-copy h2,
  .contact-details h2 {
    font-size: 40px;
  }

  .food-gallery {
    width: calc(100% - 16px);
    gap: 8px;
  }

  .gallery-item,
  .gallery-item.gallery-feature {
    grid-column: span 12;
    height: 420px;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(9),
  .gallery-item:nth-child(10) {
    grid-column: span 6;
    height: 270px;
  }

  .catering-photo {
    min-height: 430px;
  }

  .catering-content,
  .chef-copy,
  .contact-details,
  .contact-form-wrap {
    padding: 64px 24px;
  }

  .chef-photo {
    min-height: 540px;
  }

  .experience-badge {
    bottom: 136px;
    align-items: flex-end;
  }

  .chef-photo blockquote {
    bottom: 34px;
  }

  .experience-badge strong {
    font-size: 88px;
  }

  .reviews-grid {
    width: var(--content);
    margin-top: 40px;
  }

  .review-card {
    min-height: 290px;
    padding: 28px;
  }

  .review-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 18px 0;
    text-align: center;
  }
}

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