﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --green-dark: #1f3a2e;
  --green-main: #2f5d46;
  --green-light: #3f7a5c;
  --bg-dark: #181512;
  --bg-mid: #231d18;
  --bg-soft: #2f2620;
  --beige-light: #2d241d;
  --beige-soft: #241d18;
  --gold-accent: #d6c3a3;
  --text-dark: #f0e6d6;
  --text-light: #ffffff;
  --text-muted: #c4b59f;
  --cream-warm: #1f1a16;
  --cream-soft: #171411;
  --sand: #4d3f32;
  --wood-light: #cbb79a;
  --wood-mid: #a88d6d;
  --wood-dark: #7a624c;
  --brown-text-soft: #d6cab8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --container-max: 1160px;
  --space-xs: clamp(0.65rem, 1.3vw, 1rem);
  --space-sm: clamp(1rem, 2vw, 1.6rem);
  --space-md: clamp(1.8rem, 4vw, 3rem);
  --space-lg: clamp(3rem, 7vw, 5.8rem);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-soft: 0 14px 32px rgba(6, 9, 8, 0.18);
  --shadow-card: 0 20px 44px rgba(5, 8, 7, 0.22);
  --shadow-deep: 0 30px 68px rgba(4, 6, 5, 0.32);
  --shadow-info: 0 14px 30px rgba(6, 9, 8, 0.17);
  --shadow-proof: 0 24px 52px rgba(4, 7, 6, 0.3);
  --shadow-action: 0 20px 42px rgba(12, 20, 16, 0.24);
  --surface-card: linear-gradient(180deg, rgba(44, 36, 30, 0.84) 0%, rgba(31, 27, 23, 0.92) 100%);
  --surface-warm: linear-gradient(180deg, rgba(58, 47, 38, 0.78) 0%, rgba(38, 31, 26, 0.9) 100%);
  --surface-form: linear-gradient(180deg, rgba(71, 58, 48, 0.96) 0%, rgba(47, 39, 33, 0.98) 100%);
  --section-fade-light: linear-gradient(180deg, rgba(20, 17, 14, 0) 0%, rgba(20, 17, 14, 0.72) 64%, rgba(20, 17, 14, 0.96) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16.5px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 550;
  color: var(--text-dark);
  background:
    linear-gradient(180deg, #171411 0%, #1a1714 36%, #1c1916 68%, #15120f 100%);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(100% - 2.4rem, var(--container-max));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 120px 20px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(35, 28, 22, 0.5) 0%, rgba(24, 21, 18, 0.44) 100%),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.022) 0%, transparent 35%);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.42;
}
.section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -88px;
  height: 152px;
  pointer-events: none;
  z-index: 0;
  background: var(--section-fade-light);
}
.section > * {
  position: relative;
  z-index: 1;
}
.section--sm {
  padding: 80px 20px;
}
.soft-transition-top::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -88px;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(24, 20, 17, 0.48) 44%, rgba(24, 20, 17, 0.92) 82%, rgba(24, 20, 17, 1) 100%);
}
.soft-transition-bottom::after {
  bottom: -88px;
  height: 120px;
  background: linear-gradient(to top, rgba(24, 20, 17, 1) 0%, rgba(24, 20, 17, 0.92) 34%, rgba(24, 20, 17, 0.48) 72%, transparent 100%);
}

h1, h2, h3, p { margin: 0; }
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 3.78rem);
  line-height: 1.15;
  letter-spacing: -0.7px;
  font-weight: 700;
  color: var(--text-light);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.24rem, 3.45vw, 2.46rem);
  line-height: 1.16;
  letter-spacing: -0.45px;
  font-weight: 700;
}
h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1.95vw, 1.3rem);
  line-height: 1.3;
  font-weight: 800;
}
p {
  color: #ddd2c1;
  font-size: clamp(1.14rem, 1.26vw, 1.22rem);
  line-height: 1.74;
  opacity: 1;
}
.lead {
  font-size: clamp(1.2rem, 2.2vw, 1.38rem);
  color: #dccfbd;
  line-height: 1.68;
  font-weight: 550;
}
.eyebrow {
  display: block;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c7ab82;
}
.eyebrow--light {
  color: var(--gold-accent);
}

.redesign-usp .eyebrow,
.proof-section .eyebrow,
.redesign-process-section .eyebrow,
.precontact-trust .eyebrow,
.contact-actions .eyebrow,
.form-card .eyebrow {
  display: none;
}

