.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

/* ═══ HERO ═══ */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: calc(11vh + 64px) 32px 80px; /* Header (11vh) + einheitlicher Abstand */
  display: flex; align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(30,61,107,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,151,42,0.1) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.3) 80%, transparent);
}
.page-hero-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.5;
}
.page-hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 24px;
}
.page-hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.page-hero h1 {
  font-family: var(--ff-serif); font-size: clamp(48px, 6vw, 80px);
  font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-bright); }
.page-hero h1 strong { font-weight: 600; display: block; }
.page-hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.6); max-width: 520px;
}

/* ═══ PROJECTS SECTION ═══ */
.projects-section {
  padding: 80px 0 120px;
  background: var(--cream);
}

/* ── Category Label ── */
.cat-label {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 48px;
}
.cat-label-text {
  font-family: var(--ff-serif); font-size: 36px; font-weight: 400; color: var(--navy);
  white-space: nowrap; margin: 0; line-height: 1.1;
}
.cat-label-text em { font-style: italic; color: var(--gold); }
.cat-label-line { flex: 1; height: 1px; background: var(--border); }
.cat-label-count {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}

/* ── FEATURED ROW (big + tall side) ── */
.proj-featured-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 16px;
  margin-bottom: 16px;
}
.proj-featured-row .proj-card:first-child {
  grid-row: span 2;
}

/* ── SECONDARY ROW (4 equal) ── */
.proj-secondary-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.proj-secondary-row .proj-card {
  aspect-ratio: 3/4;
}

@media (max-width: 1024px) {
  .proj-featured-row { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 240px; }
  .proj-secondary-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE: alle Karten gleich groß ── */
@media (max-width: 700px) {
  .proj-featured-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .proj-featured-row .proj-card:first-child {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .proj-featured-row .proj-card {
    aspect-ratio: 4/3;
  }
  .proj-secondary-row {
    grid-template-columns: 1fr 1fr;
  }
  .proj-secondary-row .proj-card {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .proj-secondary-row { grid-template-columns: 1fr; }
  .proj-secondary-row .proj-card { aspect-ratio: 4/3; }
}

/* ── Card base ── */
.proj-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  display: block;
  cursor: pointer;
}

/* clip-path reveal on hover */
.proj-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,180,41,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.proj-card:hover::after { opacity: 1; }

.proj-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.9);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.proj-card:hover .proj-img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(1.1);
}

/* gradient overlay */
.proj-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, rgba(11,28,53,0.95) 0%, rgba(11,28,53,0.3) 45%, transparent 75%),
    linear-gradient(to right, rgba(11,28,53,0.3) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 28px 24px;
}

/* number watermark */
.proj-num {
  position: absolute; top: 16px; left: 20px; z-index: 3;
  font-family: var(--ff-serif); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.35); letter-spacing: 0.1em;
}

.proj-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); background: var(--gold-bright);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 12px; width: fit-content;
}
.proj-badge.planning {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.proj-badge::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: currentColor;
  opacity: 0.7;
}

.proj-category {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 6px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.proj-card:hover .proj-category { opacity: 1; transform: translateY(0); }

.proj-title {
  font-family: var(--ff-serif);
  font-size: 20px; font-weight: 600; color: var(--white);
  line-height: 1.2; margin-bottom: 10px;
  transition: letter-spacing 0.3s var(--ease);
}
.proj-card:hover .proj-title { letter-spacing: 0.01em; }

/* featured card bigger title */
.proj-featured-row .proj-card:first-child .proj-title { font-size: 30px; }
.proj-featured-row .proj-card:first-child .proj-overlay { padding: 36px; }

@media (max-width: 700px) {
  .proj-featured-row .proj-card:first-child .proj-title { font-size: 20px; }
  .proj-featured-row .proj-card:first-child .proj-overlay { padding: 28px 28px 24px; }
}

.proj-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  transform: translateY(0);
  transition: color 0.3s var(--ease);
}
.proj-card:hover .proj-location { color: rgba(255,255,255,0.75); }
.proj-location svg { width: 11px; height: 11px; stroke: var(--gold-bright); fill: none; stroke-width: 2; flex-shrink: 0; }

/* arrow CTA */
.proj-arrow {
  position: absolute; bottom: 24px; right: 24px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8) rotate(-45deg);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
}
.proj-arrow svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; }
.proj-card:hover .proj-arrow {
  opacity: 1; transform: scale(1) rotate(0deg);
  background: var(--gold-bright); border-color: var(--gold-bright);
}
.proj-card:hover .proj-arrow svg { stroke: var(--navy); }

/* ═══ IN PLANUNG ═══ */
.planning-section {
  background: var(--navy);
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.planning-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.planning-section .eyebrow { color: var(--gold-bright); }
.planning-section .cat-label-text { color: var(--white); }
.planning-section .cat-label-text em { color: var(--gold-bright); }
.planning-section .cat-label-line { background: rgba(255,255,255,0.08); }
.planning-section .cat-label-count { color: rgba(255,255,255,0.35); }

.planning-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 600px) { .planning-grid { grid-template-columns: 1fr; } }

/* ═══ CTA STRIP ═══ */
.cta-strip {
  background: var(--gold-bright);
  padding: 28px 32px;
}
.cta-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cta-strip-text {
  font-family: var(--ff-serif); font-size: 20px; font-weight: 600; color: var(--navy);
}
.cta-strip-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-strip-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--navy);
  transition: opacity var(--dur);
}
.cta-strip-link:hover { opacity: 0.65; }
.cta-strip-link svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2; }


/* ═══ ANIMATIONS ═══ */
.js-ready .fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }
