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

body {
  background: linear-gradient(160deg, #fce7f3, #fff1f2);
  background-attachment: fixed;
  font-family: 'DM Sans', sans-serif;
  color: #555;
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, .site-logo {
  font-family: 'Playfair Display', serif;
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

p { margin-bottom: 12px; }

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

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

/* Cookie banner */
.cookie-banner {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 14px; }
.cookie-banner.hidden { display: none; }

/* Header / Nav */
.site-header { padding: 16px 0; background: transparent; }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a { color: #1a1a1a; font-weight: 500; }
.nav-links a:hover { color: #be185d; text-decoration: none; }

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

/* Sections */
.section { padding: 64px 0; }
.section-lead { color: #555; margin-bottom: 32px; max-width: 700px; }

/* Hero */
.hero { padding: 64px 0; }
.hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 0 0 60%; }
.hero-text p { font-size: 1.1rem; margin-bottom: 24px; color: #555; }
.hero-visual {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}
.hero-shape {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbcfe8, #fda4af);
  opacity: 0.7;
}

/* About */
.about { max-width: 800px; }
.about p { margin-bottom: 16px; }

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

/* Card */
.card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 18px rgba(190,24,93,0.08); }

/* Contact */
.contact { max-width: 560px; margin: 0 auto; }
.contact-info {
  text-align: center;
  margin-bottom: 24px;
}
.contact-info p { margin-bottom: 6px; }
.contact-card { padding: 32px; }
.contact-card h2 { margin-bottom: 6px; }
.muted { color: #999; margin-bottom: 20px; }

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 12px;
  margin-bottom: 6px;
}
.contact-form input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.contact-form input:focus {
  border-color: #be185d;
  box-shadow: 0 0 0 2px #be185d20;
}
.contact-form button { margin-top: 20px; }
.form-success {
  display: none;
  margin-top: 16px;
  color: #166534;
  font-size: 14px;
}
.form-success.show { display: block; }

/* Footer */
.site-footer {
  text-align: center;
  color: #999;
  padding: 32px 0;
}
.site-footer p { margin-bottom: 12px; font-size: 14px; }
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a { font-size: 14px; }

/* Legal pages */
.legal { padding: 48px 0 64px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 24px; }
.legal-content h2 { margin-top: 28px; margin-bottom: 12px; font-size: 1.25rem; }
.legal-content p, .legal-content li { margin-bottom: 10px; }
.legal-content ul { padding-left: 22px; margin-bottom: 12px; }

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero-grid { flex-direction: column; text-align: left; }
  .hero-text, .hero-visual { flex: 1 1 100%; width: 100%; }
  .hero-shape { width: 200px; height: 200px; }
  .nav { flex-wrap: wrap; gap: 16px; }
  .nav-links { gap: 16px; flex-wrap: wrap; }
  .contact-card { padding: 24px; }
  .section { padding: 48px 0; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