.signature-edge {
  position: relative;
}
.signature-edge::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(214, 195, 163, 0.42) 52%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  border: 0;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn:hover,
.btn:focus-visible { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: var(--text-light);
  background: linear-gradient(145deg, #2b5843, #3b6e55);
  box-shadow: 0 10px 24px rgba(40, 73, 56, 0.3);
}
.btn-primary:hover { background: linear-gradient(145deg, #32614a, #447a5f); }
.btn-gold {
  background: linear-gradient(145deg, var(--wood-light), #d4c1a5);
  color: #2d3c31;
  box-shadow: 0 8px 20px rgba(168, 141, 109, 0.35);
}
.btn-gold:hover { background: linear-gradient(145deg, #c3ad8e, #cfb898); }
.btn-ghost {
  color: var(--text-light);
  border: 1.5px solid rgba(214, 195, 163, 0.42);
  background: rgba(214, 195, 163, 0.05);
}
.btn-ghost:hover {
  background: rgba(214, 195, 163, 0.12);
  border-color: rgba(214, 195, 163, 0.78);
}
.btn-ghost-dark {
  color: var(--green-main);
  border: 1.5px solid var(--green-main);
  background: transparent;
}
.btn-ghost-dark:hover {
  color: var(--text-light);
  background: var(--green-main);
}
.btn-nav {
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--green-main);
  color: var(--text-light);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(17, 39, 28, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.main-nav a {
  padding: 0.38rem 0.72rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text-light);
  background: rgba(214, 195, 163, 0.12);
}
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-light);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 34, 27, 0.86) 0%,
    rgba(24, 43, 34, 0.44) 38%,
    rgba(29, 49, 38, 0.28) 58%,
    rgba(34, 54, 42, 0.82) 100%
  );
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 68% 30%, rgba(214, 195, 163, 0.13) 0%, transparent 28%),
    linear-gradient(108deg, rgba(13, 30, 23, 0.92) 0%, rgba(19, 42, 31, 0.82) 43%, rgba(24, 52, 38, 0.58) 70%, rgba(34, 65, 49, 0.4) 100%),
    url('/static/img/hero-codarion-lake.jpg');
  background-size: cover;
  background-position: center center;
}
.redesign-hero-bg {
  background-image:
    linear-gradient(112deg, rgba(16, 33, 26, 0.82) 0%, rgba(22, 46, 34, 0.58) 52%, rgba(35, 66, 50, 0.42) 100%),
    url('/static/img/hero-main.jpg');
  background-position: center center;
}
.redesign-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.redesign-hero-inner h1 {
  max-width: 18ch;
}
.redesign-hero-inner .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
}
.hero-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to bottom, transparent 0%, rgba(29, 45, 35, 0.34) 42%, rgba(24, 20, 17, 0.88) 76%, #181411 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 90px;
  transform: translateY(-40px);
}
.hero-grid {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-lg);
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.hero-copy h1 { max-width: 12.5ch; }
.hero-copy h1 em {
  color: var(--gold-accent);
  font-style: normal;
}
.hero-copy .lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.76rem;
}
.hero .btn {
  padding: 14px 28px;
  font-size: 16px;
}
.hero-usp {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero-usp-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-accent);
}
.hero-visual { display: flex; justify-content: center; }
.hero-emblem {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(214, 195, 163, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 52% 45%, rgba(214, 195, 163, 0.12) 0%, rgba(214, 195, 163, 0.03) 56%, transparent 76%);
}
.hero-emblem-inner { text-align: center; }
.hero-emblem-icon {
  width: 74px;
  height: 74px;
  color: var(--gold-accent);
  opacity: 0.56;
  margin: 0 auto 0.7rem;
}
.hero-emblem-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-light);
}
.hero-emblem-sub {
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.usp-bar {
  background: linear-gradient(140deg, rgba(26, 45, 34, 0.94) 0%, rgba(37, 31, 26, 0.96) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
}
.redesign-usp {
  background:
    linear-gradient(180deg, rgba(37, 31, 24, 0.9) 0%, rgba(30, 25, 21, 0.94) 100%),
    radial-gradient(circle at 68% 22%, rgba(214, 195, 163, 0.05) 0%, transparent 44%);
}
.redesign-usp::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.28;
}
.redesign-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.18rem;
}
.redesign-usp-item {
  background: linear-gradient(180deg, rgba(40, 33, 26, 0.82) 0%, rgba(27, 23, 19, 0.9) 100%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(214, 195, 163, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow-info);
  padding: 1.5rem 1.25rem;
}
.redesign-usp-item h3,
.redesign-usp-item p { color: var(--text-dark); }
.redesign-usp-item h3 {
  margin-bottom: 0.45rem;
}

.redesign-content-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.2rem;
  align-items: center;
}
.redesign-content-grid.mirrored {
  grid-template-columns: 1fr 1fr;
}
.redesign-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 620px;
  background: linear-gradient(180deg, rgba(30, 26, 21, 0.76) 0%, rgba(23, 22, 19, 0.9) 100%);
  border: 1px solid rgba(168, 141, 109, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(5, 7, 6, 0.18);
  padding: 1.3rem 1.25rem;
}
.redesign-copy h2,
.redesign-copy h3,
.redesign-copy p,
.redesign-copy .lead { color: var(--text-dark); }
.redesign-image {
  min-height: 320px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  background-image:
    linear-gradient(145deg, rgba(18, 39, 29, 0.18), rgba(41, 76, 56, 0.08)),
    var(--redesign-image);
  background-size: cover;
  background-position: center;
  transform: scale(0.94);
}
.content img {
  transform: scale(1.05);
}
.content-text {
  max-width: 480px;
}

