:root {
  --navy: #101c4d;
  --navy-dark: #0a1338;
  --gold: #c9a24b;
  --gold-dark: #ad8636;
  --cream: #faf6ee;
  --ink: #1b1b1f;
  --gray: #666b78;
  --border: #e7e2d6;
  --radius: 14px;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

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

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

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 16px;
  color: var(--navy);
}
.section-title.center { text-align: center; }

.section-sub {
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 40px;
}
.section-sub.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); box-shadow: 0 8px 20px rgba(16,28,77,0.25); }

.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 20px rgba(201,162,75,0.35); }

.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
.logo img { height: 44px; border-radius: 6px; }

.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.main-nav a:hover { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,19,56,0.92) 0%, rgba(10,19,56,0.75) 45%, rgba(10,19,56,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 720px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* USP strip */
.usp-strip { background: var(--cream); padding: 56px 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.usp-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.usp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.usp-icon svg { width: 22px; height: 22px; }
.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.usp-card p { margin: 0; color: var(--gray); font-size: 0.95rem; }

/* Menu section */
.menu-section { padding: 96px 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
  margin-top: 24px;
}
.menu-category h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin: 0 0 16px;
}
.category-note {
  color: var(--gray);
  font-size: 0.88rem;
  margin: -8px 0 14px;
  font-style: italic;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.98rem;
}
.menu-list li span:first-child { white-space: nowrap; }
.menu-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  transform: translateY(-4px);
}
.menu-list .price {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.menu-cta { text-align: center; margin-top: 56px; }

/* About */
.about-section { background: var(--cream); padding: 96px 0; }
.about-centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 32px;
  border-radius: 2px;
}
.about-centered p { color: var(--gray); text-align: left; }

/* Hours */
.hours-section { padding: 96px 0; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table td:last-child { text-align: right; color: var(--gray); }
.hours-note { font-size: 0.85rem; color: var(--gray); margin-top: 14px; }
.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 340px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.85); padding: 64px 0 24px; }
.footer-logo { height: 40px; border-radius: 6px; margin-bottom: 12px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-display);
  margin: 0 0 14px;
}
.site-footer p { margin: 0 0 8px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { padding: 10px 18px; font-size: 0.85rem; }
  .hero { min-height: 560px; }
}
