/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #faf8f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91, 44, 111, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(91, 44, 111, 0.1); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #5B2C6F; }
.nav-brand-amp { color: #F5B041; }
.nav-brand-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #1a1a2e; transition: color 0.2s; position: relative; }
.nav-links a:not(.btn):hover { color: #5B2C6F; }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: #F5B041; transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Nav Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle-bar { width: 24px; height: 2px; background: #5B2C6F; border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  border-radius: 8px; border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.full-width { width: 100%; }
.btn-amber { background: #F5B041; color: #1a1a2e; border-color: #F5B041; }
.btn-amber:hover { background: #D4891A; border-color: #D4891A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 176, 65, 0.35); }
.btn-plum { background: #5B2C6F; color: #fff; border-color: #5B2C6F; }
.btn-plum:hover { background: #4A2459; border-color: #4A2459; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91, 44, 111, 0.35); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #291530 0%, #5B2C6F 35%, #7D4FB8 60%, #9A70C8 80%, #F5B041 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px), radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; }
.hero-eyebrow {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: #F5B041; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #F5B041; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== TRUST BAR ===== */
.trust-bar { background: #5B2C6F; padding: 20px 0; }
.trust-bar-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; }
.trust-icon { flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #F5B041; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #1a1a2e; line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: #555; line-height: 1.7; }

/* ===== MENU ===== */
.menu { background: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.menu-card {
  background: #faf8f5; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(91, 44, 111, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(91, 44, 111, 0.12); }
.menu-card-img { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.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.05); }
.menu-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(91,44,111,0.3), transparent 50%); }
.menu-card-body { padding: 28px; }
.menu-card-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.menu-card-desc { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 16px; }
.menu-card-list { display: flex; flex-direction: column; gap: 6px; }
.menu-card-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: #333;
}
.menu-card-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #F5B041; flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { background: #faf8f5; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(91,44,111,0.15); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(91,44,111,0.2);
  border: 4px solid #faf8f5;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; top: -20px; left: -20px;
  width: 120px; height: 120px; border-radius: 16px;
  background: linear-gradient(135deg, #F5B041, #D4891A);
  z-index: -1; opacity: 0.3;
}
.about-content { max-width: 520px; }
.about-text { font-size: 1rem; color: #444; line-height: 1.8; margin-bottom: 20px; }
.about-values { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.about-value { display: flex; gap: 16px; }
.about-value-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(91,44,111,0.08);
  display: flex; align-items: center; justify-content: center;
}
.about-value strong { display: block; font-size: 1rem; color: #1a1a2e; margin-bottom: 4px; }
.about-value span { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* ===== VISIT ===== */
.visit { background: #fff; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.visit-subtitle { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 32px; }
.visit-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.visit-detail { display: flex; gap: 16px; }
.visit-detail-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: rgba(91,44,111,0.08); display: flex; align-items: center; justify-content: center; }
.visit-detail strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #5B2C6F; margin-bottom: 4px; }
.visit-detail span, .visit-detail a { font-size: 0.95rem; color: #333; }
.visit-detail a:hover { color: #F5B041; }
.hours-box {
  background: #5B2C6F; border-radius: 16px; padding: 28px; color: #fff;
}
.hours-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: #F5B041;
}
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.95rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: rgba(255,255,255,0.7); }
.hours-row span:last-child { font-weight: 600; color: #F5B041; }
.visit-map { border-radius: 16px; overflow: hidden; min-height: 480px; box-shadow: 0 16px 48px rgba(91,44,111,0.12); }

/* ===== CONTACT ===== */
.contact { background: #faf8f5; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-text { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 32px; }
.contact-direct { display: flex; flex-direction: column; gap: 20px; }
.contact-direct-item { }
.contact-direct-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: #999; margin-bottom: 4px; }
.contact-direct-value { font-size: 1.1rem; font-weight: 600; color: #5B2C6F; transition: color 0.2s; }
.contact-direct-value:hover { color: #F5B041; }

/* Form */
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 8px 40px rgba(91,44,111,0.08); border: 1px solid rgba(91,44,111,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #1a1a2e; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e0d6eb; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #1a1a2e;
  background: #faf8f5; 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: #5B2C6F; box-shadow: 0 0 0 3px rgba(91,44,111,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 8px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  font-size: 0.9rem; color: #16A34A; font-weight: 500;
}
.form-success.show { display: flex; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #291530, #5B2C6F, #7D4FB8);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245,176,65,0.15), transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245,176,65,0.1), transparent 50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #F5B041; margin-bottom: 16px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .nav-brand { margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-heading { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #F5B041; margin-bottom: 16px; }
.footer-links ul, .footer-hours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #F5B041; }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.9rem; gap: 16px; }
.footer-hours li span:first-child { color: rgba(255,255,255,0.5); }
.footer-hours li span:last-child { color: rgba(255,255,255,0.8); font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #F5B041; }

/* ===== REVEAL ANIMATION ===== */
.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) {
  .about-grid, .visit-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: -20px; bottom: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,248,245,0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 32px 24px; gap: 24px;
    border-bottom: 1px solid rgba(91,44,111,0.08);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .section { padding: 64px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-img-float { position: relative; bottom: auto; right: auto; margin-top: 16px; }
  .about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-img-main { grid-column: 1 / -1; }
  .visit-map { min-height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .about-images { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
}
