:root {
  --teal: #004f5c;
  --teal-dark: #003f49;
  --gold: #b88945;
  --text: #263238;
  --muted: #6d7478;
  --light: #f5f8f9;
  --white: #ffffff;
  --footer: #062f36;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--teal);
  font-weight: 400;
}

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

/* HEADER */

.site-header {
  width: 100%;
  height: 110px;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.site-header .logo img {
  width: 220px;
}

.site-header.scrolled {
  height: 92px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}



.site-header.scrolled .logo img {
  width: 220px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-left: 40px;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

/* Aktiver Menüpunkt */

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.main-nav a.nav-button.active::after {
  display: none;
}


.nav-separator {
  width: auto;
  height: auto;
  background: none;
  display: inline-block;
  flex: 0 0 auto;
  pointer-events: none;
  margin-left: -18px;
  margin-right: -18px;
  color: #c8aa76;
  font-size: 14px;
  line-height: 1;
}

.nav-separator::before {
  content: "|";
}

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

.nav-button {
  background: var(--teal);
  color: var(--white) !important;
  padding: 18px 28px;
}

.nav-button:hover {
  background: var(--gold);
}

/* LANGUAGE SWITCH */

.main-nav a.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 79, 92, 0.35);
  padding: 9px 12px !important;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--teal) !important;
  line-height: 1;
  width: auto !important;
  min-width: 42px;
}

.main-nav a.lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--teal);
  font-size: 32px;
  cursor: pointer;
}

/* DROPDOWN */

.dropdown {
  position: relative;
  padding: 20px 0;
  margin: -20px 0;
}

.dropdown > a::before {
  content: "▼";
  font-size: 8px;
  margin-right: 6px;
  opacity: 0.5;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;

  min-width: 260px;
  background: white;
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  padding: 12px 0;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 22px;
  width: 100% !important;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
}

.dropdown-menu a:hover {
  background: #f5f8f9;
  color: var(--gold);
}

.dropdown-menu a.active::after {
    width: auto;
    left: 22px;
    right: 22px;
    transform: none;
    bottom: 8px;
}

/* HERO */

.hero {
  min-height: 540px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.75) 0%,
      rgba(255,255,255,0.45) 25%,
      rgba(255,255,255,0.10) 45%,
      rgba(255,255,255,0.00) 65%
    ),
    url("../img/hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 620px;
  margin-top: 20px;
}

.hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 28px;
}

.hero p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #2d3b42;
  margin-bottom: 28px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 14px 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-weight: 600;
  transition: 0.2s ease;
}

.outline-button:hover {
  background: var(--teal);
  color: var(--white);
}

/* VALUES */

.values {
  background: var(--light);
  padding: 48px 8% 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.value-box {
  padding: 0 45px;
  border-right: 1px solid #d2dadc;
}

.value-box:last-child {
  border-right: none;
}

.icon {
  font-size: 34px;
  color: var(--teal);
  margin-bottom: 14px;
}

.value-box h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.gold-line {
  width: 18px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 14px;
}

.value-box p {
  font-size: 13px;
  line-height: 1.55;
  color: #4a5357;
}

/* PROJECTS */

.projects {
  padding: 58px 8% 80px;
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 60px;
  align-items: start;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.projects h2,
.page-hero h1 {
  font-size: clamp(34px, 3vw, 48px);
  margin-bottom: 16px;
}

.projects p,
.page-hero p {
  color: #4d5558;
  font-size: 15px;
  line-height: 1.7;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: #ddd;
  min-height: 270px;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.58), rgba(0,0,0,0));
  color: white;
}

.project-info h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 5px;
}

