:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --deep-green: #0f1f0f;
  --forest: #1a2e1a;
  --sage: #2d4a2d;
  --cream: #f7f3ed;
  --text-light: #e8e0d0;
  --charcoal: #1c1c1c;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }
body { font-family: 'Josefin Sans', sans-serif; background: var(--deep-green); color: var(--cream); }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--deep-green);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  animation: preloaderFailsafe 0.6s ease 8s forwards;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }
html.kf-returning #preloader { display: none; }
@keyframes preloaderFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; letter-spacing: 0.25em; color: var(--gold-light);
}
.preloader-logo span { color: var(--cream); font-style: italic; }
.preloader-bar { width: 80px; height: 1px; background: rgba(201,168,76,0.2); position: relative; overflow: hidden; }
.preloader-bar::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold); animation: preloaderSlide 1.2s ease-in-out infinite;
}
@keyframes preloaderSlide { to { left: 100%; } }
.preloader-text {
  font-size: 0.55rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: rgba(201,168,76,0.5); animation: preloaderFade 1.2s ease-in-out infinite;
}
@keyframes preloaderFade { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ── SCROLL PROGRESS ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 10001; transition: width 0.08s linear;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s;
}
nav.scrolled {
  background: rgba(10,18,10,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15); padding: 1rem 4rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; letter-spacing: 0.18em;
  color: var(--gold-light); text-decoration: none;
}
.nav-logo span { color: var(--cream); font-style: italic; }
.nav-links { display: flex; gap: 2.6rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--deep-green); background: var(--gold);
  padding: 0.65rem 1.6rem; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--gold-light); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
#hero { position: relative; height: 100svh; min-height: clamp(560px, 100vh, 900px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; height: 140%;
  will-change: transform;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; user-select: none; pointer-events: none;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,10,5,0.92) 0%, rgba(5,10,5,0.80) 50%, rgba(5,10,5,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 2rem;
  animation: heroReveal 1.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroReveal { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
.hero-badge {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.6);
  padding: 0.45rem 1.4rem; margin-bottom: 2rem;
  animation: heroReveal 1.4s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300; line-height: 0.95; color: #ffffff; letter-spacing: 0.02em; margin-bottom: 0.4rem;
  animation: heroReveal 1.4s 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(0.75rem, 1.8vw, 1rem); letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(247,243,237,0.95); margin-bottom: 0.6rem;
  animation: heroReveal 1.4s 0.42s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic; font-weight: 300; color: rgba(247,243,237,0.9); margin-bottom: 3rem;
  animation: heroReveal 1.4s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-divider {
  width: 60px; height: 1px; background: var(--gold); margin: 0 auto 2.5rem;
  animation: heroReveal 1.4s 0.55s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-btns {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  animation: heroReveal 1.4s 0.65s cubic-bezier(0.16,1,0.3,1) both;
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--gold); color: var(--deep-green);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.4rem; text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-whatsapp::before {
  content: ''; position: absolute; inset: 0; background: var(--gold-light);
  transform: translateX(-101%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.btn-whatsapp:hover::before { transform: translateX(0); }
.btn-whatsapp span, .btn-whatsapp svg { position: relative; z-index: 1; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.7rem;
  border: 1px solid rgba(247,243,237,0.4); color: var(--cream);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.4rem; text-decoration: none; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 2;
  animation: fadeIn 2s 1.5s both;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.hero-scroll span { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247,243,237,0.5); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ── SECTION BASE ── */
section { padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem); }
.section-label {
  font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold-light); }
.gold-divider { width: 50px; height: 1px; background: var(--gold); margin: 2rem 0; }
.gold-divider--centered { margin: 2rem auto; }
.ico { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; color: var(--gold); }
.section-sub { font-size: 0.78rem; color: rgba(247,243,237,0.5); line-height: 1.8; }
.card-meta { font-size: 0.72rem; color: rgba(247,243,237,0.45); margin-bottom: 1.5rem; line-height: 1.7; }

/* ── ABOUT ── */
#about { background: var(--forest); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 540px; object-fit: cover; filter: brightness(0.9); }
.about-image-accent {
  position: absolute; bottom: -24px; right: -24px; width: 180px; height: 180px;
  border: 1px solid rgba(201,168,76,0.3); pointer-events: none;
}
.about-image-accent::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,168,76,0.15); }
.about-text p { font-size: 0.9rem; line-height: 1.9; color: rgba(247,243,237,0.75); margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(201,168,76,0.2); text-align: center; }
.about-stats > div { flex: 1; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,243,237,0.5); margin-top: 0.4rem; }

/* ── EVENTS ── */
#events { background: var(--deep-green); }
.events-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.events-header .section-label { justify-content: center; }
.events-header .section-label::before { display: none; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; max-width: 1200px; margin: 0 auto; }
.event-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/5; }
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); filter: brightness(0.65); }
.event-card:hover img { transform: scale(1.07); filter: brightness(0.5); }
.event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem 1.8rem;
}
.event-icon { font-size: 1.8rem; margin-bottom: 0.8rem; transform: translateY(10px); opacity: 0.8; transition: transform 0.4s; }
.event-card:hover .event-icon { transform: translateY(0); }
.event-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--cream); }
.event-desc { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--gold-light); margin-top: 0.4rem; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: all 0.4s 0.05s; }
.event-card:hover .event-desc { opacity: 1; transform: translateY(0); }

