/* ==========================================================================
   MJ Security Management — Stylesheet
   Schwarz / Silber, Kanzlei-Anmutung. Keine externen Ressourcen.
   ========================================================================== */

/* ---------- Fonts (self-hosted, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-500-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-600-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-400-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-500-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-600-regular.woff2') format('woff2');
}

/* ---------- Design-Token ---------- */
:root {
  --bg: #0A0A0B;
  --bg-alt: #0E0E11;
  --bg-card: #0F0F12;
  --silver: #C7C9CC;
  --silver-bright: #E8E9EB;
  --body: #B4B7BB;
  --muted: #9A9EA4;
  --line: rgba(199, 201, 204, 0.14);
  --line-strong: rgba(199, 201, 204, 0.32);
  --metal: linear-gradient(165deg, #F2F3F4 0%, #C7C9CC 38%, #8E9195 62%, #E0E1E3 100%);
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--silver); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--silver-bright); }

:focus-visible {
  outline: 1px solid var(--silver);
  outline-offset: 3px;
}

::selection { background: rgba(199, 201, 204, 0.25); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--bg);
  color: var(--silver-bright);
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typografie ---------- */
h1, h2, h3 { color: var(--silver-bright); font-weight: 600; }

.display {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.12;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1.display { font-size: clamp(2.2rem, 5.4vw, 4rem); }
h2.display { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--line-strong);
  flex: none;
}

.lead {
  max-width: 46em;
  font-size: 1.06rem;
  color: var(--body);
}

.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-head .lead { margin-top: 20px; }

/* ---------- Sektionen ---------- */
.section { padding: clamp(84px, 11vw, 148px) 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease;
}
.btn--primary {
  background: linear-gradient(165deg, #F2F3F4, #C7C9CC 50%, #A9ACB0);
  color: #0A0A0B;
}
.btn--primary:hover {
  color: #0A0A0B;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(199, 201, 204, 0.18);
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--silver);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--silver);
  color: var(--silver-bright);
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0));
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img { width: 58px; height: 37px; flex: none; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-bright);
  white-space: nowrap;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav .header-phone { display: none; }
.main-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--silver-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--silver-bright);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 10px 18px;
  white-space: nowrap;
  transition: border-color .25s ease, background-color .25s ease;
}
.header-phone:hover { border-color: var(--silver); background: rgba(255, 255, 255, 0.03); }
.header-phone svg { width: 14px; height: 14px; }

/* Burger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--silver-bright);
  margin: 4px auto;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 48px) 0 72px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 44% at 50% 6%, rgba(199, 201, 204, 0.09), transparent 70%),
    radial-gradient(40% 30% at 50% 100%, rgba(199, 201, 204, 0.04), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero .lead {
  margin: 0 auto 40px;
  max-width: 40em;
  color: var(--muted);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero-meta {
  margin-top: 44px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span { white-space: nowrap; }
.hero-meta .dot { margin: 0 12px; opacity: 0.5; }
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--silver), transparent);
  opacity: 0.4;
}

/* ---------- Zweispalter (Mission, Inhaber) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split--media-first .split-media { order: -1; }

.media-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 14px;
  background: var(--bg-card);
}
.media-frame::after {
  content: '';
  position: absolute;
  inset: -9px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.media-frame img { width: 100%; }
.media-frame figcaption:not(.ai-label) {
  padding: 14px 4px 2px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* KI-Kennzeichnung (Art. 50 Abs. 4 KI-VO) — wiederverwendbar fuer alle
   Bilder/Videos mit Dateinamen-Praefix "ki-" und data-ai-generated="true". */
.ai-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 4px 10px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #C7C9CC;
  background: rgba(10, 10, 11, 0.72);
  border: 1px solid rgba(199, 201, 204, 0.25);
  pointer-events: none;
}

