:root {
  --ink: #191817;
  --muted: #6f6861;
  --paper: #fffdf9;
  --cream: #f7f0e6;
  --warm: #efe1d1;
  --accent: #d84121;
  --accent-deep: #a92815;
  --gold: #e9a222;
  --charcoal: #15110f;
  --line: rgba(25, 24, 23, .12);
  --container: min(1180px, calc(100% - 40px));
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: #F1AA36;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  /* background: rgba(255, 253, 249, .94); */
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(25, 24, 23, .08);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(21, 17, 15, .92);
  box-shadow: 0 8px 30px rgba(21, 17, 15, .22);
}

.nav-shell {
  width: min(1280px, calc(100% - 36px));
  margin-inline: auto;
  height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

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

.brand-flame {
  width: 230px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.5px;
}

.brand-copy small {
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 8px;
  font-weight: 700;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: right;
  gap: clamp(18px, 2vw, 32px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 30px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--accent);
  transition: right .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

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

.menu-toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition: top .28s ease, transform .28s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 29px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: .25s ease;
  box-shadow: 0 10px 24px rgba(216, 65, 33, .17);
  border-radius: 14px;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn-small {
  min-height: 42px;
  padding-inline: 19px;
  border-radius: 14px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-deep);
  box-shadow: none;
  border-radius: 14px;
}

.btn-outline:hover {
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link.light {
  color: #fff;
}

.hero {
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  background: #17100c;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1s ease, visibility 1s ease, transform 6.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide:nth-child(1) img {
  object-position: center 54%;
}

.hero-slide:nth-child(2) img {
  object-position: center 48%;
}

.hero-slide:nth-child(3) img {
  object-position: center 52%;
}

.hero-slide:nth-child(4) img {
  object-position: center 50%;
}

.hero-slide:nth-child(5) img {
  object-position: center 50%;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 10, 7, .88) 0%, rgba(15, 10, 7, .65) 46%, rgba(15, 10, 7, .23) 74%, rgba(15, 10, 7, .36) 100%), linear-gradient(0deg, rgba(15, 10, 7, .55), transparent 48%);
  pointer-events: none;
}

.hero-slider-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .52);
  background: rgba(17, 12, 9, .24);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  backdrop-filter: blur(5px);
  transition: .2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .85);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: .2s ease;
}

.hero-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #fff;
}

.hero-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 70px;
  color: #fff;
}

.hero-copy {
  max-width: 760px;
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3.2px;
}

.eyebrow.light {
  color: #f0a74c;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
}

.eyebrow-line {
  display: inline-block;
  width: 46px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.banquet-copy h2,
.visit-intro h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -2px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(66px, 8vw, 112px);
  line-height: .78;
}

.hero h1 em {
  color: #f1aa36;
  font-style: italic;
  font-weight: 500;
}

.hero h2 {
  margin: 30px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
  font-family: var(--display);
  font-size: 23px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
}

.hero-card {
  align-self: end;
  margin-bottom: 22px;
  padding: 30px;
  background: rgba(255, 253, 249, .92);
  color: var(--ink);
  border-top: 4px solid var(--accent);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.hero-card-flame img {
  width: 46px;
  margin-bottom: 16px;
}

.hero-card-label {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
  font-weight: 800;
}

.hero-card strong {
  display: block;
  margin: 6px 0 10px;
  font-family: var(--display);
  font-size: 27px;
}

.hero-card p {
  color: #6a625c;
  font-size: 13px;
  line-height: 1.75;
}

.hero-card a {
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% {
    transform: translate(-50%, 0);
    opacity: .2;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 14px);
    opacity: 0;
  }
}

.menu-intro {
  padding: 110px 0 105px;
  background: var(--cream);
}

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

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: .95;
}

.section-heading>p:last-child {
  color: var(--muted);
  max-width: 640px;
  margin-inline: auto;
}

.mini-flame {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
}

.mini-flame img {
  width: 58px;
}

.menu-cards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.menu-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: #211;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 35px rgba(32, 20, 13, .08);
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 7, 5, .76) 0%, rgba(11, 7, 5, .12) 65%);
  transition: background .3s ease;
}

.menu-card:hover::after {
  background: linear-gradient(0deg, rgba(11, 7, 5, .85) 0%, rgba(11, 7, 5, .2) 70%);
}

.menu-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .45s ease;
}

.menu-card:hover .menu-card-image {
  transform: scale(1.045);
}

