:root {
  --bg-deep: #080808;
  --bg-charcoal: #121110;
  --gold: #c9a227;
  --gold-light: #e8c56a;
  --gold-dark: #8a6f1a;
  --red: #9b1c1c;
  --red-deep: #6b1212;
  --text: #f5f0e8;
  --text-muted: #a89f92;
  --border-gold: rgba(201, 162, 39, 0.35);
  --shadow-gold: rgba(201, 162, 39, 0.15);
  --font-serif: "Cinzel", "Times New Roman", serif;
  --font-script: "Allura", "Brush Script MT", cursive;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  overflow: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.6;
  scrollbar-width: none;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  min-width: 320px;
}

body::-webkit-scrollbar {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Background layers */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-bg__pancit {
  display: none;
  position: absolute;
  left: -8vw;
  bottom: 0;
  z-index: 2;
  width: clamp(280px, 42vw, 560px);
  pointer-events: none;
  opacity: 1;
  transform: rotate(-10deg);
  transform-origin: left bottom;
}

.page-bg__pancit-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.55));
}


.page-bg__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/grill-bg.png");
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.page-bg__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(6, 5, 4, 0.88) 0%,
      rgba(8, 6, 5, 0.72) 38%,
      rgba(10, 8, 6, 0.35) 62%,
      rgba(12, 9, 7, 0.45) 100%
    ),
    radial-gradient(ellipse 130% 90% at 50% 110%, rgba(0, 0, 0, 0.75) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 55% 65%, rgba(255, 90, 30, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8, 6, 5, 0.55) 0%, transparent 28%, rgba(5, 4, 3, 0.4) 100%);
}

.page-bg__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.page-bg__embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 40% at 50% 72%, rgba(255, 110, 40, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(255, 120, 40, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(255, 80, 30, 0.06) 0%, transparent 25%);
  animation: emberPulse 8s ease-in-out infinite alternate;
}

@keyframes emberPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Video smoke effect — https://codepen.io/alexaluthor/pen/bGBjRdp */
.smoke-effect {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.36;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.95) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.smoke-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(
    to top,
    #cf4f53,
    #bf6c6e,
    #b47e7f,
    #a68c8d,
    #999999,
    #ffffff
  );
  mix-blend-mode: color;
  pointer-events: none;
}

.smoke-effect__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* Palm decorations */
.palm {
  position: fixed;
  z-index: 1;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
  width: clamp(80px, 12vw, 140px);
}

.palm--tl {
  top: 0;
  left: 0;
  transform: rotate(-25deg) translate(-10%, -5%);
}

.palm--br {
  bottom: 0;
  right: 0;
  transform: rotate(155deg) translate(10%, 5%);
}

/* Hero */
.hero {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 3rem) 2rem;
  flex: 1;
  min-height: 0;
}

.hero__logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.hero__logo {
  display: block;
  width: min(100%, 386px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s var(--ease-out);
}

.hero__logo-link:hover .hero__logo {
  transform: scale(1.02);
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) 4rem;
    overflow: visible;
  }

  .hero__content {
    grid-column: 1;
    max-width: 36rem;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeUp 1s var(--ease-out) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 40%,
    var(--gold) 50%,
    var(--gold-light) 60%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.hero__title--script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
}

.hero__title-line {
  display: block;
}

