/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a2744;
  background: #f8f5f0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ── Section Utilities ── */
.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a2744;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #5a6a7e;
  max-width: 540px;
  margin: 0 auto;
}
.container { max-width: 1200px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #d4a843, #b8860b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.45);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(26, 39, 68, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2744;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a6a7e;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: #d4a843; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a843;
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, #d4a843, #b8860b);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212,168,67,0.4); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  padding: 8px;
  color: #1a2744;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248,245,240,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.active { display: flex; }
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a2744;
  font-weight: 600;
}
.mobile-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, #d4a843, #b8860b);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #1a2744 0%, #2a3f6e 40%, #d4a843 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212,168,67,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: #fff; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: #d4a843;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}
.hero-img { border-radius: 20px; overflow: hidden; }
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-img:hover img { transform: scale(1.05); }
.hero-img-1 { grid-row: 1 / 3; }
.hero-img-1 img { height: 100%; min-height: 400px; }
.hero-img-2 img { height: 200px; }
.hero-img-3 img { height: 200px; }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

/* ── About ── */
.about { background: #f8f5f0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(26,39,68,0.12); }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,39,68,0.15);
  border: 6px solid #f8f5f0;
}
.about-img-float img { width: 280px; height: 220px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: linear-gradient(135deg, #d4a843, #b8860b);
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
}
.about-badge .badge-number { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }
.about-badge .badge-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.about-content { max-width: 480px; }
.about-text {
  color: #5a6a7e;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212,168,67,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 4px;
}
.feature-item p { font-size: 0.9rem; color: #5a6a7e; }

/* ── Menu ── */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-card {
  background: #f8f5f0;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,39,68,0.1);
}
.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.menu-card:hover .menu-card-overlay { opacity: 1; }
.menu-card-body { padding: 28px; }
.menu-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1a2744;
}
.menu-card-body > p {
  font-size: 0.92rem;
  color: #5a6a7e;
  margin-bottom: 16px;
}
.menu-list { display: flex; flex-direction: column; gap: 8px; }
.menu-list li {
  font-size: 0.9rem;
  color: #3a4a5e;
  padding-left: 20px;
  position: relative;
}
.menu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #d4a843;
  border-radius: 50%;
}

/* ── Gallery ── */
.gallery { background: #f8f5f0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-1 { grid-column: 1 / 3; }
.gallery-item-4 { grid-column: 2 / 4; }

/* ── Visit ── */
.visit { background: #fff; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.visit-text {
  color: #5a6a7e;
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.visit-details { display: flex; flex-direction: column; gap: 28px; }
.visit-detail { display: flex; gap: 16px; align-items: flex-start; }
.visit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212,168,67,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 4px;
}
.visit-detail p {
  font-size: 0.92rem;
  color: #5a6a7e;
  line-height: 1.6;
}
.visit-detail a { color: #d4a843; font-weight: 500; transition: color 0.2s; }
.visit-detail a:hover { color: #b8860b; }
.visit-map {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 16px 48px rgba(26,39,68,0.1);
}

/* ── Contact ── */
.contact { background: linear-gradient(135deg, #1a2744 0%, #2a3f6e 100%); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-content { color: #fff; }
.contact-content .section-title { color: #fff; }
.contact-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.contact-direct { display: flex; flex-direction: column; gap: 16px; }
.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-direct-item:hover { color: #d4a843; }

/* Form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4a843;
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: #1a2744; color: #fff; }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #16a34a;
  margin-bottom: 8px;
}
.form-success p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ── Footer ── */
.footer { background: #0f1a2e; color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 0.92rem; line-height: 1.8; }
.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #d4a843; }
.footer-hours, .footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.92rem; }
.footer-contact a { color: #d4a843; transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 0.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-images { max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { max-width: 100%; }
  .menu-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .section { padding: 70px 0; }
  .hero { padding-top: 70px; min-height: auto; padding-bottom: 120px; }
  .hero-images { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .hero-img-1 { grid-row: auto; }
  .hero-img img { height: 200px !important; }
  .about-img-float { right: -10px; bottom: -20px; }
  .about-img-float img { width: 200px; height: 160px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item-1 { grid-column: 1 / 3; }
  .gallery-item-4 { grid-column: 1 / 3; }
  .contact-form-wrapper { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-images { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-img-1 { grid-row: auto; }
  .hero-img img { height: 220px !important; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item-1, .gallery-item-4 { grid-column: auto; }
  .gallery-item img { height: 220px; }
}