/* ── GALLERY ── */
#gallery { background: var(--deep-green); padding: 8rem 0 0; }
.gallery-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; padding: 0 2rem; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.4s; filter: brightness(0.88) saturate(0.95); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,76,0); transition: border-color 0.4s; }
.gallery-item:hover::after { border-color: rgba(201,168,76,0.4); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(10,20,10,0); display: flex; align-items: center; justify-content: center; transition: background 0.4s; }
.gallery-item:hover .gallery-item-overlay { background: rgba(10,20,10,0.3); }
.gallery-zoom { width: 44px; height: 44px; border: 1px solid rgba(247,243,237,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.7); transition: all 0.4s; color: var(--cream); font-size: 1.4rem; font-weight: 300; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(5,10,5,0.97); backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 82vh; object-fit: contain; animation: lbReveal 0.4s cubic-bezier(0.16,1,0.3,1); border: 1px solid rgba(201,168,76,0.15); }
@keyframes lbReveal { from{opacity:0;transform:scale(0.92)} to{opacity:1;transform:scale(1)} }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--gold-light); cursor: pointer; background: none; border: none; transition: transform 0.3s, color 0.3s; line-height: 1; }
.lightbox-close:hover { transform: rotate(90deg); color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  width: 52px; height: 52px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.3rem; transition: background 0.3s; user-select: none;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,168,76,0.28); }
.lightbox-counter { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); font-size: 0.6rem; letter-spacing: 0.3em; color: rgba(247,243,237,0.4); }
.lightbox-caption { position: absolute; bottom: 3.8rem; left: 50%; transform: translateX(-50%); font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(247,243,237,0.6); white-space: nowrap; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--forest); }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; padding: 0 1.5rem; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-viewport {
  overflow: hidden;
  padding: 0 1.5rem 1.5rem;
}
.testimonials-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: testimonials-marquee 60s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonials-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.6rem)); }
}
.testimonial-card {
  flex: 0 0 min(88vw, 440px);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 1.8rem;
  background: rgba(15,31,15,0.5);
  position: relative;
  box-sizing: border-box;
  transition: border-color 0.4s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.45); }
.testimonial-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold); line-height: 0.6; margin-bottom: 1rem; opacity: 0.35; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; font-weight: 300; color: rgba(247,243,237,0.85); line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.5rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--sage)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--deep-green); font-weight: 400; flex-shrink: 0; }
.testimonial-name { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.testimonial-event { font-size: 0.6rem; color: rgba(247,243,237,0.4); margin-top: 0.2rem; }
.testimonials-nav { display: flex; justify-content: center; margin-top: 2.5rem; padding: 0 1.5rem 4rem; }
.testimonials-pause-btn { display: inline-flex; align-items: center; gap: 0.7rem; background: transparent; border: 1px solid rgba(201,168,76,0.35); color: var(--gold); font-family: inherit; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.85rem 2rem; cursor: pointer; transition: background 0.3s, border-color 0.3s, color 0.3s; }
.testimonials-pause-btn:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.6); color: var(--gold-light); }
.testimonials-pause-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.testimonials-pause-icon { font-size: 0.7rem; line-height: 1; }
.testimonials-track.is-paused { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation-play-state: paused; }
}
@media (min-width: 900px) {
  .testimonials-viewport { padding: 0 4rem 1.5rem; }
  .testimonial-card { flex: 0 0 min(44vw, 520px); }
}