.project-info span {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* SUBPAGES */

.subpage {
  padding-top: 0;
}

.page-hero {
  padding: 120px 8%;
  background: var(--light);
  min-height: 420px;
}

/* FOOTER */

.site-footer {
  background: var(--footer);
  color: rgba(255,255,255,0.82);
  padding: 60px 8% 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 42px;
}

.footer-logo {
  width: 400px;
  padding: 00px;
  margin-bottom: -20px;
}

.site-footer h4 {
  color: white;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.8;
}

.site-footer a {
  display: block;
  font-size: 14px;
  line-height: 1.9;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .site-header {
    padding: 0 5%;
  }
  
  .nav-separator {
   display: none;
  }
  

  .main-nav {
    gap: 24px;
  }

  .logo img {
    width: 240px;
  }
}

@media (max-width: 1350px) {
  .site-header {
    height: 96px;
    padding: 0 6%;
  }

  .site-header.scrolled {
    height: 82px;
  }

  .logo img,
  .site-header.scrolled .logo img {
    width: 220px;
  }

  .menu-toggle {
    display: inline-block;
  }
  
    .main-nav a::after,
  .main-nav > a::after,
  .main-nav > .dropdown::after,
  .nav-separator {
    display: none !important;
    content: none !important;
  }
  
  .dropdown > a {
  margin-bottom: 0px;
}
  
  .dropdown {
   padding: 0;
   margin: 0;
   width: 100%;
   display: flex;
   flex-direction: column;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 6%;
    display: none;
    box-shadow: 0 14px 24px rgba(0,0,0,0.08);
  }

  .site-header.scrolled .main-nav {
    top: 82px;
  }

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

  .main-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .nav-button {
    width: auto !important;
    margin-top: 12px;
    padding: 16px 24px !important;
  }

  .main-nav a.lang-switch {
    width: auto !important;
    margin-top: 12px;
    padding: 10px 14px !important;
  }

  .hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.35) 0%,
        rgba(255,255,255,0.12) 45%,
        rgba(255,255,255,0.00) 100%
      ),
      url("../img/hero.jpg") center center / cover no-repeat;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
    padding: 46px 6%;
    row-gap: 36px;
  }

  .value-box {
    border-right: none;
    padding: 0 24px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

@media (max-width: 640px) {
  .logo img,
  .site-header.scrolled .logo img {
    width: 190px;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
    padding: 0 6% 70px;
  }

  .hero-content {
    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(8px);
    padding: 24px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 13px;
    letter-spacing: 1.7px;
  }

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

  .projects {
    padding: 48px 6% 64px;
  }

  .project-cards {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 90px 6%;
  }

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

  .footer-logo {
    width: 190px;
  }
}

/* ABOUT PAGE */

.about-page {
  background: #ffffff;
}

.about-hero {
  min-height: 420px;
  background:
    linear-gradient(
      90deg,
      rgba(6,47,54,0.92) 0%,
      rgba(6,47,54,0.74) 38%,
      rgba(6,47,54,0.18) 68%,
      rgba(6,47,54,0.02) 100%
    ),
    url("../img/about-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.about-hero-content {
  max-width: 620px;
  color: #ffffff;
}

.about-hero .section-label {
  color: #ffffff;
  margin-bottom: 18px;
}

.about-hero h1 {
  color: var(--gold);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.about-hero p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

.about-intro {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-intro-image img {

  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.about-intro-text h2,
.about-section-title h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  margin-bottom: 14px;
}

.about-gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.about-gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

.about-intro-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

.about-focus {
  background: #f7f4ef;
  padding: 64px 8% 70px;
}

.about-section-title {
  text-align: center;
  margin-bottom: 44px;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-focus-card {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(6,47,54,0.18);
}

.about-focus-card:last-child {
  border-right: none;
}

.about-icon {
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 24px;
}

.about-focus-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 16px;
}

.about-focus-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #3f4a4e;
}

.about-targets {
  padding: 70px 8% 86px;
  background: #ffffff;
}

.about-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-target-card {
  background: #ffffff;
  border: 1px solid #e4e7e8;
  padding: 34px 34px 38px;
  min-height: 230px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.target-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 22px;
}

.target-icon span {
  display: block;
  transform: translateY(-1px);
}

.about-target-card h3 {
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 14px;
}

.about-target-card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
}

.about-target-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #3f4a4e;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-focus-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .about-focus-card {
    border-right: none;
  }

  .about-target-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 520px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(6,47,54,0.88) 0%,
        rgba(6,47,54,0.65) 55%,
        rgba(6,47,54,0.20) 100%
      ),
      url("../img/about-hero.jpg") center center / cover no-repeat;
  }

  .about-intro,
  .about-focus,
  .about-targets {
    padding-left: 6%;
    padding-right: 6%;
  }

  .about-intro-image img {
    height: 300px;
  }

  .about-focus-grid {
    grid-template-columns: 1fr;
  }

}
.legal-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-content li {
    color: #3f4a4e;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 4px;
}
}

