:root {
  --navy-950: #061823;
  --navy-900: #0b2230;
  --navy-800: #123342;
  --navy-700: #1a4352;
  --gold: #b99961;
  --gold-light: #d3bd91;
  --gold-pale: #eee5d5;
  --white: #ffffff;
  --off-white: #faf9f6;
  --soft: #f2f4f3;
  --line: #dbe0df;
  --ink: #14232b;
  --muted: #5e6a70;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --shadow: 0 24px 70px rgba(6, 24, 35, 0.12);
  --container: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

#leistungen,
#prozess,
#regionen,
#ueber-mich,
#kontakt {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy-950);
  padding: 10px 16px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  border-color: rgba(11, 34, 48, 0.08);
  background: rgba(250, 249, 246, 0.96);
  box-shadow: 0 8px 30px rgba(6, 24, 35, 0.06);
  color: var(--navy-900);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-wordmark {
  position: relative;
  display: flex;
  width: 200px;
  height: 84px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.header-wordmark .brand-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 140ms ease, visibility 140ms ease;
}

.header-logo-navy {
  visibility: hidden;
  opacity: 0;
}

.site-header.scrolled .header-logo-gold,
.site-header.nav-open .header-logo-gold {
  visibility: hidden;
  opacity: 0;
}

.site-header.scrolled .header-logo-navy,
.site-header.nav-open .header-logo-navy {
  visibility: visible;
  opacity: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid rgba(185, 153, 97, 0.7);
  padding: 11px 18px;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold);
  color: var(--navy-950);
}

.nav-cta.is-active {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(185, 153, 97, 0.13), transparent 25%),
    linear-gradient(118deg, var(--navy-950), var(--navy-900) 56%, #153746);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -15%;
  bottom: -40%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(185, 153, 97, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(185, 153, 97, 0.02),
    0 0 0 180px rgba(185, 153, 97, 0.015);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.65fr);
  gap: 10vw;
  align-items: center;
  padding-block: 150px 120px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow-dark {
  color: #806239;
}

.hero h1,
.section-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 25px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 12px 32px rgba(185, 153, 97, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--gold);
  background: rgba(185, 153, 97, 0.08);
}

