:root {
  --brand: #667382;
  --brand-dark: #45515e;
  --brand-soft: #e9edf0;
  --ink: #202428;
  --muted: #66707a;
  --line: #d8dde1;
  --surface: #f5f6f7;
  --white: #ffffff;
  --ease: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(102, 115, 130, 0.16);
  backdrop-filter: blur(16px);
  transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(28, 35, 42, 0.07);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: 100%;
  min-height: 88px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.brand-logo {
  display: block;
}

.brand-logo {
  width: 188px;
  height: auto;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(102, 115, 130, 0.2);
  background: rgba(255, 255, 255, 0.78);
}

.nav-link {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  white-space: nowrap;
  transition: color var(--ease), background-color var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.contact-link,
.contact-link:hover,
.contact-link.is-active {
  margin-left: 4px;
  background: var(--brand);
  color: var(--white);
}

.nav-indicator {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 0;
  height: 2px;
  background: var(--brand);
  opacity: 0;
  transition: left var(--ease), width var(--ease), opacity var(--ease);
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-dark);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform var(--ease);
}

.mobile-nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 650;
}

h1 {
  font-size: 4.7rem;
}

h2 {
  font-size: 3rem;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 0;
  background: var(--white);
}

.home-hero-portrait {
  position: absolute;
  top: 88px;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.78) 12%, rgba(255, 255, 255, 0.2) 35%, transparent 55%),
    url("assets/ralf-klein.jpg") center 20% / cover no-repeat;
  filter: saturate(0.75);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: 50%;
  padding-left: clamp(42px, 6vw, 118px);
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--brand-dark);
  font-size: 4.15rem;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 600;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: #4e5963;
  font-size: 1.08rem;
}

.hero-actions,
.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--brand);
  cursor: pointer;
  font-weight: 600;
  transition: background-color var(--ease), color var(--ease), transform var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand);
  color: var(--white);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-dark);
}

.button-secondary:hover {
  background: var(--white);
}

.button-light {
  border-color: var(--white);
  color: var(--brand-dark);
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 115, 130, 0.4);
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: translateY(-3px) rotate(45deg);
}

.positioning-band {
  padding: 32px 0;
  background: var(--brand);
  color: var(--white);
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.positioning-grid p {
  margin: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.06rem;
}

.positioning-grid p:last-child {
  border-right: 0;
  font-weight: 700;
}

.questions-section,
.work-section,
.faq-section,
.mandates-section,
.contact-hero {
  padding: 104px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--brand-dark);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--brand);
}

.question {
  min-height: 116px;
  margin: 0;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 1.25rem;
  font-weight: 600;
}

.question:nth-child(even) {
  border-right: 0;
}

.decision-section {
  padding: 96px 0;
  background: var(--surface);
}

.decision-layout,
.work-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.decision-layout h2 {
  color: var(--brand-dark);
}

.decision-copy,
.work-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 700;
}

.page-hero {
  padding: 170px 0 94px;
}

.slate-hero {
  background: var(--brand);
  color: var(--white);
}

.slate-hero .eyebrow {
  color: var(--white);
}

.page-hero h1 {
  margin-bottom: 22px;
}

.page-lead {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.22rem;
}

.mandate-list {
  border-top: 2px solid var(--brand);
}

.mandate-row {
  display: grid;
  grid-template-columns: 70px minmax(250px, 0.8fr) 1.2fr;
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.mandate-number {
  color: var(--brand);
  font-weight: 700;
}

.mandate-row h2 {
  margin-bottom: 0;
  color: var(--brand-dark);
  font-size: 1.55rem;
}

.mandate-row p {
  margin: 0;
  color: var(--muted);
}

.funding-note {
  padding: 58px 0;
  background: var(--surface);
}

.funding-note .inner {
  max-width: 850px;
}

.funding-note p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.cta-band {
  padding: 70px 0;
  background: var(--brand-dark);
  color: var(--white);
}

.cta-band .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  margin: 0;
  font-size: 2.4rem;
}

.about-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--brand-dark);
  color: var(--white);
}

.about-photo {
  position: absolute;
  inset: 0 0 0 50%;
  background: linear-gradient(90deg, var(--brand-dark), transparent 45%), url("assets/ralf-klein.jpg") center 30% / cover no-repeat;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

.about-hero-content h1 {
  max-width: 730px;
  margin-bottom: 24px;
}

.about-hero-content > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.2rem;
}

.about-hero .eyebrow {
  color: var(--white);
}

.stats-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 18px 32px;
  border-right: 1px solid var(--line);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: 0;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--brand-dark);
  font-size: 2.4rem;
}

.stat span {
  color: var(--muted);
}

.work-copy blockquote {
  margin: 36px 0;
  padding: 26px 0 26px 28px;
  border-left: 4px solid var(--brand);
  color: var(--brand-dark);
  font-size: 1.35rem;
  font-weight: 600;
}

