@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/league-spartan-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/league-spartan-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/league-spartan-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/league-spartan-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/league-spartan-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../assets/fonts/bodoni-moda-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../assets/fonts/bodoni-moda-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #090909;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff6a3d;
  --sand: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --max: 1440px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "League Spartan", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 61, 0.12), transparent 25%),
    linear-gradient(180deg, #0c0c0c 0%, #060606 100%);
}

.is-hidden-simple,
#reservation {
  display: none !important;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.topbar,
.section,
.footer,
.hero-copy,
.info-band,
.menu-main {
  width: min(calc(100% - 1.4rem), var(--max));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.9rem;
  background: transparent;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lang-switcher select {
  min-width: 4.6rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-transform: uppercase;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.topbar-brand img {
  width: clamp(5.8rem, 10vw, 7.8rem);
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

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

.site-nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0.8rem;
  right: 0.8rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.45rem 0.75rem;
  color: var(--muted);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-pill {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  padding: 0;
}

.hero-image-wrap {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
}

.hero-image {
  width: 100%;
  height: 100vh;
  height: 100svh;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.56);
  border-radius: 0;
  box-shadow: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.56) 34%, rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36));
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.25;
  mix-blend-mode: screen;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 1.3rem 1.4rem;
}

.hero-copy {
  display: grid;
  gap: 0.8rem;
  margin-top: 0;
  padding: 0;
  position: static;
  z-index: auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h2 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  font-weight: 700;
}

