/* ============================================================
   GrünRaum GmbH — Garten- & Landschaftsbau Gummersbach
   Fiktive Portfolio-Demo · Design & Code: Medientrupp
   ============================================================ */

:root {
  --ink: #1f1f1f;
  --ink-soft: #4b4b46;
  --lime: #bedd25;
  --lime-deep: #a8c716;
  --cream: #f2f1e7;
  --cream-deep: #f1efd9;
  --pine: #274839;
  --pine-deep: #1d3a2d;
  --white: #ffffff;
  --line: rgba(31, 31, 31, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 20px 40px -24px rgba(31, 31, 31, 0.25);
  --font-display: "Inter Tight", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.display-xl { font-size: clamp(2.8rem, 5.8vw, 4.6rem); }
.display-lg { font-size: clamp(2.1rem, 4vw, 3rem); }
.display-md { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--lime);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-deep); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--pine); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 31, 31, 0.25);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--lime); transform: translateY(-2px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
}

.notice-bar {
  background: var(--pine);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  padding: 9px 16px;
}

.notice-bar strong {
  color: var(--lime);
  font-weight: 600;
}

.site-header > .container { margin-top: 14px; }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 20px 14px 26px;
  box-shadow: 0 14px 34px -18px rgba(31, 31, 31, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-display);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(15, 25, 18, 0.78) 0%, rgba(15, 25, 18, 0.35) 55%, rgba(15, 25, 18, 0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: 170px 0 90px;
}

.hero h1 { color: var(--white); max-width: 15ch; }

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
  margin: 26px 0 34px;
}

.hero-card {
  justify-self: end;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 16px;
  width: min(460px, 100%);
  box-shadow: var(--shadow-card);
}

.hero-card-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.hero-card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}

.hero-card:hover .play-badge { transform: scale(1.08); }

.hero-card .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ---------- Sections ---------- */

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.section-head h2 { max-width: 22ch; }
.section-head .lead { max-width: 44ch; }

/* ---------- Feature trio ---------- */

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.icon-chip {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--pine);
}

.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Split (Über uns Abschnitt) ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}

.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-media .floating-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  line-height: 1.3;
}

.floating-tag strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 34px 0 38px;
}

.mini-feature h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.mini-feature h4 svg { color: var(--lime-deep); flex-shrink: 0; }
.mini-feature p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Leistungen Cards ---------- */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.service-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-thumb img { transform: scale(1.06); }

.service-body { padding: 24px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.28rem; margin-bottom: 10px; }
.service-body p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: 20px;
  color: var(--pine);
}

.service-link svg { transition: transform 0.25s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Stats ---------- */

.stats-band {
  background: var(--pine);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px);
}

.stats-band .eyebrow { color: var(--lime); }
.stats-band h2 { color: var(--white); max-width: 18ch; }
.stats-band .lead { color: rgba(255, 255, 255, 0.75); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.stat {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--lime);
}

.stat p { color: rgba(255, 255, 255, 0.8); margin-top: 6px; }

/* ---------- Checkliste ---------- */

.check-list { display: grid; gap: 16px; margin: 30px 0 38px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-family: var(--font-display);
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--lime-deep);
}

/* ---------- Prozess ---------- */

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

.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.process-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--lime-deep);
  display: block;
  margin-bottom: 40px;
}

.process-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.process-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Testimonials ---------- */

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-stars { display: flex; gap: 4px; color: var(--lime-deep); }

.testimonial-card blockquote {
  font-size: 1.02rem;
  color: var(--ink-soft);
  flex: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.testimonial-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person strong { font-family: var(--font-display); font-weight: 600; display: block; }
.testimonial-person span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Team ---------- */

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

.team-card { text-align: left; }

.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
  margin-bottom: 18px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.92);
}

.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h3 { font-size: 1.15rem; }
.team-card p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Projekte ---------- */

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.project-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-tile:hover img { transform: scale(1.07); }

.project-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.project-tile:hover figcaption { transform: translateY(0); opacity: 1; }

.project-tile.wide { grid-column: span 2; }

/* ---------- FAQ ---------- */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.faq-cta {
  position: sticky;
  top: 120px;
  background: var(--pine);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  overflow: hidden;
  position: sticky;
}

.faq-cta h3 { color: var(--white); font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 16px; }
.faq-cta p { color: rgba(255, 255, 255, 0.78); margin-bottom: 30px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  padding: 22px 26px;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--lime); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Blog ---------- */

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.blog-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-body { padding: 22px 12px 14px; }
.blog-date { font-size: 0.85rem; color: var(--ink-soft); display: block; margin-bottom: 10px; }
.blog-body h3 { font-size: 1.18rem; line-height: 1.3; }

/* ---------- Seiten-Hero (Unterseiten) ---------- */

