:root {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --gold: #c9a227;
  --gold-bright: #efd37a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --teal: rgba(111, 224, 222, 0.78);
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  --container: min(1160px, calc(100vw - 2rem));
  --header-offset: 7.5rem;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-x: hidden;
  background-color: #040404;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top center, rgba(201, 162, 39, 0.12), transparent 22%),
    radial-gradient(circle at left 20%, rgba(201, 162, 39, 0.06), transparent 28%),
    radial-gradient(circle at right 18%, rgba(201, 162, 39, 0.05), transparent 26%),
    linear-gradient(180deg, #040404 0%, #090909 36%, #0d0d0d 100%);
}

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

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

button,
input {
  font: inherit;
}

main,
footer {
  position: relative;
  z-index: 1;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

.site-shell {
  position: relative;
  padding: 1rem 0 3rem;
  overflow-x: hidden;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 50;
  width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.26);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.topbar:hover {
  border-color: rgba(201, 162, 39, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.18));
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0.4);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav a:hover {
  color: var(--gold-bright);
}

.nav a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.36rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.lang-switch {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-button {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 0.52rem 0.72rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease;
}

.lang-button.active {
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.18);
}

.hero {
  position: relative;
  min-height: min(980px, calc(100vh - 1rem));
  display: grid;
  align-items: center;
  padding: 4rem 0 4.6rem;
  margin-top: -5.8rem;
  overflow: clip;
  isolation: isolate;
}

.hero-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: inherit;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  perspective: 1600px;
}

.hero-media,
.hero-overlay,
.hero-grid,
.hero-orbit,
.hero-glow,
.hero-spice-field {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.2)),
    url("assets/01.jpg") center/cover no-repeat;
  transform: translateZ(-60px) scale(1.08);
  filter: blur(8px) saturate(0.95);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.72) 52%, rgba(11, 11, 11, 0.96) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(11, 11, 11, 0.12) 48%, rgba(11, 11, 11, 0.88) 100%);
  transform: translateZ(-20px);
}

.hero-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 88%, transparent 100%);
  animation: drift-grid 24s linear infinite;
  transform: translateZ(-10px);
}

.hero-orbit {
  border-radius: 999px;
  border: 1px solid rgba(111, 224, 222, 0.18);
  filter: blur(0.2px);
}

.hero-orbit-a {
  inset: auto auto 12% 50%;
  width: min(74vw, 820px);
  height: min(32vw, 320px);
  transform: translateX(-50%);
  animation: pulse-ring 11s ease-in-out infinite;
}

.hero-orbit-b {
  inset: auto auto 6% 50%;
  width: min(56vw, 620px);
  height: min(24vw, 220px);
  border-color: rgba(201, 162, 39, 0.24);
  transform: translateX(-50%);
  animation: pulse-ring 9s ease-in-out infinite reverse;
}

.hero-spice-field {
  transform: translateZ(34px);
  pointer-events: none;
}

.spice {
  position: absolute;
  width: 0.5rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), rgba(201, 162, 39, 0.6) 45%, rgba(201, 162, 39, 0.08) 70%, transparent 100%);
  filter: blur(0.2px);
  opacity: 0.65;
  animation: float-spice 12s ease-in-out infinite;
}

.spice-a { top: 22%; left: 18%; animation-delay: 0s; }
.spice-b { top: 30%; left: 72%; width: 0.35rem; animation-delay: -2s; }
.spice-c { top: 54%; left: 14%; width: 0.42rem; animation-delay: -4s; }
.spice-d { top: 61%; left: 82%; width: 0.6rem; animation-delay: -6s; }
.spice-e { top: 18%; left: 58%; width: 0.46rem; animation-delay: -1s; }
.spice-f { top: 74%; left: 28%; width: 0.34rem; animation-delay: -3s; }
.spice-g { top: 68%; left: 64%; width: 0.52rem; animation-delay: -5s; }
.spice-h { top: 42%; left: 88%; width: 0.3rem; animation-delay: -7s; }

