*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A96E;
  --gold-light: #E8C98A;
  --cream: #F5EFE6;
  --dark: #0D0D0D;
  --mid: #1A1A1A;
  --charcoal: #2C2C2C;
  --text-light: #B0A89A;
  --white: #FFFFFF;
}
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--dark); color: var(--cream); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); }
.logo { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2rem; color: var(--gold); letter-spacing: 0.02em; text-decoration: none; cursor: pointer; }
.logo img { width: 80px; height: 80px; object-fit: contain; }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); transition: color 0.3s; cursor: pointer; }
.nav-links a:hover { color: var(--gold); }
.nav-icons { display: flex; gap: 1.2rem; align-items: center; }
.nav-icons a { color: var(--cream); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; }
.nav-icons a:hover { color: var(--gold); }
.nav-icons svg { width: 20px; height: 20px; }



/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%), url('images/1.jpeg') center/cover no-repeat;
  transform: scale(1.04); animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.00); } }
.hero-bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-script { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(2.8rem, 6vw, 5rem); color: var(--gold); line-height: 1; letter-spacing: 0.02em; text-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.hero-title { font-size: clamp(1.4rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--white); margin-top: 0.2rem; }
.hero-divider { display: flex; align-items: center; gap: 1rem; margin: 0.8rem 0; }
.hero-divider span { display: block; width: 60px; height: 1px; background: var(--gold); }
.hero-divider em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.85rem; letter-spacing: 0.18em; color: var(--gold-light); }
.btn {
  display: inline-block; margin-top: 1.4rem; padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold); color: var(--white); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, color 0.3s; cursor: pointer; background: transparent;
  font-family: 'Montserrat', sans-serif;
}
.btn:hover { background: var(--gold); color: var(--dark); }
.btn-filled { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-filled:hover { background: transparent; color: var(--gold); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint svg { width: 28px; height: 28px; color: var(--gold); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION COMMONS ── */
section { padding: 6rem 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-label { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gold); display: block; line-height: 1; }
.section-title { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white); margin-top: 0.15rem; margin-bottom: 1.2rem; }
.section-star { display: block; text-align: center; font-size: 1.1rem; color: var(--gold); margin: 1.5rem 0; opacity: 0.7; }

/* ── STORY ── */
.story { background: var(--dark); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.story-text { padding-top: 1rem; }
.story-text p { font-size: 0.88rem; line-height: 1.9; color: var(--text-light); margin-bottom: 1.2rem; }
.story-images { display: flex; flex-direction: column; gap: 1.5rem; }
.story-images img { width: 100%; height: 280px; object-fit: cover; display: block; }
.story-images img:first-child { height: 220px; }

/* ── MENU ── */
.menu-section { background: var(--mid); }
.menu-section .container { text-align: center; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.menu-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.menu-card:hover img { transform: scale(1.08); }
.menu-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem 1.5rem; }
.menu-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 0.3rem; }
.menu-card-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ── SERVICES ── */
.services-section { background: var(--dark); }
.services-section .container { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: rgba(201,169,110,0.12); }
.service-block { background: var(--mid); padding: 2.8rem 2rem; text-align: left; transition: background 0.3s; position: relative; overflow: hidden; }
.service-block::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; }
.service-block:hover::before { width: 100%; }
.service-block:hover { background: #1f1f1f; }
.service-icon { width: 2.2rem; height: 2.2rem; margin-bottom: 1.2rem; display: block; color: var(--gold); }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.85; font-weight: 300; }
.service-tag { display: inline-block; margin-top: 1.2rem; font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,0.35); padding: 0.3rem 0.75rem; }