.page-hero {
  position: relative;
  padding: 190px 0 100px;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  color: var(--white);
}

.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, rgba(15, 25, 18, 0.82) 10%, rgba(15, 25, 18, 0.45) 60%, rgba(15, 25, 18, 0.2) 100%);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 16ch; }
.page-hero .lead { color: rgba(255, 255, 255, 0.85); max-width: 52ch; margin-top: 22px; }

.page-hero .hero-stat {
  display: inline-block;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  font-family: var(--font-display);
}

.page-hero .hero-stat strong {
  font-size: 2rem;
  color: var(--lime);
  letter-spacing: -0.02em;
  display: block;
}

/* ---------- Mission ---------- */

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

.mission-card {
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.mission-card.highlight {
  background: var(--pine);
  color: var(--white);
}

.mission-card.highlight h3 { color: var(--white); }
.mission-card.highlight p { color: rgba(255, 255, 255, 0.78); }

.mission-card h3 { font-size: 1.35rem; margin: 22px 0 12px; }
.mission-card p { color: var(--ink-soft); }

.mission-card.highlight .icon-chip { background: rgba(255, 255, 255, 0.12); color: var(--lime); }

/* ---------- Kontakt ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.contact-info-card {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.contact-row .icon-chip { margin: 0; width: 50px; height: 50px; }
.contact-row strong { font-family: var(--font-display); display: block; margin-bottom: 2px; }
.contact-row a, .contact-row p { color: var(--ink-soft); }
.contact-row a:hover { color: var(--pine); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(30px, 4vw, 48px);
}

.contact-form-card h2 { margin-bottom: 10px; }
.contact-form-card > p { color: var(--ink-soft); margin-bottom: 34px; }

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

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--lime-deep);
  background: var(--white);
}

.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 16px; }

/* ---------- Pre-Footer CTA ---------- */

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  padding: clamp(56px, 8vw, 100px) clamp(28px, 6vw, 80px);
  text-align: center;
}

.cta-band-media { position: absolute; inset: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 25, 0.72);
}

.cta-band-inner { position: relative; z-index: 2; max-width: 620px; margin-inline: auto; }
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin-bottom: 34px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 96px;
  border-radius: 32px 32px 0 0;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
}

.site-footer .brand { color: var(--white); margin-bottom: 18px; }
.footer-about p { font-size: 0.97rem; max-width: 34ch; }

.footer-col h4 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 12px; font-size: 0.97rem; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--lime); }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg { flex-shrink: 0; margin-top: 4px; color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-bottom .demo-note { color: rgba(255, 255, 255, 0.45); }

/* ---------- Reveal Animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .feature-grid, .service-grid, .testimonial-grid, .mission-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-tile.wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav-bar.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 24px 44px -20px rgba(31, 31, 31, 0.4);
  }

  .nav-bar { position: relative; }
  .nav-bar.open .nav-links a { padding: 10px 0; width: 100%; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 210px; }
  .hero-card { justify-self: start; }
  .split { grid-template-columns: 1fr; }
  .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .faq-cta { position: static; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .feature-grid, .service-grid, .testimonial-grid, .process-grid,
  .team-grid, .mission-grid, .blog-grid, .stats-grid, .project-grid,
  .form-grid { grid-template-columns: 1fr; }
  .project-tile.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
}

/* ---------- Vorschau-Modal (Preview-Lock) ---------- */

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 33, 25, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preview-modal.open { opacity: 1; visibility: visible; }

.preview-modal__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 48px) clamp(26px, 5vw, 42px) clamp(28px, 4vw, 38px);
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(20, 33, 25, 0.5);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-modal.open .preview-modal__card { transform: none; }

.preview-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #8a8a80;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.preview-modal__close:hover { background: var(--cream); color: var(--ink); }

.preview-modal__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  color: var(--pine);
}

.preview-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 14px;
}

.preview-modal__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.preview-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.preview-modal__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.preview-modal__btn {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--white);
  background: var(--pine);
  border: none;
  border-radius: 999px;
  padding: 17px 24px;
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgba(39, 72, 57, 0.9);
  transition: background 0.2s ease, transform 0.2s ease;
}

.preview-modal__btn:hover { background: var(--pine-deep); transform: translateY(-1px); }

body.preview-open { overflow: hidden; }

.hero-card-thumb { cursor: pointer; }
.blog-card[data-preview] { cursor: pointer; }

.hero-card-thumb:focus-visible,
.blog-card[data-preview]:focus-visible,
.preview-modal__btn:focus-visible,
.preview-modal__close:focus-visible {
  outline: 3px solid var(--pine);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .preview-modal,
  .preview-modal__card { transition: opacity 0.2s ease, visibility 0.2s ease; }
  .preview-modal__card { transform: none; }
}
