:root {
  --ink: #12171c;
  --ink-soft: #222a31;
  --muted: #5c6872;
  --paper: #f3f5f6;
  --surface: #ffffff;
  --surface-soft: #e8ecee;
  --signal: #b8322b;
  --signal-dark: #8b231e;
  --signal-soft: #f6e5e3;
  --gold: #b68a37;
  --line: rgba(18, 23, 28, .14);
  --line-strong: rgba(18, 23, 28, .24);
  --shadow-sm: 0 10px 30px rgba(18, 23, 28, .08);
  --shadow-lg: 0 28px 80px rgba(18, 23, 28, .14);
  --page: min(1120px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(184, 50, 43, .48); outline-offset: 4px; }
#sunsands, #dokument, #email-evidence, #innebord, #forsiktighet { scroll-margin-top: 112px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 88px;
  padding: 14px max(24px, calc((100% - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(243, 245, 246, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  min-width: 220px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-decoration: none;
}
.brand img { width: 194px; height: auto; }
.independent-label {
  max-width: 245px;
  color: var(--signal-dark);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.header-actions { display: flex; align-items: center; gap: 22px; min-width: 0; }
nav { display: flex; align-items: center; gap: 24px; min-width: 0; }
nav a {
  position: relative;
  padding: 10px 0;
  text-decoration: none;
  white-space: nowrap;
  font-size: .84rem;
  font-weight: 700;
}
nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
nav a:hover::after, nav a:focus-visible::after, .nav-cta::after { transform: scaleX(1); }
.language-switcher {
  flex: 0 0 auto;
  display: flex;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(18,23,28,.04);
}
.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.language-switcher a:hover { color: var(--ink); }
.language-switcher a[aria-current="page"] { background: var(--ink); color: var(--surface); }

.hero {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 78px) 0 clamp(76px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  grid-template-areas: "portraits copy";
  align-items: center;
  gap: clamp(44px, 6vw, 84px);
}
.hero-copy { grid-area: copy; max-width: 680px; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--signal-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; flex: 0 0 auto; background: var(--signal); }
h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5.3vw, 4.35rem);
  line-height: 1.025;
  letter-spacing: -.035em;
  text-wrap: balance;
}
h1 em { color: var(--signal); font-style: normal; }
.intro { max-width: 660px; margin-bottom: 0; color: var(--muted); font-size: 1.12rem; line-height: 1.72; }
.actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--surface); box-shadow: 0 10px 24px rgba(18,23,28,.16); }
.button-primary:hover { background: var(--ink-soft); }
.button-text { border-color: var(--line-strong); background: rgba(255,255,255,.38); }

.hero-brand-panel {
  position: relative;
  grid-area: portraits;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.hero-brand-panel::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--signal));
}
.hero-company-logo { width: min(64%, 300px); height: auto; margin: 27px auto 22px; }
.hero-portraits { display: grid; grid-template-columns: 1.18fr .82fr; gap: 4px; align-items: stretch; background: var(--surface-soft); }
.hero-portrait { min-width: 0; margin: 0; overflow: hidden; background: #d8dddf; }
.hero-portrait img { width: 100%; height: clamp(330px, 37vw, 440px); object-fit: cover; object-position: center 18%; }
.hero-portrait:not(.hero-portrait-tall) img { object-position: center center; }

.fact-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 30px max(24px, calc((100% - 1120px) / 2));
  background: var(--ink);
  color: var(--surface);
  border-top: 4px solid var(--signal);
}
.fact-strip div { min-width: 0; padding: 7px 36px; border-right: 1px solid rgba(255,255,255,.15); }
.fact-strip div:first-child { padding-left: 0; }
.fact-strip div:last-child { padding-right: 0; border-right: 0; }
.fact-strip strong, .fact-strip span { display: block; }
.fact-strip strong { font-family: "Playfair Display", serif; font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.25; }
.fact-strip span { margin-top: 3px; color: rgba(255,255,255,.66); font-size: .82rem; line-height: 1.45; }

