:root {
  --ink: #0a153a;
  --muted: #5e6681;
  --paper: #fff8f1;
  --surface: #ffffff;
  --line: #f0d8c1;
  --accent: #ff9933;
  --accent-dark: #ed662c;
  --navy: #140a3a;
  --blue: #0080fe;
  --shadow: 0 20px 60px rgba(10, 21, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 248, 241, 0.94);
  box-shadow: 0 8px 30px rgba(10, 21, 58, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 112px;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .language-switcher,
.site-header.is-open .language-switcher {
  border-color: rgba(10, 21, 58, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 3px;
  color: currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--ink);
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 86px) 88px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 21, 58, 0.9) 0%, rgba(20, 10, 58, 0.62) 42%, rgba(10, 21, 58, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 21, 58, 0.55) 0%, rgba(10, 21, 58, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 15.5ch;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

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

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.trust-band div {
  min-height: 126px;
  padding: 30px clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.trust-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.section,
.approach,
.partners,
.imprint-section,
.contact-section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 86px);
}

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

.section-heading p:not(.eyebrow),
.approach-copy p:not(.eyebrow),
.partners-copy p:not(.eyebrow),
.imprint-section .section-heading p:not(.eyebrow),
.contact-section > div p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  min-height: 286px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(10, 21, 58, 0.04);
}

.service-index {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--accent);
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.partners {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(42px, 7vw, 90px);
  background: var(--ink);
  color: #fff;
}

.partners-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.partner-list {
  display: grid;
  gap: 18px;
}

.partner-list article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.partner-logo {
  display: grid;
  place-items: center;
  width: min(100%, 210px);
  height: 78px;
  margin-bottom: 34px;
  padding: 16px 22px;
  border-radius: 6px;
  background: #fff;
}

.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}

.partner-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(42px, 7vw, 90px);
  background: #fff0df;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(10, 21, 58, 0.16);
}

.timeline li:first-child {
  padding-top: 0;
}

.timeline span {
  color: var(--accent-dark);
  font-weight: 800;
}

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

.local-section {
  background: var(--surface);
}

.local-section .section-heading {
  max-width: 880px;
}

.local-service-grid {
  margin-top: 34px;
}

.local-card {
  min-height: 168px;
  padding: 24px;
}

.local-card h3 {
  margin-top: 0;
}

.faq-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.faq-strip-heading {
  align-self: start;
}

.faq-strip-heading h2 {
  max-width: 360px;
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.2;
}

.faq-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-strip-grid article {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-strip-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.faq-strip-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 560px);
  gap: clamp(42px, 7vw, 90px);
  background: var(--surface);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form.is-busy {
  opacity: 0.78;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf5;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.privacy-note,
.form-status {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.privacy-note {
  color: var(--muted);
}

.form-status {
  min-height: 1.3em;
  color: var(--ink);
  font-weight: 800;
}

.form-status.is-success {
  color: #1f6f43;
}

.form-status.is-error {
  color: #a13c22;
}

.imprint-section {
  background: #fff0df;
}

.imprint-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0 0;
}

.imprint-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.imprint-list dt {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.imprint-list dd {
  margin: 0;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .language-switcher {
    order: 2;
  }

  .hero {
    min-height: 88vh;
    padding-top: 130px;
  }

  h1 {
    max-width: 15.5ch;
  }

  .trust-band,
  .service-grid,
  .faq-strip,
  .faq-strip-grid,
  .partners,
  .approach,
  .imprint-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .faq-strip {
    gap: 18px;
    margin-top: 42px;
    padding-top: 30px;
  }

  .faq-strip-heading h2 {
    max-width: none;
  }

  .trust-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 86vh;
    padding-bottom: 54px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .site-header {
    gap: 10px;
  }

  .brand-logo {
    width: 96px;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher button {
    flex: 1;
  }

  .button {
    width: 100%;
  }

  .service-card,
  .contact-form {
    padding: 22px;
  }

  .timeline li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
}
