

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth;}

:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-hover: #1b1b1b;
  --gold: #d4af37;
  --text: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --border: #222;
  --gold-shadow: rgba(212, 175, 55, .25);
  --gold-border: rgba(212, 175, 55, .25);
  --gold-light: rgba(212, 175, 55, .35);
  --serif: "Cormorant Garamond", serif;
  --muted: rgba(245, 241, 232, 0.6);
  --gold-soft: rgba(212, 175, 55, 0.35);
  --gold-faint: rgba(212, 175, 55, 0.15);
  --transition: .35s ease;
  --section-space: 70px;
  --container-width: 1200px;
  --shadow: 0 15px 40px rgba(0, 0, 0, .3);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  
}

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


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

/* NAVBAR */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 60px;
  z-index: 1000;
  transition: transform .35s ease, background .35s ease, padding .35s ease;
}

.navbar.hide { transform: translateY(-100%); }
.navbar.scrolled {
  background: rgba(11, 11, 11, .88);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .5px;
  position: relative;
  transition: .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: .35s ease;
}
.nav-links a:hover::after { width: 100%; }

.logo {
  font-family: var(--serif);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--gold);
  text-decoration: none;
  transition: color .35s ease, letter-spacing .35s ease;
}
.logo:hover { color: #f0c75e; letter-spacing: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  transition: border-color 0.3s ease;
}

.nav-toggle:hover {
  border-color: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.35s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background:
        radial-gradient(circle at top,
        rgba(212,175,55,.08),
        transparent 40%),
        #0b0b0b;
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .3s;
  position:relative;
    display:inline-block;
    transition:.35s ease;
}

.mobile-menu a:hover {
    color:var(--gold);
    transform:translateX(8px);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 30px;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 4px;
  opacity: .6;
}

.mobile-menu li{
    position: relative;
    padding-bottom: 18px;
    opacity:0;
    transform:translateY(20px);
}

.mobile-menu li:not(:last-child)::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:40px;
    height:1px;
    background:rgba(212,175,55,.25);
}
.mobile-menu.open li{
    animation:menuFade .6s forwards;
}

.mobile-menu.open li:nth-child(1){animation-delay:.1s;}
.mobile-menu.open li:nth-child(2){animation-delay:.18s;}
.mobile-menu.open li:nth-child(3){animation-delay:.26s;}
.mobile-menu.open li:nth-child(4){animation-delay:.34s;}
.mobile-menu.open li:nth-child(5){animation-delay:.42s;}
.mobile-menu.open li:nth-child(6){animation-delay:.5s;}

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

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}
.video-vb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9) contrast(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.45) 50%, rgba(0,0,0,.75));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1.2s ease;
}

.hero h1 {
 font-size:2.8rem;
  letter-spacing:3px;
  font-weight: 300;
  line-height: 1.2;
  font-family: var(--serif);
  margin: 10px 0;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin: 15px auto;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .85rem;
  cursor: pointer;
  transition: all .35s ease;
}
.btn:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,.25);
}
.btn-filled { background: var(--gold); color: #111; }
.btn-filled:hover { background: transparent; color: var(--gold); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold);
}
.scroll-indicator span {
  font-size: .75rem;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.scroll-line {
  width: 1px; height: 60px;
  background: var(--gold-light);
  position: relative;
}
.scroll-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMove 2s infinite ease-in-out;
}
@keyframes scrollMove {
  0%   { top: 0;   opacity: 1; }
  50%  { top: 45px; opacity: .4; }
  100% { top: 0;   opacity: 1; }
}

/* ABOUT  */
.about {
  padding: calc(var(--section-space) * 2) 10% var(--section-space);
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.about-image-frame {
  position: relative;
  overflow: hidden;
}
.about-image-frame::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
  transition: all .4s ease;
}
.about-image-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform .6s ease;
}
.about-image-frame:hover img { transform: scale(1.05); filter: saturate(1.05); }
.about-image-frame:hover::after { inset: 8px -8px -8px 8px; }

.about-content { padding-top: 40px; }
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 30px;
}
.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
}
.about-body p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 480px;
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0;
  padding: 30px 0;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.about-signature { display: flex; flex-direction: column; gap: 4px; }
.signature-name {
  font-family: 'Allura', cursive;
  font-size: 2.6rem;
  line-height: 1;
}
.signature-title {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}