.menu-card span {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.img-beef {
  background-image: url('../assets/beef-curry-cover.jpg'), linear-gradient(135deg, #8e2d13, #3b160f);
}

.img-rice {
  background-image: url('../assets/rice-curry.jpg'), linear-gradient(135deg, #d59b27, #5a3e1b);
}

.img-bbq {
  background-image: url('../assets/bbq-grill-cover.jpg'), linear-gradient(135deg, #b74418, #4f1b12);
}

.img-chicken {
  background-image: url('../assets/chicken-curry-cover.jpg'), linear-gradient(135deg, #d86428, #5d1c11);
}

.img-roll {
  background-image: url('../assets/BBQ_Kebab_Roll.jpg'), linear-gradient(135deg, #a04424, #3b1d13);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.partners {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-inner {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.partners h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
}

.partner-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-logos span {
  padding: 15px 22px;
  border: 1px solid #ded4ca;
  background: #fffdf9;
  font-weight: 800;
  color: #39312c;
}

.story {
  padding: 120px 0;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.story-image-wrap {
  position: relative;
  padding: 0 38px 38px 0;
}

.story-image-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 74%;
  border: 1px solid rgba(216, 65, 33, .35);
}

.story-image {
  position: relative;
  z-index: 1;
  min-height: 610px;
  background: url('../assets/lazeeza-food-gallery-22.jpg') center/cover, #ddd;
}

.image-stamp {
  position: absolute;
  z-index: 2;
  right: -15px;
  bottom: 76px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(216, 65, 33, .24);
}

.image-stamp strong {
  font-family: var(--display);
  font-size: 42px;
  line-height: .8;
}

.image-stamp span {
  display: block;
  max-width: 95px;
  margin: 8px auto 0;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.story-copy {
  max-width: 560px;
}

.story-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(50px, 6vw, 76px);
  line-height: .9;
}

.story-copy p {
  color: var(--muted);
}

.story-copy .text-link {
  margin-top: 15px;
}

.banquet {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.banquet-image {
  position: absolute;
  inset: 0;
  background: url('../assets/banquet.jpg') center/cover, #24201d;
}

.banquet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 12, 10, .16) 0%, rgba(15, 12, 10, .34) 43%, rgba(15, 12, 10, .92) 66%, rgba(15, 12, 10, .96) 100%);
}

.banquet-grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  color: #fff;
}

.banquet-copy {
  padding: 80px 0 80px 60px;
}

.banquet-copy h2 {
  margin: 0;
  font-size: clamp(58px, 6vw, 82px);
  line-height: .86;
}

.banquet-copy .rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 26px 0 23px;
}

.banquet-copy .subhead {
  color: #f0a74c;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  font-weight: 800;
}

.banquet-copy>p:not(.eyebrow):not(.subhead) {
  max-width: 530px;
  color: rgba(255, 255, 255, .72);
}

.banquet-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.party-tray {
  padding: 110px 0 120px;
  background: #fff;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 70px;
}

.section-heading.split>p {
  margin: 0 0 8px;
  color: var(--muted);
}

.tray-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.tray-card {
  position: relative;
  padding: 34px 30px 32px;
  background: var(--cream);
  border: 1px solid rgba(122, 88, 60, .12);
  min-height: 380px;
}

.tray-num {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(216, 65, 33, .12);
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
}

.tray-card h3 {
  position: relative;
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: 34px;
}

.tray-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tray-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(52, 40, 30, .12);
  color: #5d554f;
  font-size: 13px;
}

.tray-card li b {
  color: var(--accent-deep);
}

.gallery {
  padding: 105px 0 120px;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 300px 300px;
  gap: 14px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: zoom-in;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 10, 8, .6), transparent 55%);
  opacity: .72;
  transition: .25s ease;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 15px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transform: translateY(-5px);
  transition: .25s ease;
}

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

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

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.g1 {
  grid-row: 1 / 3;
  background-image: url('../assets/banquet1.jpg');
}

.g2 {
  background-image: url('../assets/hero/buffet-hall.jpeg');
}

.g3 {
  background-image: url('../assets/hero/dining-spread.jpg');
}

.g4 {
  background-image: url('../assets/banquet.jpg');
}

.g5 {
  background-image: url('../assets/lazeeza-food-gallery-22.jpg');
}

.visit {
  padding: 110px 0;
  background: var(--charcoal);
  color: #fff;
  position: relative;
}

.visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 35%, rgba(216, 65, 33, .16), transparent 32%), radial-gradient(circle at 75% 30%, rgba(232, 162, 34, .08), transparent 25%);
  pointer-events: none;
}

.visit-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.visit-intro {
  max-width: 520px;
}

.visit-flame {
  width: 68px;
  margin-bottom: 12px;
}

.visit-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(54px, 6vw, 78px);
  line-height: .88;
}

.visit-intro p {
  color: rgba(255, 255, 255, .65);
}

.visit-intro .btn {
  margin-top: 18px;
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  color: var(--ink);
}

.visit-block {
  padding: 46px 42px;
}

.visit-block+.visit-block {
  border-left: 1px solid var(--line);
}

.visit-block h3 {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.25;
}

.visit-block p {
  color: var(--muted);
  font-size: 13px;
}

.visit-block a {
  color: var(--accent-deep);
  font-weight: 800;
}

.hour-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.hour-row span {
  color: var(--muted);
  font-size: 12px;
}

.hour-row strong {
  font-size: 14px;
}

.site-footer {
  background: #0d0b0a;
  color: rgba(255, 255, 255, .6);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 11px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-brand img {
  width: 36px;
}

.footer-brand div {
  display: grid;
  line-height: 1;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 23px;
}

.footer-brand span {
  margin-top: 5px;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .5);
}

.back-top {
  justify-self: end;
  color: #fff;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 1.7px;
}

.lightbox {
  width: min(900px, calc(100% - 36px));
  max-height: 88vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .86);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: #111;
}

.lightbox-close {
  position: absolute;
  right: -6px;
  top: -48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
}

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

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

.delay-4 {
  transition-delay: .32s;
}
.partner-logos a {
  display: inline-flex;
  width: 100px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.partner-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .desktop-order {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: 1fr 290px;
    gap: 40px;
  }

  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-card:nth-child(4),
  .menu-card:nth-child(5) {
    min-height: 260px;
  }

  .story-grid {
    gap: 60px;
  }

  .visit-grid {
    gap: 45px;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-block+.visit-block {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  :root {
    --container: min(100% - 32px, 720px);
  }

  .nav-shell {
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle span {
    background: #fff;
  }

  .brand {
    min-width: 0;
  }

  .brand-flame {
    width: 205px;
    max-height: 50px;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    gap: 0;
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .14);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    color: #000;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 640px;
    padding-top: 120px;
  }

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

  .hero-card {
    display: none;
  }

  .hero-slider-controls {
    bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(60px, 15vw, 94px);
  }

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

  .menu-card {
    min-height: 280px;
  }

  .menu-card:last-child {
    grid-column: 1 / 3;
    min-height: 250px;
  }

  .partners-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 35px 0;
  }

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

  .story-image {
    min-height: 520px;
  }

  .story-copy {
    max-width: none;
  }

  .banquet-overlay {
    background: rgba(15, 12, 10, .76);
  }

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

  .banquet-spacer {
    display: none;
  }

  .banquet-copy {
    padding: 90px 0;
    max-width: 620px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 260px 260px;
  }

  .g1 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 28px 0;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .back-top {
    justify-self: center;
  }

  .brand-copy strong {
    font-size: 26px;
  }

  .brand {
    min-width: 0;
  }

  .brand-flame {
    width: 188px;
    height: auto;
    max-height: 46px;
  }

  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 35px;
  }

  .hero-slider-controls {
    bottom: 66px;
    gap: 11px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
  }

  .hero h2 {
    font-size: 15px;
    letter-spacing: 2.8px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-intro,
  .story,
  .party-tray,
  .gallery,
  .visit {
    padding-top: 82px;
    padding-bottom: 86px;
  }

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

  .menu-card,
  .menu-card:nth-child(4),
  .menu-card:nth-child(5),
  .menu-card:last-child {
    grid-column: auto;
    min-height: 250px;
  }

  .story-image-wrap {
    padding: 0 18px 20px 0;
  }

  .story-image {
    min-height: 430px;
  }

  .image-stamp {
    width: 125px;
    height: 125px;
    right: -2px;
    bottom: 50px;
  }

  .banquet-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 270px);
  }

  .g1 {
    grid-column: auto;
  }

  .visit-block {
    padding: 34px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none;
  }
}

/* Shared footer credit */
.footer-copyright {
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

.footer-copyright a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  color: #f1aa36;
  text-decoration-color: currentColor;
}