.btn-outline { display: inline-block; border: 1px solid var(--gold); color: var(--gold-light); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.85rem 2rem; text-decoration: none; transition: all 0.35s; }
.btn-outline:hover { background: var(--gold); color: var(--deep-green); }
.btn-solid { display: inline-block; background: var(--gold); color: var(--deep-green); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.85rem 2rem; text-decoration: none; transition: all 0.35s; }
.btn-solid:hover { background: var(--gold-light); }

/* ── FAQ ── */
#faq { background: var(--sage); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header .section-label { justify-content: center; }
.faq-header .section-label::before { display: none; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.18); }
.faq-item:first-of-type { border-top: 1px solid rgba(201,168,76,0.18); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.8rem 0; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 400; color: var(--cream); gap: 1.5rem; user-select: none; }
.faq-question:hover { color: var(--gold-light); }
.faq-icon { width: 28px; height: 28px; border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.4s, background 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(201,168,76,0.12); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1); }
.faq-answer-inner { padding: 0 0 1.8rem; font-size: 0.82rem; color: rgba(247,243,237,0.65); line-height: 1.9; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── LOCATION ── */
#location { background: var(--deep-green); padding: 8rem 0; }
.location-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.location-info p { font-size: 0.85rem; color: rgba(247,243,237,0.65); line-height: 1.8; margin-bottom: 1.5rem; }
.address-block { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; border: 1px solid rgba(201,168,76,0.2); margin-top: 2rem; }
.address-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.address-text { font-size: 0.8rem; color: rgba(247,243,237,0.7); line-height: 1.7; }
.map-wrap { position: relative; width: 100%; }
.map-wrap::before { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(201,168,76,0.25); z-index: 0; pointer-events: none; }
.map-wrap iframe { width: 100%; height: 420px; border: none; filter: grayscale(0.2) sepia(0.1); position: relative; z-index: 1; }

/* ── CONTACT ── */
#contact { background: var(--forest); }
.contact-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.contact-inner .section-label { justify-content: center; }
.contact-inner .section-label::before { display: none; }
.contact-inner .gold-divider { margin: 2rem auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; text-align: left; }
.contact-card { border: 1px solid rgba(201,168,76,0.2); padding: 2.5rem; transition: border-color 0.4s; }
.contact-card:hover { border-color: rgba(201,168,76,0.5); }
.contact-card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-card-title { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.contact-card-value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--cream); margin-bottom: 1.2rem; }
.contact-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; font-weight: 300; color: rgba(247,243,237,0.45); margin: 3rem auto 0; max-width: 600px; }