.promise-section {
  padding: 96px 0;
  background: var(--brand-soft);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--brand);
}

.promise-grid p {
  margin: 0;
  padding: 24px;
  border-right: 1px solid rgba(102, 115, 130, 0.25);
  border-bottom: 1px solid rgba(102, 115, 130, 0.25);
  font-size: 1.12rem;
}

.promise-grid p:nth-child(even) {
  border-right: 0;
}

.promise-grid span {
  color: var(--brand-dark);
  font-weight: 700;
}

.promise-copy {
  max-width: 840px;
  margin: 38px 0 0;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.faq-list {
  border-top: 2px solid var(--brand);
}

.faq-layout {
  grid-template-columns: 320px minmax(0, 1fr);
}

.faq-intro {
  position: sticky;
  top: 124px;
}

.faq-intro h2 {
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-size: 2.35rem;
}

.faq-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-topic + .faq-topic {
  margin-top: 58px;
}

.faq-topic h3 {
  margin-bottom: 20px;
  color: var(--brand-dark);
  font-size: 1.45rem;
}

.faq-topic-toggle {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--brand);
  background: transparent;
  color: var(--brand-dark);
  cursor: pointer;
  text-align: left;
  font-size: 1.45rem;
  font-weight: 650;
}

.faq-topic-toggle:focus {
  outline: none;
}

.faq-topic-toggle:focus-visible {
  box-shadow: inset 4px 0 0 var(--brand);
  padding-left: 14px;
}

.faq-list summary:focus-visible {
  outline: 2px solid rgba(102, 115, 130, 0.35);
  outline-offset: 2px;
}

.faq-topic-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-topic-icon::before,
.faq-topic-icon::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 3px;
  width: 18px;
  height: 2px;
  background: var(--brand);
  transition: transform 0.3s ease;
}

.faq-topic-icon::after {
  transform: rotate(90deg);
}

.faq-topic.is-open .faq-topic-icon::after {
  transform: rotate(0deg);
}

.faq-topic .faq-list {
  border-top: 0;
  will-change: height;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  will-change: height;
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--brand);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.faq-cta {
  margin-top: 64px;
  padding: 34px;
  background: var(--brand-soft);
}

.faq-cta h3 {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 1.65rem;
}

.faq-cta p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
}

.home-faq-section {
  padding: 112px 0;
  background: var(--white);
}

.home-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.home-faq-intro {
  position: sticky;
  top: 124px;
}

.home-faq-intro h2 {
  margin-bottom: 20px;
  color: var(--brand-dark);
  font-size: clamp(2.4rem, 4vw, 3.45rem);
}

.home-faq-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.home-faq-list {
  border-top-width: 3px;
}

.home-faq-list summary {
  font-size: 1.05rem;
}

.contact-hero {
  padding-top: 168px;
  background:
    radial-gradient(circle at 10% 20%, rgba(102, 115, 130, 0.1), transparent 32%),
    linear-gradient(120deg, var(--surface) 0%, var(--surface) 48%, var(--white) 48%);
}

.contact-intro h1 {
  margin-bottom: 24px;
  color: var(--brand-dark);
  font-size: 4rem;
}

.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.contact-principles span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-dark);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #d7dde1;
  border-top: 4px solid var(--brand);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(28, 35, 42, 0.11);
}

.form-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  margin: 6px 0 10px;
  color: var(--brand-dark);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.form-heading > p:last-child {
  max-width: 560px;
  color: var(--muted);
}

.form-kicker {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.field label span {
  color: #9f4936;
}

.field label small,
.upload-title small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cfd6db;
  border-radius: 2px;
  outline: 0;
  background: #f8f9f9;
  color: var(--ink);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #87919a;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(102, 115, 130, 0.12);
}

.field textarea {
  min-height: 150px;
  line-height: 1.55;
}

.upload-field {
  gap: 8px;
}

.upload-title {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.file-input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.upload-control {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px dashed #aeb8c0;
  background: #f8f9f9;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.upload-control:hover,
.file-input:focus-visible + .upload-control {
  border-color: var(--brand);
  background: #f1f4f5;
}

.upload-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 300;
}

.upload-control strong,
.upload-control small {
  display: block;
}

.upload-control strong {
  color: var(--brand-dark);
  font-size: 0.94rem;
  text-transform: none;
}

.upload-control small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.86rem;
}

.consent input {
  margin-top: 5px;
  accent-color: var(--brand);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-widget {
  min-height: 65px;
  overflow: hidden;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.contact-submit {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 0.92rem;
}

.form-status {
  display: none;
  margin: -4px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--brand);
  background: var(--surface);
  color: var(--brand-dark);
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-left-color: #a24f3b;
  background: #fbf1ee;
  color: #7b3425;
}

.form-status.is-success {
  border-left-color: #49725d;
  background: #edf6f0;
  color: #315441;
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.social-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.social-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.social-layout h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 2rem;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--brand-dark);
}

