:root {
  --color-primary: #E11D48;
  --color-secondary: #FB7185;
  --color-accent: #F97316;
  --color-neutral-dark: #881337;
  --color-neutral-light: #FFF1F2;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 30px 60px -30px rgba(136, 19, 55, 0.28);
  --shadow-soft: 0 10px 30px -15px rgba(136, 19, 55, 0.2);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: #FFF7F7;
  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 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 0.6em; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 1rem;
}

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(136, 19, 55, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-neutral-dark);
  transition: transform 0.2s ease;
}
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); border-bottom: 1px solid rgba(136,19,55,0.08); }
.primary-nav ul { list-style: none; margin: 0; padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: 0.5rem 0; display: inline-block; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; padding: 0; gap: 2rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #ea580c; }
.btn--ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(255,241,242,0.4); }
.btn--ghost:hover { background: rgba(255,241,242,0.1); }

/* === Hero card === */
.hero {
  padding: 3rem 1rem;
  background: linear-gradient(160deg, var(--color-neutral-light) 0%, #FFE4E6 100%);
}
.hero-card__card {
  max-width: 880px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: left;
}
.hero-card__card h1 { max-width: 22ch; }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(136, 19, 55, 0.78);
  max-width: 55ch;
  margin-bottom: 1.5rem;
}
.hero-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero { padding: 5rem 2rem; }
  .hero-card__card { padding: 4rem; }
}

/* === Sections === */
.section {
  padding: 3.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section--narrow {
  max-width: 720px;
  text-align: left;
}
.section--tinted {
  background: var(--color-neutral-light);
  max-width: none;
  margin: 0;
}
.section--tinted > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section__head p { color: rgba(136, 19, 55, 0.72); }
@media (min-width: 768px) {
  .section { padding: 5rem 2rem; }
}

/* === Grid + cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid rgba(136, 19, 55, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.card__icon { color: var(--color-primary); margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: rgba(136, 19, 55, 0.82); margin: 0; }
.card-link { display: block; color: inherit; text-decoration: none; }
.card-link:hover { text-decoration: none; }
.card-link h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial { text-align: center; max-width: 780px; }
.testimonial blockquote {
  margin: 0;
  padding: 0 1rem;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding: 3.5rem 1rem;
  text-align: center;
}
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .cta-band { padding: 4.5rem 2rem; } }

/* === Article detail === */
.article {
  max-width: 65ch;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}
.article__header { margin-bottom: 1.5rem; }
.article__header h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article__lede { font-size: 1.25rem; color: rgba(136, 19, 55, 0.78); }
.article__hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; margin: 2rem 0; }
.article h2 { margin-top: 2.5rem; font-size: 1.6rem; }
.article p { font-size: 1.125rem; line-height: 1.75; margin-block: 1.25rem; color: rgba(30, 10, 20, 0.92); }
.article__footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(136, 19, 55, 0.15); }
.back-link { font-weight: 600; }

/* === Contact === */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 840px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(136, 19, 55, 0.2);
  background: #FFF7F7;
  color: var(--color-neutral-dark);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: 0.6rem; font-weight: 400; font-size: 0.9rem; }
.form-consent input { margin-top: 0.2rem; }
.form-success { color: var(--color-primary); font-weight: 600; margin-top: 1rem; }
address { font-style: normal; line-height: 1.7; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3rem 1rem 1.5rem;
  margin-top: 3rem;
}
.site-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.site-footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-links { margin-top: 1rem; font-size: 0.9rem; opacity: 0.85; }
.logo--footer img { height: 60px; margin-bottom: 0.75rem; filter: brightness(0) invert(1) sepia(1) hue-rotate(310deg) saturate(2); }
.copyright {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 241, 242, 0.12);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* === 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.25rem 1rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.4);
  max-width: 640px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.85rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1rem; font-size: 0.9rem; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