/* SERVICES PAGE */

.services-page {
  background: #ffffff;
}

.services-hero {
  min-height: 520px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.82) 34%,
      rgba(255,255,255,0.24) 63%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/leistungen-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.services-hero-content {
  max-width: 620px;
}

.services-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.services-hero-kicker {
  font-size: 14px !important;
  line-height: 1.8 !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 22px !important;
  font-weight: 600;
}

.services-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 540px;
}

.services-intro {
  padding: 74px 8% 64px;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 70px;
  align-items: start;
  background: #ffffff;
}

.services-intro h2,
.services-process-head h2,
.services-detail-text h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
}

.services-intro-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: #3f4a4e;
}

.services-process {
  padding: 72px 8% 82px;
  background: #f7f4ef;
}

.services-process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background: #ffffff;
  border: 1px solid #e4e7e8;
  padding: 34px 30px 38px;
  min-height: 360px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
  position: relative;
}

.process-card::after {
  content: "→";
  position: absolute;
  right: -21px;
  top: 74px;
  color: var(--gold);
  font-size: 26px;
  z-index: 2;
}

.process-card:last-child::after {
  display: none;
}

.process-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  color: var(--teal);
  margin-bottom: 18px;
}

.process-icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 24px;
}

.process-card h3 {
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 16px;
}

.process-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #3f4a4e;
  margin-top: 18px;
}

.services-detail {
  padding: 76px 8% 88px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  background: #ffffff;
}

.services-detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.services-detail-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

.services-detail-text .outline-button {
  margin-top: 16px;
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .services-intro,
  .services-detail {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .services-detail-image img {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .services-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.72) 48%,
        rgba(255,255,255,0.24) 100%
      ),
      url("../img/leistungen-hero.jpg") center center / cover no-repeat;
  }

  .services-intro,
  .services-process,
  .services-detail {
    padding-left: 6%;
    padding-right: 6%;
  }

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

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

  .services-detail-image img {
    height: 300px;
  }
}
/* PURCHASE PAGE */

.purchase-page {
  background: #ffffff;
}

.purchase-hero {
  min-height: 520px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.80) 34%,
      rgba(255,255,255,0.24) 63%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/ankauf-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.purchase-hero-content {
  max-width: 640px;
}

.purchase-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.purchase-hero h1 span {
  color: var(--gold);
}

.purchase-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 540px;
  margin-bottom: 28px;
}

.purchase-types {
  background: #ffffff;
  padding: 74px 8% 82px;
}

.purchase-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.purchase-type-card {
  background: #ffffff;
  border: 1px solid #e4e7e8;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.purchase-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.07);
}

.purchase-type-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.purchase-type-card h3 {
  font-size: 23px;
  color: var(--teal);
  padding: 26px 28px 10px;
}

.purchase-type-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
}

.purchase-type-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #3f4a4e;
  padding: 10px 28px 30px;
}

.purchase-process {
  padding: 72px 8% 82px;
  background: #f7f4ef;
}

.purchase-process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.purchase-process-head h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
}

.purchase-seo {
  padding: 76px 8% 84px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.purchase-seo h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
  margin-bottom: 16px;
}

.purchase-seo p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

.purchase-benefit-list {
  background: var(--light);
  padding: 34px 38px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.purchase-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #d9e0e2;
}

