@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------------------------------------------------------ */
/* Design tokens — edit these to rebrand the whole page.              */
/* ------------------------------------------------------------------ */

:root {
  /* Palette: deep navy chrome, white surfaces, steel-blue accents. */
  --navy-950: #071322;
  --navy-900: #0b1d33;
  --navy-800: #11294a;
  --navy-700: #1a3a63;
  --steel-700: #2d5f8f;
  --steel-600: #33689b;
  --steel-500: #4a83b8;
  --steel-300: #9dbdd9;
  --steel-200: #c3d6e7;
  --steel-100: #dde9f3;
  --steel-75: #e9f1f8;
  --steel-50: #f2f6fa;
  --ink: #152435;
  --muted: #4e6076;
  --line: #d3dfea;
  --surface: #ffffff;
  --danger: #b42318;
  --danger-soft: #fbeae9;
  --focus-ring: var(--steel-600);

  /* Typography */
  --font-sans: 'Libre Franklin', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas,
    'Liberation Mono', monospace;

  /* Rhythm */
  --content-width: 1120px;
  --section-gap: clamp(3.5rem, 7vw, 5.5rem);
  --radius-card: 8px;
  --radius-control: 6px;
}

/* ------------------------------------------------------------------ */
/* Foundation                                                         */
/* ------------------------------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--steel-50);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  color: var(--steel-700);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.86em;
  letter-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--surface);
  color: var(--navy-900);
  border: 2px solid var(--steel-600);
  border-radius: var(--radius-control);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 0.75rem;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                            */
/* ------------------------------------------------------------------ */

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}

.button-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--steel-300);
  color: var(--navy-800);
}

.button-secondary:hover {
  border-color: var(--steel-600);
  background: var(--steel-75);
}

.button-secondary.is-copied {
  border-color: var(--steel-600);
  background: var(--steel-100);
}

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-900);
  border-bottom: 1px solid var(--navy-700);
  --focus-ring: var(--steel-300);
}

.site-header-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
}

.brand-mark-shield {
  fill: none;
  stroke: var(--steel-300);
  stroke-width: 4;
  stroke-linejoin: round;
}

.brand-mark-keyhole {
  fill: var(--steel-75);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand-page {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel-300);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.35rem;
  margin-right: auto;
}

.site-nav a {
  color: var(--steel-200);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: #fff;
  border-bottom-color: var(--steel-500);
}

.header-contact {
  color: var(--steel-300);
  text-decoration: none;
  font-size: 0.8rem;
}

.header-contact:hover {
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */

.hero {
  background: linear-gradient(168deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  --focus-ring: var(--steel-300);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  color: var(--steel-300);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 800;
  max-width: 21ch;
}

.hero-intro {
  margin-top: 1.35rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--steel-100);
  max-width: 56ch;
}

.hero-audience {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--steel-300);
  max-width: 58ch;
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.posture-chip {
  border: 1px solid rgba(157, 189, 217, 0.45);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  color: var(--steel-100);
  background: rgba(26, 58, 99, 0.35);
}

.posture-chip strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero .button-primary {
  background: #fff;
  border-color: #fff;
  color: var(--navy-900);
}

.hero .button-primary:hover {
  background: var(--steel-100);
  border-color: var(--steel-100);
}

.hero-email {
  color: var(--steel-200);
  text-decoration-color: rgba(157, 189, 217, 0.6);
  font-size: 0.9rem;
}

.hero-email:hover {
  color: #fff;
}

.hero-meta {
  margin-top: 2.25rem;
  font-size: 0.82rem;
  color: var(--steel-300);
}

.hero-motif {
  display: flex;
  justify-content: center;
}

.hero-motif svg {
  width: min(100%, 300px);
  height: auto;
}

.motif-outer {
  stroke: var(--steel-500);
  stroke-width: 2;
  opacity: 0.55;
}

.motif-inner {
  stroke: var(--steel-300);
  stroke-width: 1.5;
  opacity: 0.35;
}

.motif-line {
  stroke: var(--steel-500);
  stroke-width: 1;
  stroke-dasharray: 3 7;
  opacity: 0.45;
}

.motif-keyhole {
  stroke: var(--steel-200);
  stroke-width: 2;
  opacity: 0.9;
}

.motif-keyhole-fill {
  fill: var(--steel-200);
  opacity: 0.9;
}

/* ------------------------------------------------------------------ */
/* Sections                                                           */
/* ------------------------------------------------------------------ */

.section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-gap) 1.5rem 0;
}

.section:last-of-type {
  padding-bottom: var(--section-gap);
}

.section-head {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 46rem;
  margin-bottom: 2.25rem;
}

