:root {
  --aubergine: #120a12;
  --aubergine-2: #1a101a;
  --surface: rgba(255, 252, 246, 0.045);
  --surface-strong: rgba(255, 252, 246, 0.065);
  --cream: #f4efe7;
  --smoke: #b9b1aa;
  --muted: #7f7773;
  --line: rgba(244, 239, 231, 0.14);
  --line-soft: rgba(244, 239, 231, 0.08);
  --accent: #b64f73;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --title: "Bebas Neue", sans-serif;
  --serif: "Bodoni Moda", serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.55;
  background:
    radial-gradient(ellipse at 75% 6%, rgba(110, 82, 76, 0.1), transparent 31rem),
    radial-gradient(ellipse at 12% 46%, rgba(255, 252, 246, 0.025), transparent 34rem),
    linear-gradient(145deg, #0a060a, var(--aubergine) 52%, #171016);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(244, 239, 231, 0.025), transparent 68%);
  background-size: 180% 180%;
  animation: atmosphere 42s ease-in-out infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

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

p {
  margin: 0;
  color: var(--smoke);
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 1rem 1rem auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(18, 10, 18, 0.28);
  backdrop-filter: blur(18px);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(18, 10, 18, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  width: clamp(13rem, 22vw, 19rem);
  height: 2.15rem;
}

.brand img,
.footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: var(--smoke);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--cream);
}

.nav-toggle {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  gap: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.05rem;
  height: 1px;
  background: var(--cream);
  transition: transform 0.25s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-open .site-nav {
  position: fixed;
  inset: 5.25rem 1rem auto;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(18, 10, 18, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 1.15rem 7rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background:
    linear-gradient(180deg, rgba(18, 10, 18, 0.48), rgba(18, 10, 18, 0.95)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  filter: grayscale(0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 58rem);
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(86vw, 31rem);
  margin: 0 auto 3.3rem;
  filter: none;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 1rem;
  color: var(--smoke);
  font-size: clamp(0.82rem, 2.22vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.hero-kicker::after,
.eyebrow::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  margin: 0.8rem auto 0;
  background: var(--accent);
  opacity: 0.75;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero-text {
  max-width: 50rem;
  margin: 0 auto;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.68rem, 4.3vw, 3.45rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero-actions {
  display: grid;
  gap: 0.65rem;
  margin: 2.65rem auto 0;
  width: min(100%, 31rem);
}

.btn {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--cream);
  background: rgba(244, 239, 231, 0.025);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 239, 231, 0.34);
  background: rgba(244, 239, 231, 0.055);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: rgba(244, 239, 231, 0.32);
  background: var(--cream);
  color: var(--aubergine);
}

.btn::after {
  content: "";
  width: 1.35rem;
  height: 1px;
  margin-left: 0.75rem;
  background: currentColor;
  opacity: 0.38;
  transition: width 0.28s ease, opacity 0.28s ease;
}

.btn:hover::after {
  width: 1.75rem;
  opacity: 0.6;
}

.btn-soft,
.btn-ghost {
  background: transparent;
}

.section-pad {
  position: relative;
  padding: clamp(6.5rem, 16vw, 11.5rem) 1.15rem;
  scroll-margin-top: 6rem;
}

.section-pad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(82vw, 56rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(244, 239, 231, 0.18), transparent);
}

.section-head {
  width: min(100%, 56rem);
  margin: 0 auto 3rem;
}

.section-head h2 {
  margin-top: 1.375rem;
}

h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.72rem, 4.42vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.008em;
  text-align: center;
}

.section-head > h2 {
  margin-top: 22px;
  font-size: clamp(27.52px, 4.42vw, 48px);
}

.section-intro {
  max-width: 38rem;
  margin: 1.35rem auto 0;
  color: var(--smoke);
  font-size: 0.96rem;
  line-height: 1.7;
  text-align: center;
}

.locations-priority {
  padding-top: clamp(5.5rem, 12vw, 8rem);
}

h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--title);
  font-size: clamp(1.85rem, 7vw, 3.15rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h4 {
  margin: 0;
  color: var(--cream);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
}

.menu-stack,
.locations-grid,
.story-card,
.gallery-grid,
.caterer-card,
.contact-card {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.story-card {
  display: grid;
  gap: 2.25rem;
  padding: clamp(1.4rem, 7vw, 3.4rem) 0;
}

.story-card h2,
.story-card .eyebrow {
  text-align: left;
}

.story-card .eyebrow::after {
  margin-left: 0;
}

.story-card p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--smoke);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 3.7vw, 1.65rem);
  line-height: 1.3;
  letter-spacing: -0.006em;
}

.menu-stack,
.menu-bottom-grid {
  display: grid;
  gap: 2rem;
}

.menu-stack > .menu-group:first-child {
  margin-top: 16px;
}

.menu-group,
.location-card,
.caterer-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--surface);
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.menu-group:hover,
.location-card:hover {
  transform: translateY(-2px);
  background: var(--surface-strong);
}