.hero-glow {
  inset: 14% 24% auto;
  height: 36%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, rgba(201, 162, 39, 0.1) 30%, transparent 70%);
  filter: blur(24px);
  transform: translateZ(18px);
  animation: breathe-glow 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 5.25rem;
  padding-bottom: 1.2rem;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateZ(72px);
  animation: hero-rise 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(12vw, 180px);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.28), transparent);
}

.hero::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.28), transparent);
}

.glass-panel {
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-logo-wrap {
  width: fit-content;
  margin: 0 auto 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12), rgba(255, 255, 255, 0.03) 65%, transparent 100%);
  animation: logo-float 7s ease-in-out infinite;
}

.hero-logo {
  width: min(112px, 24vw);
  margin: 0 auto;
  filter: drop-shadow(0 0 22px rgba(201, 162, 39, 0.18));
}

.hero h1,
.section-intro h2,
.reservation-copy h2,
.menu-doc h3,
.highlight-card h3,
.footer h3,
.gallery-card-copy strong {
  font-family: var(--heading-font);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 0.7rem;
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(201, 162, 39, 0.12);
  max-width: 28rem;
  margin-inline: auto;
  line-height: 1.35;
  text-wrap: balance;
}

.hero h1 {
  margin: 0;
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.35rem, 4.6vw, 4.15rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  text-wrap: initial;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero h1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 236, 174, 0.55) 50%, transparent 62%);
  mix-blend-mode: screen;
  transform: translateX(-180%);
  animation: title-shine 8s ease-in-out infinite;
}

.hero-subtitle {
  max-width: 31rem;
  margin: 0.9rem auto 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero-text {
  max-width: 34rem;
  margin: 0.9rem auto 0;
  font-size: clamp(0.94rem, 1.25vw, 1.02rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  margin: 1.35rem 0 0;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 12rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.38);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.button::after,
.menu-doc::after,
.gallery-card::after,
.highlight-card::after,
.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.14) 50%, transparent 78%);
  transform: translateX(-140%);
  transition: transform 800ms ease;
  pointer-events: none;
}

.button:hover::after,
.menu-doc:hover::after,
.gallery-card:hover::after,
.highlight-card:hover::after {
  transform: translateX(140%);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.12), 0 18px 34px rgba(201, 162, 39, 0.15);
}

