/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3D2033;
  background: #FAF6F1;
  -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; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #6B3A5D; color: #FAF6F1;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  z-index: 9999; font-weight: 700;
}
.skip-link:focus { top: 0; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; border-radius: 50px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #F5C518; color: #3D2033;
  box-shadow: 0 4px 16px rgba(245,197,24,.35);
}
.btn-primary:hover {
  background: #E6B800;
  box-shadow: 0 8px 24px rgba(245,197,24,.45);
}
.btn-outline-light {
  background: rgba(255,255,255,.15); color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: #fff; color: #6B3A5D;
  border-color: #fff;
}
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,246,241,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,58,93,.08);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(107,58,93,.1); }
.navbar-inner {
  display: flex; align-items: center;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: #6B3A5D;
  font-weight: 400;
}
.logo em { font-style: italic; color: #A0547A; }
.logo-text--light { color: #F5F0EB; }
.logo-text--light em { color: #F5C518; }

.nav-menu {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto;
}
.nav-menu a {
  font-weight: 700; font-size: .95rem;
  color: #6B3A5D; position: relative;
  transition: color .2s ease;
}
.nav-menu a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0;
  height: 2px; background: #F5C518;
  border-radius: 2px;
  transition: width .2s ease;
}
.nav-menu a:hover { color: #A0547A; }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px;
  background: #6B3A5D; border-radius: 2px;
  transition: transform .3s ease;
}
.hamburger { position: relative; margin: 0 auto; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; bottom: -7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #6B3A5D;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; opacity: .35;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107,58,93,.92) 0%,
    rgba(77,35,62,.85) 50%,
    rgba(40,20,35,.80) 100%
  );
}
.hero-container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.3);
  color: #F5C518;
  padding: 8px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 700;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2; color: #fff;
  margin-bottom: 24px;
  max-width: 600px;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.8);
  max-width: 480px; margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stat cards */
.hero-cards {
  display: flex; flex-direction: column; gap: 16px;
}
.stat-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: float 4s ease-in-out infinite;
}
.stat-card:nth-child(2) { animation-delay: -1.3s; }
.stat-card:nth-child(3) { animation-delay: -2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.stat-card--amber {
  background: linear-gradient(135deg, #F5C518, #E6B000);
  color: #3D2033;
}
.stat-card--plum {
  background: linear-gradient(135deg, #6B3A5D, #8B4A7A);
  color: #fff;
}
.stat-card--cream {
  background: #fff; color: #3D2033;
}
.stat-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-card-value { font-family: 'DM Serif Display', serif; font-size: 1.4rem; line-height: 1.2; }
.stat-card-label { font-size: .85rem; opacity: .8; font-weight: 600; }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; width: 100%;
  line-height: 0;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: #A0547A; margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #3D2033; line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem; color: #6B5060;
  max-width: 600px;
}

/* ===== MENU ===== */
.menu-section { background: #FAF6F1; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107,58,93,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107,58,93,.14);
}
.menu-card-img {
  height: 200px;
  background-size: cover; background-position: center;
  position: relative;
}
.menu-card-img-label {
  position: absolute; top: 16px; left: 16px;
  background: rgba(107,58,93,.85); color: #F5C518;
  padding: 4px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  backdrop-filter: blur(4px);
}
.menu-card-body { padding: 24px; }
.menu-card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: #3D2033;
  margin-bottom: 8px;
}
.menu-card-body > p {
  font-size: .95rem; color: #6B5060;
  margin-bottom: 16px; line-height: 1.7;
}
.menu-list { display: flex; flex-direction: column; gap: 6px; }
.menu-list li {
  font-size: .9rem; color: #8B6070;
  padding-left: 18px; position: relative;
}
.menu-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  background: #F5C518; border-radius: 50%;
}