.menu-group {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.group-title span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.items-grid {
  display: grid;
  gap: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  transition: opacity 0.25s ease;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item:hover {
  opacity: 0.86;
}

.menu-item.is-featured {
  background: transparent;
}

.item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.menu-item p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.menu-item strong {
  display: inline-flex;
  min-width: 3rem;
  justify-content: flex-end;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.gallery {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.1) saturate(0.78);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.gallery-tile:hover {
  filter: grayscale(0) saturate(0.9);
  transform: translateY(-3px);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 10, 18, 0.04), rgba(18, 10, 18, 0.76));
}

.gallery-tile figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 3.6rem);
  font-weight: 500;
  line-height: 0.95;
}

.tile-lunch {
  background-image: url("https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?auto=format&fit=crop&w=1400&q=82");
}

.tile-truck {
  background-image: url("https://images.unsplash.com/photo-1565123409695-7b5ef63a2efb?auto=format&fit=crop&w=1400&q=82");
}

.tile-mezze {
  background-image: url("Plats/BE3FECA5-507D-44D8-91B6-25DED525AA18.PNG");
}

.tile-service {
  background-image: url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1400&q=82");
}

.tile-buffet {
  background-image: url("Plats/AAA356AB-077B-4D83-8BE8-7ED71AA35BAB.PNG");
}

.locations-grid {
  display: grid;
  gap: 0.85rem;
}

.location-card {
  padding: 1.45rem 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
}

.location-card span {
  display: inline-flex;
  margin-top: 0.55rem;
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  margin-top: 1.25rem;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
}

.location-card p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.private {
  border-color: rgba(182, 79, 115, 0.28);
}

.trusted-list {
  display: flex;
  width: min(100%, 72rem);
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 2.5rem;
  margin-inline: auto;
  padding-top: 0.5rem;
}

.trusted-list span {
  color: var(--smoke);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  white-space: nowrap;
}

.caterer-card,
.contact-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.4rem, 6vw, 3rem);
}

.caterer-card h2,
.caterer-card .eyebrow,
.contact-card h2,
.contact-card .eyebrow {
  text-align: left;
}

.caterer-card .eyebrow::after,
.contact-card .eyebrow::after {
  margin-left: 0;
}

.caterer-card p:not(.eyebrow),
.contact-card p {
  color: var(--smoke);
  font-size: 1rem;
  line-height: 1.7;
}

.caterer-card p:not(.eyebrow) {
  margin-top: 18px;
}

.contact-links {
  display: grid;
  gap: 0.7rem;
}

.contact-links a {
  color: var(--cream);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  padding: 3rem 1rem 5.5rem;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.footer img {
  width: min(76vw, 22rem);
  height: auto;
}

.footer p {
  color: var(--muted);
  text-align: center;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(201, 92, 132, 0.32);
  border-radius: 999px;
  background: rgba(18, 10, 18, 0.76);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

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

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

@keyframes atmosphere {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 720px) {
  .site-header {
    inset-inline: clamp(1.25rem, 4vw, 3rem);
    padding-inline: 1.1rem;
  }

  .brand {
    width: clamp(15rem, 20vw, 20rem);
  }

  .site-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 1.75rem);
  }

  .nav-toggle {
    display: none;
  }

  .hero-actions {
    grid-template-columns: repeat(3, 1fr);
    width: min(100%, 54rem);
  }

  .items-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

  .items-grid .menu-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

  .gallery-tile:first-child {
    min-height: 28rem;
    grid-row: span 2;
  }

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

  .caterer-card {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 1100px) {
  .hero {
    padding-top: 8.2rem;
  }

  .hero-logo {
    width: min(42vw, 25.5rem);
    margin-bottom: 2.25rem;
  }

  .hero-text {
    max-width: 52rem;
  }

  .hero-actions {
    margin-top: 3rem;
  }

  .story-card {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 5rem;
    align-items: end;
  }

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

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

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

  .gallery-tile:nth-child(4) {
    grid-column: span 2;
  }
}
