/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2D1F3D;
  background-color: #FDF8F4;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #5B2C6F;
  color: #FDF8F4;
  padding: 8px 16px;
  z-index: 200;
  border-radius: 4px;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 12px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2D1F3D;
}

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5C4A6B;
  max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-outline-light {
  background: transparent;
  color: #FDF8F4;
  border-color: rgba(253, 248, 244, 0.6);
}
.btn-outline-light:hover {
  background: rgba(253, 248, 244, 0.1);
  border-color: #FDF8F4;
  color: #FDF8F4;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
  width: 100%;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 15, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FDF8F4;
  transition: color 0.3s ease;
}
.logo:hover { color: #D4A017; }

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

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

.primary-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(253, 248, 244, 0.8);
  transition: color 0.3s ease;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4A017;
  transition: width 0.3s ease;
}
.primary-nav a:hover { color: #D4A017; }
.primary-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #FDF8F4;
  position: relative;
  transition: background 0.3s ease;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #FDF8F4;
  left: 0;
  transition: transform 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 15, 46, 0.85) 0%,
    rgba(26, 15, 46, 0.7) 50%,
    rgba(26, 15, 46, 0.9) 100%
  );
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 600;
  color: #FDF8F4;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(253, 248, 244, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.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: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253, 248, 244, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll svg { opacity: 0.5; }

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: #FDF8F4;
}

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

.about-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(91, 44, 111, 0.15);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content { max-width: 520px; }

.about-content p {
  color: #4A3558;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(91, 44, 111, 0.12);
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #5B2C6F;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B5F8A;
}

/* ===== FEATURED DIVIDER ===== */
.featured-divider {
  padding: 80px 0;
  background: #1A0F2E;
  text-align: center;
}

.divider-quote {
  max-width: 700px;
  margin: 0 auto;
}

.divider-quote blockquote {
  position: relative;
}

.divider-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: rgba(253, 248, 244, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.divider-source {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A017;
}

.divider-icon { margin-bottom: 24px; }

/* ===== MENU ===== */
.menu {
  padding: 120px 0;
  background: #FDF8F4;
}

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

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

.menu-category {
  background: #fff;
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(91, 44, 111, 0.08);
  border: 1px solid rgba(91, 44, 111, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(91, 44, 111, 0.14);
}

.category-header {
  border-bottom: 2px solid #D4A017;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.category-title {
  font-size: 1.5rem;
  color: #5B2C6F;
}

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

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

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2D1F3D;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: #7B5F8A;
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: #7B5F8A;
  margin-top: 48px;
  font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0 80px;
  background: #F5EDE6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: #FDF8F4;
}

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

.visit-description {
  font-size: 1.05rem;
  color: #4A3558;
  margin-bottom: 40px;
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.visit-item dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 6px;
}

.visit-item dd {
  font-size: 1rem;
  color: #2D1F3D;
}
.visit-item a {
  color: #5B2C6F;
  border-bottom: 1px solid rgba(91, 44, 111, 0.2);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.visit-item a:hover {
  color: #D4A017;
  border-color: #D4A017;
}

.hours h3 {
  font-size: 1.25rem;
  color: #5B2C6F;
  margin-bottom: 16px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(91, 44, 111, 0.08);
  font-size: 0.95rem;
  color: #4A3558;
}
.hours-table td:first-child { font-weight: 700; color: #2D1F3D; }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }

.hours-note {
  font-size: 0.8rem;
  color: #7B5F8A;
  margin-top: 12px;
  font-style: italic;
}

.visit-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(91, 44, 111, 0.12);
  min-height: 500px;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: #1A0F2E;
}

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

.contact-content .section-title { color: #FDF8F4; }
.contact-content .section-subtitle { color: rgba(253, 248, 244, 0.6); }
.contact-text {
  font-size: 1.05rem;
  color: rgba(253, 248, 244, 0.7);
  line-height: 1.8;
}

.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-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4A017;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 4px;
  background: rgba(253, 248, 244, 0.06);
  color: #FDF8F4;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 248, 244, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D4A017;
  background: rgba(253, 248, 244, 0.1);
}

.form-group select option {
  background: #1A0F2E;
  color: #FDF8F4;
}

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

.form-success {
  text-align: center;
  padding: 16px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 4px;
  color: #D4A017;
  font-weight: 700;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #120A1F;
  padding: 64px 0 0;
  color: rgba(253, 248, 244, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253, 248, 244, 0.08);
}

.logo-light { color: #FDF8F4; }
.logo-light:hover { color: #D4A017; }

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 248, 244, 0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #D4A017; }

.footer-contact address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-contact a {
  color: rgba(253, 248, 244, 0.6);
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: #D4A017; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(253, 248, 244, 0.35);
}

/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 110; }

  .primary-nav {
    position: fixed;
    inset: 0;
    background: rgba(26, 15, 46, 0.97);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .primary-nav.open { opacity: 1; visibility: visible; }

  .primary-nav ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .primary-nav a {
    font-size: 1.2rem;
    color: rgba(253, 248, 244, 0.85);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap { max-width: 100%; }
  .about-content { max-width: 100%; }

  .menu-categories { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit-details { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