.text-link,
.service-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link span,
.service-card a span {
  color: var(--gold-light);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.service-card a:hover span,
.service-card a:focus-visible span {
  transform: translateX(5px);
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.hero-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 3px;
  background: var(--gold);
}

.card-label {
  margin: 0 0 25px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hero-card > p:not(.card-label) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.region-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.region-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-pattern {
  position: absolute;
  z-index: 1;
  top: 6%;
  right: -70px;
  width: 440px;
  height: 460px;
  opacity: 0.26;
  transform: rotate(-7deg);
}

.hero-pattern span {
  position: absolute;
  width: 112px;
  height: 124px;
  background: rgba(185, 153, 97, 0.18);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.hero-pattern span::after {
  position: absolute;
  inset: 2px;
  background: var(--navy-900);
  content: "";
  clip-path: inherit;
}

.hero-pattern span:nth-child(1) { top: 0; left: 112px; }
.hero-pattern span:nth-child(2) { top: 61px; left: 218px; }
.hero-pattern span:nth-child(3) { top: 122px; left: 112px; }
.hero-pattern span:nth-child(4) { top: 183px; left: 218px; }
.hero-pattern span:nth-child(5) { top: 244px; left: 112px; }
.hero-pattern span:nth-child(6) { top: 183px; left: 6px; }
.hero-pattern span:nth-child(7) { top: 61px; left: 6px; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  50%, 100% { transform: translateY(200%); }
}

.section {
  padding-block: clamp(90px, 11vw, 150px);
}

.section-soft {
  background: var(--soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 11vw;
  align-items: start;
}

.section-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2 {
  color: var(--navy-900);
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.section-heading > p:last-child {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.lead {
  color: var(--navy-800);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.intro-copy p {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-top: 26px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--off-white);
  padding: clamp(30px, 4vw, 46px);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -50px;
  width: 120px;
  height: 132px;
  background: rgba(185, 153, 97, 0.07);
  content: "";
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  transition: transform 350ms ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(185, 153, 97, 0.52);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scale(1.22) rotate(6deg);
}

.service-card.featured {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(22px);
}

.service-card.featured:hover {
  transform: translateY(14px);
}

.hex-number {
  display: grid;
  width: 56px;
  height: 62px;
  place-items: center;
  margin-bottom: 42px;
  background: var(--gold-pale);
  color: #806239;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  font-family: var(--serif);
  font-size: 16px;
}

.featured .hex-number {
  background: var(--gold);
  color: var(--navy-950);
}

.service-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card p {
  margin: 17px 0 32px;
  color: var(--muted);
  font-size: 14px;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.64);
}

.service-card a {
  position: absolute;
  bottom: 42px;
  left: clamp(30px, 4vw, 46px);
  color: var(--navy-800);
}

.service-card.featured a {
  color: var(--white);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.process::before {
  position: absolute;
  top: -110px;
  left: -100px;
  width: 340px;
  height: 370px;
  border: 1px solid rgba(185, 153, 97, 0.1);
  content: "";
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 10vw;
}

.process-intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.process-intro h2,
.contact-copy h2 {
  color: var(--white);
}

.process-intro > p:not(.eyebrow) {
  max-width: 420px;
  margin: 25px 0 36px;
  color: rgba(255, 255, 255, 0.64);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding: 35px 0 38px;
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.process-list li > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 400;
}

.process-list p {
  max-width: 520px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.advantages {
  background: var(--soft);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-item {
  min-height: 260px;
  border-top: 2px solid var(--gold);
  background: var(--white);
  padding: 30px 26px;
  box-shadow: 0 16px 45px rgba(6, 24, 35, 0.055);
}

.advantage-number {
  display: block;
  margin-bottom: 34px;
  color: #806239;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.advantage-item h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
}

.advantage-item p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.region-card {
  position: relative;
  min-height: 320px;
  border-right: 1px solid var(--line);
  padding: 36px 34px;
  transition: background 220ms ease;
}

.region-card:last-child {
  border-right: 0;
}

.region-card:hover {
  background: var(--white);
}

.region-index {
  display: block;
  color: #806239;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.region-card > div {
  position: absolute;
  right: 34px;
  bottom: 35px;
  left: 34px;
}

.region-kicker {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.region-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.region-card > div > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 10vw;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(185, 153, 97, 0.12), transparent 55%),
    var(--navy-900);
}

.about-photo {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  opacity: 1;
  filter: none;
  transform: none;
  visibility: hidden;
}

.about-visual.has-photo .about-photo {
  visibility: visible;
}

.about-word {
  position: absolute;
  z-index: 2;
  bottom: 58px;
  left: 58px;
}

.about-word > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.8;
}

.about-word p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.8;
  text-transform: uppercase;
}

.about-hex {
  position: absolute;
  width: 180px;
  height: 200px;
  border: 1px solid rgba(185, 153, 97, 0.24);
  background: rgba(185, 153, 97, 0.025);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.hex-one { top: -15px; right: -15px; }
.hex-two { top: 181px; right: 75px; }
.hex-three { right: -106px; bottom: -46px; }

.about-copy .lead {
  margin: 31px 0 20px;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.principles {
  display: flex;
  gap: 26px;
  margin-top: 35px;
}

.principles span {
  position: relative;
  padding-left: 15px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.principles span::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.contact {
  background:
    radial-gradient(circle at 15% 100%, rgba(185, 153, 97, 0.13), transparent 29%),
    var(--navy-950);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 10vw;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.contact-note {
  display: flex;
  gap: 14px;
  max-width: 470px;
  align-items: flex-start;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.contact-note > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid rgba(185, 153, 97, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.contact-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(28px, 4vw, 46px);
}

.form-honey {
  display: none !important;
}

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

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  padding: 14px 15px;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form select {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.045);
  color-scheme: light;
}

.contact-form select option {
  background-color: var(--white);
  color: var(--navy-950);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  background: #04121a;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(150px, 0.65fr) minmax(260px, 1fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 64px 58px;
}

.footer-brand .wordmark {
  width: auto;
  height: auto;
  margin-bottom: 24px;
}

.footer-logo-image {
  display: block;
  width: 110px;
  max-width: 110px;
  height: auto;
  object-fit: contain;
}

.footer-claim {
  max-width: 280px;
  margin: 0;
  font-family: var(--serif);
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
}

.footer-heading {
  margin: 3px 0 22px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  max-width: 330px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

.footer-contact .button {
  min-height: 48px;
  padding: 0 22px;
}

.footer-domain {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--navy-900);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.js .delay-1 {
  transition-delay: 100ms;
}

.js .delay-2 {
  transition-delay: 200ms;
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 40px, 760px);
  }

  #leistungen,
  #prozess,
  #regionen,
  #ueber-mich,
  #kontakt {
    scroll-margin-top: 104px;
  }

  .menu-toggle {
    display: block;
  }

  .header-wordmark {
    width: 184px;
    height: 78px;
  }

  .footer-logo-image {
    width: 100px;
    max-width: 100px;
  }

  .site-header:not(.scrolled):not(.nav-open) .menu-toggle {
    color: var(--white);
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    visibility: hidden;
    background: var(--off-white);
    color: var(--navy-900);
    opacity: 0;
    padding: 110px max(20px, calc((100vw - 720px) / 2));
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    z-index: 90;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: 2.15rem;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .main-nav .nav-cta {
    margin-top: 16px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
    padding-block: 155px 120px;
  }

  .hero-card {
    max-width: 570px;
  }

  .hero-pattern {
    top: 8%;
    right: -190px;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .process-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card,
  .service-card.featured {
    min-height: 350px;
    transform: none;
  }

  .service-card.featured:hover {
    transform: translateY(-8px);
  }

  .process-intro {
    position: static;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .region-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-visual {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-contact p {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 32px);
  }

  #leistungen,
  #prozess,
  #regionen,
  #ueber-mich,
  #kontakt {
    scroll-margin-top: 92px;
  }

  .nav-shell {
    min-height: 78px;
  }

  .header-wordmark {
    width: 152px;
    height: 68px;
  }

  .footer-logo-image {
    width: 90px;
    max-width: 90px;
  }

  .hero-grid {
    padding-block: 126px 82px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 34px;
  }

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

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-item {
    min-height: 0;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-card {
    padding: 30px 25px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading.centered {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-heading.centered .eyebrow {
    justify-content: flex-start;
  }

  .service-card,
  .service-card.featured {
    min-height: 430px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .region-card {
    min-height: 275px;
    padding-inline: 24px;
  }

  .region-card > div {
    right: 24px;
    left: 24px;
  }

  .about-visual {
    min-height: 400px;
  }

  .about-word {
    bottom: 38px;
    left: 32px;
  }

  .about-word > span {
    font-size: 6rem;
  }

  .principles {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    gap: 34px;
    padding-block: 48px 42px;
  }

  .footer-heading {
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