/* ── VIEW ── */
.view-section { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.view-bg { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('images/3.jpeg') center/cover no-repeat; }
.view-content { position: relative; z-index: 2; max-width: 680px; padding: 0 2rem; }
.view-content p { font-size: 0.88rem; line-height: 1.9; color: var(--text-light); margin: 1.5rem 0 2.2rem; }

/* ── GALLERY SLIDER ── */
.gallery-section { background: var(--mid); }
.gallery-section .container { text-align: center; }
.gallery-intro { font-size: 0.82rem; color: var(--text-light); line-height: 1.9; max-width: 500px; margin: 0.6rem auto 0; font-weight: 300; }
.slider-wrap { position: relative; margin-top: 3rem; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.slide { min-width: calc(33.333% - 2px); margin-right: 3px; position: relative; overflow: hidden; aspect-ratio: 3/4; flex-shrink: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s, filter 0.4s; filter: grayscale(15%); }
.slide:hover img { transform: scale(1.06); filter: grayscale(0%); }
.slide-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; background: var(--charcoal); border: 1px dashed rgba(201,169,110,0.2); cursor: pointer; text-decoration: none; color: inherit; }
.slide-placeholder svg { width: 2.4rem; height: 2.4rem; color: var(--gold); opacity: 0.7; }
.slide-placeholder p { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border: 1px solid rgba(201,169,110,0.4);
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 10;
  transition: border-color 0.3s, background 0.3s; color: var(--gold);
}
.slider-btn:hover { border-color: var(--gold); background: rgba(201,169,110,0.15); }
.slider-btn svg { width: 20px; height: 20px; }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--charcoal); border: 1px solid rgba(201,169,110,0.3); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.gallery-cta { margin-top: 2.5rem; }
.gallery-cta small { display: block; font-size: 0.72rem; color: var(--text-light); margin-bottom: 1rem; letter-spacing: 0.08em; }

/* ── UPCOMING EVENTS ── */
.events-section { background: var(--dark); }
.events-section .container { text-align: center; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: rgba(201,169,110,0.08); }
.event-card {
  background: var(--mid); padding: 0; overflow: hidden; position: relative;
  transition: transform 0.3s; cursor: pointer;
}
.event-card:hover { transform: translateY(-4px); }
.event-card-img { position: relative; height: 220px; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.event-card:hover .event-card-img img { transform: scale(1.06); }
.event-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--dark);
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; font-weight: 600;
}
.event-date-pill {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
  border: 1px solid rgba(201,169,110,0.3); padding: 0.5rem 0.8rem; text-align: center;
}
.event-date-pill .day { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); line-height: 1; font-style: italic; }
.event-date-pill .month { font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }
.event-card-body { padding: 1.6rem 1.8rem 2rem; text-align: left; }
.event-type { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.event-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.4rem; }
.event-artist { font-size: 0.75rem; color: var(--text-light); font-weight: 300; margin-bottom: 0.8rem; }
.event-meta { display: flex; gap: 1.2rem; font-size: 0.65rem; color: var(--text-light); align-items: center; margin-bottom: 1.2rem; }
.event-meta svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.event-meta span { display: flex; align-items: center; gap: 0.3rem; }
.event-ticket-btn {
  display: inline-block; padding: 0.55rem 1.4rem; border: 1px solid rgba(201,169,110,0.35);
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; transition: all 0.3s; cursor: pointer; background: transparent; font-family: 'Montserrat', sans-serif;
}
.event-ticket-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.events-more { margin-top: 2.5rem; text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--mid); }
.testimonials-section .container { text-align: center; }
.testi-slider { position: relative; overflow: hidden; margin-top: 3rem; }
.testi-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testi-slide { min-width: 100%; padding: 0 1rem; }
.testi-card {
  max-width: 780px; margin: 0 auto;
  background: var(--dark); border: 1px solid rgba(201,169,110,0.12);
  padding: 3.5rem 3rem; position: relative;
}
.testi-quote-icon { position: absolute; top: -1px; left: 2.5rem; }
.testi-quote-icon svg { width: 48px; height: 48px; color: var(--gold); opacity: 0.25; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.15rem, 2.5vw, 1.5rem); color: var(--cream); line-height: 1.7; margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); border: 1px solid rgba(201,169,110,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); font-style: italic; }
.testi-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: var(--white); }
.testi-location { font-size: 0.62rem; color: var(--text-light); margin-top: 0.2rem; }
.testi-stars { color: var(--gold); font-size: 0.8rem; margin-top: 0.2rem; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.testi-controls button { background: none; border: 1px solid rgba(201,169,110,0.25); color: var(--gold); width: 40px; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.testi-controls button:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); }
.testi-controls button svg { width: 16px; height: 16px; }
.testi-count { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.1em; }

