/* ===== CSS Variables ===== */
:root {
  --background: 45 30% 98%;
  --foreground: 165 40% 10%;
  --primary: 165 55% 12%;
  --primary-foreground: 45 30% 98%;
  --secondary: 45 15% 92%;
  --secondary-foreground: 165 40% 10%;
  --muted-foreground: 165 20% 40%;
  --accent: 42 45% 56%;
  --accent-foreground: 45 30% 98%;
  --border: 45 15% 88%;
  --gold: 42 45% 56%;
  --gold-light: 42 50% 72%;
  --forest: 165 40% 10%;
  --cream: 45 30% 98%;
  --stone: 45 15% 92%;
  --transition-silk: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; letter-spacing: -0.03em; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== Utility Classes ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.italic { font-style: italic; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.section-padding { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .section-padding { padding: 7rem 1.5rem; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 1.5rem; } }

.label-accent {
  color: hsl(var(--accent));
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 500;
  display: block;
}

.text-body { color: hsl(var(--foreground) / 0.7); line-height: 1.8; font-weight: 300; }

.bg-primary { background: hsl(var(--primary)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-background { background: hsl(var(--background)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-muted { color: hsl(var(--muted-foreground)); }

/* ===== Buttons ===== */
.btn-gold {
  display: inline-block;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 1rem 2rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all 0.5s var(--transition-silk);
  border: none; cursor: pointer;
}
.btn-gold:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.btn-ghost {
  display: inline-block;
  border: 1px solid hsl(var(--foreground) / 0.2);
  padding: 1rem 2rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all 0.5s var(--transition-silk);
  background: transparent; cursor: pointer;
}
.btn-ghost:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); }

.btn-hero-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all 0.5s var(--transition-silk);
  cursor: pointer;
}
.btn-hero-ghost:hover { background: hsl(var(--cream)); color: hsl(var(--forest)); }

.btn-primary {
  display: inline-block;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 1rem 2rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all 0.5s var(--transition-silk);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }

/* ===== Glass Navbar ===== */
.glass-nav {
  position: fixed; top: 0; width: 100%; z-index: 50;
  background: hsl(var(--cream) / 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--forest) / 0.05);
}
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; letter-spacing: 0.15em; text-transform: uppercase; color: hsl(var(--primary)); }
.nav-links { display: none; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
  font-weight: 500; color: hsl(var(--foreground));
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: hsl(var(--accent)); }
.nav-book { display: none; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: hsl(var(--foreground)); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--transition-silk); }
.mobile-menu.open { max-height: 20rem; }
.mobile-menu-inner { padding: 0 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-book { display: inline-block; }
  .nav-toggle { display: none; }
}

/* ===== Hero ===== */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-short { height: 70vh; }
.hero-shorter { height: 60vh; }
.hero-overlay { position: absolute; inset: 0; background: hsl(var(--primary) / 0.5); z-index: 1; }
.hero-overlay-dark { background: hsl(var(--primary) / 0.6); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: slow-zoom 20s ease-in-out infinite alternate; }
.hero-img-static { animation: none; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 56rem; }
.hero h1 { font-size: 3rem; color: hsl(var(--primary-foreground)); line-height: 1.1; margin-bottom: 2rem; }
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }

.hero-btns { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 768px) { .hero-btns { flex-direction: row; } }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; text-align: center; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 0.5rem; color: hsl(var(--foreground)); }
.stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: hsl(var(--muted-foreground)); }

/* ===== Service Cards ===== */
.service-cards { display: grid; gap: 3rem; }
@media (min-width: 768px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }
.service-card .card-img { overflow: hidden; margin-bottom: 1.5rem; aspect-ratio: 4/5; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-card:hover .card-img img { transform: scale(1.1); }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-card .card-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.service-card .card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-price { color: hsl(var(--accent)); font-weight: 500; }
.card-book { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; transition: color 0.3s; }
.card-book:hover { color: hsl(var(--accent)); }

/* ===== About Teaser ===== */
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-grid h2 { font-size: 3rem; } }

/* ===== Testimonials ===== */
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 2rem; }
.testimonial-stars span { color: hsl(var(--accent)); font-size: 1.25rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1.6; font-style: italic; color: hsl(var(--foreground) / 0.8); margin-bottom: 2rem; animation: reveal 0.6s var(--transition-silk); }
@media (min-width: 768px) { .testimonial-text { font-size: 1.875rem; } }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: hsl(var(--foreground) / 0.2); border: none; cursor: pointer; transition: all 0.5s; }
.testimonial-dot.active { background: hsl(var(--accent)); width: 2rem; border-radius: 4px; }

