/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', Georgia, serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #1a1a1a;
  color: #c9a96e;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.announcement-bar a { color: #c9a96e; text-decoration: underline; }

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e0d4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nav-logo { font-size: 24px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #1a1a1a; text-decoration: none; }
.nav-logo span { color: #c9a96e; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #1a1a1a; text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: #c9a96e; }
.nav-book { background: #1a1a1a; color: #fff !important; padding: 10px 24px; border-radius: 2px; transition: background 0.3s !important; }
.nav-book:hover { background: #c9a96e !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: #1a1a1a; display: block; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #f9f5ef 0%, #f2ebe0 60%, #e8ddd0 100%);
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 600px; z-index: 1; }
.hero-eyebrow { font-family: 'Lato', sans-serif; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: #c9a96e; margin-bottom: 20px; }
.hero h1 { font-size: clamp(44px, 6vw, 78px); font-weight: 300; line-height: 1.1; color: #1a1a1a; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: #c9a96e; }
.hero p { font-family: 'Lato', sans-serif; font-size: 16px; line-height: 1.8; color: #555; max-width: 480px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: #1a1a1a; color: #fff; padding: 16px 36px; font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.3s; display: inline-block; }
.btn-primary:hover { background: #c9a96e; }
.btn-outline { border: 1px solid #1a1a1a; color: #1a1a1a; padding: 16px 36px; font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { background: #1a1a1a; color: #fff; }
.hero-image { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; background: url('assets/hero-bg.jpg') center/cover no-repeat; opacity: 0.35; }

/* ===== SECTION BASE ===== */
section { padding: 100px 48px; }
.section-label { font-family: 'Lato', sans-serif; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: #c9a96e; margin-bottom: 16px; display: block; }
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.15; margin-bottom: 24px; }
.section-title em { font-style: italic; color: #c9a96e; }
.section-sub { font-family: 'Lato', sans-serif; font-size: 16px; line-height: 1.8; color: #666; max-width: 560px; margin-bottom: 56px; }

/* ===== SERVICES ===== */
#services { background: #faf7f3; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 4px;
  padding: 40px 32px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #c9a96e;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 32px; margin-bottom: 20px; }
.service-card h3 { font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.service-card p { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.7; color: #777; margin-bottom: 24px; }
.service-price { font-family: 'Lato', sans-serif; font-size: 13px; color: #c9a96e; letter-spacing: 1px; }
.service-arrow { position: absolute; top: 32px; right: 32px; font-size: 20px; color: #ccc; transition: all 0.3s; }
.service-card:hover .service-arrow { color: #c9a96e; transform: translateX(4px); }

/* ===== SERVICE DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.service-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  background: #fff;
  z-index: 2100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 48px 40px;
}
.service-drawer.open { transform: translateX(0); }
.drawer-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 28px; cursor: pointer; color: #1a1a1a; line-height: 1; }
.drawer-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid #e8e0d4; }
.drawer-title { font-size: 36px; font-weight: 300; }
.drawer-subtitle { font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #c9a96e; margin-top: 8px; }
.drawer-section-label { font-family: 'Lato', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #999; margin: 28px 0 16px; }
.drawer-item { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid #f0ebe3; }
.drawer-item-name { font-family: 'Lato', sans-serif; font-size: 14px; color: #333; }
.drawer-item-price { font-family: 'Lato', sans-serif; font-size: 14px; color: #c9a96e; font-weight: 700; white-space: nowrap; margin-left: 16px; }
.drawer-book-btn {
  display: block; width: 100%; margin-top: 40px;
  background: #1a1a1a; color: #fff;
  padding: 18px; text-align: center;
  font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: background 0.3s;
}
.drawer-book-btn:hover { background: #c9a96e; }

/* ===== ABOUT ===== */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(145deg, #f2ebe0, #e8ddd0);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: #c9a96e;
}
.about-accent { position: absolute; bottom: -24px; right: -24px; width: 60%; aspect-ratio: 1; background: #f9f5ef; border-radius: 4px; z-index: -1; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.stat { text-align: center; padding: 24px; background: #faf7f3; border-radius: 4px; }
.stat-num { font-size: 36px; font-weight: 300; color: #c9a96e; }
.stat-label { font-family: 'Lato', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: #1a1a1a; color: #fff; text-align: center; }
#testimonials .section-label { color: #c9a96e; }
#testimonials .section-title { color: #fff; }
.testimonial { max-width: 700px; margin: 0 auto; }
.testimonial-text { font-size: clamp(20px, 3vw, 28px); font-style: italic; font-weight: 300; line-height: 1.6; margin-bottom: 32px; color: #f0ebe3; }
.testimonial-author { font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #c9a96e; }
.stars { color: #c9a96e; font-size: 20px; margin-bottom: 24px; }

/* ===== GALLERY ===== */
#gallery { background: #faf7f3; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #f2ebe0, #e0d5c5);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item:nth-child(3) { grid-row: span 2; aspect-ratio: auto; }

/* ===== BOOKING / CTA ===== */
#book {
  background: linear-gradient(135deg, #c9a96e 0%, #b8904a 100%);
  color: #fff;
  text-align: center;
  padding: 100px 48px;
}
#book .section-label { color: rgba(255,255,255,0.7); }
#book .section-title { color: #fff; }
#book .section-sub { color: rgba(255,255,255,0.85); margin: 0 auto 40px; }
.btn-white { background: #fff; color: #1a1a1a; padding: 18px 48px; font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all 0.3s; display: inline-block; }
.btn-white:hover { background: #1a1a1a; color: #fff; }

/* ===== CONTACT ===== */
#contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
.contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-family: 'Lato', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #999; margin-bottom: 6px; }
.contact-value { font-family: 'Lato', sans-serif; font-size: 16px; color: #1a1a1a; }
.hours-grid { display: grid; grid-template-columns: 1fr auto; gap: 4px 24px; font-family: 'Lato', sans-serif; font-size: 14px; color: #555; }
.hours-day { color: #888; }
.map-placeholder {
  background: linear-gradient(145deg, #f2ebe0, #e8ddd0);
  border-radius: 4px; height: 100%;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: #c9a96e;
}
.map-placeholder span { font-size: 48px; }
.map-placeholder p { font-family: 'Lato', sans-serif; font-size: 14px; color: #888; }

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #888;
  padding: 60px 48px 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .footer-logo { font-size: 20px; letter-spacing: 3px; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 16px; }
.footer-brand .footer-logo span { color: #c9a96e; }
.footer-brand p { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #c9a96e; margin-bottom: 20px; }
.footer-col a, .footer-col p { font-family: 'Lato', sans-serif; font-size: 14px; color: #888; text-decoration: none; display: block; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: #c9a96e; }
.footer-bottom { border-top: 1px solid #333; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-bottom p { font-family: 'Lato', sans-serif; font-size: 13px; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: #888; text-decoration: none; font-family: 'Lato', sans-serif; font-size: 13px; transition: color 0.3s; }
.social-links a:hover { color: #c9a96e; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 24px; }
  .hero { padding: 60px 24px; min-height: 70vh; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3) { grid-row: span 1; aspect-ratio: 1; }
  .hero-image { display: none; }
  footer { padding: 48px 24px 24px; }
}