/* ── NOSCRIPT FALLBACK ── */
.noscript-fallback {
  border: 1px solid rgba(201,168,76,0.35); background: rgba(201,168,76,0.06);
  padding: 1.5rem 1.6rem; margin-bottom: 2rem; text-align: left;
}
.noscript-fallback p { font-size: 0.78rem; color: rgba(247,243,237,0.85); line-height: 1.7; margin-bottom: 1rem; }
.noscript-fallback p strong { color: var(--gold-light); }
.noscript-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ── INQUIRY FORM ── */
.inquiry-form { margin-top: 4rem; border: 1px solid rgba(201,168,76,0.2); padding: 3rem; text-align: left; }
.inquiry-form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--cream); margin-bottom: 0.4rem; text-align: center; }
.inquiry-form-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.single { grid-template-columns: 1fr; }
.form-row input, .form-row select, .inquiry-form textarea {
  background: rgba(247,243,237,0.04); border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream); font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em; padding: 0.9rem 1rem; width: 100%;
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-row input::placeholder, .inquiry-form textarea::placeholder { color: rgba(247,243,237,0.28); }
.form-row input:focus, .form-row select:focus, .inquiry-form textarea:focus { border-color: rgba(201,168,76,0.55); }
.form-row input.field-error, .form-row select.field-error, .inquiry-form textarea.field-error { border-color: #d96666; background: rgba(217,102,102,0.06); }
.form-row select option { background: var(--forest); color: var(--cream); }
.form-date-wrap { position: relative; display: block; }
.form-date-wrap input[type="date"] { width: 100%; padding-top: 1.3rem; }
.form-date-label { position: absolute; top: 0.3rem; left: 1.2rem; font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,243,237,0.5); pointer-events: none; }
.form-msg-counter { font-size: 0.6rem; color: rgba(247,243,237,0.4); text-align: right; margin-top: 0.4rem; min-height: 1em; transition: color 0.2s; }
.form-msg-counter.warn { color: var(--gold-light); }
.form-consent { font-size: 0.6rem; color: rgba(247,243,237,0.45); line-height: 1.6; margin-top: 1rem; text-align: center; }
.inquiry-form textarea { resize: vertical; min-height: 100px; display: block; }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  background: var(--gold); color: var(--deep-green);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1rem 2.4rem; border: none; cursor: pointer; width: 100%;
  margin-top: 1rem; transition: background 0.3s;
}
.form-submit:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 4rem 4rem 3rem; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-brand { max-width: 300px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: 0.15em; color: var(--gold-light); margin-bottom: 1rem; }
.footer-tagline { font-size: 0.72rem; color: rgba(247,243,237,0.4); line-height: 1.7; }
.footer-col-title { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-col a { font-size: 0.72rem; color: rgba(247,243,237,0.45); text-decoration: none; transition: color 0.3s; letter-spacing: 0.08em; }
.footer-links-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: rgba(247,243,237,0.45); font-size: 0.9rem; text-decoration: none; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,0.08); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2.5rem; border-top: 1px solid rgba(201,168,76,0.1); gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.6rem; letter-spacing: 0.12em; color: rgba(247,243,237,0.25); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,243,237,0.3); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── FLOATING WHATSAPP + TOOLTIP ── */
/* ── FLOATING ACTION STACK (unified premium component) ── */
.float-wa-wrap {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem;
  transition: opacity 0.3s, transform 0.3s;
}
.float-wa-wrap.dim { opacity: 0.35; transform: scale(0.92); pointer-events: none; }

/* Shared base — every floating action button looks like a family member */
.float-action {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; cursor: pointer; box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 2px 4px rgba(0,0,0,0.14);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, background 0.3s, border-color 0.3s, opacity 0.35s;
}
.float-action:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.32), 0 2px 6px rgba(0,0,0,0.18); }

/* Primary — WhatsApp */
.float-wa { background: #25D366; color: #fff; }
.float-wa:hover { background: #1fbe5a; }

/* Secondary — Back to top (dark glass with gold accent) */
#back-top {
  background: rgba(15,31,15,0.78);
  border: 1px solid rgba(201,168,76,0.32);
  color: var(--gold-light); font-size: 0.95rem;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(6px) scale(0.94); pointer-events: none;
}
#back-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#back-top.visible:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.6); color: var(--gold); transform: translateY(-2px) scale(1); }

/* WhatsApp tooltip */
.wa-tooltip {
  background: rgba(255,255,255,0.96); color: #222; border-radius: 4px;
  font-size: 0.7rem; padding: 0.55rem 2.2rem 0.55rem 0.95rem;
  position: relative; box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  opacity: 0; transform: translateX(8px) scale(0.94);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap; pointer-events: none;
}
.wa-tooltip.show { pointer-events: auto; opacity: 1; transform: translateX(0) scale(1); }
.wa-tooltip-close { position: absolute; top: 50%; right: 0.35rem; transform: translateY(-50%); width: 18px; height: 18px; border: none; background: transparent; color: #888; font-size: 0.95rem; line-height: 1; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; }
.wa-tooltip-close:hover { color: #222; }
.wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: rgba(255,255,255,0.96); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(10,18,10,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--cream); text-decoration: none; letter-spacing: 0.1em; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-cta { margin-top: 1rem; background: var(--gold) !important; color: var(--deep-green) !important; font-size: 0.72rem !important; letter-spacing: 0.25em !important; padding: 0.9rem 2.2rem; font-family: 'Josefin Sans', sans-serif !important; text-transform: uppercase; }

/* ── QUICK INFO BAR ── */
#info-bar { background: var(--forest); border-top: 1px solid rgba(201,168,76,0.18); border-bottom: 1px solid rgba(201,168,76,0.18); padding: 0; }
.info-bar-inner { display: flex; align-items: stretch; justify-content: center; max-width: 1200px; margin: 0 auto; }
.info-bar-item { display: flex; align-items: center; gap: 0.9rem; padding: 1.5rem 2.5rem; flex: 1; justify-content: center; border-right: 1px solid rgba(201,168,76,0.12); transition: background 0.3s; }
.info-bar-item:last-child { border-right: none; }
.info-bar-item:hover { background: rgba(201,168,76,0.05); }
.info-bar-icon { font-size: 1.3rem; flex-shrink: 0; }
.info-bar-text { display: flex; flex-direction: column; }
.info-bar-label { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.info-bar-value { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--cream); line-height: 1.2; }

/* ── WHY CHOOSE US ── */
#why-us { background: var(--forest); }
.why-us-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.why-us-header .section-label { justify-content: center; }
.why-us-header .section-label::before { display: none; }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(201,168,76,0.15); max-width: 1100px; margin: 0 auto; }
.why-us-card { padding: 2.5rem 2rem; border-right: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); background: transparent; transition: background 0.4s; position: relative; overflow: hidden; }
.why-us-card:nth-child(3n) { border-right: none; }
.why-us-card:nth-last-child(-n+3) { border-bottom: none; }
.why-us-card::before { content: ''; position: absolute; inset: 0; background: rgba(201,168,76,0.04); opacity: 0; transition: opacity 0.4s; }
.why-us-card:hover::before { opacity: 1; }
.why-us-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 0.8rem; }
.why-us-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.why-us-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 0.6rem; font-weight: 400; }
.why-us-desc { font-size: 0.72rem; color: rgba(247,243,237,0.5); line-height: 1.75; }