.section-number {
  flex: none;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--steel-600);
  border: 1px solid var(--steel-200);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  background: var(--surface);
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 750;
  color: var(--navy-900);
}

.section-intro {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------------ */
/* Compliance posture                                                 */
/* ------------------------------------------------------------------ */

.posture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.posture-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel-600);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem 1.75rem;
}

.posture-card h3 {
  font-size: 1.12rem;
  font-weight: 750;
  color: var(--navy-900);
}

.posture-status {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--steel-300);
  border-radius: 4px;
  background: var(--steel-75);
  color: var(--navy-800);
  font-size: 0.8rem;
  font-weight: 650;
}

.posture-summary {
  margin-top: 1rem;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------------ */
/* Subprocessors table                                                */
/* ------------------------------------------------------------------ */

.table-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.subprocessor-table {
  width: 100%;
  border-collapse: collapse;
}

.subprocessor-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 1.05rem 1.5rem;
  border-bottom: 2px solid var(--navy-800);
}

.subprocessor-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.subprocessor-table tbody tr:last-child td {
  border-bottom: none;
}

.cell-name {
  font-weight: 700;
  color: var(--navy-900);
  white-space: nowrap;
}

.cell-purpose {
  color: var(--muted);
  font-size: 0.95rem;
}

.cell-region {
  color: var(--steel-700);
  font-size: 0.82rem;
}

.table-meta {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--steel-50);
  font-size: 0.82rem;
  color: var(--muted);
}

/* ------------------------------------------------------------------ */
/* Data handling                                                      */
/* ------------------------------------------------------------------ */

.handling-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.handling-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem 1.75rem;
}

.handling-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 6px;
  background: var(--steel-75);
  border: 1px solid var(--steel-100);
  color: var(--navy-700);
}

.handling-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.handling-card h3 {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  font-weight: 750;
  color: var(--navy-900);
}

.handling-card p {
  margin-top: 0.7rem;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ------------------------------------------------------------------ */
/* Disclosure band                                                    */
/* ------------------------------------------------------------------ */

.disclosure-band {
  margin-top: var(--section-gap);
  background: linear-gradient(158deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  --focus-ring: var(--steel-300);
}

.disclosure-section {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.disclosure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.section-head-dark {
  margin-bottom: 1.75rem;
}

.section-head-dark .section-number {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--steel-300);
}

.section-head-dark h2 {
  color: #fff;
}

.section-head-dark .section-intro {
  color: var(--steel-200);
}

.expectations-heading {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel-300);
  margin-top: 2rem;
}

.expectations-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  max-width: 46ch;
}

.expectations-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--steel-100);
  font-size: 0.95rem;
  line-height: 1.6;
}

.expectations-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1.5px solid var(--steel-500);
  border-radius: 2px;
  background: rgba(74, 131, 184, 0.25);
}

.disclosure-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.9rem 1.75rem 2rem;
  color: var(--ink);
  --focus-ring: var(--steel-600);
}

/* ------------------------------------------------------------------ */
/* Form                                                               */
/* ------------------------------------------------------------------ */

.form-note {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--navy-800);
  background: var(--steel-75);
  border: 1px solid var(--steel-100);
  border-left: 3px solid var(--steel-600);
  border-radius: var(--radius-control);
  padding: 0.85rem 1rem;
}

.form-field {
  margin-top: 1.4rem;
}

.form-field label {
  display: block;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.optional-tag {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: lowercase;
  margin-left: 0.2rem;
}

.field-hint {
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-control);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232d5f8f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 9rem;
  line-height: 1.55;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline-offset: 0;
  border-color: var(--steel-600);
}

.form-field [aria-invalid='true'] {
  border-color: var(--danger);
}

.field-error {
  margin-top: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--danger);
}