.proof-section {
  background-image:
    radial-gradient(circle at 50% 46%, rgba(214, 195, 163, 0.1) 0%, rgba(214, 195, 163, 0.02) 24%, transparent 46%),
    linear-gradient(180deg, rgba(16, 21, 17, 0.92) 0%, rgba(24, 31, 25, 0.88) 100%),
    url('/static/img/bg-section-1.jpg');
  background-size: cover;
  background-position: center;
}
.proof-section::before {
  background:
    linear-gradient(180deg, rgba(12, 14, 12, 0.7) 0%, rgba(12, 14, 12, 0.52) 46%, rgba(12, 14, 12, 0.74) 100%);
  opacity: 1;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.proof-item {
  position: relative;
  min-height: 230px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background-image:
    linear-gradient(180deg, rgba(10, 16, 13, 0.12) 0%, rgba(10, 16, 13, 0.72) 100%),
    var(--proof-image);
  background-size: cover;
  background-position: center;
}
.proof-item h3 {
  color: rgba(248, 242, 232, 0.96);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.proof-section .section-header {
  max-width: 760px;
  margin: 0 auto 1.25rem;
}

.first-content-section .redesign-copy {
  box-shadow: 0 18px 36px rgba(5, 7, 6, 0.22);
}

.section-dark {
  background: linear-gradient(180deg, #1b211b 0%, #171713 100%);
  color: white;
}
.section-dark p {
  opacity: 0.8;
  color: rgba(240, 232, 218, 0.88);
}

.mid-highlight-band {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 52% 46%, rgba(211, 189, 155, 0.12) 0%, rgba(211, 189, 155, 0.02) 22%, transparent 42%),
    linear-gradient(180deg, rgba(17, 23, 19, 0.92) 0%, rgba(27, 39, 31, 0.62) 42%, rgba(30, 38, 30, 0.58) 58%, rgba(21, 19, 17, 0.94) 100%),
    url('/static/img/showcase-dark-lake.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mid-highlight-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 18, 16, 0.2) 0%, rgba(16, 18, 16, 0.08) 35%, rgba(16, 18, 16, 0.08) 65%, rgba(16, 18, 16, 0.24) 100%);
}
.mid-highlight-band > .section {
  background: transparent;
}

.mid-highlight-part-a {
  padding-bottom: 104px;
}
.mid-highlight-part-b {
  padding-top: 108px;
}
.mid-highlight-band > .section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.18;
}
.mid-highlight-band > .section::after {
  background: linear-gradient(180deg, rgba(20, 17, 14, 0) 0%, rgba(20, 17, 14, 0.3) 68%, rgba(20, 17, 14, 0.46) 100%);
}
.mid-highlight-section .redesign-copy {
  background: linear-gradient(180deg, rgba(33, 30, 26, 0.58) 0%, rgba(24, 22, 19, 0.72) 100%);
  border: 1px solid rgba(168, 141, 109, 0.18);
  box-shadow: 0 18px 36px rgba(5, 7, 6, 0.18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.redesign-about {
  background: linear-gradient(180deg, rgba(26, 23, 19, 0.96) 0%, rgba(21, 19, 17, 0.98) 100%);
}
.redesign-about .container {
  text-align: center;
  max-width: 860px;
  background: linear-gradient(180deg, rgba(42, 37, 32, 0.56) 0%, rgba(29, 26, 23, 0.76) 100%);
  border: 1px solid rgba(168, 141, 109, 0.18);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(3, 5, 4, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.redesign-about .container h2,
.redesign-about .container p { color: var(--text-dark); }
.about-box {
  background: linear-gradient(180deg, rgba(47, 38, 31, 0.78) 0%, rgba(35, 29, 24, 0.86) 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(4, 6, 5, 0.2);
}

.redesign-process-section {
  padding-top: clamp(6.2rem, 10vw, 8rem);
  padding-bottom: clamp(6.2rem, 10vw, 8rem);
  background: linear-gradient(180deg, rgba(24, 21, 18, 0.98) 0%, rgba(29, 35, 29, 0.95) 48%, rgba(22, 19, 17, 0.98) 100%);
}
.redesign-process-section::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(195, 173, 139, 0.11) 0%, rgba(195, 173, 139, 0.018) 18%, transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.82;
}
.redesign-process-section .section-header {
  max-width: 760px;
  margin: 0 auto 2.2rem;
}
.redesign-process-section .section-header h2 {
  color: rgba(245, 238, 226, 0.97);
}

.redesign-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}
.redesign-process-step {
  background: linear-gradient(180deg, rgba(39, 33, 28, 0.62) 0%, rgba(24, 21, 18, 0.76) 100%);
  border: 1px solid rgba(196, 173, 140, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(4, 6, 5, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  min-height: 272px;
  padding: 1.8rem 1.45rem;
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.redesign-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(4, 6, 5, 0.28);
}
.redesign-process-step h3,
.redesign-process-step p { color: rgba(245, 238, 226, 0.92); }
.redesign-process-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #2f5d46, #3d6f54);
  color: #ead9bf;
  font-family: var(--font-display);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redesign-contact {
  background:
    linear-gradient(180deg, rgba(28, 36, 30, 0.96) 0%, rgba(23, 29, 24, 0.98) 100%);
}
.redesign-contact::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.28;
}
.contact-form {
  background: linear-gradient(180deg, rgba(71, 58, 48, 0.88) 0%, rgba(48, 39, 33, 0.96) 100%);
  padding: 34px;
  border-radius: 16px;
  box-shadow: 0 22px 46px rgba(12, 25, 19, 0.22);
  border: 1px solid rgba(168, 141, 109, 0.22);
}
.usp-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 220px;
}
.usp-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(214, 195, 163, 0.12);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-icon svg { width: 18px; height: 18px; }
.usp-label {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}
.usp-label span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.section-header { margin-bottom: var(--space-md); }
.section-header.centered { text-align: center; }

.benefits-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.96) 0%, rgba(22, 19, 17, 0.98) 100%);
}
.benefits-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.3;
}
.benefits-section > .container {
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.card {
  background: var(--surface-card);
  border: 1px solid rgba(214, 195, 163, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(8, 10, 9, 0.18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 1.58rem 1.38rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.card h3,
.card p { color: var(--text-dark); }
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(8, 10, 9, 0.2);
}
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  margin-bottom: 0.88rem;
  background: linear-gradient(145deg, var(--green-dark), var(--green-main));
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 21px; height: 21px; }
.card h3 { margin-bottom: 0.5rem; }

.vn-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: #101f18;
}
.vn-panel { position: absolute; inset: 0; }
.vn-before {
  background-image:
    linear-gradient(135deg, rgba(14, 30, 21, 0.7), rgba(20, 43, 31, 0.55)),
    url('/static/img/showcase-dark-lake.jpg');
  background-size: cover;
  background-position: center;
}
.vn-after {
  background-image:
    linear-gradient(135deg, rgba(15, 35, 26, 0.58), rgba(28, 58, 42, 0.36)),
    url('/static/img/hero-codarion-lake.jpg');
  background-size: cover;
  background-position: center;
  clip-path: inset(0 50% 0 0);
}
.vn-label {
  position: absolute;
  top: 1rem;
  z-index: 15;
  padding: 0.3rem 0.82rem;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vn-label-before {
  left: 1rem;
  background: rgba(12, 20, 16, 0.62);
  color: rgba(255, 255, 255, 0.85);
}
.vn-label-after {
  right: 1rem;
  background: rgba(47, 93, 70, 0.92);
  color: var(--text-light);
}
.vn-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--text-light);
  transform: translateX(-50%);
  z-index: 13;
  cursor: ew-resize;
}
.vn-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-light);
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vn-handle-knob svg { width: 18px; height: 18px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}
.process-step {
  background: linear-gradient(180deg, rgba(32, 27, 22, 0.82) 0%, rgba(21, 19, 16, 0.92) 100%);
  border: 1px solid rgba(214, 195, 163, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 26px rgba(4, 6, 5, 0.18);
  padding: 1.18rem 0.9rem;
  text-align: center;
}
.process-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold-accent);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step p { font-size: 0.97rem; line-height: 1.65; }
.process-step h3,
.process-step p { color: var(--text-dark); }