.documents, .meaning, .company-link { width: var(--page); margin: 0 auto; padding: clamp(84px, 9vw, 116px) 0; }
.section-label {
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--signal-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-label::after { content: ""; width: 72px; height: 1px; background: var(--line-strong); }
.company-link { border-bottom: 1px solid var(--line); }
.company-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(44px, 7vw, 88px); align-items: start; }
.company-copy h2, .evidence-heading h2 {
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.35rem, 4.3vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.company-copy > p:not(.eyebrow):not(.source-note), .evidence-heading p { color: var(--muted); font-size: 1.04rem; }
.source-link {
  margin-top: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--signal);
  color: var(--signal-dark);
  font-weight: 700;
  text-decoration: none;
}
.source-links { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.source-note, .media-disclaimer { color: var(--muted); font-size: .81rem; line-height: 1.55; }
.source-note { margin-top: 14px; }
.company-media { display: grid; gap: 16px; }
.company-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.company-image-source img { width: 100%; min-height: 210px; height: auto; padding: clamp(16px, 3vw, 26px); object-fit: contain; background: var(--surface); }
.company-image figcaption { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; line-height: 1.4; }
.media-disclaimer { margin: 28px 0 0; padding: 11px 0 11px 16px; border-left: 3px solid var(--line-strong); }

.email-evidence { padding: clamp(84px, 9vw, 116px) max(24px, calc((100% - 1120px) / 2)); background: var(--surface); }
.evidence-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(44px, 7vw, 90px); align-items: end; margin-bottom: 48px; }
.evidence-heading h2, .evidence-heading p { margin-bottom: 0; }
.evidence-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.evidence-grid article {
  min-width: 0;
  padding: 29px;
  background: var(--ink);
  color: var(--surface);
  border-top: 4px solid var(--signal);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(18,23,28,.12);
}
.evidence-grid time { display: block; margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.evidence-grid strong { display: block; margin-bottom: 17px; color: var(--surface); font-family: "Playfair Display", serif; font-size: 1.65rem; line-height: 1.18; }
.evidence-grid p { margin-bottom: 0; color: rgba(255,255,255,.74); font-size: .94rem; }
.evidence-note { margin: 28px 0 0; padding: 11px 0 11px 16px; border-left: 3px solid var(--signal); color: var(--muted); font-size: .82rem; }
.whatsapp-evidence { margin-top: clamp(64px, 8vw, 96px); padding-top: clamp(44px, 6vw, 68px); border-top: 1px solid var(--line); }
.whatsapp-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 16px clamp(44px, 7vw, 90px); margin-bottom: 34px; }
.whatsapp-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.whatsapp-heading h3 { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(2rem, 3.7vw, 3.25rem); line-height: 1.04; letter-spacing: -.035em; }
.whatsapp-heading > p:last-child { align-self: end; margin: 0; color: var(--muted); }
.message-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.message-grid article { min-width: 0; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); }
.message-grid time { display: block; margin-bottom: 18px; color: var(--signal-dark); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.message-grid blockquote { margin: 0 0 20px; color: var(--ink); font-family: "Playfair Display", serif; font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.32; }
.message-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.whatsapp-note { border-left-color: var(--line-strong); }

.document-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(40px, 7vw, 88px); align-items: start; }
.document-card { margin: 0; }
.document-card > a {
  display: block;
  overflow: hidden;
  max-height: 620px;
  background: #d8dddf;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.document-card img { width: 100%; height: auto; }
.document-card figcaption { margin-top: 22px; }
.document-card figcaption span, .protocol-heading > span { display: block; color: var(--signal-dark); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.document-card figcaption strong { display: block; margin: 5px 0 10px; font-family: "Playfair Display", serif; font-size: 1.58rem; }
.document-card figcaption p { color: var(--muted); }
.protocol-card {
  padding: clamp(30px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--signal);
  border-radius: 4px 12px 12px 4px;
  box-shadow: var(--shadow-sm);
}
.protocol-heading { margin-bottom: 25px; }
.protocol-heading h2 { margin: 8px 0 0; font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 4.4vw, 3.35rem); line-height: 1.12; }
.protocol-card > p { color: var(--muted); font-size: 1.03rem; }
dl { margin: 34px 0 27px; border-top: 1px solid var(--line); }
dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); }
dd { margin: 0; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
dl .total { color: var(--signal-dark); }
dl .total dt { color: inherit; font-weight: 700; }
.privacy-note { margin-bottom: 0; font-size: .82rem !important; }
.protocol-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 64px; }
.protocol-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.protocol-gallery a:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(18,23,28,.13); }
.protocol-gallery img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.protocol-gallery span { position: absolute; left: 12px; bottom: 12px; padding: 6px 10px; border-radius: 3px; background: rgba(18,23,28,.9); color: var(--surface); font-size: .75rem; font-weight: 700; letter-spacing: .07em; }