/* ===== ABOUT ===== */
.about-section { background: #F3EBE3; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images { position: relative; min-height: 500px; }
.about-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(107,58,93,.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 20px; overflow: hidden;
  border: 6px solid #F3EBE3;
  box-shadow: 0 8px 32px rgba(107,58,93,.15);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; top: -20px; left: -20px;
  width: 120px; height: 120px;
  background: #F5C518; border-radius: 20px;
  z-index: -1; opacity: .4;
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1.05rem; color: #6B5060;
  margin-bottom: 20px; line-height: 1.9;
}
.about-features {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 32px;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
}
.about-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(107,58,93,.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.about-feature strong {
  display: block; color: #3D2033;
  font-size: 1rem; margin-bottom: 2px;
}
.about-feature span {
  font-size: .9rem; color: #8B6070;
}

/* ===== COMMUNITY ===== */
.community-section { background: #6B3A5D; color: #fff; }
.community-section .section-tag { color: #F5C518; }
.community-section .section-title { color: #fff; }
.community-section .section-desc { color: rgba(255,255,255,.75); }
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.community-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 36px;
  transition: background .3s ease, transform .3s ease;
}
.community-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.community-card-icon {
  width: 64px; height: 64px;
  background: rgba(245,197,24,.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.community-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: #fff;
  margin-bottom: 10px;
}
.community-card p {
  font-size: .95rem; color: rgba(255,255,255,.7);
  line-height: 1.8;
}

/* ===== VISIT ===== */
.visit-section { background: #FAF6F1; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.visit-text {
  font-size: 1.05rem; color: #6B5060;
  margin-bottom: 32px; line-height: 1.9;
}
.visit-info { display: flex; flex-direction: column; gap: 20px; }
.visit-info-item {
  display: flex; align-items: center; gap: 16px;
}
.visit-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(107,58,93,.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.visit-info-item strong {
  display: block; color: #3D2033; font-size: 1rem;
}
.visit-info-item span {
  font-size: .9rem; color: #8B6070;
}
.link-inline {
  color: #6B3A5D; font-weight: 700;
  border-bottom: 1px dashed rgba(107,58,93,.3);
  transition: border-color .2s ease, color .2s ease;
}
.link-inline:hover { color: #A0547A; border-color: #A0547A; }
.visit-map { position: relative; }
.visit-map-img {
  width: 100%; height: 400px;
  object-fit: cover; border-radius: 24px;
  box-shadow: 0 12px 48px rgba(107,58,93,.12);
}
.map-cta {
  position: absolute; bottom: 24px; left: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: #2A1522; color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand p {
  font-size: .95rem; line-height: 1.8;
  margin-top: 16px; max-width: 300px;
}
.footer h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: #F5C518;
  margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links a, .footer-contact a {
  font-size: .95rem; color: rgba(255,255,255,.6);
  transition: color .2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: #F5C518; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: rgba(255,255,255,.4);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(42,21,34,.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.visible { opacity: 1; visibility: visible; }
.modal {
  background: #FAF6F1;
  border-radius: 28px; padding: 40px;
  max-width: 480px; width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.modal-overlay.visible .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(107,58,93,.07);
  border-radius: 50%; font-size: 1.4rem;
  color: #6B3A5D; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s ease;
}
.modal-close:hover { background: rgba(107,58,93,.15); }
.modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: #3D2033;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: .95rem; color: #8B6070;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem;
  font-weight: 800; color: #6B3A5D;
  margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(107,58,93,.12);
  border-radius: 14px; font-family: 'Nunito', sans-serif;
  font-size: 1rem; color: #3D2033;
  background: #fff;
  transition: border-color .2s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #F5C518;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.modal-success {
  text-align: center; padding: 20px 0;
}
.modal-success h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: #3D2033;
  margin: 16px 0 8px;
}
.modal-success p { color: #8B6070; font-size: .95rem; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,246,241,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(107,58,93,.08);
    transform: translateY(-120%);
    transition: transform .3s ease;
    box-shadow: 0 8px 24px rgba(107,58,93,.08);
  }
  .nav-menu.open { transform: translateY(0); }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 140px; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 360px; }
  .about-img-float { width: 160px; height: 160px; bottom: -20px; right: -10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .stat-card { min-width: 100%; }
  .section { padding: 72px 0; }
  .menu-grid { grid-template-columns: 1fr; }
}

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