/* Apotheken Report – shared site styles */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  color: #0a0a0a;
  line-height: 1.25;
  margin: 0 0 14px;
}
h1 { font-size: 36px; font-weight: 900; }
h2 { font-size: 26px; font-weight: 700; margin-top: 36px; }
h3 { font-size: 19px; font-weight: 700; margin-top: 28px; }
p  { margin: 0 0 16px; }

ul, ol { padding-left: 22px; margin: 0 0 18px; }
li { margin-bottom: 6px; }

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: #ff0000;
  margin-bottom: 14px;
}

/* ───── Header ───── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky; top: 0; z-index: 50;
}
.site-header-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.site-logo img { height: 34px; width: auto; }
.site-nav {
  display: flex; gap: 22px;
  font-size: 14px; font-weight: 600;
}
.site-nav a { color: #1a1a1a; }
.site-nav a:hover { color: #a51b1b; text-decoration: none; }
.site-nav a.active { color: #a51b1b; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  cursor: pointer; color: #1a1a1a;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid #ececec;
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 14px;
  }
  .site-nav.open { display: flex; }
}

/* ───── Layout ───── */
main { flex: 1; }

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

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

.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }

/* ───── Hero ───── */
.hero {
  padding: 60px 0 30px;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.hero h1 { font-size: 42px; }
.hero .lead {
  font-size: 19px; color: #444;
  max-width: 640px; margin: 0 auto 28px;
}

.hero-image {
  max-width: 1180px; margin: 36px auto 0;
  padding: 0 20px;
}
.hero-image img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ───── Generic content block ───── */
.prose h1 { margin-bottom: 22px; }
.prose p, .prose li { color: #2a2a2a; }
.prose .meta {
  color: #777; font-size: 13px;
  margin-bottom: 32px;
}

/* ───── Feature cards (home) ───── */
.feature-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.feature {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 26px 22px;
}
.feature .num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #ff0000; color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 900; font-size: 16px;
  margin-bottom: 14px;
}
.feature h3 { margin: 0 0 8px; font-size: 17px; }
.feature p { font-size: 15px; color: #444; margin: 0; }

/* ───── Value strip ───── */
.values {
  background: #fafafa;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.value-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 720px) {
  .value-grid { grid-template-columns: repeat(4, 1fr); }
}
.value strong {
  display: block;
  font-family: 'Merriweather', serif;
  color: #a51b1b; font-size: 34px;
  font-weight: 900; line-height: 1; margin-bottom: 8px;
}
.value span { font-size: 13px; color: #555; }

/* ───── Expert cards ───── */
.expert-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .expert-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .expert-grid { grid-template-columns: 1fr 1fr; }
}
.expert {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 20px;
}
.expert img {
  width: 130px; height: 160px;
  object-fit: cover;
  border-radius: 8px;
}
.expert h3 { margin: 0 0 4px; font-size: 18px; }
.expert .role {
  color: #a51b1b; font-weight: 700;
  font-size: 13px; text-transform: uppercase;
  letter-spacing: .6px; margin-bottom: 10px;
}
.expert p { font-size: 14px; color: #444; margin: 0; }

@media (max-width: 480px) {
  .expert { grid-template-columns: 1fr; }
  .expert img { width: 100%; height: 220px; }
}

/* ───── Methodology timeline ───── */
.method-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid #ececec;
}
.method-step:first-of-type { border-top: 0; }
.method-step .step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ff0000; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif;
  font-weight: 900; font-size: 18px;
}
.method-step h3 { margin: 4px 0 6px; font-size: 18px; }
.method-step p { margin: 0; color: #444; font-size: 15px; }

/* ───── Contact form ───── */
.contact-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
}
.contact-info {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 26px;
  font-size: 15px;
  color: #2a2a2a;
}
.contact-info h3 { margin-top: 0; }
form.contact-form { display: grid; gap: 14px; }
form.contact-form label {
  display: block;
  font-size: 13px; font-weight: 700;
  color: #2a2a2a; margin-bottom: 6px;
}
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
}
form.contact-form input:focus,
form.contact-form textarea:focus,
form.contact-form select:focus {
  outline: 2px solid #ff0000;
  outline-offset: 1px;
  border-color: #ff0000;
}
form.contact-form textarea { min-height: 140px; resize: vertical; }
form.contact-form .check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #444;
}
form.contact-form .check input { width: auto; margin-top: 3px; }
.btn {
  display: inline-block;
  background: #ff0000; color: #fff !important;
  padding: 13px 26px;
  border: 0; border-radius: 8px;
  font: inherit; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  font-size: 14px; cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: #c70000; text-decoration: none; }

/* ───── Footer ───── */
.site-footer {
  background: #0a0a0a;
  color: #bbb;
  padding: 36px 20px;
  font-size: 13px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1fr auto; }
}
.footer-brand { color: #fff; font-weight: 700; }
.footer-nav a {
  color: #bbb;
  margin: 0 10px;
}
.footer-nav a:hover { color: #fff; }

/* ───── Helpers ───── */
.callout {
  background: #fff7f7;
  border-left: 4px solid #ff0000;
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  color: #2a2a2a;
  font-size: 15px;
}
.callout strong { color: #a51b1b; }

.muted { color: #777; }
.small { font-size: 13px; }

/* ───── Cookie banner ───── */
#ar-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 100;
  padding: 18px;
  pointer-events: none;
  animation: ar-cb-in .35s ease-out;
}
@keyframes ar-cb-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.ar-cb-inner {
  pointer-events: auto;
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18), 0 2px 6px rgba(0, 0, 0, .05);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}
@media (min-width: 820px) {
  .ar-cb-inner { grid-template-columns: 1fr auto; gap: 28px; }
}
.ar-cb-text strong {
  display: block;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 17px;
  font-weight: 900;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.ar-cb-text p {
  margin: 0;
  font-size: 13.5px;
  color: #444;
  line-height: 1.55;
}
.ar-cb-text a { color: #a51b1b; }
.ar-cb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 820px) {
  .ar-cb-actions { justify-content: flex-end; flex-wrap: nowrap; }
}
.ar-cb-btn {
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: .2px;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.ar-cb-btn-ghost {
  background: transparent;
  color: #444;
  border-color: #d6d6d6;
}
.ar-cb-btn-ghost:hover { color: #0a0a0a; border-color: #888; }
.ar-cb-btn-primary {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.ar-cb-btn-primary:hover { background: #c70000; border-color: #c70000; }

/* Settings drawer (within the banner) */
.ar-cb-settings {
  border-top: 1px solid #ececec;
  margin-top: 6px;
  padding-top: 14px;
  display: none;
  gap: 10px;
  flex-direction: column;
}
.ar-cb-settings.open { display: flex; }
.ar-cb-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f3f3;
  font-size: 13px;
}
.ar-cb-row:last-child { border-bottom: 0; }
.ar-cb-row strong { display: block; color: #0a0a0a; font-size: 13.5px; margin-bottom: 3px; }
.ar-cb-row p { margin: 0; color: #666; font-size: 12.5px; line-height: 1.45; }

/* Simple toggle */
.ar-cb-toggle {
  position: relative;
  width: 38px; height: 22px;
  background: #d6d6d6;
  border-radius: 999px;
  transition: background .15s;
  cursor: pointer;
  flex-shrink: 0;
}
.ar-cb-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.ar-cb-toggle.on { background: #ff0000; }
.ar-cb-toggle.on::after { transform: translateX(16px); }
.ar-cb-toggle.locked { cursor: not-allowed; opacity: .65; }

/* Form status line */
.form-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 13px;
  color: #666;
}
.form-status.is-error { color: #a51b1b; font-weight: 600; }
