:root {
  --cream: #f7f3ed;
  --beige: #efe7da;
  --soft-gold: #d8b56a;
  --gold-line: #e4c98f;
  --pink: #f6dde5;
  --text: #2a2a2a;
  --muted: #6a6a6a;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

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

.section { padding: 100px 0; }
.section-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 40px;
  line-height: 1.2;
}
.section-title.center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn-primary { background: var(--text); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.btn-outline { border: 1px solid var(--soft-gold); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--soft-gold); color: var(--white); }
.btn-whatsapp { background: var(--soft-gold); color: var(--white); }
.btn-whatsapp:hover { filter: brightness(1.05); transform: translateY(-2px); }

.frame {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
  overflow: hidden;
}
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  background: transparent;
  backdrop-filter: none;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.brand {
  display: flex;
  align-items: center;
}
.brand img { height: 32px; width: auto; display: block; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  margin-left: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}
.nav-links a:hover { background: rgba(0,0,0,.06); }
.navbar.scrolled {
  background: rgba(255,255,255,.75);
  backdrop-filter: saturate(120%) blur(12px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.hero { background: var(--beige); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 60px;
  margin: 0 0 18px;
}
.subtext { color: var(--muted); max-width: 560px; font-size: 18px; }
.cta-group { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.accent-divider {
  width: 120px;
  height: 10px;
  margin: 18px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--soft-gold), var(--gold-line));
  transform: rotate(-1.5deg);
  box-shadow: 0 6px 14px rgba(216,181,106,.25);
}

.cards-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: 0 20px 42px rgba(0,0,0,.06); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,.10); }
.card-image { height: 240px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 18px 18px 22px; }
.card-body h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; margin: 0 0 8px; }
.card-body p { color: var(--muted); margin: 0 0 14px; }

.custom-banner {
  background: var(--cream);
  border: 1.5px solid var(--gold-line);
  border-radius: 22px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
.custom-banner h2 { font-family: 'Playfair Display', Georgia, serif; margin: 0 0 8px; }
.custom-banner p { color: var(--muted); margin: 0 0 18px; }

.ig-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ig-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 8px 18px rgba(0,0,0,.06); }
.ig-grid img:hover { transform: scale(1.03); box-shadow: 0 12px 26px rgba(0,0,0,.10); }

.testimonials { background: var(--beige); }
.slider { position: relative; overflow: hidden; border-radius: 20px; background: rgba(255,255,255,.6); box-shadow: 0 22px 48px rgba(0,0,0,.06); }
.slider-track { display: flex; transition: transform .6s ease; }
.slider-card { min-width: 100%; padding: 40px; }
.slider-card p { font-size: 20px; line-height: 1.7; color: var(--text); margin: 0; }
.reviewer { margin-top: 16px; color: var(--muted); }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(0,0,0,.2); cursor: pointer; transition: background-color .2s ease, transform .2s ease; }
.slider-dots button.active { background: var(--soft-gold); transform: scale(1.2); }

.coming-soon { text-align: center; padding: 36px; }
.coming-title { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; margin: 0 0 14px; }

.map iframe { width: 100%; height: 360px; display: block; }



.footer { background: var(--cream); padding: 36px 0 16px; }
.footer-grid { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center; }
.footer-info { color: var(--muted); }
.footer-info a { color: var(--text); text-decoration: none; }
.footer-bottom { text-align: center; padding: 18px 0 0; color: var(--muted); font-size: 14px; }
.logo img { width: 100%; height: auto; display: block; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .headline { font-size: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-title { font-size: 32px; }
  .nav-links { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}