.legal-hero {
  padding: 170px 0 72px;
  background:
    linear-gradient(115deg, rgba(102, 115, 130, 0.12), transparent 45%),
    var(--surface);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--brand-dark);
}

.legal-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-content {
  padding: 88px 0 110px;
  background: var(--white);
}

.legal-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.legal-notice {
  position: sticky;
  top: 124px;
  padding: 22px;
  border-top: 3px solid #a85a42;
  background: #fbf2ef;
  color: #63382c;
}

.legal-notice strong {
  display: block;
  margin-bottom: 8px;
}

.legal-notice p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-document-wide {
  grid-column: 1 / -1;
  max-width: 820px;
}

.legal-document section + section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 1.55rem;
}

.legal-document p {
  margin: 0 0 14px;
  color: #4e5963;
  line-height: 1.75;
}

.legal-document a,
.consent a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-placeholder {
  padding: 12px 14px;
  border-left: 3px solid #a85a42;
  background: #fbf2ef;
  color: #7b3d2d !important;
}

.legal-meta {
  margin-top: 28px !important;
  color: var(--muted) !important;
  font-size: 0.85rem;
}

.site-footer {
  padding: 58px 0 0;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 46px;
}

.footer-logo {
  width: 170px;
}

.footer-logo-stack {
  position: relative;
  display: inline-block;
  width: 170px;
  line-height: 0;
}

.footer-logo-light {
  filter: brightness(0) invert(1);
}

.footer-logo-signet {
  position: absolute;
  inset: 0;
  clip-path: inset(0 59% 0 0);
}

.footer-brand {
  display: inline-block;
}

.footer-inner p {
  margin: 16px 0 0;
}

.footer-links,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-heading {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-faq-link {
  width: fit-content;
  margin-top: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-weight: 700;
}

.footer-faq-link span {
  margin-left: 10px;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
}

.footer-legal a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .nav-shell {
    min-height: 76px;
    padding: 0 18px;
  }

  .brand-logo {
    width: 154px;
  }

  .mobile-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    right: 18px;
    width: min(300px, calc(100vw - 36px));
    display: grid;
    gap: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 44px rgba(28, 35, 42, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 13px 14px;
  }

  .contact-link {
    margin: 6px 0 0;
  }

  .nav-indicator {
    display: none;
  }

  .home-hero {
    padding-top: 76px;
  }

  .home-hero-content {
    padding-right: 48%;
    padding-left: 32px;
  }

  .home-hero h1 {
    max-width: 560px;
    font-size: 3.2rem;
  }

  .home-hero-portrait {
    top: 76px;
    right: 0;
    width: 52%;
  }

  .positioning-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .positioning-grid p,
  .stat {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .stats-grid .stat {
    border-bottom-color: var(--line);
  }

  .decision-layout,
  .work-layout,
  .faq-layout,
  .home-faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-notice {
    position: static;
  }

  .faq-intro {
    position: static;
  }

  .home-faq-intro {
    position: static;
  }

  .mandate-row {
    grid-template-columns: 54px 1fr;
  }

  .mandate-row p {
    grid-column: 2;
  }

  .about-photo {
    left: 32%;
    opacity: 0.58;
  }

  .cta-band .inner,
  .social-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .home-hero {
    min-height: auto;
    display: block;
    padding: 76px 0 68px;
    overflow: visible;
  }

  .home-hero-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: 0;
    width: 100%;
    height: 48svh;
    min-height: 310px;
    max-height: 470px;
    background:
      linear-gradient(180deg, transparent 58%, rgba(255, 255, 255, 0.42) 76%, var(--white) 100%),
      url("assets/ralf-klein.jpg") center 18% / cover no-repeat;
    filter: saturate(0.78);
  }

  .home-hero-content {
    z-index: 1;
    margin: -38px 0 0;
    padding: 30px max(24px, 6vw) 0;
    background: var(--white);
  }

  .home-hero h1 {
    max-width: none;
    margin-bottom: 20px;
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .hero-lead {
    max-width: none;
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .hero-copy {
    max-width: none;
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .home-hero .scroll-cue {
    display: none;
  }

  .questions-section,
  .work-section,
  .faq-section,
  .home-faq-section,
  .mandates-section,
  .contact-hero,
  .decision-section,
  .promise-section {
    padding: 72px 0;
  }

  .legal-hero {
    padding: 118px 0 56px;
  }

  .legal-content {
    padding: 64px 0 78px;
  }

  .question-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .question,
  .promise-grid p {
    border-right: 0;
  }

  .mandate-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mandate-row p {
    grid-column: auto;
  }

  .about-hero {
    min-height: 680px;
  }

  .about-photo {
    inset: 0;
    opacity: 0.35;
  }

  .about-hero-content {
    padding-bottom: 70px;
  }

  .field-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-intro h1 {
    font-size: 2.75rem;
  }

  .social-links {
    flex-wrap: wrap;
  }
}