.form-footer {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.form-direct-email {
  font-size: 0.84rem;
  color: var(--muted);
}

.form-direct-email a {
  color: var(--steel-700);
}

/* ------------------------------------------------------------------ */
/* FAQ                                                                */
/* ------------------------------------------------------------------ */

.faq-list {
  max-width: 50rem;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3.25rem 1.15rem 1.4rem;
  font-weight: 650;
  color: var(--navy-900);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid var(--steel-600);
  border-bottom: 2px solid var(--steel-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 68ch;
}

/* ------------------------------------------------------------------ */
/* Subpages: disclosure errors, fallback, 404                         */
/* ------------------------------------------------------------------ */

.subpage {
  max-width: 46rem;
  padding-bottom: var(--section-gap);
}

.subpage-eyebrow {
  color: var(--steel-600);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  margin-bottom: 1.5rem;
}

.subpage h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  color: var(--navy-900);
}

.error-summary {
  background: var(--danger-soft);
  border: 1px solid #ecc8c5;
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.75rem;
}

.error-summary h1 {
  font-size: 1.35rem;
  color: var(--danger);
}

.error-summary p {
  margin-top: 0.5rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.error-summary ul {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.error-summary a {
  color: var(--danger);
  font-weight: 600;
}

.subpage-form-card {
  --focus-ring: var(--steel-600);
}

.subpage-back {
  margin-top: 2rem;
}

.back-link {
  font-weight: 600;
  color: var(--steel-700);
}

/* Fallback page */

.fallback-header {
  max-width: 40rem;
}

.fallback-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  background: var(--steel-75);
  border: 1px solid var(--steel-200);
  color: var(--navy-700);
  margin-bottom: 1.25rem;
}

.fallback-mark svg {
  width: 1.6rem;
  height: 1.6rem;
}

.fallback-lead {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.fallback-card {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.75rem 2rem;
}

.envelope-meta {
  margin: 0;
  display: grid;
  gap: 0.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.envelope-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
}

.envelope-row dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.envelope-row dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy-900);
  overflow-wrap: anywhere;
}

.envelope-row dd.mono {
  font-size: 0.85rem;
  color: var(--steel-700);
}

.fallback-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.truncation-note {
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: var(--navy-800);
  background: var(--steel-75);
  border: 1px solid var(--steel-100);
  border-left: 3px solid var(--steel-600);
  border-radius: var(--radius-control);
  padding: 0.7rem 0.9rem;
}

.copy-hint {
  margin-top: 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.report-text {
  margin: 0.8rem 0 0;
  padding: 1.2rem 1.3rem;
  background: var(--navy-950);
  color: var(--steel-100);
  border-radius: var(--radius-control);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 24rem;
  overflow-y: auto;
}

.fallback-response {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* 404 page */

.not-found {
  padding-top: clamp(4rem, 10vw, 7rem);
}

.not-found-code {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 600;
  color: var(--steel-300);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.not-found-lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 44ch;
}

.not-found-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.not-found-email {
  color: var(--steel-700);
  font-size: 0.9rem;
}

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */

.site-footer {
  margin-top: var(--section-gap);
  background: var(--navy-950);
  color: var(--steel-200);
  --focus-ring: var(--steel-300);
}

.site-footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
}

.footer-name {
  font-weight: 750;
  font-size: 1.02rem;
  color: #fff;
}

.footer-description {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--steel-300);
  max-width: 40ch;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--steel-300);
  max-width: 44ch;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel-500);
}

.footer-links ul {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--steel-200);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-email {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--steel-200);
  font-size: 0.85rem;
}

.footer-email:hover {
  color: #fff;
}

.footer-response {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--steel-300);
}

.footer-legal {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--navy-700);
  font-size: 0.78rem;
  color: var(--steel-300);
}

/* ------------------------------------------------------------------ */
/* Responsive                                                         */
/* ------------------------------------------------------------------ */

@media (max-width: 960px) {
  .site-header-inner {
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    padding-block: 0.75rem;
  }

  .header-contact {
    display: none;
  }

  .site-nav {
    width: 100%;
    margin-right: 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-motif {
    display: none;
  }

  .posture-grid,
  .handling-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .disclosure-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 7.5rem;
  }

  .subprocessor-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .subprocessor-table,
  .subprocessor-table tbody,
  .subprocessor-table tr,
  .subprocessor-table td {
    display: block;
    width: 100%;
  }

  .subprocessor-table tr {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .subprocessor-table tbody tr:last-child {
    border-bottom: none;
  }

  .subprocessor-table td {
    padding: 0.2rem 0;
    border-bottom: none;
  }

  .subprocessor-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-top: 0.55rem;
  }

  .subprocessor-table td:first-child::before {
    margin-top: 0;
  }

  .cell-name {
    white-space: normal;
  }

  .section-head {
    flex-direction: column;
    gap: 0.9rem;
  }

  .envelope-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.15rem;
  }
}

@media (max-width: 420px) {
  .site-header-inner,
  .hero-inner,
  .section,
  .site-footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-nav {
    gap: 0.2rem 0.9rem;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .hero-actions .button,
  .not-found-actions .button,
  .fallback-actions .button,
  .form-footer .button {
    width: 100%;
    text-align: center;
  }

  .disclosure-form-card,
  .fallback-card {
    padding: 1.4rem 1.15rem 1.6rem;
  }

  .faq-item summary {
    padding: 1rem 2.75rem 1rem 1.1rem;
  }

  .faq-item p {
    padding: 0 1.1rem 1.15rem;
  }
}
