/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1b2a;
  --navy-lt: #1b3a5c;
  --gold:    #d4a017;
  --gold-lt: #e8b830;
  --cream:   #f5f0e8;
  --white:   #ffffff;
  --gray:    #6b7280;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(13,27,42,.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography Helpers ─────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.gold { color: var(--gold); }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.btn--outline-light {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-light:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,.15);
  transition: background .3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.nav-logo-icon { width: 36px; height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.88) 0%, rgba(13,27,42,.6) 50%, rgba(13,27,42,.4) 100%);
}

.hero-geo {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-geo--tl {
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .25;
}
.hero-geo--br {
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  background: var(--navy-lt);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
}

.hero-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── About ──────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 450px; object-fit: cover; }

.about-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 120px;
  height: 120px;
  z-index: -1;
}
.about-accent svg { width: 100%; height: 100%; }

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-label {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ── Menu ───────────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.menu-geo {
  position: absolute;
  pointer-events: none;
}
.menu-geo--left {
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .08;
}
.menu-geo--right {
  bottom: -40px; right: -40px;
  width: 280px; height: 280px;
  background: var(--gold);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .06;
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.menu-header .section-title { color: var(--white); }
.menu-header p { color: rgba(255,255,255,.6); font-size: 1.1rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.menu-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,160,23,.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.menu-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.menu-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

.menu-card-body { padding: 32px; }

.menu-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--gold);
}
.menu-card-icon svg { width: 100%; height: 100%; }

.menu-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.menu-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.menu-card li {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  padding-left: 20px;
  position: relative;
}
.menu-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.menu-disclaimer {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}

/* ── Experience ─────────────────────────────────── */
.experience {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.experience-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exp-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.exp-card:hover { transform: translateY(-6px); }

.exp-card-img {
  height: 240px;
  overflow: hidden;
}
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.exp-card:hover .exp-card-img img { transform: scale(1.05); }

.exp-card-content { padding: 28px; }
.exp-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.exp-card-content p { color: var(--gray); font-size: .95rem; }

/* ── Visit ──────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.visit-geo {
  position: absolute;
  pointer-events: none;
}
.visit-geo--bl {
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: var(--gold);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  opacity: .08;
}
.visit-geo--tr {
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: var(--gold);
  clip-path: polygon(100% 0, 100% 0, 0 0);
  opacity: .06;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info .section-title { color: var(--white); }

.visit-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212,160,23,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.visit-detail-icon svg { width: 22px; height: 22px; }

.visit-detail strong {
  display: block;
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.visit-detail p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.6; }
.visit-detail a { color: var(--gold); transition: color .3s; }
.visit-detail a:hover { color: var(--gold-lt); }

.visit-hours {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  border: 1px solid rgba(212,160,23,.12);
}
.visit-hours h4 {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.visit-hours p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 4px; }

/* Form */
.visit-form-wrap {
  position: relative;
}

.visit-form-bg {
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: var(--radius);
  transform: translate(8px, 8px);
  z-index: 0;
}

.visit-form {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.visit-form h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy);
  transition: border-color .3s;
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  background: #ecfdf5;
  border-radius: 8px;
  color: #065f46;
  font-weight: 500;
  font-size: .95rem;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── CTA ────────────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-geo {
  position: absolute;
  pointer-events: none;
}
.cta-geo--1 {
  top: -40px; left: 10%;
  width: 160px; height: 160px;
  background: var(--navy);
  border-radius: 50%;
  opacity: .06;
}
.cta-geo--2 {
  bottom: -40px; right: 8%;
  width: 200px; height: 200px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .1;
}

.cta-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.cta p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p { color: rgba(255,255,255,.5); margin-top: 16px; font-size: .95rem; max-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-logo-icon { width: 36px; height: 36px; }

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .9rem; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact p { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: var(--gold); transition: color .3s; }
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ── Mobile Menu ────────────────────────────────── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,27,42,.97);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(212,160,23,.15);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about-grid,
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .about-stats { flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }

  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── Animations ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
