/* Self-hosted fonts (DSGVO-konform, keine Google-CDN-Verbindung) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ink: #102f38;
  --muted: #60706f;
  --white: #ffffff;
  --mist: #edf7f5;
  --stone: #f4ecdd;
  --sand: #ead8b8;
  --sand-soft: #faf4e8;
  --pine: #0d4350;
  --teal: #0a7480;
  --clay: #c86649;
  --line: rgba(16, 47, 56, 0.15);
  --shadow: 0 20px 55px rgba(16, 47, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--pine);
  background: rgba(244, 236, 221, 0.92);
  box-shadow: 0 12px 30px rgba(16, 47, 56, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--pine);
  background: rgba(244, 236, 221, 0.94);
  box-shadow: 0 12px 30px rgba(16, 47, 56, 0.12);
  backdrop-filter: blur(18px);
}

.simple-page .site-header {
  color: var(--pine);
  background: rgba(244, 236, 221, 0.96);
  box-shadow: 0 12px 30px rgba(16, 47, 56, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(16, 47, 56, 0.16);
  border-radius: 50%;
  object-fit: cover;
  background: #eadabd;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.76;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: currentColor;
}

.main-nav .nav-cta {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--pine);
  border-radius: 8px;
  color: var(--white);
  background: var(--pine);
}

.main-nav .nav-cta:hover {
  border-color: var(--teal);
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  animation: heroDrift 20s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 27, 0.78) 0%, rgba(9, 24, 27, 0.45) 43%, rgba(9, 24, 27, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 24, 27, 0.38), rgba(9, 24, 27, 0.02) 46%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 80px;
}

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

.hero .eyebrow {
  color: #ffcfb8;
}

.eyebrow.dark {
  color: var(--teal);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 580;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 11px;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

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

.button.primary:hover {
  background: #a94f35;
  border-color: #a94f35;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.section-pad {
  padding: clamp(70px, 9vw, 128px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.service-card.reveal,
.comparison-card.reveal,
.step-grid article.reveal {
  transform: translateY(34px) scale(0.96);
}

.feature-media.reveal {
  transform: translateX(-34px) scale(0.97);
}

.feature-copy.reveal,
.chill-grid.reveal,
.contact-grid.reveal,
.request-grid.reveal {
  transform: translateX(28px);
}

.service-card.reveal.is-visible,
.comparison-card.reveal.is-visible,
.step-grid article.reveal.is-visible,
.feature-media.reveal.is-visible,
.feature-copy.reveal.is-visible,
.chill-grid.reveal.is-visible,
.contact-grid.reveal.is-visible,
.request-grid.reveal.is-visible {
  transform: translate(0, 0) scale(1);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.09);
  }
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.intro-button,
.feature-button {
  width: fit-content;
  margin-top: 8px;
}

.intro {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.intro::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(10, 116, 128, 0.09);
}

.intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 6px;
  background: var(--sand);
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.intro-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(16, 47, 56, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 45px rgba(16, 47, 56, 0.08);
}

.intro-panel p,
.feature-copy p,
.proof-panel p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.intro-panel .intro-lead {
  color: var(--ink);
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 750;
  line-height: 1.35;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.intro-points span {
  display: grid;
  min-height: 72px;
  align-content: center;
  padding: 12px;
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  color: var(--pine);
  background: var(--sand-soft);
  font-size: 14px;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.services {
  background: var(--white);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(19, 35, 33, 0.06);
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--clay);
  font-weight: 800;
}

.card-link::after {
  content: "";
  width: 18px;
  height: 2px;
  margin-left: 9px;
  background: currentColor;
  transition: width 160ms ease;
}

.card-link:hover::after {
  width: 28px;
}

.service-card p,
.step-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--teal);
  background: var(--mist);
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature {
  background: var(--mist);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.feature-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.58em;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.proof {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.proof-image-wrap,
.proof-image-wrap img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.proof-image-wrap img {
  object-fit: cover;
}

.proof::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 24, 26, 0.77), rgba(10, 24, 26, 0.14));
}

.proof-panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 72px;
  text-align: center;
}

.proof-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.proof-panel .button {
  margin-top: 10px;
}

.chill-section {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.chill-image {
  object-fit: cover;
}

.chill-overlay {
  background:
    linear-gradient(90deg, rgba(8, 52, 67, 0.74) 0%, rgba(8, 52, 67, 0.4) 42%, rgba(8, 52, 67, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 52, 67, 0.26), rgba(8, 52, 67, 0.04));
}

.chill-grid {
  position: relative;
  z-index: 1;
}

.chill-copy {
  width: min(640px, 100%);
  padding: clamp(28px, 4vw, 44px);
  border-left: 5px solid var(--sand);
  border-radius: 8px;
  background: rgba(8, 52, 67, 0.38);
  backdrop-filter: blur(10px);
}

.chill-copy .eyebrow {
  color: #ffcfb8;
}

.chill-copy h2 {
  margin-bottom: 16px;
}

.chill-copy p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.65;
}

.cta-band {
  padding: clamp(54px, 7vw, 86px) 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--pine), #0a2f3d);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band .eyebrow {
  color: #8ed5cf;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.cta-band p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

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

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(142, 213, 207, 0.16), transparent 32%),
    linear-gradient(135deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.04) 46%, transparent 46%);
  pointer-events: none;
}

.process .section-inner {
  position: relative;
  z-index: 1;
}

.process-graphic {
  position: absolute;
  z-index: 0;
  top: 82px;
  right: clamp(24px, 7vw, 132px);
  width: min(32vw, 470px);
  min-width: 300px;
  color: #8ed5cf;
  opacity: 0.2;
  pointer-events: none;
}

.process-graphic path,
.process-graphic circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.before-after {
  background: var(--white);
}

.comparison-grid {
  display: grid;
  gap: 22px;
}

.comparison-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  box-shadow: 0 16px 34px rgba(19, 35, 33, 0.07);
}

.comparison-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.comparison-images figure {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.comparison-images img {
  height: 100%;
  object-fit: cover;
}

.comparison-images span {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(19, 35, 33, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.comparison-copy {
  display: grid;
  align-content: end;
  padding: 18px 10px;
}

.comparison-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process .eyebrow {
  color: #8ed5cf;
}

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

.step-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.step-grid article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(142, 213, 207, 0.2);
  border-radius: 50%;
}

.step-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 42px;
}

.step-number {
  display: inline-block;
  color: #8ed5cf;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(142, 213, 207, 0.38);
  border-radius: 8px;
  color: #8ed5cf;
  background: rgba(142, 213, 207, 0.08);
}

.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-grid h3,
.step-grid p {
  position: relative;
  z-index: 1;
}

.step-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background: var(--stone);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.form-only-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.form-only-grid .contact-form {
  width: 100%;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfb;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 126, 131, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.form-link {
  width: fit-content;
  color: var(--clay);
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--teal);
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -56px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
}

/* --- Eroeffnungs-Animation: Intro-Splash + Hero-Einblendung --- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #0e2a2e 0%, #102f38 55%, #0a7480 150%);
  animation: introOut 0.8s cubic-bezier(0.7, 0, 0.2, 1) 1.15s forwards;
}
.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: introIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.intro-logo {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #eadabd;
}
.intro-word {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-word small {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7fd4d0;
  margin-top: 8px;
}
@keyframes introIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes introOut {
  to { opacity: 0; visibility: hidden; transform: translateY(-100%); }
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-copy,
.hero-content .hero-actions {
  animation: heroRise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-content .eyebrow { animation-delay: 1.3s; }
.hero-content h1 { animation-delay: 1.45s; }
.hero-content .hero-copy { animation-delay: 1.6s; }
.hero-content .hero-actions { animation-delay: 1.75s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Nur einmal pro Sitzung: bei Wiederbesuch sofort anzeigen */
.no-intro .intro { display: none; }
.no-intro .hero-content .eyebrow,
.no-intro .hero-content h1,
.no-intro .hero-content .hero-copy,
.no-intro .hero-content .hero-actions { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .hero-copy,
  .hero-content .hero-actions { animation: none; }
}