.hero__title--script .hero__title-line:first-child {
  color: var(--text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__title-line--accent {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title--script .hero__title-line--accent {
  margin-top: -0.2em;
  padding-left: 0.08em;
  filter: drop-shadow(0 2px 12px rgba(201, 162, 39, 0.25));
}

.hero__tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Coming soon badge */
.coming-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.coming-badge__line {
  width: clamp(32px, 8vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.coming-badge__text {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__text-panel {
  width: 100%;
}

.hero__message {
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Notify form */
.notify-form {
  width: 100%;
  max-width: 480px;
  margin-bottom: 2rem;
}

.notify-form__group {
  display: flex;
  align-items: stretch;
  background: rgba(12, 11, 10, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.notify-form__group:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--shadow-gold);
}

.notify-form__icon {
  align-self: center;
  margin-left: 1rem;
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.notify-form__input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}

.notify-form__input::placeholder {
  color: var(--text-muted);
}

.notify-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0806;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.3s, transform 0.2s;
}

.notify-form__btn:hover {
  filter: brightness(1.08);
}

.notify-form__btn:active {
  transform: scale(0.98);
}

.notify-form__btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.notify-form__btn .material-symbols-outlined {
  font-size: 1.1rem;
}

.notify-form__hint {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.notify-form__hint.is-success {
  color: #7cb87a;
}

.notify-form__hint.is-error {
  color: #d48484;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  list-style: none;
}

.features__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.features__icon {
  font-size: 1.15rem;
  color: var(--gold);
}

/* Hero visual — mobile: 2 horizontal rows; desktop: vertical columns */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.75rem;
  padding: env(safe-area-inset-top, 0) 0 0;
  z-index: 5;
  pointer-events: none;
  animation: fadeUpPlateMobile 1s 0.2s var(--ease-out) both;
}

.hero__food-carousel {
  width: 100%;
  height: auto;
  display: block;
}

.hero__food-carousel-desktop {
  display: none;
}

.hero__food-carousel-mobile {
  position: relative;
  display: none;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.25rem 0 0.35rem;
}

.hero__food-carousel-nav {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: rgba(12, 10, 9, 0.92);
  color: var(--gold-light);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.hero__food-carousel-nav .material-symbols-outlined {
  font-size: 1.5rem;
}

.hero__food-carousel-nav:hover {
  background: rgba(201, 162, 39, 0.18);
  border-color: var(--gold);
  color: var(--text);
}

.hero__food-carousel-nav:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.hero__food-carousel-mobile-row {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 2%,
    #000 98%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 2%,
    #000 98%,
    transparent 100%
  );
}

.hero__food-carousel-col {
  overflow: hidden;
  height: 100%;
}

.hero__food-carousel-track {
  display: flex;
  gap: 0.65rem;
  will-change: transform;
}

.hero__food-carousel-track[data-direction="left"] {
  flex-direction: row;
  animation: foodScrollLeft 40s linear infinite;
}

.hero__food-carousel-track[data-food-track-mobile] {
  animation: foodScrollLeft 40s linear infinite;
}

.hero__food-carousel-track[data-direction="right"] {
  flex-direction: row;
  animation: foodScrollRight 200s linear infinite;
}

.hero__food-carousel-track[data-direction="up"] {
  flex-direction: column;
  animation: foodScrollUp 58s linear infinite;
}

.hero__food-carousel-track[data-direction="down"] {
  flex-direction: column;
  animation: foodScrollDown 64s linear infinite;
}

/* Duration overridden per track in food_carousel.js based on image count */

.hero__food-carousel,
.hero__food-carousel-item {
  pointer-events: auto;
}

.hero__food-carousel-item {
  flex-shrink: 0;
  display: block;
  width: clamp(88px, 26vw, 120px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  aspect-ratio: 1 / 1;
  background: rgba(12, 10, 9, 0.8);
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) {
  .hero__food-carousel-item:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--shadow-gold);
  }

  .hero__food-carousel-item:hover img {
    transform: scale(1.05);
  }
}

.hero__food-carousel-item:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.hero__food-carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-food-lightbox-open .hero__food-carousel-track {
  animation-play-state: paused;
}

@media (hover: hover) {
  .hero__food-carousel:hover .hero__food-carousel-track {
    animation-play-state: paused;
  }
}

@media (max-width: 959px) {
  .hero__food-carousel-mobile {
    display: flex;
  }

  .hero__food-carousel-nav {
    display: inline-flex;
    pointer-events: auto;
  }

  .hero__food-carousel-mobile-row {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero__food-carousel-mobile-row::-webkit-scrollbar {
    display: none;
  }

  .hero__food-carousel-track[data-food-track-mobile] {
    animation: none !important;
    transform: none !important;
  }

  .hero__food-carousel-item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (min-width: 600px) and (max-width: 959px) {
  .hero__food-carousel-item {
    width: clamp(100px, 22vw, 140px);
  }
}

/* Food lightbox */
.food-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.food-lightbox[hidden] {
  display: none;
}

.food-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.88);
  backdrop-filter: blur(6px);
}

.food-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: min(100%, 960px);
  max-height: min(92vh, 900px);
  animation: lightboxIn 0.35s var(--ease-out) both;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.food-lightbox__figure {
  flex: 1;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.food-lightbox__img {
  display: block;
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
  background: rgba(12, 10, 9, 0.95);
}

.food-lightbox__caption {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
}

.food-lightbox__close,
.food-lightbox__nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  background: rgba(18, 17, 16, 0.92);
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.food-lightbox__close:hover,
.food-lightbox__nav:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--text);
}

.food-lightbox__close:focus-visible,
.food-lightbox__nav:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.food-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transform: translateY(-100%);
}

.food-lightbox__close .material-symbols-outlined {
  font-size: 1.35rem;
}

.food-lightbox__nav {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
}

.food-lightbox__nav .material-symbols-outlined {
  font-size: 1.75rem;
}

@media (max-width: 639px) {
  .food-lightbox__nav--prev,
  .food-lightbox__nav--next {
    position: absolute;
    bottom: 0.5rem;
    z-index: 2;
  }

  .food-lightbox__nav--prev {
    left: 0.25rem;
  }

  .food-lightbox__nav--next {
    right: 0.25rem;
  }

  .food-lightbox__dialog {
    flex-direction: column;
    padding-bottom: 3.5rem;
  }

  .food-lightbox__close {
    top: 0;
    right: 0;
    transform: none;
  }
}

@keyframes foodScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes foodScrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes foodScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes foodScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (min-width: 960px) {
  .hero__visual {
    position: fixed;
    top: 44%;
    right: 70px;
    width: min(42vw, 790px);
    max-width: none;
    margin: 0;
    padding: 0 0 0 1rem;
    z-index: 4;
    pointer-events: none;
    animation: fadeUpVisual 1s 0.2s var(--ease-out) both;
  }

  .hero__food-carousel {
    width: 100%;
    height: min(88vh, 720px);
  }

  .hero__food-carousel-mobile {
    display: none !important;
  }

  .hero__food-carousel-nav {
    display: none !important;
  }

  .hero__food-carousel-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    );
  }

  .hero__food-carousel-item {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
  }
}

@keyframes fadeUpVisual {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 24px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__food-carousel-track {
    animation: none;
  }

  .food-lightbox__dialog {
    animation: none;
  }

  .smoke-effect {
    display: none;
  }
}

/* —— Responsive —— */

/* Tablet */
@media (max-width: 1199px) and (min-width: 960px) {
  .hero__visual {
    top: 44%;
    right: 48px;
    width: min(44vw, 640px);
  }

  .hero__title--script {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
  }

  .page-bg__pancit {
    width: clamp(240px, 36vw, 480px);
    left: -10vw;
  }
}

/* Mobile & small tablet */
@media (max-width: 959px) {
  .hero {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 1.5rem) 0.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero::-webkit-scrollbar {
    display: none;
  }

  .hero__visual {
    flex-shrink: 0;
    order: -1;
  }

  .hero__content {
    position: relative;
    z-index: 6;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
    align-items: center;
    align-self: stretch;
    text-align: center;
    box-sizing: border-box;
  }

  .hero__logo-link {
    align-self: center;
    width: 100%;
    max-width: 100%;
  }

  .hero__logo {
    width: min(100%, clamp(200px, 68vw, 320px));
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .hero__eyebrow {
    width: 100%;
    text-align: center;
  }

  .hero__title {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero__title--script {
    font-size: clamp(2.25rem, 10vw, 3.75rem);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero__title-line {
    max-width: 100%;
  }

  .hero__tagline {
    margin-bottom: 1.25rem;
    letter-spacing: 0.12em;
  }

  .coming-badge {
    justify-content: center;
    align-self: center;
    margin-bottom: 1.25rem;
    gap: 0.65rem;
  }

  .coming-badge__text {
    font-size: clamp(0.7rem, 2.8vw, 0.9rem);
    letter-spacing: 0.12em;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .hero__text-panel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.15rem clamp(0.85rem, 3vw, 1.25rem);
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    border: 1px solid rgba(201, 162, 39, 0.14);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
  }

  .hero__text-panel .hero__tagline {
    margin-bottom: 1rem;
  }

  .hero__text-panel .coming-badge {
    margin-bottom: 1rem;
  }

  .hero__message {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
    color: var(--text);
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero__text-panel .features {
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 0;
  }

  .features__item {
    font-size: 0.75rem;
  }

  .palm {
    opacity: 0.07;
    width: clamp(56px, 14vw, 90px);
  }

  .site-footer {
    padding: 0.85rem clamp(1rem, 4vw, 1.5rem) max(0.75rem, env(safe-area-inset-bottom));
  }

  .site-footer__inner {
    gap: 0.85rem;
  }

  .site-footer__link {
    font-size: 0.8rem;
    justify-content: center;
    text-align: center;
  }

  .site-footer__contact .site-footer__link:first-child {
    flex-wrap: wrap;
    max-width: 100%;
    word-break: break-word;
  }

  .site-footer__phones {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }
}

@keyframes fadeUpPlateMobile {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small phones */
@media (max-width: 479px) {
  .hero__content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero__logo-link {
    margin-bottom: 0.75rem;
  }

  .hero__logo {
    width: min(100%, 240px);
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
  }

  .hero__title--script {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
    line-height: 0.88;
  }

  .coming-badge__line {
    width: clamp(20px, 6vw, 40px);
  }

  .hero__food-carousel-item {
    width: clamp(80px, 24vw, 108px);
  }

  .hero__title--script {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .smoke-effect {
    opacity: 0.22;
  }
}

/* Short viewports (landscape phones, small laptops) */
@media (max-height: 720px) and (min-width: 960px) {
  .hero {
    padding-bottom: 1.5rem;
  }

  .hero__title--script {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
  }

  .hero__tagline,
  .coming-badge,
  .hero__message {
    margin-bottom: 1rem;
  }

  .hero__logo-link {
    margin-bottom: 0.75rem;
  }

  .hero__food-carousel {
    height: min(72vh, 520px);
  }
}

@media (max-height: 640px) and (max-width: 959px) {
  .hero__title--script {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
  }

  .hero__tagline {
    margin-bottom: 0.75rem;
  }

  .coming-badge {
    margin-bottom: 0.75rem;
  }

  .hero__message {
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
  }

  .hero__food-carousel-item {
    width: clamp(76px, 22vw, 100px);
  }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.site-footer__label {
  color: var(--gold);
  font-weight: 500;
  margin-right: 0.35rem;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__link:hover {
  color: var(--gold-light);
}

.site-footer__link .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--gold);
}

.social {
  display: flex;
  gap: 0.75rem;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.social__link:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 100;
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(18, 17, 16, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  pointer-events: none;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
