:root {
  color-scheme: light;
  --ink: #231f20;
  --muted: #6f6862;
  --paper: #fffaf3;
  --surface: #ffffff;
  --brand: #ff7900;
  --brand-dark: #f25a00;
  --leaf: #496b3a;
  --gold: #d7a646;
  --line: rgba(35, 31, 32, .12);
  --shadow: 0 24px 70px rgba(59, 34, 24, .18);
  --radius: 8px;
  --display-font: "Segoe Print", "Comic Sans MS", "Bradley Hand ITC", "Comic Sans", cursive;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 111, 0, .96);
  box-shadow: 0 12px 40px rgba(23, 17, 14, .22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: #fff;
  font-weight: 900;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .76);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: .95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta {
  padding: 0 20px;
  background: #fff;
  color: var(--brand-dark);
}

.btn {
  padding: 0 24px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #1e160e;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-ifood {
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(234, 29, 44, .86);
  color: #fff;
}

.btn-ifood-solid {
  background: #ea1d2c;
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: end;
  padding: 152px clamp(18px, 6vw, 84px) 86px;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.06);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(41, 18, 13, .9) 0%, rgba(56, 19, 15, .64) 43%, rgba(35, 15, 11, .18) 78%),
    linear-gradient(0deg, rgba(23, 17, 14, .82), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-family: var(--display-font);
  font-size: 1.2rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: 34px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 330px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: -36px auto 0;
  padding: 0 clamp(18px, 4vw, 30px);
  position: relative;
  z-index: 3;
}

.quick-bar a {
  display: grid;
  gap: 7px;
  min-height: 126px;
  justify-items: center;
  align-content: center;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.quick-bar a:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.quick-bar a:last-child {
  border-right: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quick-bar span,
.contact-grid span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.quick-bar strong,
.contact-grid strong {
  color: var(--brand-dark);
}

.quick-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: .96rem;
  font-weight: 1000;
  letter-spacing: 0;
  overflow: hidden;
}

.quick-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-icon-logo {
  background: #fff;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(35, 31, 32, .1);
}

.quick-icon-ifood-logo {
  border-radius: 10px;
  padding: 0;
}

.quick-icon-map {
  background: var(--brand);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 112px clamp(18px, 4vw, 30px) 34px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr .8fr auto;
  align-items: end;
  gap: 38px;
}

.intro p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  max-width: 1160px;
  margin: 18px auto 0;
  padding: 0 clamp(18px, 4vw, 30px) 34px;
}

.order-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #24110c;
  box-shadow: 0 18px 50px rgba(59, 34, 24, .11);
}

.order-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.order-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 9, 7, .78), transparent 54%);
  content: "";
}

.order-card:hover img {
  transform: scale(1.04);
}

.order-card span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 24px auto 0;
  padding: 0 clamp(18px, 4vw, 30px) 96px;
}

.highlight {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(59, 34, 24, .11);
}

.highlight img {
  height: 260px;
  object-fit: cover;
  object-position: center 52%;
}

.highlight div {
  padding: 22px;
}

.highlight p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gallery-section {
  padding-top: 42px;
}

.section-heading {
  max-width: 720px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
  margin-top: 34px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .34), transparent 58%);
  content: "";
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}

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

.gallery-item.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.location {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 44px;
  align-items: stretch;
  padding: 104px clamp(18px, 6vw, 84px);
  background: #f4eadb;
}

.location-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-grid a {
  display: grid;
  gap: 7px;
  padding: 18px;
  border-left: 4px solid var(--leaf);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .7);
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 6vw, 84px);
  background: var(--brand-dark);
  color: #fff;
}

.site-footer span {
  color: rgba(255, 255, 255, .72);
}

.site-footer a {
  color: #fff;
  font-weight: 850;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.floating-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 19;
  display: none;
  min-width: 86px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #1e160e;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  font-weight: 900;
}

.lightbox {
  width: min(920px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(18, 12, 9, .82);
  backdrop-filter: blur(8px);
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  background: #111;
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding: 12px 0;
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 390px);
    margin-top: 34px;
  }

  .intro,
  .order-showcase,
  .menu-highlights,
  .location {
    grid-template-columns: 1fr;
  }

  .quick-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-bar a,
  .quick-bar a:first-child,
  .quick-bar a:last-child {
    min-height: 116px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .quick-bar a:nth-child(1) {
    border-radius: var(--radius) 0 0 0;
  }

  .quick-bar a:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
    border-right: 0;
  }

  .quick-bar a:nth-child(3) {
    border-bottom: 0;
    border-radius: 0 0 0 var(--radius);
  }

  .quick-bar a:nth-child(4) {
    border-right: 0;
    border-bottom: 0;
    border-radius: 0 0 var(--radius) 0;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 126px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 4.2rem;
  }

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

  .section,
  .location {
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .menu-highlights {
    padding-bottom: 66px;
  }

  .quick-bar {
    grid-template-columns: 1fr;
  }

  .quick-bar a,
  .quick-bar a:first-child,
  .quick-bar a:last-child,
  .quick-bar a:nth-child(1),
  .quick-bar a:nth-child(2),
  .quick-bar a:nth-child(3),
  .quick-bar a:nth-child(4) {
    grid-template-columns: 50px 1fr;
    column-gap: 14px;
    min-height: 82px;
    justify-items: start;
    align-content: center;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    text-align: left;
  }

  .quick-bar a:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .quick-bar a:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .quick-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
  }

  .quick-bar a > span:not(.quick-icon),
  .quick-bar a > strong {
    grid-column: 2;
  }

  .order-card {
    min-height: 310px;
  }

  .gallery {
    grid-auto-rows: 170px;
  }

  .floating-order {
    display: inline-flex;
  }
}
