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

:root {
  --navy: #0f1c3f;
  --navy-light: #1e2d5a;
  --navy-mid: #2d417d;
  --gold: #c8a44e;
  --gold-light: #d4af37;
  --gold-pale: #f5e6b8;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Typography ───────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 164, 78, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

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

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 28, 63, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 164, 78, 0.15);
  transition: background 0.3s var(--ease-smooth);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand-mark {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 8px;
  letter-spacing: 0.05em;
}

.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s var(--ease-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(200, 164, 78, 0.15);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.25s var(--ease-smooth);
}

.mobile-menu-link:hover { color: var(--gold); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 16, 38, 0.92) 0%,
    rgba(15, 28, 63, 0.85) 40%,
    rgba(30, 45, 90, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 160px;
}

.hero-card {
  max-width: 640px;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-accent {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
  max-width: 520px;
}

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

/* Floating stat cards */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.stat-card {
  background: var(--white);
  padding: 28px 36px;
  text-align: center;
  min-width: 180px;
  position: relative;
  pointer-events: all;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}

.stat-card-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 12px;
}

.stat-card-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.stat-card-sub {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .hero-stats { padding: 0 48px; }
  .stat-card { padding: 32px 48px; min-width: 220px; }
}

/* ── Section base ─────────────────────────────────────── */
.section {
  padding: 100px 0;
}

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

/* ── About ────────────────────────────────────────────── */
.about {
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .about-image { height: 560px; }
}

/* ── Menu ─────────────────────────────────────────────── */
.menu-section {
  background: var(--off-white);
}

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

.menu-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-500);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.menu-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 36px;
  transition: all 0.3s var(--ease-smooth);
}

.menu-category:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(15, 28, 63, 0.06);
  transform: translateY(-2px);
}

.menu-category-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
}

.menu-items { display: flex; flex-direction: column; gap: 14px; }

.menu-item-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.menu-item-desc {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 300;
}

.menu-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.menu-footer p {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Hours ────────────────────────────────────────────── */
.hours-section {
  background: var(--navy);
  padding: 80px 0;
}

.hours-card {
  border: 1px solid rgba(200, 164, 78, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.hours-card-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.hours-left {
  padding: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-title { margin-bottom: 16px; }

.hours-note {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 360px;
}

.hours-right {
  padding: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s var(--ease-smooth);
}

.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255, 255, 255, 0.03); }

.hours-day {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.hours-time {
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 400;
}

.hours-row--highlight .hours-day { color: var(--white); font-weight: 500; }
.hours-row--closed .hours-day { color: rgba(255, 255, 255, 0.35); }
.hours-row--closed .hours-time { color: rgba(255, 255, 255, 0.3); }

@media (min-width: 768px) {
  .hours-card-inner { grid-template-columns: 1fr 1fr; }
  .hours-left { border-bottom: none; border-right: 1px solid rgba(255, 255, 255, 0.06); }
}

/* ── Visit ────────────────────────────────────────────── */
.visit-section {
  background: var(--white);
}

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

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

.visit-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
}

.visit-detail-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.visit-detail-value {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.visit-detail-value a {
  color: var(--navy);
  border-bottom: 1px solid var(--gray-300);
  transition: all 0.2s var(--ease-smooth);
}

.visit-detail-value a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.visit-map-wrap {
  width: 100%;
}

.visit-map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
}

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

.map-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
}

.map-sublabel {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ── Contact ──────────────────────────────────────────── */
.contact-section {
  background: var(--off-white);
}

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

.contact-left p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 400px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.form-input {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease-smooth);
  outline: none;
  width: 100%;
}

.form-input:focus { border-color: var(--gold); }

.form-input::placeholder { color: var(--gray-300); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* ── CTA Strip ────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 20px 0;
  border-top: 1px solid rgba(200, 164, 78, 0.15);
}

.cta-strip-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-style: italic;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  padding: 40px 0;
  border-top: 1px solid rgba(200, 164, 78, 0.1);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--white);
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-address {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Reveal Animations ────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

  [data-reveal="true"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
}

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }
