/* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}

/* ===== VARIABLES ===== */
:root {
  --blush: #f4e4dc;
  --blush-light: #faf5f2;
  --rose: #c4917b;
  --rose-dark: #a87260;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --charcoal: #2c2c2c;
  --text: #4a4a4a;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}

a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-dark); }

img { max-width: 100%; height: auto; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 145, 123, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--rose);
}

.btn-nav {
  background: var(--rose);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--rose-dark); color: var(--white); }

.btn-large { padding: 18px 48px; font-size: 1.05rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b5e4f;
  margin-bottom: 12px;
}
.section-label.center { text-align: center; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.3px;
}
.main-nav a:hover { color: var(--rose); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blush) 0%, #e8cfc4 50%, var(--rose) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-location {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold-light);
  border-radius: var(--radius);
  pointer-events: none;
}
.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text h2 { font-size: 2.4rem; margin-bottom: 8px; }
.about-role {
  color: var(--rose);
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-style: italic;
}
.about-text p { margin-bottom: 20px; }
.about-text .btn { margin-top: 12px; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--blush-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--rose);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-detail {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--rose);
  padding: 6px 14px;
  background: var(--blush-light);
  border-radius: 20px;
}

/* ===== PACKAGES ===== */
.packages {
  padding: 100px 0;
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.package-card.featured {
  border: 2px solid var(--rose);
  box-shadow: var(--shadow);
  transform: scale(1.04);
}
.package-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.package-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--blush);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.package-card h3 { font-size: 1.6rem; margin-bottom: 12px; }

.package-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.package-features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}
.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
}
.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--blush-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card { text-align: center; }

.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.why-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== TESTIMONIAL BANNER ===== */
.testimonial-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  text-align: center;
}

.testimonial-banner blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.testimonial-banner cite {
  font-style: normal;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 40px 0 32px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--rose);
  margin-top: 4px;
}
.contact-item strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-item p { margin: 0; font-size: 0.95rem; }

.booking-card {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.booking-card h3 { font-size: 1.8rem; margin-bottom: 12px; }
.booking-card > p { color: var(--text-light); margin-bottom: 28px; }
.booking-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 24px 0 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.footer-tagline { margin-top: 12px; font-size: 0.95rem; }

.footer-links h4, .footer-hours h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 2px 0;
}
.footer-links a:hover { color: var(--white); }

.footer-hours p { font-size: 0.85rem; margin-bottom: 4px; }
.footer-hours a { color: rgba(255,255,255,0.7); }
.footer-hours a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--rose);
  color: var(--white);
}
.social-links svg { width: 18px; height: 18px; }

.footer-bottom {
  padding: 12px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* ===== HEADER SCROLL STATE ===== */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}
.site-header.scrolled .logo-img {
  height: 55px;
}

/* ===== MOBILE TOGGLE ANIMATION ===== */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SCROLL REVEAL ===== */
.service-card,
.package-card,
.why-card,
.about-text,
.about-image,
.contact-info,
.contact-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.revealed,
.package-card.revealed,
.why-card.revealed,
.about-text.revealed,
.about-image.revealed,
.contact-info.revealed,
.contact-cta.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger service cards */
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }
.service-card:nth-child(7) { transition-delay: 0.48s; }
.service-card:nth-child(8) { transition-delay: 0.56s; }

/* Stagger why cards */
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .main-nav.active {
    transform: translateY(0);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image { order: -1; }
  .image-frame img { height: 400px; }

  .services-grid { grid-template-columns: 1fr; }

  .hero-content { padding: 100px 0 60px; }
  .container { padding: 0 20px; }
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
}