.purchase-benefit:first-child {
  padding-top: 0;
}

.purchase-benefit:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.purchase-benefit-icon {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.purchase-benefit h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.purchase-benefit p {
  font-size: 13px;
  line-height: 1.65;
  color: #3f4a4e;
  margin: 0;
}

.purchase-cta {
  padding: 70px 8%;
  background:
    linear-gradient(
      90deg,
      rgba(6,47,54,0.94),
      rgba(6,47,54,0.72)
    ),
    url("../img/ankauf-cta.jpg") center center / cover no-repeat;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.purchase-cta h2 {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 16px;
}

.purchase-cta p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.purchase-cta .outline-button {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.purchase-cta .outline-button:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

@media (max-width: 1200px) {
  .purchase-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purchase-seo,
  .purchase-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .purchase-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.74) 52%,
        rgba(255,255,255,0.20) 100%
      ),
      url("../img/ankauf-hero.jpg") center center / cover no-repeat;
  }

  .purchase-types,
  .purchase-process,
  .purchase-seo,
  .purchase-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .purchase-types-grid {
    grid-template-columns: 1fr;
  }

  .purchase-type-card img {
    height: 220px;
  }

  .purchase-benefit-list {
    padding: 28px 26px;
  }
}
/* SALE PAGE */

.sale-page {
  background: #ffffff;
}

.sale-hero {
  min-height: 500px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.82) 36%,
      rgba(255,255,255,0.28) 64%,
      rgba(255,255,255,0.04) 100%
    ),
    url("../img/verkauf-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.sale-hero-content {
  max-width: 640px;
}

.sale-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.sale-hero h1 span {
  color: var(--gold);
}

.sale-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 540px;
  margin-bottom: 28px;
}

.sale-info {
  padding: 76px 8% 84px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.sale-info h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
  margin-bottom: 16px;
}

.sale-info p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

.sale-info-card {
  background: #f7f4ef;
  padding: 40px 42px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.sale-info-card h3 {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 18px;
}

.sale-info-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #3f4a4e;
  margin-bottom: 22px;
}

.sale-info-card ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.sale-info-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #3f4a4e;
}

.sale-info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}

.sale-cta {
  padding: 70px 8%;
  background:
    linear-gradient(
      90deg,
      rgba(6,47,54,0.94),
      rgba(6,47,54,0.72)
    ),
    url("../img/verkauf-cta.jpg") center center / cover no-repeat;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.sale-cta h2 {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 16px;
}

.sale-cta p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.sale-cta .outline-button {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.sale-cta .outline-button:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

@media (max-width: 1100px) {
  .sale-info,
  .sale-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sale-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.74) 52%,
        rgba(255,255,255,0.20) 100%
      ),
      url("../img/verkauf-hero.jpg") center center / cover no-repeat;
  }

  .sale-info,
  .sale-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .sale-info-card {
    padding: 32px 28px;
  }
}

/* INVESTORS PAGE */

.investors-page {
  background: #ffffff;
}

.investors-hero {
  min-height: 520px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.80) 34%,
      rgba(255,255,255,0.24) 63%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/investoren-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.investors-hero-content {
  max-width: 650px;
}

.investors-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.investors-hero h1 span {
  color: var(--gold);
}

.investors-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 550px;
  margin-bottom: 28px;
}

.investors-intro {
  padding: 74px 8% 64px;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 70px;
  align-items: start;
  background: #ffffff;
}

.investors-intro h2,
.investors-options h2,
.investors-sourcing h2,
.investors-development h2,
.investors-acquisition h2,
.investors-process-head h2,
.investors-seo h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
}

.investors-intro p,
.investors-sourcing-text p,
.investors-development p,
.investors-acquisition p,
.investors-seo p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

/* INVESTMENT OPTIONS */

.investors-options {
  padding: 74px 8% 82px;
  background: #f7f4ef;
}

.investors-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.investors-option-card {
  background: #ffffff;
  border: 1px solid #e4e7e8;
  padding: 42px 42px 46px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
  position: relative;
}

.investors-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 52px;
  height: 3px;
  background: var(--gold);
}

.investors-option-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 22px;
}

.investors-option-card h3 {
  font-size: 30px;
  color: var(--teal);
  margin-bottom: 18px;
}

.investors-option-card p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 18px;
}

/* ACTIVE PROJECT SOURCING */

.investors-sourcing {
  padding: 76px 8% 84px;
  background: #ffffff;
}

.investors-sourcing h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.investors-sourcing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  margin-top: 36px;
}

.investors-sourcing-card {
  background: var(--light);
  padding: 40px 42px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.investors-sourcing-card h3 {
  color: var(--teal);
  font-size: 28px;
  margin-bottom: 24px;
}

.investors-sourcing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.investors-sourcing-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #3f4a4e;
}

.investors-sourcing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}

/* DEVELOPMENT INVESTMENT */

.investors-development {
  padding: 76px 8% 84px;
  background: #f7f4ef;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.investors-development-card {
  background: #ffffff;
  padding: 40px 42px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.investors-development-card h3 {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 24px;
}

.investors-development-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.investors-development-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #3f4a4e;
}

.investors-development-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ACQUISITION AFTER DEVELOPMENT */

.investors-acquisition {
  padding: 76px 8% 88px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.investors-acquisition-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* PROCESS */

.investors-process {
  padding: 72px 8% 82px;
  background: #f7f4ef;
}

.investors-process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

/* SEO / TRUST */

.investors-seo {
  padding: 76px 8% 84px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.investors-benefit-list {
  background: var(--light);
  padding: 34px 38px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

/* CTA */

.investors-cta {
  padding: 70px 8%;
  background:
    linear-gradient(
      90deg,
      rgba(6,47,54,0.94),
      rgba(6,47,54,0.72)
    ),
    url("../img/investoren-cta.jpg") center center / cover no-repeat;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.investors-cta h2 {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 16px;
}

.investors-cta p {
  max-width: 580px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.investors-cta .outline-button {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.investors-cta .outline-button:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .investors-intro,
  .investors-options-grid,
  .investors-sourcing-grid,
  .investors-development,
  .investors-acquisition,
  .investors-seo,
  .investors-cta {
    grid-template-columns: 1fr;
  }

  .investors-acquisition-image img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .investors-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.74) 52%,
        rgba(255,255,255,0.20) 100%
      ),
      url("../img/investoren-hero.jpg") center center / cover no-repeat;
  }

  .investors-intro,
  .investors-options,
  .investors-sourcing,
  .investors-development,
  .investors-acquisition,
  .investors-process,
  .investors-seo,
  .investors-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .investors-option-card,
  .investors-sourcing-card,
  .investors-development-card,
  .investors-benefit-list {
    padding: 32px 28px;
  }

  .investors-acquisition-image img {
    height: 300px;
  }
}

/* CURRENT PROJECTS PAGE */

.current-projects-page {
  background: #ffffff;
}

.current-projects-hero {
  min-height: 480px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.82) 36%,
      rgba(255,255,255,0.28) 64%,
      rgba(255,255,255,0.04) 100%
    ),
    url("../img/laufende-projekte-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.current-projects-hero-content {
  max-width: 650px;
}

.current-projects-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.current-projects-hero h1 span {
  color: var(--gold);
}

.current-projects-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 540px;
}

.current-projects-list {
  padding: 76px 8% 88px;
  background: #ffffff;
}

.current-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.current-project-card {
  background: #ffffff;
  border: 1px solid #e4e7e8;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.current-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.07);
}

.current-project-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.current-project-content {
  padding: 34px 36px 38px;
}

.project-status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(184,137,69,0.45);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
}

.current-project-content h3 {
  font-size: 30px;
  color: var(--teal);
  margin-bottom: 16px;
}

.current-project-content h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
}

.current-project-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #3f4a4e;
  margin: 20px 0 22px;
}

