:root {
  --primary: #cc3366;
  --primary-dark: #99264f;
  --accent: #f8e1eb;
  --bg: #ffffff;
  --surface: #fdf5f8;
  --text: #2b2233;
  --text-light: #6b5a66;
  --border: #f0d7e2;
  --radius: 16px;
  --max-width: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

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

a { color: var(--primary); }

.skip-link {
  position: absolute;
  right: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 2147483002;
  font-weight: 700;
}
.skip-link:focus { right: 8px; top: 8px; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, var(--accent) 0%, #ffffff 100%);
  padding: 32px 24px 64px;
  text-align: center;
}
.site-header .logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.site-header h1 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.site-header .tagline {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.site-header .phone {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 600;
}
.site-header .phone a { color: var(--primary-dark); text-decoration: none; }

/* Sections */
section { padding: 56px 24px; }
section.alt { background: var(--surface); }

h2.section-title {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.intro-text {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose p { margin-bottom: 16px; }

.checklist {
  max-width: 780px;
  margin: 24px auto 0;
  list-style: none;
}
.checklist li {
  position: relative;
  padding-right: 32px;
  margin-bottom: 14px;
}
.checklist li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
}
.checklist strong { color: var(--primary-dark); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 500 / 650;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Contact form */
.contact-section {
  background: var(--accent);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
  display: block;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.contact-form button[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.contact-form button[type="submit"]:hover { background: var(--primary-dark); }

/* Social + footer */
.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 32px 24px;
}
.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
}
.social-row svg { width: 24px; height: 24px; }

.site-footer {
  background: var(--surface);
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}
.site-footer a { color: var(--primary-dark); }

/* GMB reviews container fallback spacing */
.reviews-section { padding: 56px 24px; }

/* FAB */
.fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.fab {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary); }
.fab svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
}
@media print { .fab-container { display: none; } }

/* Thanks page */
.thanks-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.thanks-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
}
.thanks-card h1 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.thanks-card p {
  color: var(--text-light);
  margin-bottom: 24px;
}
.thanks-card svg { width: 96px; height: 96px; margin: 0 auto 8px; color: var(--primary); }
.thanks-card .back-home {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}
.thanks-card .back-home:hover { background: var(--primary-dark); }