/*  EXPERIENCES */
.experiences {
  padding: var(--section-space) 10%;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.experiences::before {
  content: "SERENAD";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 18px;
  font-weight: 600;
  color: rgba(212,175,55,.03);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.experience-header, .card-row { position: relative; z-index: 1; }
.experience-header { margin-bottom: 50px; }
.experience-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.experience-header p {
  color: var(--text-light);
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 30px;
}

.card-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.flip-card {
  width: 280px;
  height: 360px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform .35s ease;
}
.flip-card:hover { transform: translateY(-10px); }
.flip-inner {
  width: 100%; height: 100%;
  position: relative;
  transition: transform .8s;
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
  overflow: hidden;
  background: var(--surface-hover);
  border: 2px solid var(--gold-border);
  border-radius: 18px;
}
.flip-card:hover .flip-front,
.flip-card:hover .flip-back {
  box-shadow: 0 18px 45px rgba(0,0,0,.45), 0 0 25px rgba(212,175,55,.18);
}
.flip-front img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.flip-card:hover img { transform: scale(1.08); }
.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15), transparent);
}
.card-overlay h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
}
.card-overlay p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
  margin-top: 6px;
}
.flip-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}
.flip-back h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}
.flip-back p {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 220px;
  margin: 10px auto;
}
.experience-tag {
  margin-top: 10px;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .8;
}

/* MENU */
.menu {
  background: var(--bg);
  padding: var(--section-space) 10%;
}
.menu-header { text-align: center; }
.menu-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 6px;
  text-transform: uppercase;
}
.menu-header p {
  color: var(--text-light);
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 20px;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
  padding: 12px 0;
  max-width: 850px;
  margin: 0 auto 60px;
}
.tab {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 12px 22px;
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .35s ease, transform .35s ease, letter-spacing .35s ease;
}
.tab:hover { color: var(--gold); transform: translateY(-2px); }
.tab.active { color: var(--gold); position: relative; letter-spacing: 4px; }
.tab.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  transform: translateX(-50%);
  width: 35px; height: 2px;
  border-radius: 5px;
  background: var(--gold);
}

.menu-content { position: relative; }
.menu-section { display: none; opacity: 0; }
.menu-section.active { display: block; animation: fadeMenu .6s ease forwards; }
@keyframes fadeMenu {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.menu-image {
  flex: 1.1;
  overflow: hidden;
  border-radius: 10px;
}
.menu-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  transition: transform .7s ease, filter .7s ease;
}
.menu-image:hover img { transform: scale(1.05); filter: brightness(1.05); }
.menu-section.active .menu-image { animation: imageReveal .8s ease; }
@keyframes imageReveal {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.menu-items { flex: .9; padding-top: 10px; }
.menu-items h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 25px;
}
.item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(212,175,55,.08);
  transition: padding-left .35s ease, background .35s ease;
}
.item:last-child { border-bottom: none; }
.item:hover { padding-left: 10px; background: rgba(212,175,55,.03); }
.item:hover h4 { color: var(--gold); }
.item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.item h4::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted rgba(212,175,55,.35);
  order: 2;
}
.item h4 span {
  order: 3;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 500;
  transition: .3s;
}
.item:hover h4 span { transform: scale(1.08); }
.item p {
  margin-top: 8px;
  line-height: 1.7;
  color: var(--muted);
  font-size: .9rem;
  font-style: italic;
  max-width: 90%;
}

.menu-section.active .menu-items { animation: textReveal .8s ease; }
@keyframes textReveal {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* SIGNATURE */
.signature { padding: var(--section-space) 10%; background: var(--bg); }
.signature-header { text-align: center; margin-bottom: 50px; }
.signature-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 6px;
  text-transform: uppercase;
}
.signature-header p {
  color: var(--text-light);
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 30px;
}
.signature-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.signature-scroll::-webkit-scrollbar { display: none; }

.signature-card {
  min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: .3s ease;
  position: relative;
}
.signature-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.signature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: .4s;
}
.signature-card:hover::before { width: 100%; }
.signature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .5s ease;
}
.signature-card:hover img { transform: scale(1.08); }
.signature-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  padding: 18px 18px 0;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
}
.rating { color: var(--gold); font-size: .95rem; letter-spacing: 3px; }
.price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.dish-tag {
  display: inline-block;
  margin: 10px 18px 0;
  padding: 5px 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 50px;
  color: var(--gold);
  background: rgba(212,175,55,.06);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .3s;
}
.signature-card:hover .dish-tag {
  background: rgba(212,175,55,.12);
  border-color: var(--gold);
}

.reveal-card { opacity: 0; transform: translateY(40px); }
.reveal-card.show { animation: cardReveal .8s ease forwards; }
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* REVIEWS */
.reviews { padding: var(--section-space) 10%; background: var(--bg); }
.reviews-header { text-align: center; margin-bottom: 70px; }
.reviews-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin: 20px 0;
}
.rating-line {
  display: inline-flex;
  gap: 12px;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.rating-line .dot { opacity: .4; }
.rating-line .score { color: var(--gold); }

.reviews-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
  align-items: center;
}
.reviews-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 12px;
}
.image-caption {
  margin-top: 18px;
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
}

