:root {
  --color-primary: #DC2626;
  --color-secondary: #F87171;
  --color-accent: #CA8A04;
  --color-neutral-dark: #450A0A;
  --color-neutral-light: #FEF2F2;
  --color-muted: rgba(69, 10, 10, 0.65);
  --color-border: rgba(69, 10, 10, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1120px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; 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;
  font-size: 17px;
}
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); font-weight: 600; line-height: 1.2; color: var(--color-neutral-dark); margin: 0 0 0.6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }

/* === Layout === */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.section { padding-block: 4rem; }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-lede { text-align: center; color: var(--color-muted); max-width: 56ch; margin: 0 auto 2.5rem; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 242, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.9rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 0; padding: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
.primary-nav { display: none; flex-direction: column; gap: 0.75rem; }
.primary-nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.25rem; border-bottom: 1px solid var(--color-border); box-shadow: 0 20px 40px -30px rgba(0,0,0,0.2); }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: 0.5rem 0; }
.primary-nav a.is-active { color: var(--color-primary); }

/* === Hero centered === */
.hero { padding-block: 3.5rem 3rem; text-align: center; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero .lede { max-width: 52ch; margin: 1.25rem auto 1.75rem; color: var(--color-muted); font-size: 1.15rem; }
.hero-cta { margin: 0 0 2.5rem; }
.hero-figure { margin: 0; }
.hero-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 14px; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 0; cursor: pointer;
}
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: #b91c1c; text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 25px -12px rgba(220,38,38,0.55); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn-accent:hover { background: #a16207; text-decoration: none; transform: translateY(-1px); }

/* === Intro paragraph === */
.intro { text-align: center; }
.intro h2 { margin-bottom: 1rem; }
.intro p { color: var(--color-neutral-dark); font-size: 1.075rem; }

/* === Highlights grid === */
.highlights { background: #fff; }
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  padding: 1.75rem;
  border-radius: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }
a.card-link { color: inherit; display: block; }
a.card-link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 20px 40px -25px rgba(69,10,10,0.25); }
.card-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(220,38,38,0.1); color: var(--color-primary); margin-bottom: 1rem; }

/* === Testimonial === */
.testimonial { background: var(--color-neutral-light); text-align: center; }
.testimonial blockquote { margin: 0; padding: 2rem 0; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.45; color: var(--color-neutral-dark); font-style: italic; max-width: 40ch; margin: 0 auto 1rem; }
.testimonial cite { display: block; font-style: normal; color: var(--color-muted); font-size: 0.95rem; letter-spacing: 0.05em; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); padding-block: 3.5rem; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(254,242,242,0.9); max-width: 52ch; margin: 0 auto 1.5rem; }
.cta-band .btn-accent { background: var(--color-neutral-light); color: var(--color-primary); }
.cta-band .btn-accent:hover { background: #fff; }

/* === Contact band === */
.contact-band .card { text-align: center; }
.contact-band .card-icon { margin-inline: auto; }

/* === FAQ === */
.faq details { border-bottom: 1px solid var(--color-border); padding: 1.1rem 0; }
.faq details:first-of-type { border-top: 1px solid var(--color-border); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); font-size: 1.15rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--color-neutral-dark); }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-primary); transition: transform 0.2s ease; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Contact form === */
.contact-form { display: grid; gap: 1.1rem; margin-top: 2rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 600; font-size: 0.95rem; }
.form-row input, .form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--color-muted); flex-wrap: wrap; }
.form-consent input { margin-top: 0.25rem; }
.contact-form .btn { justify-self: start; }

/* === Article detail === */
.article-detail { max-width: 65ch; margin-inline: auto; padding: 2rem 1rem 3rem; }
.article-detail .eyebrow { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.78rem; color: var(--color-accent); font-weight: 600; margin: 0 0 0.75rem; }
.article-detail h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.25rem; }
.article-detail .article-sub { font-size: 1.2rem; color: var(--color-muted); margin-bottom: 0; }
.article-hero { margin: 2rem 0; }
.article-hero img { aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; width: 100%; }
.article-detail h2 { margin: 2.5rem 0 1rem; font-size: 1.75rem; }
.article-detail p { font-size: 1.125rem; line-height: 1.75; margin-block: 1.25rem; }
.article-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.back-link { font-weight: 500; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.site-footer h4 { color: var(--color-neutral-light); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; margin: 0 0 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(254,242,242,0.8); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer .tagline { color: rgba(254,242,242,0.7); font-style: italic; }
.site-footer .footer-logo img { height: 60px; filter: brightness(0) invert(1); }
.site-footer address { font-style: normal; color: rgba(254,242,242,0.8); margin-bottom: 1rem; line-height: 1.7; }
.legal-links { margin-top: 0.5rem; }
.legal-links li { margin-bottom: 0.35rem; font-size: 0.9rem; }
.copy { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(254,242,242,0.15); text-align: center; font-size: 0.85rem; color: rgba(254,242,242,0.6); }
.copy p { margin: 0; }

/* === 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: 14px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  border: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(254,242,242,0.14);
  color: var(--color-neutral-light);
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); color: var(--color-neutral-light); }
.cookie-banner [data-cookie-accept]:hover { background: #a16207; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: 0.5rem; background: var(--color-accent); }

/* === Responsive === */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .logo img { height: 96px; }
  .site-footer .footer-logo img { height: 72px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; gap: 2rem; position: static; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .primary-nav.is-open { position: static; }
  .hero { padding-block: 5rem 4rem; }
  .section { padding-block: 5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; }
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; margin: 0; }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .hero-figure img { max-height: 560px; }
}