.about-teaser,
.now-block {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(31, 26, 21, 0.78) 0%, rgba(21, 19, 16, 0.9) 100%);
  border: 1px solid rgba(214, 195, 163, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: 0 14px 30px rgba(4, 6, 5, 0.18);
}
.about-teaser h2,
.about-teaser p,
.now-block h2,
.now-block p { color: var(--text-dark); }
.about-teaser .lead,
.now-block p {
  margin: 0.8rem auto 1.2rem;
  max-width: 70ch;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.45rem;
  align-items: start;
}

.precontact-trust {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-lg);
}
.precontact-trust h3 {
  color: var(--text-light);
  font-size: clamp(1.1rem, 1.85vw, 1.3rem);
}
.precontact-points {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.precontact-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.7rem;
  border-radius: 14px;
  background: rgba(214, 195, 163, 0.12);
  color: rgba(243, 234, 222, 0.94);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-actions {
  border-radius: var(--radius-xl);
  padding: 2.05rem;
}
.contact-actions h2 { color: var(--text-light); }
.contact-actions-note {
  color: rgba(243, 235, 223, 0.86);
  margin: 0.45rem 0 1.1rem;
  font-size: 1rem;
}
.contact-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 195, 163, 0.22);
  background: linear-gradient(180deg, rgba(52, 43, 35, 0.7) 0%, rgba(36, 30, 24, 0.82) 100%);
  color: #f2e7d6;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-action-link:last-child { margin-bottom: 0; }
.contact-action-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 15, 12, 0.22);
  border-color: rgba(214, 195, 163, 0.44);
}

.form-card {
  background: var(--surface-form);
  border: 1px solid rgba(214, 195, 163, 0.24);
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 46px rgba(4, 6, 5, 0.22);
  padding: 2.4rem;
}
.form-card h2,
.form-note,
.form-label { color: #efe3d2; }
.form-card h2 { margin-bottom: 0.45rem; }
.form-note {
  margin: 0.25rem 0 1.2rem;
  font-size: 0.98rem;
  color: #d7c7b2;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  margin-bottom: 0.42rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #efe3d2;
}
.form-control {
  width: 100%;
  min-height: 54px;
  padding: 0.98rem 1.08rem;
  border: 1.4px solid rgba(214, 195, 163, 0.22);
  border-radius: var(--radius-md);
  background: rgba(93, 76, 62, 0.5);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 550;
  color: #f5ead9;
  outline: none;
}
.form-control::placeholder {
  color: #b7a592;
  opacity: 0.92;
  font-weight: 500;
}
.form-control:focus {
  border-color: rgba(214, 195, 163, 0.48);
  background: rgba(111, 90, 73, 0.56);
  box-shadow: 0 0 0 3px rgba(168, 141, 109, 0.16);
}
textarea.form-control {
  min-height: 178px;
  resize: vertical;
}
.form-submit { width: 100%; }

.info-card {
  border: 1px solid rgba(193, 170, 136, 0.2);
  box-shadow: var(--shadow-info);
  background: linear-gradient(180deg, rgba(43, 36, 29, 0.82) 0%, rgba(30, 26, 22, 0.9) 100%);
}
.proof-card {
  border: 1px solid rgba(203, 181, 147, 0.3);
  box-shadow: var(--shadow-proof);
}
.action-card {
  border: 1px solid rgba(164, 136, 102, 0.3);
  box-shadow: var(--shadow-action);
  background: linear-gradient(180deg, rgba(48, 39, 31, 0.82) 0%, rgba(33, 27, 22, 0.92) 100%);
}

.page-hero {
  background:
    linear-gradient(140deg, rgba(21, 45, 33, 0.93), rgba(44, 88, 64, 0.82)),
    url('/static/img/showcase-dark-lake.jpg');
  background-size: cover;
  background-position: center;
  padding: calc(82px + var(--space-lg)) 0 var(--space-lg);
}
.page-hero .eyebrow { color: var(--gold-accent); }
.page-hero h1 {
  color: var(--text-light);
  font-size: clamp(1.92rem, 4.2vw, 3rem);
  max-width: 15ch;
}
.page-hero .lead {
  margin-top: 0.72rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
}

.projekte-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.projekt-card {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--project-image, linear-gradient(135deg, #244f3a, #326e50));
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 42px rgba(12, 25, 19, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.projekt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 22, 17, 0.86) 0%, rgba(12, 22, 17, 0.3) 55%, transparent 100%);
}
.projekt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(12, 25, 19, 0.24);
}
.projekt-body {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
}
.projekt-compare {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.45rem;
}
.projekt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  margin-bottom: 0.48rem;
}
.projekt-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  padding: 0.2rem 0.58rem;
  background: rgba(214, 195, 163, 0.22);
  color: #f4e8d5;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.projekt-body h3 { color: var(--text-light); margin-bottom: 0.34rem; }
.projekt-body p { color: rgba(255, 255, 255, 0.9); font-size: 0.98rem; margin-bottom: 0.7rem; }
.projekt-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-light);
}

.detail-hero-image {
  height: min(56vw, 420px);
  border-radius: var(--radius-xl);
  background: var(--detail-image, linear-gradient(135deg, #244f3a, #326e50));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.projekt-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-md);
  align-items: start;
}
.projekt-detail-content {
  background: linear-gradient(180deg, rgba(31, 26, 21, 0.82) 0%, rgba(21, 19, 16, 0.9) 100%);
  border: 1px solid rgba(214, 195, 163, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 26px rgba(4, 6, 5, 0.18);
  padding: 1.45rem;
}
.projekt-detail-content h2,
.projekt-detail-content h3,
.projekt-detail-content p,
.projekt-detail-content li,
.projekt-detail-content strong { color: var(--text-dark); }
.detail-subheading {
  margin-top: 1.45rem;
  margin-bottom: 0.68rem;
}
.detail-result { margin-top: 1.25rem; }
.projekt-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: linear-gradient(180deg, rgba(32, 27, 22, 0.88) 0%, rgba(21, 19, 16, 0.94) 100%);
  border: 1px solid rgba(214, 195, 163, 0.28);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 26px rgba(4, 6, 5, 0.18);
  padding: 1.45rem;
}
.sidebar-card h3,
.sidebar-card p,
.sidebar-card strong,
.sidebar-meta-item { color: var(--text-dark); }
.sidebar-meta {
  margin: 0.9rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-meta-item { font-size: 0.88rem; }
.sidebar-cta {
  border-top: 1px solid rgba(214, 195, 163, 0.4);
  padding-top: 0.88rem;
}
.sidebar-btn { width: 100%; }

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.leistung-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 260px;
  gap: 1.2rem;
  align-items: start;
  background: var(--surface-card);
  border: 1px solid rgba(214, 195, 163, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 26px rgba(8, 10, 9, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  padding: 1.4rem;
}
.leistung-item h3,
.leistung-item p,
.leistung-features li { color: var(--text-dark); }
.leistung-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(8, 10, 9, 0.2);
}
.leistung-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--green-dark), var(--green-main));
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leistung-icon svg { width: 26px; height: 26px; }
.leistung-image {
  min-height: 170px;
  border-radius: var(--radius-md);
  background: var(--service-image, linear-gradient(135deg, #29543f, #346f53));
  background-size: cover;
  background-position: center;
}
.leistung-features {
  margin-top: 0.76rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}
.leistung-features li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.96rem;
  line-height: 1.58;
}
.leistung-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.53em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-md);
  align-items: start;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 0.86rem;
}
.about-values {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
}
.about-value-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--green-dark), var(--green-main));
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value-icon svg { width: 15px; height: 15px; }
.about-value-text strong {
  display: block;
  margin-bottom: 0.1rem;
  font-family: var(--font-heading);
  font-size: 0.96rem;
}
.about-value-text p { font-size: 0.96rem; line-height: 1.62; }
.about-copy h2,
.about-copy p,
.about-value-text strong,
.about-value-text p { color: var(--text-dark); }
.about-card {
  background: linear-gradient(155deg, rgba(24, 50, 36, 0.96), rgba(42, 82, 60, 0.9));
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 60px rgba(12, 25, 19, 0.18);
  padding: 1.75rem;
}
.about-card-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-accent);
}
.about-card-stat-label {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.about-card-divider {
  height: 1px;
  background: rgba(214, 195, 163, 0.2);
  margin: 1rem 0;
}
.about-card-quote {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-style: italic;
}
.about-card-author {
  margin-top: 0.6rem;
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}
.news-card {
  background: var(--surface-card);
  border: 1px solid rgba(214, 195, 163, 0.24);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(8, 10, 9, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.news-card h3,
.news-card p { color: var(--text-dark); }
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(8, 10, 9, 0.2);
}
.news-card-thumb {
  height: 148px;
  background-image:
    linear-gradient(140deg, rgba(21, 45, 33, 0.56), rgba(34, 67, 49, 0.35)),
    url('/static/img/service-photography-camping.jpg');
  background-size: cover;
  background-position: center;
}
.news-card-body { padding: 1rem; }
.news-card-date {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-light);
}
.news-card-body h3 { margin: 0.34rem 0; font-size: 1.08rem; }
.news-card-body p { font-size: 0.97rem; line-height: 1.62; }
.news-card-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--green-main);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
}
.news-actions-centered { justify-content: center; }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
}
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.kontakt-channels {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}
.kontakt-channel {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--surface-card);
  border: 1px solid rgba(214, 195, 163, 0.22);
  border-radius: var(--radius-lg);
  padding: 0.95rem;
  box-shadow: 0 12px 24px rgba(8, 10, 9, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.kontakt-channel-text strong,
.kontakt-channel-text p { color: var(--text-dark); }
.kontakt-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(8, 10, 9, 0.18);
}
.kontakt-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--green-dark), var(--green-main));
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kontakt-channel-icon svg { width: 19px; height: 19px; }
.kontakt-channel-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  margin-bottom: 0.16rem;
}
.kontakt-channel-text p { font-size: 0.95rem; line-height: 1.6; }