.current-project-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.current-project-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #3f4a4e;
}

.current-project-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}

.current-projects-cta {
  padding: 70px 8%;
  background:
    linear-gradient(
      90deg,
      rgba(6,47,54,0.94),
      rgba(6,47,54,0.72)
    ),
    url("../img/laufende-projekte-cta.jpg") center center / cover no-repeat;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.current-projects-cta h2 {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 16px;
}

.current-projects-cta p {
  max-width: 580px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.current-projects-cta .outline-button {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.current-projects-cta .outline-button:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

@media (max-width: 1000px) {
  .current-projects-grid,
  .current-projects-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .current-projects-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.74) 52%,
        rgba(255,255,255,0.20) 100%
      ),
      url("../img/laufende-projekte-hero.jpg") center center / cover no-repeat;
  }

  .current-projects-list,
  .current-projects-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .current-project-image img {
    height: 260px;
  }

  .current-project-content {
    padding: 30px 28px 34px;
  }
}
.current-projects-seo {
    padding: 80px 8%;
    background: #f7f4ef;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

.current-projects-seo h2 {
    color: var(--teal);
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1.18;
    margin-bottom: 18px;
}

.current-projects-seo p {
    font-size: 15px;
    line-height: 1.85;
    color: #3f4a4e;
    margin-bottom: 20px;
}

.current-projects-seo-box {
    background: #ffffff;
    padding: 40px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.current-projects-seo-box h3 {
    color: var(--teal);
    font-size: 28px;
    margin-bottom: 24px;
}

.current-projects-seo-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.current-projects-seo-box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #3f4a4e;
}

.current-projects-seo-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
}

@media (max-width: 1000px) {
    .current-projects-seo {
        grid-template-columns: 1fr;
    }
}

/* COMPLETED PROJECTS PAGE */

.completed-projects-page {
  background: #ffffff;
}

.completed-projects-hero {
  min-height: 480px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.82) 36%,
      rgba(255,255,255,0.28) 64%,
      rgba(255,255,255,0.04) 100%
    ),
    url("../img/abgeschlossene-projekte-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.completed-projects-hero-content {
  max-width: 650px;
}

.completed-projects-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.completed-projects-hero h1 span {
  color: var(--gold);
}

.completed-projects-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 540px;
}

.completed-projects-list {
  padding: 76px 8% 88px;
  background: #ffffff;
}

.completed-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.completed-project-card {
  background: #ffffff;
  border: 1px solid #e4e7e8;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.completed-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.07);
}

.completed-project-link {
  display: block;
  height: 100%;
}

.completed-project-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.completed-project-content {
  padding: 32px 34px 36px;
}

.completed-project-content h3 {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 16px;
}

.completed-project-content h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
}

.completed-project-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #3f4a4e;
  margin: 20px 0 22px;
}

.completed-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.completed-project-meta span {
  display: inline-block;
  padding: 7px 11px;
  background: var(--light);
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 600;
}

.completed-project-more {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.completed-projects-note {
  margin-top: 34px;
  padding: 22px 26px;
  background: #f7f4ef;
  border-left: 3px solid var(--gold);
}

.completed-projects-note p {
  font-size: 14px;
  line-height: 1.7;
  color: #3f4a4e;
  margin: 0;
}

.completed-projects-seo {
  padding: 76px 8% 84px;
  background: #f7f4ef;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.completed-projects-seo h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
  margin-bottom: 18px;
}

.completed-projects-seo p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

.completed-projects-seo-box {
  background: #ffffff;
  padding: 40px 42px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.completed-projects-seo-box h3 {
  color: var(--teal);
  font-size: 28px;
  margin-bottom: 24px;
}

.completed-projects-seo-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.completed-projects-seo-box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #3f4a4e;
}

.completed-projects-seo-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}

.completed-projects-cta {
  padding: 70px 8%;
  background:
    linear-gradient(
      90deg,
      rgba(6,47,54,0.94),
      rgba(6,47,54,0.72)
    ),
    url("../img/abgeschlossene-projekte-cta.jpg") center center / cover no-repeat;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.completed-projects-cta h2 {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 16px;
}

.completed-projects-cta p {
  max-width: 580px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.completed-projects-cta .outline-button {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.completed-projects-cta .outline-button:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

@media (max-width: 1100px) {
  .completed-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .completed-projects-seo,
  .completed-projects-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .completed-projects-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.74) 52%,
        rgba(255,255,255,0.20) 100%
      ),
      url("../img/abgeschlossene-projekte-hero.jpg") center center / cover no-repeat;
  }

  .completed-projects-list,
  .completed-projects-seo,
  .completed-projects-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .completed-projects-grid {
    grid-template-columns: 1fr;
  }

  .completed-project-image img {
    height: 260px;
  }

  .completed-project-content {
    padding: 30px 28px 34px;
  }

  .completed-projects-seo-box {
    padding: 32px 28px;
  }
}

/* PROJECT DETAIL PAGE */

.project-detail-page {
  background: #ffffff;
}

.project-detail-hero {
  min-height: 540px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.80) 34%,
      rgba(255,255,255,0.24) 63%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/appenzellerhaus-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.project-detail-hero-content {
  max-width: 680px;
}

.project-detail-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.project-detail-hero h1 span {
  color: var(--gold);
}

.project-detail-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 560px;
}

.project-detail-overview {
  padding: 76px 8% 84px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  background: #ffffff;
}

.project-detail-intro h2,
.project-detail-text h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
  margin-bottom: 18px;
}

.project-detail-intro p,
.project-detail-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

.project-detail-facts {
  background: #f7f4ef;
  padding: 36px 40px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.project-fact {
  padding: 20px 0;
  border-bottom: 1px solid rgba(6,47,54,0.14);
}

.project-fact:first-child {
  padding-top: 0;
}

.project-fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-fact span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.project-fact strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: var(--teal);
  font-weight: 600;
}

.project-gallery-section {
  padding: 74px 8% 84px;
  background: #ffffff;
}

.project-gallery-section.alt {
  background: #f7f4ef;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
  background: #e4e7e8;
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.project-detail-text-section {
  padding: 76px 8% 84px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.project-detail-note {
  background: var(--light);
  padding: 38px 40px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.project-detail-note h3 {
  color: var(--teal);
  font-size: 28px;
  margin-bottom: 18px;
}

.project-detail-note p {
  font-size: 14px;
  line-height: 1.75;
  color: #3f4a4e;
}

.project-detail-cta {
  padding: 70px 8%;
  background:
    linear-gradient(
      90deg,
      rgba(6,47,54,0.94),
      rgba(6,47,54,0.72)
    ),
    url("../img/appenzellerhaus-cta.jpg") center center / cover no-repeat;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.project-detail-cta h2 {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 16px;
}

.project-detail-cta p {
  max-width: 600px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.project-detail-cta .outline-button {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.project-detail-cta .outline-button:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

/* IMAGE LIGHTBOX */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,47,54,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 80px 7%;
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

.lightbox-close {
  top: 28px;
  right: 32px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 70px;
  font-size: 52px;
  line-height: 1;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

@media (max-width: 1100px) {
  .project-detail-overview,
  .project-detail-text-section,
  .project-detail-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .project-detail-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.74) 52%,
        rgba(255,255,255,0.20) 100%
      ),
      url("../img/appenzellerhaus-hero.jpg") center center / cover no-repeat;
  }

  .project-detail-overview,
  .project-gallery-section,
  .project-detail-text-section,
  .project-detail-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }

  .project-detail-facts,
  .project-detail-note {
    padding: 32px 28px;
  }

  .image-lightbox {
    padding: 70px 5%;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 58px;
    font-size: 42px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    background: transparent;

    transition: all 0.25s ease;
}

.linkedin-link svg {
    width: 18px;
    height: 18px;
}

.linkedin-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* CONTACT PAGE */

.contact-page {
  background: #ffffff;
}

.contact-hero {
  min-height: 500px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.80) 34%,
      rgba(255,255,255,0.24) 63%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/kontakt-hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.contact-hero-content {
  max-width: 640px;
}

.contact-hero h1 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.12;
  margin-bottom: 24px;
}

.contact-hero p {
  font-size: 15px;
  line-height: 1.85;
  color: #2f3b40;
  max-width: 540px;
}

.contact-section {
  padding: 76px 8% 88px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
  background: #ffffff;
}

.contact-info h2,
.contact-form-box h2 {
  font-size: clamp(34px, 3vw, 46px);
  color: var(--teal);
  line-height: 1.18;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 28px;
}

.contact-details {
  margin-top: 34px;
}

.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid #d9e0e2;
}

.contact-detail:first-child {
  border-top: 1px solid #d9e0e2;
}

.contact-detail span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-detail a,
.contact-detail p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--teal);
  font-weight: 600;
  margin: 0;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form-box {
  background: #f7f4ef;
  padding: 44px 46px 50px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.contact-form {
  margin-top: 26px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #d4dbdd;
  background: #ffffff;
  padding: 14px 15px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-row textarea {
  resize: vertical;
}

.checkbox-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  color: #3f4a4e;
  font-weight: 400;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #ffffff;
  padding: 15px 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-dark);
}

@media (max-width: 1000px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    min-height: 560px;
    padding: 0 6%;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.74) 52%,
        rgba(255,255,255,0.20) 100%
      ),
      url("../img/kontakt-hero.jpg") center center / cover no-repeat;
  }

  .contact-section {
    padding-left: 6%;
    padding-right: 6%;
  }

  .contact-form-box {
    padding: 34px 28px 38px;
  }
}

