/* =============================================================================
   WerkendWeb — Portfolio pagina styles
   Bouwt verder op /styles.css — dezelfde tokens en componenten (.werk-project,
   .browser-frame, .tm-card, .section-*) worden hergebruikt, geen duplicatie.
   ============================================================================= */

/* ── Active nav link ────────────────────────────────────────────────────────── */
.nav-link--active {
  color: var(--ink) !important;
  font-weight: 500;
}

/* =============================================================================
   1. HERO
   ============================================================================= */
.pf-hero {
  min-height: 44vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  padding: 120px 6vw 72px;
  position: relative;
  overflow: hidden;
}
.pf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(47,174,134,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(47,174,134,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.pf-hero__inner { position: relative; max-width: 760px; }
.pf-hero__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.pf-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 22px;
}
.pf-hero__title em { font-style: italic; color: var(--accent); }
.pf-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(247,244,239,0.65);
  line-height: 1.65;
  max-width: 560px;
}

/* =============================================================================
   2. PROJECTREVIEW — klantquote onder een project, hergebruikt .tm-card
   ============================================================================= */
.werk-project__review { margin-top: 28px; }

/* =============================================================================
   3. PLACEHOLDER-PROJECT — nette, duidelijk herkenbare lege sleuf
   ============================================================================= */
.werk-project--placeholder .browser-frame__viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(15,15,14,0.16);
}
.werk-project__placeholder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}
.werk-project__placeholder-visual svg { opacity: 0.35; }
.werk-project__placeholder-visual span {
  font-size: 0.8rem;
  font-weight: 500;
  max-width: 220px;
}
.werk-project--placeholder .werk-project__title,
.werk-project--placeholder .werk-project__desc,
.werk-project--placeholder .werk-project__category { color: var(--muted); }

/* =============================================================================
   4. AFSLUITENDE CTA — zelfde opbouw als .oo-footer-cta op /over-ons
   ============================================================================= */
.pf-footer-cta {
  background: var(--accent);
  padding: 56px 6vw;
}
.pf-footer-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pf-footer-cta__tekst {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--on-accent);
  line-height: 1.35;
}
.pf-footer-cta__btn {
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
  flex-shrink: 0;
}
.pf-footer-cta__btn:hover {
  background: #2c2c2a;
  color: var(--paper);
}
@media (max-width: 760px) {
  .pf-footer-cta__inner { flex-direction: column; text-align: center; align-items: center; }
  .pf-footer-cta__btn   { width: 100%; justify-content: center; }
}

/* ── Tablet ────────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .pf-hero { padding: 104px 6vw 56px; min-height: auto; }
}
