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

body {
  background: linear-gradient(200deg, #fbcfe8, #fdf2f8);
  background-attachment: fixed;
  font-family: 'Karla', sans-serif;
  color: #444;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Archivo', sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 3rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }

p { margin-bottom: 14px; }

a {
  color: #db2777;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

ul { list-style: none; }

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.85);
  padding: 12px 0;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 14px; }
.cookie-banner.hidden { display: none; }

/* Navbar */
header { padding: 16px 0; }
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.site-logo {
  font-size: 1.5rem;
  text-align: center;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  color: #1a1a1a;
  font-weight: 500;
}
.nav-links a:hover { color: #db2777; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-block;
  background: #db2777;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Karla', sans-serif;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.btn-block { width: 100%; padding: 12px; }
.btn-small { padding: 8px 16px; font-size: 14px; }

/* Section */
.section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 32px; }

/* Hero */
.hero { padding: 72px 0 48px; }
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 0 0 60%; }
.hero-art { flex: 0 0 40%; display: flex; justify-content: center; }
.hero-shape {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a8d4, #db2777);
  opacity: 0.7;
}

/* About */
.about { max-width: 800px; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Card */
.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(2px);
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

/* Contact */
.contact { max-width: 560px; margin: 0 auto; }
.contact-card { padding: 32px; }
.muted { color: #777; margin-bottom: 20px; }
.contact-info { margin-bottom: 24px; }
.contact-info p { font-size: 15px; margin-bottom: 6px; }

.lead-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.lead-form input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  font-family: 'Karla', sans-serif;
  transition: border-color 0.2s;
  background: #fff;
}
.lead-form input:focus {
  border-color: #db2777;
  box-shadow: 0 0 0 2px rgba(219, 39, 119, 0.125);
}
.lead-form .btn { margin-top: 20px; }
.form-success {
  display: none;
  margin-top: 16px;
  color: #1a7a3c;
  font-size: 15px;
}
.form-success.visible { display: block; }

/* Legal pages */
.legal { padding: 48px 0 72px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 28px; }
.legal-content h3 { margin-top: 20px; }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }

/* Footer */
footer { padding: 32px 0; text-align: center; color: #777; }
.footer-inner p { color: #777; font-size: 14px; margin-bottom: 12px; }
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a { font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text, .hero-art { flex: 1 1 100%; }
  .hero-shape { width: 180px; height: 180px; }
  .nav-links { gap: 18px; }
  .contact-card { padding: 24px; }
  .section { padding: 56px 0; }
  .cookie-inner { flex-direction: column; text-align: center; }
}
