﻿:root {
  color-scheme: dark;
  --bg: #0b1517;
  --bg-accent: #122226;
  --ink: #f4f1ec;
  --muted: #a8b3b0;
  --accent: #d08b5a;
  --accent-dark: #b57445;
  --line: rgba(244, 241, 236, 0.12);
  --card: #101c1f;
  --shadow: 0 24px 60px rgba(2, 8, 10, 0.6);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

.gallery-grid img[data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid img[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid img[data-reveal]:nth-child(3) { transition-delay: 0.15s; }
.gallery-grid img[data-reveal]:nth-child(4) { transition-delay: 0.2s; }
.gallery-grid img[data-reveal]:nth-child(5) { transition-delay: 0.25s; }
.gallery-grid img[data-reveal]:nth-child(6) { transition-delay: 0.3s; }
.gallery-grid img[data-reveal]:nth-child(7) { transition-delay: 0.35s; }
.gallery-grid img[data-reveal]:nth-child(8) { transition-delay: 0.4s; }
.gallery-grid img[data-reveal]:nth-child(9) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

a:hover {
  color: var(--accent);
}

h1, h2, h3 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(208, 139, 90, 0.18), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(22, 90, 95, 0.28), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(2, 8, 10, 0.55), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 21, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  /* width: 56px; */
  /* height: 56px; */
  width: 76px;
  height: 76px;
  border-radius: 14px;
  object-fit: cover;
}

.brand-name {
  font-family: "Bodoni Moda", serif;
  /* font-size: 2.4rem; */
  font-size: 2.8rem;
}

.brand-sub {
  font-size: 0.75rem;
  /* font-size: 1.2rem; */
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.nav a.is-active {
  color: var(--accent);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-mobile {
  display: none;
  position: relative;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(2, 8, 10, 0.55);
  color: var(--ink);
}

.menu-toggle img {
  width: 22px;
  height: auto;
  border-radius: 0;
  display: block;
  filter: brightness(1.2);
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.menu-toggle:hover img {
  opacity: 1;
  transform: translateY(-1px);
  filter: brightness(1.3);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-menu {
  position: absolute;
  right: 0;
  left: auto;
  top: calc(100% + 0.5rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 240px;
  margin-left: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
  z-index: 30;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a[role="menuitem"].is-active {
  color: var(--accent);
  background: rgba(208, 139, 90, 0.12);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.nav-mobile.open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  max-height: 460px;
  pointer-events: auto;
}

.mobile-cta {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem 1rem 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--bg-accent);
}

.mobile-cta .btn {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  /* letter-spacing: 0.28em; */
  /* font-size: 0.75rem; */
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  /* font-size: clamp(2.5rem, 3.2vw, 4rem); */
  font-size: 1.6rem;
  color: var(--ink);
}

.lead {
  font-size: 1.05rem;
}

.lead b{
    color: #FFFFFF;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.hero-info {
  display: grid;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  font-size: 0.92rem;
}

.hero-info span {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-info strong {
  font-weight: 600;
  color: var(--ink);
}

.hours-block p {
  margin: 0;
  line-height: 1.45;
}

.hours-block p:first-of-type {
  margin-bottom: 0.2rem;
  font-weight: 600;
  color: var(--ink);
}

.hours-block p + p {
  position: relative;
  margin-top: 0.2rem;
  padding-left: 0.9rem;
  color: var(--muted);
}

.hours-block p + p::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  touch-action: pan-y;
  background: #081214;
}

.hero-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.hero-slide {
  min-width: 100%;
}

.hero-slide img {
  height: 520px;
  border-radius: 0;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 241, 236, 0.24);
  border-radius: 999px;
  background: rgba(11, 21, 23, 0.75);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.hero-carousel-btn:hover {
  background: rgba(11, 21, 23, 0.92);
  transform: translateY(-50%) scale(1.03);
}

.hero-carousel-btn.prev {
  left: 0.85rem;
}

.hero-carousel-btn.next {
  right: 0.85rem;
}

.hero-note {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.section {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 420px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.about-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-card h3 {
  margin-bottom: 1rem;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  background: var(--bg-accent);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* .menu-section {
  background: var(--bg-accent);
} */

.about-section{
    background: var(--bg-accent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.price-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 230px;
}

.price-card.highlight {
  background: #050b0d;
  color: var(--ink);
}

.price-card.highlight p,
.price-card.highlight .price-note {
  color: rgba(244, 241, 236, 0.7);
}

.price {
  font-size: 2.1rem;
  font-family: "Bodoni Moda", serif;
  margin: 0.6rem 0;
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--accent);
  font-weight: 500;
}

.menu-preview-text {
  margin-top: 1.25rem;
  text-align: center;
}

.menu-preview-text p {
  margin: 0;
}

.menu-preview-text strong {
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-grid img {
  height: 220px;
  border-radius: 18px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.event-tags span {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  background: var(--card);
}

.events-image img {
  height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit-section {
  background: var(--bg-accent);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.visit-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.2rem;
}

.visit-card span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.visit-card strong {
  font-weight: 600;
}

.visit-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.visit-image {
  display: flex;
  align-items: center;
}

.visit-image img,
.visit-image iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .nav {
    flex-wrap: wrap;
  }

  .about-grid,
  .price-grid,
  .events-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide img {
    height: 460px;
  }

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

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: 58px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 40;
  }

  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0.6rem 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-sub {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    margin-right: 0.6rem;
  }

  .menu-toggle img {
    width: 18px;
    height: auto;
  }

  .menu-toggle svg {
    width: 18px;
    height: 18px;
  }

  .nav {
    display: none;
  }

  .nav-mobile {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 60vw;
    max-width: 60vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-bottom: none;
    overflow-y: auto;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }

  .nav-mobile.open .mobile-menu {
    transform: translateX(0);
    visibility: visible;
    max-height: 100dvh;
    pointer-events: auto;
    transition: transform 0.3s ease;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-info {
    font-size: 0.85rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gallery-grid img,
  .events-image img,
  .visit-image img,
  .visit-image iframe,
  .hero-slide img {
    height: 300px;
  }

  .hero-carousel-btn {
    display: none;
  }

}