.button-primary,
.button-accent {
  background: linear-gradient(135deg, #ae8c1e, #e0bd52);
  color: #0b0b0b;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.16), 0 0 30px rgba(201, 162, 39, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-highlights {
  position: relative;
  width: var(--container);
  margin: -0.15rem auto 2rem;
  z-index: 3;
}

.hero-highlights-grid {
  display: grid;
  gap: 1.35rem;
}

.hero-highlight-card,
.menu-doc,
.highlight-card,
.reservation-shell,
.about-points article,
.contact-pill {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.hero-highlight-card {
  min-height: 100%;
  padding: 1.15rem 1.3rem 1.2rem;
  text-align: left;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.45rem;
  border-color: rgba(201, 162, 39, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero-highlight-card:hover {
  border-color: rgba(201, 162, 39, 0.24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.hero-highlight-label,
.about-points span,
.menu-doc-label,
.gallery-card-copy span {
  display: block;
  color: rgba(201, 162, 39, 0.82);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-highlight-text,
.about-points strong {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  max-width: 24ch;
  text-wrap: balance;
}

.hero-highlights + .section.about {
  padding-top: 4.75rem;
}

.section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(240px, 36vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.9), rgba(111, 224, 222, 0.25), transparent);
  animation: sweep-line 9s ease-in-out infinite;
}

.section-intro {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-intro h2,
.reservation-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.about-grid,
.reservation-shell {
  display: grid;
  gap: 1.5rem;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.about-image-frame img {
  min-height: 24rem;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(111, 224, 222, 0.05) 42%, rgba(111, 224, 222, 0.16) 50%, transparent 58%);
  transform: translateY(-100%);
  animation: scan-down 10s linear infinite;
  pointer-events: none;
}

.about-copy p,
.menu-doc p,
.highlight-card p,
.reservation-copy p,
.footer p,
.inline-note {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-points article {
  padding: 1rem 1.1rem;
}

.menu-docs,
.highlights-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.menu-doc,
.highlight-card {
  min-height: 100%;
  padding: 1.55rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.menu-doc:hover,
.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.14), 0 18px 38px rgba(201, 162, 39, 0.1);
}

.menu-doc-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.menu-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.26);
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-chip-live {
  border-color: rgba(111, 224, 222, 0.25);
  background: rgba(111, 224, 222, 0.08);
  color: rgba(154, 245, 239, 0.96);
}

.menu-doc h3,
.highlight-card h3 {
  margin: 0.35rem 0 0.85rem;
  font-size: 2rem;
}

.menu-doc-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.4rem;
}

.text-link {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-note {
  font-size: 0.95rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 18rem;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.42);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.gallery-card img {
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.gallery-card-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-card-copy strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.42rem;
}

.highlight-card {
  padding-top: 2rem;
}

.highlight-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(111, 224, 222, 0.55), rgba(201, 162, 39, 0.82), transparent);
}

.reservation-shell {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.reservation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--text);
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-pill:hover {
  border-color: rgba(201, 162, 39, 0.42);
  transform: translateY(-2px);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
}

.booking-form span {
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form input:focus {
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 1rem 0 0;
}

.footer-divider {
  height: 1px;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.72) 50%, transparent 100%);
}

.footer h3 {
  margin: 0 0 0.65rem;
  font-size: 1.8rem;
  color: var(--gold);
}

.footer-logo {
  width: 4.6rem;
  margin-bottom: 0.9rem;
}

.footer-brand-block p:first-of-type {
  color: var(--text);
  font-weight: 700;
}

.footer a:hover {
  color: var(--gold-bright);
}

.floating-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 60;
  transform: translateX(-50%) translateY(18px);
  padding: 0.95rem 1.2rem;
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(201, 162, 39, 0.28);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.42);
  animation: ripple-animation 650ms linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes drift-grid {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 42px, 0);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.035);
  }
}

@keyframes float-spice {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.32;
  }
  50% {
    transform: translate3d(0.6rem, -0.9rem, 0) scale(1.25);
    opacity: 0.82;
  }
}

@keyframes breathe-glow {
  0%,
  100% {
    opacity: 0.42;
    transform: translateZ(18px) scale(1);
  }
  50% {
    opacity: 0.78;
    transform: translateZ(18px) scale(1.08);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 72px);
  }
  to {
    opacity: 1;
    transform: translateZ(72px);
  }
}

@keyframes title-shine {
  0%,
  74%,
  100% {
    transform: translateX(-180%);
  }
  84% {
    transform: translateX(180%);
  }
}

@keyframes sweep-line {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(14px);
  }
}