.impressum-content { max-width: 760px; }
.impressum-section {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(214, 195, 163, 0.42);
}
.impressum-section:last-child { border-bottom: 0; }
.impressum-section h2 {
  font-size: 1.23rem;
  margin-bottom: 0.6rem;
}
.impressum-section p,
.impressum-section address {
  font-size: 1rem;
  line-height: 1.68;
  font-style: normal;
}
.impressum-section h2,
.impressum-section p,
.impressum-section address,
.intern-card h3,
.intern-list li { color: var(--text-dark); }

.intern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.intern-card {
  background: var(--surface-card);
  border: 1px solid rgba(214, 195, 163, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 24px rgba(8, 10, 9, 0.14);
  padding: 1.3rem;
}
.intern-card h3 {
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(214, 195, 163, 0.45);
}
.intern-list {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0;
}
.intern-list li { font-size: 0.95rem; line-height: 1.58; }

.cta-block {
  background: linear-gradient(155deg, rgba(31, 61, 43, 0.92), rgba(45, 86, 63, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 32px rgba(12, 25, 19, 0.14);
}
.cta-block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-block h2,
.cta-block .lead,
.cta-block p {
  color: var(--text-light);
}
.cta-block .lead,
.cta-block p {
  opacity: 0.84;
}

.site-footer {
  margin-top: var(--space-lg);
  position: relative;
  background:
    linear-gradient(160deg, #1d3025 0%, #22382c 56%, #294134 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: calc(var(--space-lg) * 1.08) 0 calc(var(--space-md) * 1.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.site-footer::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.22;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: calc(var(--space-md) * 1.08);
  padding-bottom: calc(var(--space-md) * 1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.footer-brand p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.62;
}
.footer-brand-badge {
  display: inline-flex;
  margin-top: 0.88rem;
  padding: 0.44rem 0.78rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(214, 195, 163, 0.26);
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}
.footer-col h4 {
  margin: 0 0 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}
.footer-nav-list a,
.footer-nav-list span {
  color: rgba(239, 227, 205, 0.78);
  font-size: 0.95rem;
  line-height: 1.58;
  font-weight: 600;
}
.footer-nav-list a:hover { color: var(--text-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: calc(var(--space-sm) * 1.08);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.5;
}

.status-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
}
.status-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, rgba(32, 27, 22, 0.9) 0%, rgba(20, 18, 15, 0.94) 100%);
  border: 1px solid rgba(214, 195, 163, 0.28);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  padding: 2.5rem;
}
.status-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-icon--success {
  background: rgba(47, 93, 70, 0.12);
  color: var(--green-main);
}
.status-icon--error {
  background: rgba(180, 60, 60, 0.1);
  color: #b43c3c;
}
.status-icon svg { width: 28px; height: 28px; }

.error-page {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) 0;
}
.error-num {
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(5.8rem, 17vw, 12rem);
  line-height: 0.88;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-lead { margin: 0.8rem 0 1.6rem; }
.error-actions { justify-content: center; margin-top: 1rem; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .card:hover,
  .projekt-card:hover,
  .news-card:hover,
  .leistung-item:hover,
  .kontakt-channel:hover,
  .redesign-process-step:hover {
    will-change: transform;
  }
}

@media (hover: none) {
  .btn:active,
  .card:active,
  .projekt-card:active,
  .news-card:active,
  .leistung-item:active,
  .kontakt-channel:active,
  .redesign-process-step:active {
    transform: translateY(-1px);
  }
}

@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .leistung-item { grid-template-columns: 58px minmax(0, 1fr); }
  .leistung-image { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .hero-grid,
  .redesign-usp-grid,
  .redesign-content-grid,
  .redesign-process-grid,
  .proof-grid,
  .projekte-grid,
  .about-grid,
  .news-grid,
  .kontakt-grid,
  .contact-split,
  .projekt-detail-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .precontact-trust {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projekt-sidebar { position: static; }
  .cta-block-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .redesign-transition::before,
  .redesign-contact::before,
  .benefits-section::before,
  .site-footer::before {
    opacity: 0.06;
  }

  .redesign-process-section {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }

  .section,
  .section--sm {
    padding-top: 114px;
    padding-bottom: 114px;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section::after {
    bottom: -62px;
    height: 112px;
  }
  .soft-transition-top::before,
  .soft-transition-bottom::after {
    height: 88px;
  }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner .btn-nav { display: none; }

  .mobile-nav-open .main-nav {
    position: fixed;
    inset: 0;
    z-index: 290;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.56rem;
    background: rgba(18, 40, 29, 0.9);
    backdrop-filter: blur(12px);
  }
  .mobile-nav-open .main-nav a {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--text-light);
  }

  .hero { min-height: 96vh; }
  .hero-actions { flex-direction: column; }
  .usp-bar-inner { flex-direction: column; align-items: stretch; }
  .redesign-usp-grid { gap: 1.28rem; }
  .redesign-process-grid { gap: 1.2rem; }
  .cards-grid,
  .process-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .btn { width: 100%; }
  .vn-slider { aspect-ratio: 4 / 3; }
  p { font-size: 1rem; line-height: 1.68; }
  .form-label { font-size: 0.9rem; }
  .form-control { font-size: 1rem; }
  .proof-item { min-height: 200px; }
  .hero::after {
    background: linear-gradient(180deg, rgba(18, 34, 27, 0.9) 0%, rgba(24, 43, 34, 0.5) 44%, rgba(34, 54, 42, 0.84) 100%);
  }
}

/* ── Hero-Ideen Vorschau (intern) ── */
.hero-ideas-intro {
  background: linear-gradient(180deg, #1a1714 0%, #171411 100%);
  text-align: center;
}
.hero-ideas-intro .lead {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--text-muted);
}

.hero-idea {
  min-height: 92vh;
  border-bottom: 1px solid rgba(214, 195, 163, 0.18);
}
.hero-idea::after {
  display: none;
}
.hero-idea-bg {
  background-size: cover;
  background-position: center center;
}
.hero-idea-bg--1 {
  background-image:
    linear-gradient(112deg, rgba(16, 33, 26, 0.82) 0%, rgba(22, 46, 34, 0.55) 52%, rgba(35, 66, 50, 0.42) 100%),
    url('/static/img/hero-idea-1-mist.jpg');
}
.hero-idea-bg--2 {
  background-image:
    linear-gradient(100deg, rgba(38, 24, 12, 0.88) 0%, rgba(58, 36, 18, 0.62) 46%, rgba(72, 48, 24, 0.38) 100%),
    url('/static/img/hero-idea-2-gold.jpg');
  background-position: center 35%;
}
.hero-idea-bg--3 {
  background-image:
    linear-gradient(118deg, rgba(10, 22, 16, 0.9) 0%, rgba(18, 38, 28, 0.62) 48%, rgba(28, 52, 38, 0.34) 100%),
    url('/static/img/hero-idea-3-path.jpg');
  background-position: center 42%;
}
.hero-idea-bg--4 {
  background-image:
    linear-gradient(108deg, rgba(18, 34, 27, 0.9) 0%, rgba(24, 46, 34, 0.68) 44%, rgba(34, 62, 46, 0.42) 100%),
    url('/static/img/hero-idea-4-studio.jpg');
  background-position: center center;
}

.hero-idea-label {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 195, 163, 0.42);
  background: rgba(12, 20, 16, 0.55);
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-idea-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-idea-inner--center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.hero-idea-inner--center .lead { max-width: 56ch; }
.hero-idea-inner--left {
  max-width: 700px;
  margin: 0;
  text-align: left;
  align-items: flex-start;
}
.hero-idea-inner--left h1 { max-width: 14ch; }
.hero-idea-inner--left .lead { max-width: 48ch; color: rgba(255, 255, 255, 0.86); }

.hero-idea-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  max-width: 100%;
}
.hero-idea-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
}
.hero-idea-copy h1 { max-width: 15ch; }
.hero-idea-badge {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
  padding-bottom: 0.5rem;
}
.hero-idea-badge span {
  display: inline-flex;
  min-width: 118px;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 195, 163, 0.35);
  background: rgba(8, 14, 11, 0.58);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .hero-idea-inner--split {
    grid-template-columns: 1fr;
  }
  .hero-idea-badge {
    justify-items: start;
    grid-template-columns: repeat(3, auto);
    gap: 0.5rem;
  }
  .hero-idea-badge span { min-width: 0; }
}


/* ── Story-Hero (Startseite) ── */
.redesign-hero-inner--story {
  max-width: 780px;
  margin: 0;
  text-align: left;
  align-items: flex-start;
}
.redesign-hero-inner--story h1 {
  max-width: 16ch;
}
.redesign-hero-inner--story .lead {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
}
.hero-story-usp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-story-usp li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 195, 163, 0.38);
  background: rgba(8, 14, 11, 0.52);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Projekte: Hero transparenter — Hintergrund sichtbarer */