.meaning { border-top: 1px solid var(--line); }
.meaning-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(48px, 8vw, 100px); }
.meaning h2, .safety h2 { font-family: "Playfair Display", serif; font-size: clamp(2.5rem, 4.8vw, 3.8rem); line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
.meaning-grid > div { color: var(--muted); font-size: 1.04rem; }
.meaning-grid > div p + p { margin-top: 24px; }

.safety { padding: clamp(84px, 9vw, 110px) max(24px, calc((100% - 1000px) / 2)); background: var(--signal-soft); border-top: 1px solid rgba(184,50,43,.12); }
.safety h2 { margin-bottom: 36px; }
.safety ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; list-style: none; counter-reset: safety; }
.safety li {
  position: relative;
  min-height: 116px;
  padding: 27px 27px 27px 70px;
  counter-increment: safety;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(184,50,43,.1);
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(139,35,30,.05);
}
.safety li::before { content: counter(safety, decimal-leading-zero); position: absolute; left: 24px; top: 22px; color: var(--signal); font-family: "Playfair Display", serif; font-size: 1.55rem; }

footer { padding: 42px max(24px, calc((100% - 1120px) / 2)); display: flex; justify-content: space-between; align-items: end; gap: 32px; background: var(--ink); color: var(--surface); }
footer p { margin: 0; color: rgba(255,255,255,.65); font-size: .82rem; }
footer strong { color: var(--surface); font-size: .92rem; }

html[dir="rtl"] body { font-family: "Noto Sans Arabic", "DM Sans", sans-serif; }
html[dir="rtl"] h1,
html[dir="rtl"] .document-card figcaption strong,
html[dir="rtl"] .protocol-heading h2,
html[dir="rtl"] .meaning h2,
html[dir="rtl"] .safety h2,
html[dir="rtl"] .company-copy h2,
html[dir="rtl"] .evidence-heading h2,
html[dir="rtl"] .evidence-grid strong { font-family: "Noto Sans Arabic", sans-serif; }
html[dir="rtl"] .whatsapp-heading h3, html[dir="rtl"] .message-grid blockquote { font-family: "Noto Sans Arabic", sans-serif; }
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-label,
html[dir="rtl"] .independent-label { letter-spacing: 0; text-transform: none; }
html[dir="rtl"] .eyebrow::before { order: 2; }
html[dir="rtl"] nav a::after { transform-origin: right; }
html[dir="rtl"] .protocol-card { border-right: 5px solid var(--signal); border-left: 1px solid var(--line); border-radius: 12px 4px 4px 12px; }
html[dir="rtl"] .fact-strip div { border-right: 0; border-left: 1px solid rgba(255,255,255,.15); }
html[dir="rtl"] .fact-strip div:first-child { padding-right: 0; padding-left: 36px; }
html[dir="rtl"] .fact-strip div:last-child { padding-right: 36px; padding-left: 0; border-left: 0; }
html[dir="rtl"] dd { text-align: left; }
html[dir="rtl"] .safety li { padding: 27px 70px 27px 27px; }
html[dir="rtl"] .safety li::before { right: 24px; left: auto; }
html[dir="rtl"] .protocol-gallery span { right: 12px; left: auto; }
html[dir="rtl"] .media-disclaimer { padding-right: 16px; padding-left: 0; border-right: 3px solid var(--line-strong); border-left: 0; }
html[dir="rtl"] .evidence-note { padding-right: 16px; padding-left: 0; border-right: 3px solid var(--signal); border-left: 0; }
html[dir="rtl"] .whatsapp-note { border-right-color: var(--line-strong); }

@media (max-width: 1020px) {
  .topbar { flex-wrap: wrap; gap: 10px 20px; }
  .brand { margin-right: auto; }
  .header-actions { display: contents; }
  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 8px;
    padding: 4px 0 1px;
    scrollbar-width: none;
  }
  nav::-webkit-scrollbar { display: none; }
  nav a { flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); font-size: .79rem; }
  nav a::after { display: none; }
  .nav-cta { border-color: rgba(184,50,43,.34); color: var(--signal-dark); }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 40px; }
  .hero-portrait img { height: 360px; }
  h1 { font-size: clamp(2.8rem, 5.6vw, 3.65rem); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 128px; }
  #sunsands, #dokument, #email-evidence, #innebord, #forsiktighet { scroll-margin-top: 128px; }
  .topbar { min-height: 0; padding: 11px 16px 10px; gap: 10px 12px; }
  .brand { min-width: 0; }
  .brand img { width: 145px; }
  .independent-label { max-width: 190px; font-size: .75rem; }
  .language-switcher a { min-height: 34px; padding: 0 9px; font-size: .75rem; }
  nav { width: calc(100% + 32px); margin: 0 -16px -10px; padding: 10px 16px 11px; border-top: 1px solid var(--line); background: rgba(255,255,255,.55); scroll-padding-inline: 16px; }
  nav a { min-height: 39px; display: inline-flex; align-items: center; padding: 7px 12px; }

  .hero { width: min(100% - 32px, 1200px); grid-template-columns: 1fr; grid-template-areas: "portraits" "copy"; gap: 38px; padding: 28px 0 66px; }
  .hero-company-logo { width: min(64%, 245px); margin: 24px auto 19px; }
  .hero-portrait img { height: clamp(245px, 73vw, 360px); }
  h1 { margin-bottom: 23px; font-size: clamp(2.3rem, 10.4vw, 3.15rem); line-height: 1.045; }
  .intro { font-size: 1.04rem; line-height: 1.68; }
  .actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
  .button { width: 100%; min-height: 52px; }
  .button-text { background: var(--surface); }

  .fact-strip { grid-template-columns: 1fr; padding: 12px 20px; }
  .fact-strip div, .fact-strip div:first-child, .fact-strip div:last-child { padding: 17px 2px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .fact-strip div:last-child { border-bottom: 0; }
  html[dir="rtl"] .fact-strip div,
  html[dir="rtl"] .fact-strip div:first-child,
  html[dir="rtl"] .fact-strip div:last-child { padding: 17px 2px; border-left: 0; }

  .documents, .meaning, .company-link { width: min(100% - 32px, 1120px); padding: 72px 0; }
  .section-label { margin-bottom: 34px; font-size: .75rem; }
  .section-label::after { width: 44px; }
  .document-grid, .meaning-grid, .company-grid, .evidence-heading { grid-template-columns: 1fr; gap: 36px; }
  .company-copy h2, .evidence-heading h2 { font-size: clamp(2.15rem, 9.7vw, 2.8rem); }
  .company-media { margin-top: 4px; }
  .company-image-source img { min-height: 0; padding: 18px; }
  .media-disclaimer { margin-top: 22px; }

  .email-evidence { padding: 72px 16px; }
  .evidence-heading { margin-bottom: 36px; }
  .evidence-grid { grid-template-columns: 1fr; gap: 12px; }
  .evidence-grid article { padding: 25px; }
  .evidence-grid time { margin-bottom: 17px; }
  .whatsapp-heading { grid-template-columns: 1fr; gap: 18px; }
  .whatsapp-heading .eyebrow { grid-column: auto; }
  .message-grid { grid-template-columns: 1fr; gap: 12px; }
  .message-grid article { padding: 24px; }

  .document-card > a { max-height: 500px; }
  .protocol-card { padding: 28px 24px; border-top: 5px solid var(--signal); border-left: 1px solid var(--line); border-radius: 8px; }
  html[dir="rtl"] .protocol-card { border-top: 5px solid var(--signal); border-right: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 8px; }
  .protocol-heading h2 { font-size: clamp(2.05rem, 9.5vw, 2.7rem); }
  dl div { gap: 14px; font-size: .92rem; }
  .protocol-gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 76vw);
    overflow-x: auto;
    gap: 12px;
    margin-top: 46px;
    margin-right: -16px;
    padding: 2px 16px 18px 0;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0 16px;
    scrollbar-color: var(--line-strong) transparent;
  }
  .protocol-gallery a { scroll-snap-align: start; }
  html[dir="rtl"] .protocol-gallery { margin-right: 0; margin-left: -16px; padding-right: 0; padding-left: 16px; }

  .meaning h2, .safety h2 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .safety { padding: 72px 16px 80px; }
  .safety ol { grid-template-columns: 1fr; gap: 10px; }
  .safety li { min-height: 0; padding: 24px 22px 24px 62px; }
  .safety li::before { left: 21px; top: 20px; }
  html[dir="rtl"] .safety li { padding: 24px 62px 24px 22px; }
  html[dir="rtl"] .safety li::before { right: 21px; }

  footer { padding: 36px 20px; flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 420px) {
  .brand img { width: 116px; }
  .independent-label { max-width: 132px; font-size: .75rem; }
  .language-switcher { padding: 2px; }
  .language-switcher a { min-height: 32px; padding: 0 4px; font-size: .75rem; }
  .hero { gap: 32px; }
  .hero-portraits { grid-template-columns: 1.15fr .85fr; }
  .hero-portrait img { height: 250px; }
  h1 { font-size: clamp(2.2rem, 10.5vw, 2.7rem); }
  .eyebrow { font-size: .75rem; letter-spacing: .13em; }
  .protocol-gallery { grid-auto-columns: 82vw; }
  dl div { grid-template-columns: 1fr; gap: 2px; }
  dd { text-align: left; }
  html[dir="rtl"] dd { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@supports (content-visibility: auto) {
  .company-link, .documents, .email-evidence, .meaning, .safety { content-visibility: auto; contain-intrinsic-size: 900px; }
}