@keyframes scan-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1099px) {
  .topbar {
    border-radius: 30px;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(9, 9, 9, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .topbar.menu-open .nav-shell {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav,
  .header-actions {
    width: 100%;
  }

  .nav {
    display: grid;
    gap: 0.15rem;
  }

  .nav a {
    padding: 0.7rem 0.2rem;
  }

  .header-actions {
    justify-content: space-between;
  }

  .header-actions .button {
    min-width: 10rem;
  }

  .hero {
    margin-top: -7.2rem;
    padding-top: 5.6rem;
    padding-bottom: 3.6rem;
  }
}

@media (min-width: 700px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .hero-actions .button {
    min-width: 13.25rem;
  }

  .hero-highlights-grid,
  .about-points,
  .menu-docs,
  .highlights-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .gallery-card-large {
    grid-row: span 2;
    min-height: 38rem;
  }

  .gallery-card-large img {
    min-height: 38rem;
  }

  .reservation-shell {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    padding: 2rem;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
  }

  .hero-highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .menu-docs,
  .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 0.9fr 1fr 1.15fr;
  }
}

@media (max-width: 699px) {
  :root {
    --container: min(1160px, calc(100vw - 2rem));
    --header-offset: 8.25rem;
  }

  .site-shell {
    padding-top: 0.5rem;
  }

  .topbar {
    top: 0.7rem;
    padding: 0.72rem 0.8rem;
    border-radius: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
  }

  .menu-toggle {
    width: 2.65rem;
    height: 2.65rem;
    justify-self: end;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
    gap: 0.65rem;
  }

  .brand-copy strong {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .brand-copy small {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-shell {
    top: calc(100% + 0.55rem);
    padding: 0.9rem;
    border-radius: 24px;
    left: 0;
    right: 0;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 1rem;
  }

  .hero {
    min-height: auto;
    margin-top: -7.4rem;
    padding-top: 6.85rem;
    padding-bottom: 0.9rem;
    overflow: hidden;
  }

  .hero-stage {
    min-height: auto;
    perspective: none;
    transform-style: flat;
  }

  .hero-content {
    width: min(100%, calc(100% - 0.35rem));
    padding-top: 2.25rem;
    padding-bottom: 0;
    transform: none !important;
    animation: none;
  }

  .hero-media,
  .hero-overlay,
  .hero-grid,
  .hero-spice-field,
  .hero-orbit,
  .hero-glow {
    transform: none !important;
  }

  .hero-media {
    filter: blur(4px) saturate(0.92);
    background-position: center top;
  }

  .hero-overlay {
    border-radius: 28px;
  }

  .hero::before,
  .hero::after {
    width: 2.2rem;
  }

  .hero-highlights {
    margin: 0 auto 1.6rem;
  }

  .hero-highlights-grid {
    gap: 0.95rem;
  }

  .hero-highlight-card {
    padding: 0.95rem 1rem 1rem;
    border-radius: 22px;
    gap: 0.36rem;
  }

  .hero-highlight-label {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .hero-highlight-text {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.48;
    text-wrap: pretty;
  }

  .hero-logo-wrap {
    padding: 0.5rem 0.58rem;
    margin-bottom: 0.3rem;
  }

  .hero-logo {
    width: min(68px, 18vw);
  }

  .hero-eyebrow {
    max-width: 13rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.42rem;
    line-height: 1.4;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.42rem, 6.5vw, 1.92rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    max-width: 15.5rem;
    margin-top: 0.65rem;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .hero-text {
    max-width: 16.6rem;
    margin: 0.7rem auto 0;
    padding-inline: 0.2rem;
    font-size: 0.76rem;
    line-height: 1.72;
  }

  .hero-actions {
    width: 100%;
    gap: 0.62rem;
    margin: 1rem 0 0;
  }

  .hero-actions .button {
    width: min(100%, 14.5rem);
  }

  .button {
    min-height: 2.7rem;
    padding: 0.72rem 0.9rem;
    font-size: 0.82rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-highlights + .section.about {
    padding-top: 3.2rem;
  }

  .section-intro {
    max-width: 18rem;
    margin-bottom: 1.1rem;
  }

  .section-intro h2,
  .reservation-copy h2 {
    font-size: clamp(1.72rem, 9.2vw, 2.45rem);
    line-height: 0.98;
  }

  .section-intro .eyebrow,
  .reservation-copy .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    margin-bottom: 0.55rem;
  }

  .menu-doc,
  .highlight-card,
  .reservation-shell {
    padding: 0.95rem;
  }

  .menu-doc h3,
  .highlight-card h3 {
    font-size: 1.35rem;
  }

  .menu-doc p,
  .highlight-card p,
  .reservation-copy p,
  .about-copy p,
  .footer p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .gallery-card-large,
  .gallery-card-large img {
    min-height: 18rem;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 13rem;
  }

  .gallery-card-copy {
    inset: auto 0.8rem 0.8rem 0.8rem;
    padding: 0.85rem 0.9rem;
  }

  .gallery-card-copy strong {
    font-size: 1.12rem;
  }

  .booking-form {
    gap: 0.85rem;
  }

  .booking-form input {
    padding: 0.9rem 0.95rem;
  }

  .footer {
    padding-top: 0.5rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

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