/* ===== CTA Banner ===== */
.cta-banner { text-align: center; }
.cta-banner h2 { font-size: 2.5rem; font-style: italic; margin-bottom: 2rem; }
@media (min-width: 768px) { .cta-banner h2 { font-size: 3rem; } }
.cta-banner p { color: hsl(var(--primary-foreground) / 0.6); margin-bottom: 2.5rem; line-height: 1.8; }
.cta-btns { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 768px) { .cta-btns { flex-direction: row; } }

/* ===== Footer ===== */
footer { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.footer-grid { display: grid; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-desc { color: hsl(var(--primary-foreground) / 0.6); font-size: 0.875rem; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { font-size: 0.875rem; color: hsl(var(--primary-foreground) / 0.7); transition: color 0.3s; }
.footer-link:hover { color: hsl(var(--accent)); }
.footer-bottom { border-top: 1px solid hsl(var(--primary-foreground) / 0.1); padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: hsl(var(--primary-foreground) / 0.4); }

/* ===== Mobile Sticky Footer ===== */
.mobile-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: flex; border-top: 1px solid hsl(var(--foreground) / 0.05); }
.mobile-sticky a { flex: 1; padding: 1.25rem 0; text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; }
.mobile-sticky .call-btn { background: hsl(var(--background)); color: hsl(var(--foreground)); }
.mobile-sticky .book-btn { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
@media (min-width: 768px) { .mobile-sticky { display: none; } }
.mobile-spacer { height: 4rem; }
@media (min-width: 768px) { .mobile-spacer { display: none; } }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-item:hover img { transform: scale(1.1); }

/* ===== Why Choose ===== */
.why-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item { text-align: center; }
.why-num { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; border-radius: 50%; background: hsl(var(--secondary)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: hsl(var(--accent)); }
.why-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 0.75rem; }
.why-item p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* ===== Services Menu ===== */
.service-menu-item { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 768px) { .service-menu-item { grid-template-columns: 300px 1fr; } }
.service-menu-item .smi-img { overflow: hidden; aspect-ratio: 4/3; }
.service-menu-item .smi-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-menu-item:hover .smi-img img { transform: scale(1.05); }
.smi-header { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .smi-header { flex-direction: row; align-items: center; justify-content: space-between; } }
.smi-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.smi-duration { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: hsl(var(--muted-foreground)); }
.smi-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; }
.smi-price { color: hsl(var(--accent)); font-weight: 500; font-size: 1.125rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; gap: 5rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { font-size: 2.5rem; font-style: italic; margin-bottom: 2.5rem; }
.contact-detail { margin-bottom: 2rem; }
.contact-detail .label-accent { margin-bottom: 0.5rem; }
.contact-detail p, .contact-detail a { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: hsl(var(--primary-foreground) / 0.9); }
.contact-detail a:hover { color: hsl(var(--accent)); }

.contact-form { background: hsl(var(--primary-foreground) / 0.05); padding: 2rem; backdrop-filter: blur(8px); }
.contact-form input, .contact-form select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid hsl(var(--primary-foreground) / 0.2);
  padding: 1rem 0; color: hsl(var(--primary-foreground));
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem;
  outline: none; transition: border-color 0.3s; margin-bottom: 1.5rem;
}
.contact-form input::placeholder { color: hsl(var(--primary-foreground) / 0.4); }
.contact-form select { color: hsl(var(--primary-foreground) / 0.4); }
.contact-form select option { color: hsl(var(--foreground)); background: hsl(var(--background)); }
.contact-form input:focus, .contact-form select:focus { border-color: hsl(var(--accent)); }
.contact-form .btn-gold { width: 100%; margin-top: 1rem; }

.success-msg { display: flex; align-items: center; justify-content: center; min-height: 400px; }
.success-msg .checkmark { color: hsl(var(--accent)); font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.success-msg h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.success-msg p { color: hsl(var(--primary-foreground) / 0.6); font-size: 0.875rem; }

/* ===== FAQ Accordion ===== */
.faq-grid { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid hsl(var(--foreground) / 0.1); background: hsl(var(--primary-foreground) / 0.5); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: hsl(var(--foreground)); transition: all 0.3s; }
.faq-question:hover { color: hsl(var(--accent)); }
.faq-icon { width: 24px; height: 24px; position: relative; transition: transform 0.3s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: hsl(var(--accent)); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.3s; }
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-icon::after { opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--transition-silk); }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: hsl(var(--muted-foreground)); line-height: 1.8; }

/* ===== Animations ===== */
@keyframes reveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.scroll-reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s var(--transition-silk); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
