:root {
  --white: #ffffff;
  --text: #1d1d1f;
  --muted: #6b6470;
  --gold: #cfa24f;
  --gold-soft: #f6ebd3;
  --rose: #e66d9e;
  --rose-soft: #fff1f6;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(207,162,79,.18);
}
.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-mini {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}
.topbar-btn, .btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: .25s ease;
}
.topbar-btn, .btn-primary {
  background: linear-gradient(135deg, var(--gold), #e6bf6e);
  color: #1a140d;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(29,29,31,.12);
}
.topbar-btn:hover, .btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 52px;
}
.floral-bg::before,
.floral-bg::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(230,109,158,.22), transparent 45%),
    radial-gradient(circle at 60% 60%, rgba(207,162,79,.20), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,192,203,.18), transparent 65%);
  filter: blur(8px);
  z-index: 0;
}
.floral-bg::before { top: -90px; left: -70px; }
.floral-bg::after { right: -70px; bottom: -60px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: #9e3b64;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.hero h1, .section-heading h2, .contact-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 14px 0 18px;
}
.hero h1 { font-size: clamp(3.5rem, 8vw, 6.7rem); color: #7f183c; }
.hero-text, .section-heading p, .info-panel p, .footer p, .contact-wrap p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin: 24px 0 10px;
}
.point-card, .info-panel, .service-card, .contact-wrap {
  background: #fff;
  border: 1px solid rgba(207,162,79,.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.point-card { padding: 18px; }
.point-card strong { display: block; margin-bottom: 6px; }
.hero-location { margin: 10px 0 24px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.logo-card {
  padding: 18px;
  background: linear-gradient(180deg, #fff, #fff8eb);
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(207,162,79,.18);
}
.logo-card img {
  width: 100%;
  border-radius: 28px;
}

.intro, .services, .contact-section { padding: 72px 0; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .contact-wrap h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.info-panel { padding: 24px; }
.info-panel h3, .service-card h3, .footer h3, .footer h4 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif;
}
.inline-link {
  display: inline-block;
  margin-top: 10px;
  color: #9e3b64;
  font-weight: 700;
}
.floral-band {
  background:
    linear-gradient(180deg, rgba(255,241,246,.8), rgba(255,255,255,1));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.service-card {
  min-height: 150px;
  padding: 24px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,235,211,.72));
}
.service-card h3 {
  font-size: 1.9rem;
  margin: 0;
}
.service-card.wide { grid-column: span 3; min-height: 120px; }

.contact-wrap {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer {
  padding: 36px 0 90px;
  background: #fffaf2;
  border-top: 1px solid rgba(207,162,79,.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: #25D366;
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, .35);
  z-index: 90;
}

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

@media (max-width: 920px) {
  .hero-grid, .intro-grid, .services-grid, .footer-grid, .contact-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .contact-wrap { justify-content: initial; }
  .service-card.wide { grid-column: auto; }
}

@media (max-width: 640px) {
  .topbar-inner { min-height: 64px; }
  .hero { padding-top: 38px; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .topbar-btn, .btn-primary, .btn-secondary { width: 100%; }
  .brand-mini { max-width: 180px; }
}