/* Werte-Reihe (Strategy / Control / Protection / Reliability) */
.values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(52px, 7vw, 84px);
  border-top: 1px solid var(--line);
}
.values li { padding: 28px 26px 6px 0; }
.values li + li { border-left: 1px solid var(--line); padding-left: 26px; }
.values .value-word {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 8px;
}
.values p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 38px 32px 34px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.service-card .num {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(199, 201, 204, 0.35);
}
.service-card svg {
  width: 38px;
  height: 38px;
  stroke: var(--silver);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.42rem;
  margin-bottom: 12px;
}
.service-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Standards ---------- */
.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 44px;
}
.pillar { border-top: 1px solid var(--line-strong); padding-top: 22px; }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(199, 201, 204, 0.4);
  display: block;
  margin-bottom: 10px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.38rem;
  margin-bottom: 10px;
}
.pillar p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Vorgehen ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 56px);
  counter-reset: step;
}
.step { border-top: 1px solid var(--line-strong); padding-top: 26px; position: relative; }
.step .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 18px;
}
.step h3 { font-family: var(--serif); font-size: 1.42rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Zitat ---------- */
.quote-section {
  position: relative;
  padding: clamp(110px, 15vw, 190px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 7, 8, 0.97), rgba(7, 7, 8, 0.93) 50%, rgba(7, 7, 8, 0.97));
}
.quote-section blockquote {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote-section blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  line-height: 1.35;
  color: var(--silver-bright);
}
.quote-section blockquote footer {
  margin-top: 30px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Inhaber ---------- */
.owner-role {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 16px 0 26px;
}
.owner-text p + p { margin-top: 18px; }
.owner-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- Bekannt aus (Presse) ---------- */
.press {
  margin-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.press .eyebrow { margin-bottom: 30px; }
.press-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 36px;
}
.press-logo-box {
  display: flex;
  align-items: center;
  height: 52px;
  margin-bottom: 12px;
}
.press-logo {
  height: 34px;
  width: auto;
  opacity: 0.82;
  transition: opacity .25s ease;
}
.press-logo--wide { height: 25px; }
.press-logo--tall { height: 46px; }
a.press-logo-box:hover .press-logo { opacity: 1; }
.press-title {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.podcast-row {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  align-items: baseline;
  font-size: 0.86rem;
}
.podcast-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.podcast-row a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(199, 201, 204, 0.35);
}
.podcast-row a:hover {
  color: var(--silver-bright);
  text-decoration-color: var(--silver-bright);
}
.podcast-row .ext { font-size: 0.75em; opacity: 0.7; }

/* ---------- Kontakt ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}
.contact-list { list-style: none; display: grid; gap: 30px; }
.contact-list .label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.contact-list .value { font-size: 1.12rem; color: var(--silver-bright); font-weight: 500; }
.contact-list a.value:hover { color: #fff; }
.contact-note {
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-note svg { width: 20px; height: 20px; stroke: var(--silver); flex: none; margin-top: 3px; }
.contact-note p { font-size: 0.88rem; color: var(--muted); }
.contact-note strong { color: var(--silver); font-weight: 500; }

/* Formular */
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.field .required { color: var(--silver-bright); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--silver-bright);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color .25s ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-strong); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--silver);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--silver-bright);
}
.field textarea { resize: vertical; min-height: 150px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23C7C9CC' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field select:invalid { color: var(--muted); }
.field-error {
  display: none;
  font-size: 0.78rem;
  color: var(--silver-bright);
  margin-top: 7px;
}
.field.has-error .field-error { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; }
.consent input {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  accent-color: #C7C9CC;
  flex: none;
}
.consent label {
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}
.consent label a { text-decoration: underline; text-underline-offset: 3px; }

/* Honeypot: fuer Menschen unsichtbar, fuer Bots ein normales Feld */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--silver-bright);
}
.form-status.visible { display: block; }

.form-footer { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.form-footer .hint { font-size: 0.78rem; color: var(--muted); }
.btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img { width: 74px; height: 47px; margin-bottom: 18px; }
.footer-brand .brand-name { display: block; margin-bottom: 14px; }
.footer-claim {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-col h2 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.9rem; color: var(--body); }
.footer-col a:hover { color: var(--silver-bright); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */
.page-main { padding-top: calc(var(--header-h) + clamp(56px, 9vw, 110px)); }
.legal-content { max-width: 800px; }
.legal-content h1 {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.15;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.legal-content .page-intro { color: var(--muted); margin-bottom: 48px; max-width: 42em; }
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin: 52px 0 16px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.legal-content h3 { font-size: 1.02rem; margin: 28px 0 10px; color: var(--silver); }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--body); }
.legal-content p + p { margin-top: 14px; }
.legal-content ul { padding-left: 22px; margin: 14px 0; display: grid; gap: 8px; }
.legal-content address { font-style: normal; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }
mark.ph {
  background: rgba(199, 201, 204, 0.12);
  color: var(--silver-bright);
  padding: 1px 6px;
  border-radius: 2px;
  border: 1px dashed rgba(199, 201, 204, 0.35);
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s ease, transform .4s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .btn, .service-card, .main-nav a::after { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .standards-layout { grid-template-columns: 1fr; }
  .standards-layout .split-media { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(10, 10, 11, 0.97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav a {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0.14em;
  }
  .main-nav .header-phone { display: inline-flex; margin-top: 18px; font-size: 1rem; }
  .nav-toggle { display: block; }
  .header-phone--desktop { display: none; }

  .split, .contact-layout { grid-template-columns: 1fr; }
  .split-media { max-width: 560px; }
  .split--media-first .split-media { order: 0; }
  .values { grid-template-columns: 1fr 1fr; }
  .values li:nth-child(odd) { border-left: none; padding-left: 0; }
  .values li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 30px; }
  .press-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-name { font-size: 0.86rem; }
  .brand img { width: 48px; height: 30px; }
  .hero-meta { display: grid; gap: 9px; letter-spacing: 0.2em; justify-items: center; }
  .hero-meta .dot { display: none; }
}
