/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #faf9f7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Colors ── */
:root {
  --navy: #0f1d31;
  --navy-light: #1a2d47;
  --gold: #c8a45a;
  --gold-light: #d4b76e;
  --cream: #faf9f7;
  --warm-gray: #f0ece4;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --white: #ffffff;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 29, 49, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(15, 29, 49, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem;
  color: var(--white);
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(15, 29, 49, 0.88) 0%,
    rgba(15, 29, 49, 0.70) 50%,
    rgba(15, 29, 49, 0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 24px; text-align: center;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem); color: var(--white);
  margin-bottom: 24px; font-weight: 800;
}
.hero-headline .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s; letter-spacing: 0.01em;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,90,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy);
  margin-bottom: 20px;
}
.section-title .gold { color: var(--gold); }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 520px; }
.text-center { text-align: center; }
.section-header { margin-bottom: 60px; }

/* ── About ── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(15,29,49,0.15); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -30px;
  width: 200px; height: 200px; border-radius: 12px; overflow: hidden;
  border: 5px solid var(--white); box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--navy); color: var(--gold);
  padding: 12px 16px; border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(15,29,49,0.25);
}
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; }
.about-stats {
  display: flex; gap: 40px; margin-top: 36px; padding-top: 36px;
  border-top: 1px solid #e8e4dc;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Menu ── */
.menu { background: var(--cream); }
.menu-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu-tab {
  padding: 10px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-light); background: var(--white);
  border: 1.5px solid transparent; transition: all 0.25s;
}
.menu-tab:hover { color: var(--navy); border-color: var(--gold); }
.menu-tab.active {
  background: var(--navy); color: var(--gold); border-color: var(--navy);
}
.menu-grid { display: block; }
.menu-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px;
}
.menu-panel.active { display: grid; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 20px 24px; background: var(--white); border-radius: 12px;
  border: 1px solid #ece8e0; transition: box-shadow 0.2s, transform 0.2s;
}
.menu-item:hover { box-shadow: 0 8px 24px rgba(15,29,49,0.08); transform: translateY(-2px); }
.menu-item-info h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.menu-item-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.menu-item-price {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold); white-space: nowrap;
  background: rgba(200,164,90,0.1); padding: 4px 10px; border-radius: 20px;
}
.menu-note { text-align: center; margin-top: 32px; font-size: 0.85rem; color: var(--text-light); font-style: italic; }

/* ── Hours ── */
.hours { background: var(--white); }
.hours-card {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,29,49,0.1);
}
.hours-content {
  background: var(--navy); padding: 56px 48px; color: var(--white);
}
.hours-content .section-eyebrow { color: var(--gold); }
.hours-content .section-title { color: var(--white); }
.hours-grid { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: rgba(255,255,255,0.7); }
.hours-time { font-weight: 600; color: var(--white); }
.hours-row.highlight .hours-day { color: var(--gold); }
.hours-row.highlight .hours-time { color: var(--gold); }
.hours-map { min-height: 400px; }

/* ── Gallery ── */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item { border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { height: 100%; min-height: 400px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 100%; min-height: 240px; }
.gallery-item:not(.tall):not(.wide) img { height: 200px; }

/* ── Testimonials ── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--cream); padding: 36px; border-radius: 16px;
  border: 1px solid #ece8e0; position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: 0 12px 32px rgba(15,29,49,0.08); transform: translateY(-4px); }
.testimonial-quote { position: absolute; top: 20px; right: 24px; }
.testimonial-card p {
  font-size: 0.95rem; color: var(--text); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; font-family: 'Playfair Display', serif;
}
.testimonial-author span { font-size: 0.85rem; color: var(--text-light); }

/* ── CTA ── */
.cta {
  position: relative; height: 420px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
}
.cta-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 29, 49, 0.85);
}
.cta-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
  max-width: 640px;
}
.cta-content .section-title { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-detail {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.contact-detail svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 4px; }
.contact-detail p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.contact-detail a { color: var(--gold); font-weight: 600; transition: color 0.2s; }
.contact-detail a:hover { color: var(--navy); }

/* Form */
.contact-form-wrap {
  background: var(--white); padding: 40px; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15,29,49,0.08);
}
.contact-form h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.form-sub { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--navy); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e0dcd4;
  border-radius: 8px; font-family: inherit; font-size: 0.95rem;
  color: var(--text); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,90,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: 12px;
  margin-top: 20px; padding: 16px 20px; border-radius: 10px;
  background: rgba(200,164,90,0.1); color: var(--navy); font-weight: 500; font-size: 0.9rem;
}
.form-success.show { display: flex; }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px;
}
.footer-links a { display: block; padding: 6px 0; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; }
.footer-contact a { color: var(--gold); transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between;
  font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .hours-card { grid-template-columns: 1fr; }
  .hours-map { min-height: 300px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(15,29,49,0.97); backdrop-filter: blur(12px);
    flex-direction: column; padding: 32px 24px; gap: 20px;
    transform: translateY(-120%); transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-secondary { right: 16px; bottom: -24px; width: 160px; height: 160px; }
  .about-badge { left: 16px; top: -12px; }
  .about-stats { gap: 24px; }
  .menu-panel { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { min-height: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.wide img { min-height: 200px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hours-content { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 8px 16px; font-size: 0.8rem; }
}