/* ── HAPPENINGS ── */
.happenings { background: var(--dark); }
.happenings .container { text-align: center; }
.happenings-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; margin-top: 3rem; }
.hap-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.hap-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.5s; display: block; filter: grayscale(20%); }
.hap-item:hover img { transform: scale(1.1); filter: grayscale(0%); }
.hap-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: background 0.4s; gap: 0.5rem; }
.hap-item:hover .hap-overlay { background: rgba(201,169,110,0.2); }
.hap-overlay svg { width: 2.2rem; height: 2.2rem; color: var(--white); opacity: 0; transform: scale(0.7); transition: opacity 0.3s, transform 0.3s; }
.hap-overlay span { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); opacity: 0; transition: opacity 0.3s; }
.hap-item:hover .hap-overlay svg,
.hap-item:hover .hap-overlay span { opacity: 1; transform: scale(1); }

/* ── RESERVATIONS ── */
.reservations { background: var(--mid); }
.reservations .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.res-text p { font-size: 0.88rem; line-height: 1.9; color: var(--text-light); margin-bottom: 2rem; }
.res-text p a { color: var(--gold); text-decoration: none; }
.res-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.form-field input, .form-field select {
  background: transparent; border: none; border-bottom: 1px solid var(--charcoal);
  padding: 0.6rem 0; color: var(--cream); font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; outline: none; transition: border-color 0.3s; -webkit-appearance: none;
}
.form-field input::placeholder { color: var(--charcoal); }
.form-field input:focus, .form-field select:focus { border-bottom-color: var(--gold); }
.form-field select option { background: var(--mid); }

/* ── OPENING HOURS ── */
.hours-section { background: var(--dark); }
.hours-section .container { text-align: center; }
.hours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 3rem; background: rgba(201,169,110,0.08); }
.hours-card { background: var(--mid); padding: 2.2rem 1.5rem; transition: background 0.3s; }
.hours-card:hover { background: #1f1f1f; }
.hours-day { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.hours-time { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.35rem; color: var(--white); }
.hours-note { font-size: 0.65rem; color: var(--text-light); margin-top: 0.4rem; font-weight: 300; }
.hours-closed { color: var(--text-light); font-size: 1rem; }

/* ── LOCATION STRIP ── */
.location-strip { background: var(--gold); padding: 1.6rem 2rem; text-align: center; }
.location-strip p { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dark); font-weight: 600; }
.location-strip a { color: var(--dark); text-decoration: underline; }
.location-strip svg { width: 14px; height: 14px; display: inline-block; vertical-align: middle; margin-right: 0.3rem; }

/* ── FOOTER ── */
footer { background: #080808; border-top: 1px solid rgba(201,169,110,0.15); text-align: center; padding: 4rem 2rem 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.8rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.footer-tagline { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2rem; }
.footer-icons { display: flex; justify-content: center; gap: 1.8rem; margin-bottom: 3rem; align-items: center; }
.footer-icons a { color: var(--text-light); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; }
.footer-icons a:hover { color: var(--gold); }
.footer-icons svg { width: 22px; height: 22px; }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 2rem; }
.footer-info { font-size: 0.72rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-info a { color: var(--gold); text-decoration: none; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color 0.3s; cursor: pointer; }
.footer-links a:hover { color: var(--gold); }

/* ── ABOUT PAGE ── */
.about-hero { position: relative; height: 65vh; min-height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.9) 100%), url('images/1.jpeg') center/cover no-repeat; }
.about-hero-content { position: relative; z-index: 2; animation: fadeUp 1s ease 0.2s both; }
.about-hero-content .section-label { font-size: clamp(3rem, 7vw, 5.5rem); }
.about-hero-sub { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); margin-top: 1rem; }
.about-divider { width: 50px; height: 1px; background: var(--gold); margin: 1.2rem auto; }
.about-story { background: var(--dark); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-story-text .section-label { font-size: 2.5rem; }
.about-story-text p { font-size: 0.88rem; line-height: 1.9; color: var(--text-light); margin-bottom: 1.2rem; font-weight: 300; }
.about-stats { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 6rem; }
.about-stat { padding: 1.8rem 2rem; border: 1px solid rgba(201,169,110,0.15); background: var(--mid); }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 3rem; color: var(--gold); line-height: 1; }
.about-stat-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-top: 0.4rem; }
.about-values-section { background: var(--mid); }
.about-values-section .container { text-align: center; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: rgba(201,169,110,0.1); }
.about-value-card { background: var(--dark); padding: 2.5rem 2rem; text-align: left; border-top: 2px solid transparent; transition: border-color 0.3s; }
.about-value-card:hover { border-top-color: var(--gold); }
.about-value-icon { width: 2rem; height: 2rem; color: var(--gold); margin-bottom: 1rem; }
.about-value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.7rem; margin-top: 0.8rem; }
.about-value-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.85; font-weight: 300; }
.about-contact-section { background: var(--dark); }
.about-contact-section .container { text-align: center; }
.about-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 3rem; background: rgba(201,169,110,0.1); }
.about-contact-item { background: var(--mid); padding: 2.5rem 2rem; text-align: center; transition: background 0.3s; }
.about-contact-item:hover { background: #1f1f1f; }
.about-contact-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.about-contact-label svg { width: 14px; height: 14px; }
.about-contact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); text-decoration: none; display: block; transition: color 0.3s; font-style: italic; }
.about-contact-value:hover { color: var(--gold); }
.about-contact-sub { font-size: 0.72rem; color: var(--text-light); margin-top: 0.4rem; font-weight: 300; }
.about-socials-section { background: var(--mid); }
.about-socials-section .container { text-align: center; }
.social-row { display: flex; justify-content: center; gap: 1.2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.social-pill { display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1.6rem; border: 1px solid rgba(201,169,110,0.2); color: var(--text-light); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.12em; transition: all 0.3s; }
.social-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.06); }
.social-pill svg { width: 18px; height: 18px; }

/* ── CONTACT MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--mid); max-width: 560px; width: 90%; padding: 3.5rem 3rem;
  position: relative; border: 1px solid rgba(201,169,110,0.2);
  transform: translateY(30px); transition: transform 0.4s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; color: var(--text-light); cursor: pointer;
  transition: color 0.3s; display: flex; align-items: center;
}
.modal-close:hover { color: var(--gold); }
.modal-close svg { width: 22px; height: 22px; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.2rem; color: var(--gold); margin-bottom: 0.3rem; }
.modal-sub { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2rem; }
.modal-form { display: flex; flex-direction: column; gap: 1.2rem; }
.modal-divider { display: flex; align-items: center; gap: 1rem; margin: 0.5rem 0; }
.modal-divider span { flex: 1; height: 1px; background: rgba(201,169,110,0.15); }
.modal-divider em { font-size: 0.6rem; letter-spacing: 0.15em; color: var(--text-light); text-transform: uppercase; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.contact-option { display: flex; align-items: center; gap: 0.7rem; padding: 1rem; border: 1px solid rgba(201,169,110,0.2); color: var(--text-light); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.1em; transition: all 0.3s; }
.contact-option:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.05); }
.contact-option svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── WHATSAPP STICKY ── */
.wa-sticky { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; }
.wa-tooltip { position: absolute; right: 66px; top: 50%; transform: translateY(-50%); background: var(--mid); border: 1px solid rgba(201,169,110,0.2); color: var(--cream); font-size: 0.72rem; font-family: 'Montserrat', sans-serif; white-space: nowrap; padding: 0.5rem 1rem; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
.wa-sticky:hover .wa-tooltip { opacity: 1; }
.wa-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 18px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: transform 0.3s, box-shadow 0.3s; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,0.65); animation: none; }
.wa-btn svg { width: 28px; height: 28px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
.back-top { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(201,169,110,0.25); color: var(--gold); opacity: 0.7; cursor: pointer; transition: all 0.3s; background: none; margin-top: 1.5rem; }
.back-top:hover { opacity: 1; border-color: var(--gold); }
.back-top svg { width: 20px; height: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .story-inner, .about-story-inner, .reservations .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid .menu-card:last-child { display: none; }
  .services-grid, .about-values-grid { grid-template-columns: 1fr 1fr; }
  .happenings-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-contact-grid { grid-template-columns: 1fr; }
  .about-stats { position: static; }
  .events-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .slide { min-width: calc(50% - 2px); }
  .contact-options { grid-template-columns: 1fr; }
  .modal-box { padding: 2.5rem 1.8rem; }
}
@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .happenings-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .about-values-grid { grid-template-columns: 1fr; }
  .slide { min-width: 100%; }
  .hours-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    z-index: 105;
  }
  .nav-links.mobile-open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }
}