.imprint {
  background: var(--white);
}

.legal-hero {
  padding: 170px 0 80px;
  background: var(--stone);
}

.request-hero {
  padding: 170px 0 90px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 41, 38, 0.92), rgba(13, 41, 38, 0.72)),
    url("assets/finca-wide-blue-sky.png") center / cover;
}

.request-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 7vw, 86px);
  align-items: end;
}

.request-hero .eyebrow {
  color: #ffcfb8;
}

.request-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
}

.request-hero p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.6;
}

.request-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.request-card strong {
  color: #8ed5cf;
}

.request-card span {
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: anywhere;
}

.request-section {
  background: var(--stone);
}

.request-section.form-page {
  padding-top: clamp(130px, 14vw, 170px);
}

.request-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.contact-grid.form-only-grid,
.request-grid.form-only-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.request-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.request-form {
  position: relative;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--ink);
}

.legal-hero p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.imprint-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(32px, 6vw, 76px);
}

.imprint-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.imprint-content article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--stone);
}

.imprint-content p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, #083443, var(--pine));
  border-top: 6px solid var(--sand);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.footer-meta p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(234, 216, 184, 0.38);
  border-radius: 8px;
  color: rgba(250, 244, 232, 0.92);
  font-size: 14px;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease;
}

.footer-links a:hover {
  background: rgba(234, 216, 184, 0.12);
  border-color: rgba(234, 216, 184, 0.68);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-image {
    animation: none;
  }
}

.footer-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--pine);
    background: var(--sand-soft);
    box-shadow: var(--shadow);
  }

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

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

  .intro-grid,
  .feature-grid,
  .comparison-card,
  .cta-band-inner,
  .imprint-grid,
  .request-hero-grid,
  .request-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    justify-items: start;
  }

  .imprint-content {
    grid-template-columns: 1fr;
  }

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

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

  .process-graphic {
    opacity: 0.13;
    right: -70px;
  }

  .feature-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .main-nav {
    top: 68px;
  }

  .main-nav .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

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

  .section-cta,
  .intro-button,
  .feature-button {
    width: 100%;
  }

  .request-hero,
  .legal-hero {
    padding-top: 132px;
  }

  .service-grid,
  .comparison-images,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .process-graphic {
    display: none;
  }

  .step-top {
    margin-bottom: 30px;
  }

  .comparison-card {
    padding: 12px;
  }

  .comparison-images figure {
    min-height: 0;
  }

  .service-card {
    min-height: auto;
  }

  .proof {
    min-height: 560px;
  }

  .chill-section {
    min-height: 620px;
  }

  .chill-copy {
    padding: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-meta p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
