:root {
  --color-primary: #E11D48;
  --color-secondary: #FB7185;
  --color-accent: #F97316;
  --color-neutral-dark: #881337;
  --color-neutral-light: #FFF1F2;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 1180px;
  --radius: 12px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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;
  font-weight: 600;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(136, 19, 55, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.logo--footer img { height: 60px; }

.nav-toggle {
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-neutral-dark);
  display: block;
}
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding-block: 1rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(136,19,55,0.06);
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: auto;
    padding: 0;
  }
  .primary-nav a { border-bottom: 0; }
}

/* === Hero (centered) === */
.hero {
  text-align: center;
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .hero { padding-block: 6rem; }
}
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub {
  max-width: 52ch;
  margin: 1rem auto 2rem;
  font-size: 1.15rem;
  color: var(--color-neutral-dark);
  opacity: 0.85;
}
.hero__image {
  margin: 3rem auto 0;
  width: 100%;
  max-width: 1080px;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 0;
  cursor: pointer;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 12px 30px -12px rgba(225,29,72,0.5); }
.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 12px 30px -12px rgba(249,115,22,0.55); }

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section--intro { text-align: left; }
.section--intro h2 { text-align: left; }
.section--alt { background: rgba(251, 113, 133, 0.08); }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__header h2 { margin-bottom: 0.5rem; }
.section__header p { max-width: 55ch; margin-inline: auto; opacity: 0.8; }

/* === Grid & Cards === */
.grid { display: grid; gap: 1.5rem; }
.grid--cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--cards { grid-template-columns: repeat(3, 1fr); } }
.grid--two { }
@media (min-width: 640px) { .grid--two { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(136,19,55,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card h3 { margin-top: 0.75rem; }
.card p { margin: 0; opacity: 0.9; }
.card__icon { color: var(--color-primary); }
a.card-link { color: inherit; display: block; }
a.card-link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(136,19,55,0.25); }

/* === Testimonial === */
.testimonial {
  margin: 0;
  text-align: center;
  padding: 2.5rem 1rem;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  color: var(--color-primary);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding-block: 4rem;
}
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 55ch; margin: 0 auto 1.75rem; opacity: 0.92; }

/* === Contact band === */
.section--contact-band {
  background: rgba(251, 113, 133, 0.12);
  border-radius: var(--radius);
}
.section--contact-band .container--narrow { padding-block: 1rem; }

/* === FAQ === */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  background: #fff;
  border: 1px solid rgba(136,19,55,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-neutral-dark);
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 0.75rem 0 0; opacity: 0.9; }

/* === Contact form === */
.contact-form { display: grid; gap: 1.25rem; }
.contact-form label { display: grid; gap: 0.4rem; font-weight: 500; font-size: 0.95rem; }
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(136,19,55,0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: transparent;
}
.form-consent {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
}
.form-consent input { margin-top: 0.25rem; }

/* === Article detail === */
.article-detail {
  max-width: 65ch;
  margin-inline: auto;
  padding: 3rem 1.25rem;
}
.article-detail .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.article-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article-detail__sub {
  font-size: 1.2rem;
  color: var(--color-neutral-dark);
  opacity: 0.75;
  margin-bottom: 1.5rem;
}
.article-detail__hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-block: 2rem;
  border-radius: 8px;
}
.article-detail h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
}
.article-detail p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-block: 1.25rem;
}
.article-detail__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(136,19,55,0.1);
}
.back-link { font-weight: 500; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 3rem 1.5rem;
  margin-top: 4rem;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; font-size: 0.9rem; opacity: 0.85; }
.site-footer__base {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,241,242,0.15);
  font-size: 0.85rem;
  opacity: 0.75;
}
.site-footer__base p { margin: 0; }
.site-footer .logo--footer img { filter: brightness(0) invert(1); opacity: 0.95; }

/* === 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 20px 50px -15px rgba(0,0,0,0.35);
  max-width: 560px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; line-height: 1.55; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner__actions button {
  font: inherit;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,241,242,0.25);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
  font-size: 0.85rem;
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 600;
}
.cookie-banner__prefs {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cookie-banner__prefs button {
  margin-top: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  justify-self: start;
}