/* ABOUT FOUNDER */

.about-founder-card {
    margin-top: 45px;
    padding-top: 35px;

    border-top: 1px solid rgba(0,79,92,0.12);

    display: flex;
    align-items: center;
    gap: 22px;
}

.about-founder-card img {
    width: 95px;
    height: 95px;
    min-width: 95px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    border: 3px solid var(--gold);

    display: block;
}

.about-founder-info h3 {
    margin: 0 0 6px;
    font-size: 26px;
    color: var(--teal);
    line-height: 1.1;
}

.about-founder-info span {
    display: block;

    color: var(--gold);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 640px) {

    .about-founder-card {
        margin-top: 35px;
        padding-top: 30px;

        gap: 16px;
    }

    .about-founder-card img {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .about-founder-info h3 {
        font-size: 22px;
    }

    .about-founder-info span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

/* HOME SEO SECTION */

.home-seo {
  padding: 76px 8% 84px;
  background: #ffffff;
}

.home-seo-content {
  max-width: 1200px;
  margin: 0 auto;
}

.home-seo h2 {
  max-width: 900px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.18;
  color: var(--teal);
  margin-bottom: 42px;
}

.home-seo-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.home-seo-text p,
.home-seo-card p {
  font-size: 15px;
  line-height: 1.85;
  color: #3f4a4e;
  margin-bottom: 20px;
}

.home-seo-card {
  background: #f7f4ef;
  padding: 38px 42px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.035);
}

.home-seo-card h3 {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 24px;
}

.home-seo-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.home-seo-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.65;
  color: #3f4a4e;
}

.home-seo-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 900px) {
  .home-seo-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .home-seo {
    padding-left: 6%;
    padding-right: 6%;
  }

  .home-seo-card {
    padding: 32px 28px;
  }
}

.alert-success {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 18px 24px;
    background: #e8f5ea;
    border: 1px solid #b7dcbf;
    color: #1e5c2e;
    font-weight: 600;
    border-radius: 4px;
}

.alert-error {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 18px 24px;
    background: #fff1f1;
    border: 1px solid #e1b7b7;
    color: #8b1e1e;
    font-weight: 600;
    border-radius: 4px;
}
}