.review-card {
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  padding: 50px 40px;
  border: 1px solid rgba(212,175,55,.10);
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}
.quote-mark {
  position: absolute;
  top: -40px; left: 30px;
  color: rgba(212,175,55,.06);
  font-size: 8.5rem;
  font-family: var(--serif);
  line-height: 1;
}
.reviews-slider { position: relative; min-height: 280px; }
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: all .6s ease;
  pointer-events: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.stars { color: var(--gold); margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.9;
  margin-bottom: 30px;
}
.testimonial-author { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.author { font-family: var(--serif); }
.occasion {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.review-controls {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.review-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: .3s;
}
.review-btn:hover { background: var(--gold); color: #111; }
.review-dots { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.review-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: .3s;
}
.review-dots .active { background: var(--gold); }

/* GALLERY */
.gallery { padding: var(--section-space) 10%; background: var(--bg); }
.gallery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.gallery-eyebrow {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 20px;
}
.gallery-header p {
  color: var(--text-light);
  line-height: 1.9;
  max-width: 560px;
  margin: auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 20px;
}
.restaurant { grid-column: 1 / span 8;  grid-row: span 4; }
.dj         { grid-column: 9 / span 4;  grid-row: span 4; }
.toast      { grid-column: 1 / span 7;  grid-row: span 3; }
.cocktail   { grid-column: 8 / span 5;  grid-row: span 3; }
.wine       { grid-column: 1 / span 5;  grid-row: span 3; }
.food       { grid-column: 6 / span 3;  grid-row: span 3; }
.dining     { grid-column: 9 / span 4;  grid-row: span 3; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
  margin: 0;
}
.gallery-item.reveal { opacity: 1; transform: translateY(0); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter .8s ease;
  filter: saturate(.95) contrast(1.02) brightness(.97);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity .45s ease;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,175,55,0);
  transition: border-color .45s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
  z-index: 3;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { border-color: rgba(212,175,55,.7); }
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.88); }

@media (hover: hover) {
  .gallery-grid:hover .gallery-item { opacity: .45; }
  .gallery-grid:hover .gallery-item:hover { opacity: 1; }
}

/* RESERVATION */
.reservation { padding: 6rem 8%; background: var(--bg); }
.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.reservation-image { overflow: hidden; border-radius: 20px; }
.reservation-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform .5s ease;
}
.reservation-image:hover img { transform: scale(1.05); }

.reservation-content {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,.15);
}
.reservation-eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  margin-bottom: 1rem;
}
.reservation-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-weight: 300;
}
.reservation-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.reservation-form input,
.reservation-form textarea,
.reservation-form select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: .3s ease;
}
.reservation-form select { cursor: pointer; }
.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.reservation-note {
  margin-top: .5rem !important;
  color: var(--text-light);
  font-size: .85rem;
  line-height: 1.6;
}
.reservation-note strong { color: var(--gold); }

.reservation-form button {
  margin-top: .5rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: var(--gold);
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s ease;
}
.reservation-form button:hover { transform: translateY(-3px); opacity: .9; }

.reservation-success {
  display: none;
  opacity: 0;
  text-align: center;
  padding: 3rem 0;
  transition: opacity .5s ease;
}
.reservation-success.show { display: block; opacity: 1; }
.success-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.reservation-success h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: .8rem;
  font-family: var(--serif);
}
.reservation-success p { color: var(--text-light); font-style: italic; }

.reservation-form input[type="date"]::-webkit-calendar-picker-indicator,
.reservation-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(76%) sepia(44%) saturate(650%) hue-rotate(5deg) brightness(96%) contrast(90%);
  cursor: pointer;
}

/* CONTACT */
.contact { padding: 6rem 8%; background: var(--bg); }
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
}
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin: 1rem 0;
}
.contact > .contact-container > .contact-info-wrap > p {
  color: var(--text-light);
  line-height: 1.8;
}
.contact-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(25px);
  transition: .6s ease;
  align-items: flex-start;
}
.contact-item.show { opacity: 1; transform: translateY(0); }
.contact-icon {
  width: 55px; height: 55px;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .3s ease;
  font-size: 1.2rem;
}
.contact-item:hover .contact-icon {
  background: rgba(212,175,55,.12);
  border-color: var(--gold);
}
.contact-item h4 { margin-bottom: .4rem; color: var(--gold); font-weight: 500; }
.contact-item p { color: var(--text-light); line-height: 1.7; }

.contact-map {
  height: 620px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.15);
  transition: .4s ease;
}
.contact-map:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,.35); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg); }

