/* Theme */
:root {
  --bg: #fffaf9;
  --surface: #ffffff;
  --text: #2d2a2a;
  --muted: #6d6666;
  --primary: #d89db3; /* blush pink */
  --primary-dark: #c17f99;
  --accent: #c2b280; /* soft gold */
  --ring: #f2d7e3;
  --shadow: rgba(20, 16, 16, 0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 64px; /* offset for fixed header */
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid #f2e9ec;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; }
.nav a { color: var(--muted); text-decoration: none; margin-left: 16px; }
.nav a:hover { color: var(--text); }

/* Mobile menu toggle */
.menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid #e9dbe1; background: #fff; border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle .bar { display: block; width: 18px; height: 2px; background: var(--text); margin: 3px 0; transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-open .menu-toggle .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-open .menu-toggle .bar:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle .bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 78vh; display: grid; align-items: center; }
.hero-media { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(255,250,249,0.15), rgba(255,250,249,1)),
  url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat; }
.hero-content { position: relative; padding: 72px 0; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 6vw, 3.25rem); line-height: 1.1; margin: 0 0 12px; }
.subheadline { color: var(--muted); font-size: 1.05rem; margin: 0 0 24px; }

.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 20px var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--text); border: 1px solid #f1e7ea; }
.btn-light:hover { border-color: var(--primary); color: var(--primary-dark); }

/* Sections */
.section { padding: 72px 0; }
.section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 20px; }

/* About */
.about-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.about-photo img { width: 100%; border-radius: 16px; box-shadow: 0 12px 40px var(--shadow); }
.badges { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; padding: 0; margin: 16px 0 0; }
.badges li { background: var(--surface); border: 1px solid #f1e7ea; border-radius: 999px; padding: 8px 12px; font-size: 0.9rem; }

/* Services */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card { background: var(--surface); border: 1px solid #f3e9ee; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px var(--shadow); display: flex; flex-direction: column; }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 16px; }
.card-body h3 { margin: 0 0 6px; font-size: 1.1rem; }
.card-actions { margin-top: 10px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-item { margin: 0; }
.gallery-item img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; cursor: zoom-in; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: none; align-items: center; justify-content: center; flex-direction: column; padding: 20px; z-index: 100; }
.lightbox.open { display: flex; }
.lightbox-image { max-width: 92vw; max-height: 70vh; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.lightbox-caption { color: #fff; margin-top: 10px; text-align: center; }
.lightbox-close { position: absolute; top: 16px; right: 16px; font-size: 28px; color: #fff; background: transparent; border: 0; cursor: pointer; }

/* Reviews */
.reviews { background: linear-gradient(180deg, #fff, #fff7f9); }
.testimonial-slider { position: relative; background: var(--surface); border: 1px solid #f1e7ea; border-radius: 16px; padding: 20px; overflow: hidden; }
.slides { position: relative; min-height: 120px; }
.slide { position: absolute; inset: 0; opacity: 0; transform: translateY(8px); transition: all 250ms ease; }
.slide.active { opacity: 1; transform: translateY(0); }
.slide p { margin: 0 0 6px; font-size: 1rem; }
.slide footer { color: var(--muted); font-size: 0.95rem; }
.slider-controls { display: flex; gap: 8px; position: absolute; right: 12px; bottom: 12px; }
.slider-controls button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #e9dbe1; background: #fff; cursor: pointer; }
.slider-controls button:hover { border-color: var(--primary); color: var(--primary); }

/* Contact */
.contact-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.contact-form { display: grid; gap: 12px; background: var(--surface); border: 1px solid #f3e9ee; border-radius: 16px; padding: 16px; }
.form-row { display: grid; gap: 6px; }
label { font-size: 0.9rem; color: var(--muted); }
input, select, textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid #ecdce3; background: #fff; font-family: inherit; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--ring); border-color: var(--primary); }
.map iframe { width: 100%; height: 260px; border: 0; border-radius: 16px; box-shadow: 0 8px 30px var(--shadow); }

/* Floating CTAs */
.floating-ctas { position: fixed; left: 50%; transform: translateX(-50%); bottom: 14px; display: flex; gap: 10px; z-index: 60; }
.fab { display: inline-flex; align-items: center; justify-content: center; min-width: 120px; padding: 12px 16px; border-radius: 999px; color: #fff; text-decoration: none; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.fab-whatsapp { background: #25d366; }
.fab-call { background: #1d1b1b; }

/* Footer */
.site-footer { padding: 28px 0; border-top: 1px solid #f2e9ec; background: #fff; }
.footer-inner { display: grid; gap: 12px; grid-template-columns: 1fr; text-align: center; color: var(--muted); }
.footer-inner .brand { justify-self: center; }
.social a { color: var(--muted); margin: 0 8px; text-decoration: none; }
.social a:hover { color: var(--primary-dark); }

/* Responsive */
@media (min-width: 720px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .footer-inner { grid-template-columns: 1fr auto 1fr; align-items: center; text-align: left; }
  .footer-inner .brand { justify-self: start; }
  .floating-ctas { right: 16px; left: auto; transform: none; }
}

/* Mobile nav behavior */
@media (max-width: 719px) {
  .hero-content { padding: 72px 20px; }
  .menu-toggle { display: inline-flex; }
  .nav { position: fixed; top: 64px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid #f2e9ec; display: none; flex-direction: column; padding: 10px 16px 16px; box-shadow: 0 10px 30px var(--shadow); }
  .nav a { margin: 8px 0; padding: 10px 6px; border-radius: 8px; }
  .menu-open #primary-nav { display: flex; }
}

/* Extra small screens tweaks */
@media (max-width: 360px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Bottom Sheet (Services Details) */
.sheet-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 95; }
.sheet-backdrop.open { opacity: 1; visibility: visible; }
.bottom-sheet { position: fixed; left: 0; right: 0; bottom: -100%; background: var(--surface); border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0 -10px 40px rgba(0,0,0,0.2); transition: transform .35s ease; transform: translateY(100%); z-index: 96; display: flex; flex-direction: column; max-height: 85vh; }
.bottom-sheet.open { transform: translateY(0); bottom: 0; }
.sheet-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #f0e6ea; }
.sheet-title { font-weight: 600; }
.sheet-close { border: 1px solid #e9dbe1; background: #fff; border-radius: 10px; padding: 8px 12px; cursor: pointer; }
.sheet-body { overflow: auto; padding: 12px; }
.service-list { display: grid; gap: 12px; }
.service-item { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: center; border: 1px solid #f3e9ee; border-radius: 12px; padding: 10px; background: #fff; }
.service-item img { width: 84px; height: 84px; object-fit: cover; border-radius: 10px; }
.service-item h4 { margin: 0 0 4px; font-size: 1rem; }
.service-item p { margin: 0; color: var(--muted); font-size: .95rem; }


