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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e2d3d;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

/* ── Section Headers ── */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: #d4a017;
  color: #1e3a5f;
  border-color: #d4a017;
}

.btn-gold:hover {
  background: #b8860b;
  border-color: #b8860b;
  color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: #f0f3f9;
  border-color: rgba(240, 243, 249, 0.5);
}

.btn-outline-light:hover {
  background: rgba(240, 243, 249, 0.1);
  border-color: #f0f3f9;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: 10px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 58, 95, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(14, 31, 50, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.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', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f0f3f9;
}

.nav-logo:hover {
  color: #d4a017;
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240, 243, 249, 0.8);
  transition: color 0.2s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a017;
  transition: width 0.25s ease;
}

.nav-menu a:hover {
  color: #d4a017;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: #d4a017 !important;
  color: #1e3a5f !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: all 0.25s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #b8860b !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0f3f9;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.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(14, 31, 50, 0.92) 0%,
    rgba(30, 58, 95, 0.85) 50%,
    rgba(22, 45, 73, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #f0f3f9;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240, 243, 249, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240, 243, 249, 0.7);
  padding: 8px 16px;
  border: 1px solid rgba(240, 243, 249, 0.15);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-badge svg {
  color: #d4a017;
}

/* ── HIGHLIGHTS ── */
.highlights {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid #e8edf4;
}

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

.highlight-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #e8edf4;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.1);
  border-color: rgba(212, 160, 23, 0.3);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f3f9;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  background: #e8edf4;
}

.highlight-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 10px;
}

.highlight-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ── MENU ── */
.menu {
  padding: 100px 0;
  background: #ffffff;
}

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

.menu-category {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e8edf4;
  transition: all 0.3s ease;
}

.menu-category:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
}

.menu-category-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d4a017;
}

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

.menu-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8edf4;
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.menu-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e3a5f;
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  margin-top: 48px;
  padding: 20px;
  background: #f0f3f9;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #4a5568;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: #1e3a5f;
}

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

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content .section-eyebrow {
  color: #d4a017;
}

.about-content .section-title {
  color: #f0f3f9;
}

.about-text {
  font-size: 1rem;
  color: rgba(240, 243, 249, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(240, 243, 249, 0.15);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d4a017;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: rgba(240, 243, 249, 0.6);
  font-weight: 500;
}

/* ── GALLERY ── */
.gallery {
  padding: 0;
  overflow: hidden;
  background: #f8fafc;
}

.gallery-scroll {
  display: flex;
  gap: 4px;
}

.gallery-scroll img {
  flex: 1;
  min-width: 0;
  height: 260px;
  object-fit: cover;
  transition: flex 0.4s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.gallery-scroll img:hover {
  flex: 1.5;
  opacity: 1;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e8edf4;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.1);
}

.testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: #d4a017;
  position: absolute;
  top: 16px;
  right: 24px;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 20px;
  margin-top: 24px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1e3a5f;
}

/* ── HOURS & CONTACT ── */
.hours-contact {
  padding: 100px 0;
  background: #ffffff;
}

.hours-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hours-card,
.contact-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid #e8edf4;
}

.hours-card-header,
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hours-icon,
.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f3f9;
  border-radius: 12px;
  flex-shrink: 0;
}

.hours-card-title,
.contact-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a5f;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e8edf4;
}

.hours-day {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e3a5f;
}

.hours-time {
  font-size: 0.9rem;
  color: #4a5568;
}

.hours-weekend {
  background: #f0f3f9;
  border-color: #d4a017;
}

.hours-weekend .hours-day,
.hours-weekend .hours-time {
  color: #1e3a5f;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4a017;
}

.contact-value {
  font-size: 1rem;
  color: #1e3a5f;
  line-height: 1.6;
}

.contact-value:visited {
  color: #1e3a5f;
}

.contact-link {
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #d4a017;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #0e1f32 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f0f3f9;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(240, 243, 249, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ── FOOTER ── */
.footer {
  background: #0e1f32;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f0f3f9;
  margin-bottom: 16px;
}

.footer-logo:hover {
  color: #d4a017;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(240, 243, 249, 0.5);
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(240, 243, 249, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #d4a017;
}

.footer address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(240, 243, 249, 0.6);
  line-height: 1.8;
}

.footer address a {
  color: #d4a017;
  font-weight: 600;
}

.footer address a:hover {
  color: #f0f3f9;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 243, 249, 0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(240, 243, 249, 0.35);
}

/* ── MOBILE MENU ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(14, 31, 50, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu a {
    font-size: 1rem;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .highlights-grid,
  .menu-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .highlights-grid,
  .menu-grid,
  .testimonials-grid,
  .hours-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 300px;
  }

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

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .gallery-scroll {
    flex-direction: column;
  }

  .gallery-scroll img {
    height: 200px;
  }

  .hours-card,
  .contact-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .highlights,
  .menu,
  .about,
  .testimonials,
  .hours-contact,
  .cta {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .gallery-scroll img {
    transition: none;
  }
}