/* FOOTER */
.footer {
  background: #080808;
  border-top: 1px solid rgba(212,175,55,.1);
  padding-top: 4rem;
}
.footer-container {
  width: min(1200px, 90%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--gold);
}
.footer-brand p { color: var(--text-light); margin-top: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .8rem; }
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 45px; height: 45px;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: .85rem;
  transition: .3s;
}
.footer-social a:hover { background: var(--gold); color: #111; }

.footer-bottom {
  margin-top: 3rem;
  padding: 2rem 8%;
  border-top: 1px solid rgba(212,175,55,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--text-light); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* SCROLL REVEAL */
.reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: all .8s ease;
}
.reveal-left  { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }
.reveal-up    { transform: translateY(50px); }
.reveal       { opacity: 1; transform: translate(0, 0); }


/* RESPONSIVE — TABLET / SMALL DESKTOP */
  


@media (max-width: 1300px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }
  

  .navbar { padding: 20px 40px; }
  .about, .experiences, .menu, .signature, .reviews, .gallery { padding-left: 6%; padding-right: 6%; }
  .reservation, .contact { padding: 5rem 6%; }
  .menu-layout { gap: 40px; }
  .menu-image img { height: 500px; }
  .about-image-frame img { height: 520px; }
  .reviews-layout { gap: 40px; }
  .reviews-image img { height: 520px; }
}


/*  RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  /* Nav */
  .navbar { padding: 18px 22px; }
  .navbar.scrolled { padding: 14px 22px; }
  .logo {
    position: static;
    transform: none;
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin: 0 auto;
  }

  /* Hero */
  .hero h1 { letter-spacing: 4px; }
  .hero p { font-size: 1rem; padding: 0 10px; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 280px; }
  .btn { width: 100%; text-align: center; }
  .scroll-indicator { bottom: 20px; }
  .scroll-line { height: 40px; }

  /* About */
  .about { padding: 100px 6% 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-frame img { height: 380px; }
  .about-content { padding-top: 0; }
  .about-stats { gap: 20px; margin: 30px 0; padding: 20px 0; }
  .stat-num { font-size: 1.7rem; }
  .signature-name { font-size: 2.2rem; }

  /* Experiences */
  .experiences { padding: 60px 6%; }
  .flip-card { width: 100%; max-width: 320px; }

  /* Menu */
  
  .menu { padding: 60px 6%; }
  .menu-tabs { gap: 4px; padding: 10px 0; }
  .tab { padding: 8px 12px; font-size: .8rem; letter-spacing: 2px; }
  .tab.active { letter-spacing: 3px; }
  .menu-layout { flex-direction: column; gap: 30px; }
  .menu-image img { height: 280px; }
  .menu-items { padding-top: 0; }
  .menu-items h3 { font-size: 1.6rem; margin-bottom: 15px; }
  .item h4 { font-size: 1.1rem; gap: 8px; flex-wrap: wrap; }
  .item h4::after { min-width: 20px; }
  .item h4 span { font-size: 1.05rem; }
  .item p { max-width: 100%; font-size: .85rem; }
  .menu-image,
  .menu-items {
  flex: 1 1 auto;
  width: 100%;
}

  /* Signature */
  .signature { padding: 60px 6%; }
  .signature-scroll { gap: 18px; }
  .signature-card { min-width: 260px; }
  .signature-card img { height: 190px; }

  /* Reviews */
  .reviews { padding: 60px 6%; }
  .reviews-layout { grid-template-columns: 1fr; gap: 40px; }
  .reviews-image img { height: 320px; }
  .review-card { padding: 40px 25px; }
  .quote-mark { font-size: 6rem; top: -30px; left: 15px; }
  .reviews-slider { min-height: 340px; }

  /* Gallery */
  .gallery { padding: 60px 6%; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 12px;
  }
  .restaurant, .dj, .toast, .cocktail, .wine, .food, .dining {
    grid-column: auto;
    grid-row: span 1;
  }

  /* Reservation */
  .reservation { padding: 60px 6%; }
  .reservation-container { grid-template-columns: 1fr; gap: 30px; }
  .reservation-image { order: -1; }
  .reservation-image img { height: 320px; }
  .reservation-content { padding: 1.8rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact { padding: 60px 6%; }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { height: 340px; }

  /* Footer */
  .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-links { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.5rem 6%; }
}

/*  EXTRA SMALL */
@media (max-width: 420px) {
  .hero h1 { letter-spacing: 3px; }
  .logo { font-size: 1.3rem; letter-spacing: 4px; }
  .menu-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab { flex-shrink: 0; }
  .about-quote { font-size: 1.4rem; }
}

/*  LANDSCAPE PHONES */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100vh; padding: 80px 6% 40px; }
  .hero h1 { font-size: 2.2rem; letter-spacing: 3px; margin-bottom: 10px; }
  .hero p { font-size: .9rem; margin-bottom: 15px; }
  .hero-buttons { flex-direction: row; gap: 10px; }
  .btn { padding: 10px 20px; font-size: .8rem; }
  .scroll-indicator { display: none; }
  .navbar { padding: 10px 22px; }
}