/* ── FACILITIES ── */
#facilities { background: var(--deep-green); }
.facilities-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.facilities-header .section-label { justify-content: center; }
.facilities-header .section-label::before { display: none; }
.facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(201,168,76,0.15); max-width: 1000px; margin: 0 auto; }
.facility-item { background: var(--deep-green); padding: 1.8rem 2rem; display: flex; align-items: center; gap: 1.2rem; border-right: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); transition: background 0.3s; }
.facility-item:nth-child(3n) { border-right: none; }
.facility-item:nth-last-child(-n+3) { border-bottom: none; }
.facility-item:hover { background: rgba(201,168,76,0.04); }
.facility-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; text-align: center; }
.facility-text { display: flex; flex-direction: column; }
.facility-label { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(247,243,237,0.4); margin-bottom: 0.2rem; }
.facility-value { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--cream); }
.facility-yes { color: #7fd47f; }
.facility-no { color: rgba(247,243,237,0.35); }
.facility-note { font-size: 0.6rem; color: rgba(247,243,237,0.35); margin-top: 0.1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-image-accent { display: none; }
  .location-inner { padding: 0 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .info-bar-inner { flex-wrap: wrap; }
  .info-bar-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); justify-content: flex-start; }
  .info-bar-item:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.12); }
  .info-bar-item:last-child { border-bottom: none; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .why-us-card:nth-child(3n) { border-right: 1px solid rgba(201,168,76,0.15); }
  .why-us-card:nth-child(2n) { border-right: none; }
  .why-us-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(201,168,76,0.15); }
  .why-us-card:nth-last-child(-n+2) { border-bottom: none; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .facility-item:nth-child(3n) { border-right: 1px solid rgba(201,168,76,0.12); }
  .facility-item:nth-child(2n) { border-right: none; }
  .facility-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(201,168,76,0.12); }
  .facility-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  nav.scrolled { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(10,18,10,0.96); }
  .mobile-menu { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); background: rgba(10,18,10,0.98); }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  nav.scrolled { background: rgba(10,18,10,0.98); }
  .mobile-menu { background: rgba(10,18,10,0.99); }
  #back-top { background: rgba(15,31,15,0.95); }
}
@media (max-width: 560px) {
  .hero-title { font-size: 3rem; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { flex-direction: column; gap: 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns > a { min-width: 240px; width: 80%; justify-content: center; }
  .float-wa-wrap { bottom: 1.2rem; right: 1.2rem; gap: 0.35rem; }
  .float-action { width: 48px; height: 48px; }
  .float-wa svg { width: 24px; height: 24px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .info-bar-item { flex: 0 0 100%; border-right: none !important; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-card { border-right: none !important; border-bottom: 1px solid rgba(201,168,76,0.15) !important; }
  .why-us-card:last-child { border-bottom: none !important; }
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-item { border-right: none !important; border-bottom: 1px solid rgba(201,168,76,0.12) !important; }
  .facility-item:last-child { border-bottom: none !important; }
}
