:root {
  --ink: #f7f3ea;
  --muted: #b7ad9c;
  --black: #050505;
  --charcoal: #0d0d0f;
  --panel: rgba(20, 20, 22, 0.82);
  --panel-strong: rgba(12, 12, 14, 0.94);
  --line: rgba(255, 255, 255, 0.11);
  --blue: #0f6fce;
  --blue-soft: rgba(15, 111, 206, 0.28);
  --gold: #d8aa45;
  --gold-soft: rgba(216, 170, 69, 0.22);
  --red: #c33b32;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --font-body: "BPG Arial", Arial, Helvetica, sans-serif;
  --font-display: "BPG Banner Caps", "BPG Arial Caps", "BPG Arial", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(216, 170, 69, 0.12), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(15, 111, 206, 0.14), transparent 30rem),
    linear-gradient(180deg, #070707, #101012 46%, #070707);
  font-family: var(--font-body);
  line-height: 1.55;
}

h1, h2, h3, .eyebrow, .brand span, .main-nav a, .button {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(216, 170, 69, 0.45));
}

.brand span {
  text-shadow: 0 0 18px rgba(216, 170, 69, 0.22);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav .nav-menu {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav .nav-menu::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-switch button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.lang-switch button.active {
  color: #0a0a0a;
  background: var(--gold);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 72px);
  padding: clamp(58px, 8vw, 122px) clamp(18px, 5vw, 72px) 36px;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.12)),
    url("../images/sliderblack.webp") center / cover no-repeat;
  filter: saturate(1.24) brightness(1.32);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 72%, rgba(5, 5, 5, 0.76), transparent 34rem),
    linear-gradient(0deg, rgba(5, 5, 5, 0.36), transparent 34%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  right: clamp(8px, 6vw, 96px);
  top: clamp(88px, 12vh, 140px);
  width: min(36vw, 340px);
  opacity: 0.22;
  pointer-events: none;
  animation: floatLogo 7s ease-in-out infinite;
}

.hero-media img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(216, 170, 69, 0.34));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 780px;
  padding: clamp(18px, 3vw, 30px);
  margin-left: clamp(-18px, -2vw, 0px);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.12), transparent);
  backdrop-filter: blur(1px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(216, 170, 69, 0.16);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(247, 243, 234, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #090909;
  background: linear-gradient(135deg, #f2d27b, var(--gold));
  box-shadow: 0 14px 36px rgba(216, 170, 69, 0.26);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary:hover {
  border-color: rgba(216, 170, 69, 0.6);
  box-shadow: 0 14px 36px rgba(216, 170, 69, 0.14);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.photo-gallery {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(15, 111, 206, 0.07));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr;
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-card:first-child {
  grid-row: span 2;
  min-height: 656px;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 170, 69, 0.46);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.08);
  transition: transform 500ms ease, filter 180ms ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.16) saturate(1.12);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.56), transparent 54%);
  pointer-events: none;
}

.gallery-card::before {
  content: "+";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0a0a0a;
  background: rgba(216, 170, 69, 0.94);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
  transform: scale(0.92);
  transition: transform 180ms ease;
}

.gallery-card:hover::before {
  transform: scale(1);
}

.gallery-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.lightbox.open {
  display: grid;
  animation: lightboxFade 180ms ease both;
}

.lightbox figure {
  position: relative;
  width: min(1120px, 100%);
  max-height: 88vh;
  margin: 0;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.72);
}

.lightbox figcaption {
  margin-top: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: rgba(216, 170, 69, 0.64);
  background: rgba(216, 170, 69, 0.18);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.info-grid {
  display: grid;
  gap: 12px;
}

.info-grid article,
.review-card,
.menu-list article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-grid article {
  display: grid;
  gap: 6px;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.info-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 170, 69, 0.36);
}

.info-grid span,
.menu-list small {
  color: var(--muted);
}

.info-grid strong {
  color: #fff;
}

.reviews {
  background:
    linear-gradient(180deg, rgba(15, 111, 206, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.015);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

@keyframes sheen {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(260%) skewX(-18deg); }
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 20px;
  overflow: hidden;
  border-radius: 14px;
  animation: cardIn 520ms cubic-bezier(.22,.9,.34,1) both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.review-card:nth-child(2) { animation-delay: 80ms; }
.review-card:nth-child(3) { animation-delay: 160ms; }
.review-card:nth-child(4) { animation-delay: 240ms; }

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--blue);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}

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

.review-card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 170, 69, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(216,170,69,0.12);
}

.review-card:hover::after {
  animation: sheen 900ms ease forwards;
}

.review-card:hover .social-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.facebook-card::before {
  background: linear-gradient(90deg, #1877f2, #4293ff, #1877f2);
  background-size: 200% 100%;
}

.social-card {
  justify-content: space-between;
}

.instagram-card::before {
  background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
}

.tripadvisor-card::before {
  background: #00af87;
}

.google-card::before {
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.review-card p {
  color: var(--muted);
}

.social-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.social-card-head h3,
.social-card-head p {
  margin: 0;
}

.social-card-head p {
  margin-top: 4px;
  font-size: 0.95rem;
}

.social-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
  transition: transform 280ms cubic-bezier(.34,1.4,.5,1), box-shadow 280ms ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.google-icon svg { width: 22px; height: 22px; }

.facebook-icon {
  background: #1877f2;
}

.instagram-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.tripadvisor-icon {
  background: #00af87;
}

.google-icon {
  background: #fff;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.like-link {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.14);
  border: 1px solid rgba(24, 119, 242, 0.45);
  color: #4293ff;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.like-link::after { content: none; }

.like-link:hover {
  background: #1877f2;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.35);
}

.like-thumb {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 260ms cubic-bezier(.34,1.6,.5,1);
}

.like-thumb svg { color: #fff; }
.like-link:hover .like-thumb { transform: rotate(-12deg) scale(1.08); }

.text-link::after {
  content: "›";
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.fb-page,
.fb-page span,
.fb-page iframe {
  max-width: 100%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}

address {
  color: var(--muted);
  font-style: normal;
  font-size: 1.1rem;
}

address a {
  color: var(--gold);
  font-weight: 900;
}

iframe {
  width: 100%;
  min-height: 370px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: grayscale(0.55) contrast(1.08) brightness(0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #030303;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

.menu-page {
  padding: clamp(24px, 5vw, 72px);
}

.menu-hero {
  padding: clamp(42px, 8vw, 92px) 0;
  max-width: 900px;
}

.menu-hero h1 {
  color: #fff;
}

.menu-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-list article {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.menu-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 170, 69, 0.36);
}

.menu-list h2 {
  color: #fff;
  font-size: 1.45rem;
}

.menu-list ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  gap: 2px;
}

.menu-list span {
  color: var(--gold);
  font-weight: 900;
}

.menu-contact {
  margin-top: 28px;
  padding-inline: 0;
  align-items: center;
}

.menu-contact .button {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes lightboxFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro,
  .contact-section,
  .menu-list {
    grid-template-columns: 1fr;
  }

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

  .menu-contact .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-media {
    width: min(58vw, 260px);
    opacity: 0.16;
  }

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

  .gallery-card,
  .gallery-card:first-child {
    grid-row: auto;
    min-height: 320px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
