:root {
  --color-primary: #EC4899;
  --color-secondary: #F472B6;
  --color-accent: #06B6D4;
  --color-neutral-dark: #831843;
  --color-neutral-light: #FDF2F8;
  --color-text: #3D0F26;
  --color-muted: #7A395A;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-soft: 0 20px 50px -30px rgba(131, 24, 67, 0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; letter-spacing: -0.01em; }
h1 { font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 720px; }

/* === Header === */
.site-header {
  border-bottom: 1px solid rgba(131, 24, 67, 0.08);
  background: var(--color-neutral-light);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; }
.logo--footer img { height: 64px; }
.nav-toggle {
  background: none;
  border: 1px solid rgba(131, 24, 67, 0.15);
  border-radius: 8px;
  padding: .5rem;
  color: var(--color-neutral-dark);
  cursor: pointer;
}
.primary-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: .5rem;
  padding-top: .5rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(131, 24, 67, 0.06);
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .logo--footer img { height: 72px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    gap: 2rem;
    padding-top: 0;
  }
  .primary-nav a { border-bottom: none; padding: 0; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  font-size: 1rem;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn--primary { background: var(--color-primary); color: #FFFFFF; }
.btn--accent { background: var(--color-accent); color: #FFFFFF; }

/* === Hero (centered) === */
.hero {
  text-align: center;
  padding-block: 3rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #FFFFFF 100%);
}
.hero h1 {
  max-width: 28ch;
  margin: 0 auto 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
}
.hero__sub {
  max-width: 48ch;
  margin: 0 auto 1.75rem;
  font-size: 1.15rem;
  color: var(--color-muted);
}
.hero__cta { margin-bottom: 2.5rem; }
.hero__figure {
  margin: 3rem auto 0;
  max-width: 1000px;
}
.hero__figure img {
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) { .hero { padding-block: 6rem; } }

/* === Intro === */
.intro { padding-block: 3.5rem; }
.intro--alt { background: var(--color-neutral-light); }
.intro .container--narrow { text-align: center; }
.intro p:not(.section__sub) { text-align: left; font-size: 1.05rem; }
.section__sub { color: var(--color-muted); font-size: 1.05rem; margin-bottom: 1.75rem; }

/* === Highlights grid === */
.highlights { padding-block: 3.5rem; background: var(--color-neutral-light); }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--cards { grid-template-columns: repeat(3, 1fr); } .grid--articles { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: #FFFFFF;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(131, 24, 67, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--color-secondary);
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); font-size: .98rem; margin: 0; }
.card-link { display: block; color: inherit; }
.card-link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.card-link h3 { color: var(--color-neutral-dark); }

/* === Testimonial === */
.testimonial { padding-block: 3.5rem; text-align: center; }
.testimonial h2 { text-align: center; }
.testimonial blockquote {
  margin: 0 auto;
  max-width: 640px;
  padding: 2rem;
  border-left: 4px solid var(--color-accent);
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  text-align: left;
}
.testimonial blockquote p { font-size: 1.15rem; font-style: italic; color: var(--color-text); }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 600; color: var(--color-neutral-dark); }

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: #FFFFFF;
  padding-block: 3.5rem;
  text-align: center;
}
.cta-band h2 { color: #FFFFFF; }
.cta-band p { color: rgba(255, 255, 255, 0.92); font-size: 1.1rem; }

/* === Contact === */
.contact-band { padding-block: 3rem; background: var(--color-neutral-light); text-align: center; }
.contact-band a { color: var(--color-primary); }
.contact-form-section { padding-block: 3.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 600; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea {
  border: 1px solid rgba(131, 24, 67, 0.18);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #FFFFFF;
  color: var(--color-text);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--color-muted);
  flex-wrap: wrap;
}
.form-consent input { margin-top: .25rem; }
.contact-form button[type="submit"] { align-self: flex-start; }

/* === Article detail === */
.article-detail {
  max-width: 65ch;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}
.article-detail .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: .75rem;
}
.article-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article-sub {
  font-size: 1.25rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.article-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-block: 2rem;
  border-radius: 8px;
}
.article-detail h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
}
.article-detail p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-block: 1.25rem;
  color: var(--color-text);
}
.article-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(131, 24, 67, 0.12); }
.back-link { font-weight: 600; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 3rem 1.5rem;
  margin-top: 4rem;
}
.site-footer h3 {
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-secondary); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.footer__tagline { color: rgba(253, 242, 248, 0.75); font-size: .95rem; }
.footer__nav, .footer__legal { display: flex; flex-direction: column; gap: .5rem; }
.footer__legal { margin-top: 1rem; }
.footer__contact address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.site-footer__copy {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 242, 248, 0.15);
  font-size: .85rem;
  color: rgba(253, 242, 248, 0.7);
  text-align: center;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 9999;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.5);
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  border: none;
  border-radius: 999px;
  padding: .6rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
}
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); color: #FFFFFF; }
.cookie-banner__actions button[data-cookie-reject] { background: rgba(253, 242, 248, 0.15); color: var(--color-neutral-light); }
.cookie-banner__actions button[data-cookie-settings] { background: transparent; color: var(--color-neutral-light); text-decoration: underline; }
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(253, 242, 248, 0.2);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs button[data-cookie-save] {
  align-self: flex-start;
  margin-top: .5rem;
  background: var(--color-accent);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: .55rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
}