.page-hero--projekte {
  background:
    linear-gradient(140deg, rgba(21, 45, 33, 0.48), rgba(44, 88, 64, 0.32)),
    url('/static/img/hero-main.jpg');
  background-size: cover;
  background-position: center;
}


/* Unterseiten: Hero-Karte (gemeinsam) */
.page-hero--leistungen .container,
.page-hero--ueber-uns .container,
.page-hero--news .container,
.page-hero--kontakt .container,
.page-hero--projekte .container {
  display: flex;
  justify-content: flex-start;
}
.page-hero--leistungen .page-hero__card,
.page-hero--ueber-uns .page-hero__card,
.page-hero--news .page-hero__card,
.page-hero--kontakt .page-hero__card,
.page-hero--projekte .page-hero__card {
  max-width: 720px;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.2rem);
  border-radius: 20px;
  background: rgba(22, 34, 28, 0.78);
  border: 1px solid rgba(214, 195, 163, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}
.page-hero--leistungen .page-hero__card .lead,
.page-hero--ueber-uns .page-hero__card .lead,
.page-hero--news .page-hero__card .lead,
.page-hero--kontakt .page-hero__card .lead,
.page-hero--projekte .page-hero__card .lead {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

/* Hero-Hintergründe je Seite */
.page-hero--leistungen {
  background:
    linear-gradient(140deg, rgba(21, 45, 33, 0.48), rgba(44, 88, 64, 0.32)),
    url('/static/img/content-main-2.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero--ueber-uns {
  background:
    linear-gradient(140deg, rgba(21, 45, 33, 0.48), rgba(44, 88, 64, 0.32)),
    url('/static/img/bg-about.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero--news {
  background:
    linear-gradient(140deg, rgba(21, 45, 33, 0.48), rgba(44, 88, 64, 0.32)),
    url('/static/img/content-main-1.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero--kontakt {
  background:
    linear-gradient(140deg, rgba(21, 45, 33, 0.48), rgba(44, 88, 64, 0.32)),
    url('/static/img/bg-contact.jpg');
  background-size: cover;
  background-position: center;
}

/* Impressum / legal – always visible, mobile-friendly */
.impressum-content {
  opacity: 1 !important;
  transform: none !important;
}

.impressum-content ul {
  margin: 0.55rem 0 1rem;
  padding-left: 1.25rem;
}

.impressum-content li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.impressum-content a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-hero--legal h1 {
  max-width: 22ch;
}

.section--legal {
  overflow: visible;
}

.section--legal::after {
  display: none;
}

@media (max-width: 700px) {
  .page-hero--legal {
    padding: calc(76px + 1.5rem) 16px 1.75rem;
  }

  .page-hero--legal h1 {
    max-width: none;
    font-size: clamp(1.5rem, 6.8vw, 2rem);
    line-height: 1.2;
  }

  .page-hero--legal .lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .section--legal {
    padding: 56px 16px 72px;
  }

  .section--legal .container {
    padding-left: 0;
    padding-right: 0;
  }

  .impressum-content {
    max-width: none;
  }

  .impressum-section {
    padding: 0.95rem 0;
  }

  .impressum-section h2 {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .impressum-section p,
  .impressum-section li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .impressum-section .form-note {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .impressum-content .btn {
    width: 100%;
    text-align: center;
  }
}

/* Mobile nav overlay – direct child of body, works after scroll */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(18, 40, 29, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: calc(80px + env(safe-area-inset-top, 0px)) 24px 24px;
}

body.mobile-nav-open .mobile-nav-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: min(100%, 320px);
}

.mobile-nav-overlay__nav a {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-overlay__nav a.active,
.mobile-nav-overlay__nav a:hover {
  background: rgba(214, 195, 163, 0.16);
  color: var(--text-light);
}

@media (max-width: 700px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .site-header {
    z-index: 20001;
  }

  body.mobile-nav-open .header-inner {
    position: relative;
    z-index: 20002;
  }

  body.mobile-nav-open .nav-toggle {
    position: relative;
    z-index: 20003;
  }

  /* Old in-header fullscreen nav off – overlay handles mobile */
  body.mobile-nav-open .main-nav {
    display: none !important;
  }
}

@media (min-width: 701px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}