h3 {
  font-size: 1rem;
  font-family: "League Spartan", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-details {
  display: grid;
  gap: 0.14rem;
  max-width: 29rem;
}

.hero-details p,
.hero-link {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  line-height: 1.12;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-gap {
  min-height: 0.7rem;
}

.hero-link {
  display: inline-block;
  margin-top: 0.2rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.call-link::before {
  content: "\260E";
  font-size: 0.95em;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.button-fill {
  background: #f5efe8;
  color: #111;
}

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

.section {
  padding: 4.5rem 0;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.concept-layout {
  display: grid;
  gap: 0;
  align-items: stretch;
}

.concept.section {
  padding-top: 0;
  padding-bottom: 0;
}

.menu-editorial.section,
.gallery.section {
  padding-top: 0;
  padding-bottom: 0;
}

.concept-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem 0 0;
}

.concept-copy p {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.section-link {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.concept-full {
  margin: 0;
  overflow: hidden;
  min-height: 66vh;
}

.concept-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-editorial {
  display: grid;
  gap: 0;
  align-items: stretch;
}

.menu-media {
  position: relative;
  overflow: hidden;
  min-height: 66vh;
}

.menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-media-tag {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  color: #fff;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: right;
  max-width: 6ch;
}

.menu-panel {
  display: grid;
  align-content: center;
  padding: 2rem 0 0;
  background: transparent;
}

.menu-columns {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.menu-link {
  display: inline-block;
  margin-top: 1.6rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.menu-columns ul {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--text);
}

.menu-columns li {
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.gallery-stream {
  display: grid;
  gap: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.gallery-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 42vh;
  width: 100%;
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

.gallery-panel figcaption {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: none;
  max-width: 7ch;
}

.gallery-pos-a figcaption {
  left: 1.4rem;
  bottom: 1.2rem;
}

.gallery-pos-b figcaption {
  right: 1.6rem;
  top: 1.4rem;
  text-align: right;
}

.gallery-pos-c figcaption {
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  text-align: center;
}

.gallery-pos-d figcaption {
  left: 1.6rem;
  top: 1.6rem;
}

.gallery-pos-e figcaption {
  right: 1.6rem;
  bottom: 1.3rem;
  text-align: right;
}

.gallery-pos-f figcaption {
  left: 1.6rem;
  top: 1.6rem;
}

.gallery-panel-xl {
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
}

.gallery-page .gallery.section {
  padding-top: 5.5rem;
}

.info-band {
  display: grid;
  gap: 0;
  padding: 0 0 4rem;
}

.info-image {
  overflow: hidden;
}

.info-image img {
  width: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.info-content {
  padding: 2rem 0 0;
  background: transparent;
}

.info-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.info-map {
  margin-top: 1.8rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.info-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
}

.google-rating-card {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.google-rating-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.google-rating-card strong {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.google-rating-stars {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.info-list span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  text-transform: uppercase;
}

.reservation {
  padding-top: 0;
}

.reservation-block {
  display: grid;
  gap: 1.3rem;
  padding: 1.8rem 0 0;
  background: transparent;
}

.reservation-form {
  display: grid;
  gap: 0.8rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: 1px solid rgba(255, 255, 255, 0.3);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0 2.2rem;
}

.footer-logo {
  width: clamp(9rem, 18vw, 14rem);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  justify-content: center;
  width: 100%;
  text-align: center;
}

.floating-platine {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: clamp(9rem, 16vw, 14rem);
  height: auto;
  background: transparent;
  pointer-events: none;
  opacity: 0.92;
}

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

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

.menu-page {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.menu-main {
  padding-top: 4.5rem;
}

.menu-hero {
  display: grid;
  gap: 1rem;
  padding: 0 0 2rem;
}

.menu-hero-media {
  overflow: hidden;
  min-height: 42vh;
}

.menu-hero-media img {
  width: 100%;
  height: 42vh;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.menu-hero-copy {
  display: grid;
  gap: 0.8rem;
}

.menu-intro {
  max-width: 38rem;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.menu-layout {
  width: min(calc(100% - 1.4rem), var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
  padding-bottom: 3rem;
}

.menu-side {
  display: none;
}

.menu-content {
  display: grid;
  gap: 1.4rem;
}

.menu-section-block {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.menu-section-block h2 {
  max-width: none;
  margin-bottom: 0.9rem;
}

.menu-section-block h3 {
  margin: 1.2rem 0 0.65rem;
}

.menu-note {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.menu-rows {
  display: grid;
  gap: 0.8rem;
}

.menu-row,
.menu-row-rich {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-row span,
.menu-row-rich span {
  color: var(--text);
  font-weight: 400;
}

.menu-row strong,
.menu-row-rich strong {
  color: var(--sand);
  font-size: 1rem;
  text-align: right;
}

.menu-row-rich {
  align-items: flex-start;
}

.menu-row-rich small {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-transform: none;
}

.menu-two-cols,
.menu-three-cols {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 780px) {
  .topbar {
    padding: 0.4rem 1.3rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-left: auto;
  }

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

  .concept-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .concept-copy {
    padding: 0 0 0 2rem;
  }

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

  .menu-panel {
    order: 1;
    padding: 0 2rem 0 0;
  }

  .menu-media {
    order: 2;
  }

  .info-band {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .info-content,
  .reservation-block {
    padding: 0 0 0 2rem;
  }

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

  .reservation-block {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .footer {
    flex-direction: row;
    justify-content: center;
    align-items: end;
  }

  .menu-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    padding-bottom: 2.5rem;
  }

  .menu-layout {
    grid-template-columns: 0.34fr 0.66fr;
    align-items: start;
  }

  .menu-side {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 4.4rem;
  }

  .menu-side-image {
    width: 100%;
    object-fit: cover;
  }

  .menu-side-image-a {
    aspect-ratio: 0.78;
  }

  .menu-side-image-b {
    aspect-ratio: 1;
  }

  .menu-two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-stream {
    gap: 0;
  }
}

@media (max-width: 779px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .menu-media,
  .concept-full,
  .gallery-panel,
  .gallery-panel-xl {
    min-height: auto;
  }

  .gallery-panel-xl {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
  }

  .floating-platine {
    right: 0.7rem;
    bottom: 0.7rem;
    width: clamp(7rem, 30vw, 9rem);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
