/* =========================================================
   PROJECT CARDS — landingspagina
   ========================================================= */

.projecten-sectie {
  background: var(--bone);
  padding: 110px 0;
}
@media (max-width: 720px) { .projecten-sectie { padding: 70px 0; } }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--bone-soft);
  border-top: 2px solid var(--accent);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(21,17,14,0.18);
}

.project-card-photo-wrap {
  position: relative;
  overflow: hidden;
}
.project-card-photo-wrap picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-card-photo-wrap picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.project-card:hover .project-card-photo-wrap picture img {
  transform: scale(1.03);
}

.project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  pointer-events: none;
  line-height: 1;
}

.project-card-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-loc {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.project-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.project-type {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}
.project-vanaf {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(21,17,14,0.08);
}
.project-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
}
.project-card-cta svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.project-card:hover .project-card-cta svg {
  transform: translateX(3px);
}


/* Card placeholder when no image available */
.project-card-photo-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(197,106,66,0.07) 0%, rgba(197,106,66,0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--accent);
  opacity: 0.7;
}
.project-card-photo-placeholder svg { width: 28px; height: 28px; }
.project-card-photo-placeholder span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =========================================================
   DETAIL PAGINA — projecten/zew.html
   ========================================================= */

.proj-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 720px) { .proj-hero { height: 55vw; min-height: 280px; } }

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.proj-hero.loaded .proj-hero-bg { transform: scale(1); }

.proj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,17,14,0.72) 0%, rgba(21,17,14,0.15) 55%, transparent 100%);
}
.proj-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 52px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 720px) { .proj-hero-content { padding: 0 22px 36px; } }

.proj-hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  margin-bottom: 14px;
  line-height: 1;
}
.proj-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 58px);
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(21,17,14,0.5);
}
.proj-hero-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(245,239,230,0.82);
  letter-spacing: 0.04em;
}

/* Gallery */
.proj-gallery {
  background: var(--ink);
  padding: 0;
}
.proj-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
@media (max-width: 720px) {
  .proj-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .proj-gallery-grid { grid-template-columns: 1fr; }
}
.proj-gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.proj-gallery-item:first-child {
  grid-row: 1 / 3;
}
@media (max-width: 720px) {
  .proj-gallery-item:first-child { grid-row: auto; }
}
.proj-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  min-height: 220px;
}
.proj-gallery-item:first-child img { min-height: 450px; }
@media (max-width: 720px) {
  .proj-gallery-item:first-child img { min-height: 220px; }
}
.proj-gallery-item:hover img { transform: scale(1.04); }

/* Info + aside */
.proj-body {
  background: var(--bone);
  padding: 90px 0 100px;
}
@media (max-width: 720px) { .proj-body { padding: 52px 0 60px; } }
.proj-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .proj-layout { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 720px) { .proj-layout { gap: 32px; } }

.proj-intro-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.proj-intro h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 28px;
}
@media (max-width: 720px) { .proj-intro h2 { margin-bottom: 18px; } }
.proj-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
@media (max-width: 720px) { .proj-desc { font-size: 15px; line-height: 1.65; } }
.proj-desc p + p { margin-top: 18px; }
@media (max-width: 720px) { .proj-desc p + p { margin-top: 14px; } }

.proj-features {
  margin-top: 48px;
}
@media (max-width: 720px) { .proj-features { margin-top: 32px; } }
.proj-features h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 720px) { .proj-features h3 { margin-bottom: 14px; } }
.proj-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
@media (max-width: 540px) { .proj-feature-list { grid-template-columns: 1fr; } }
.proj-feature-list li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}
.proj-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Aside card */
.proj-aside-card {
  background: var(--ink);
  color: var(--bone);
  padding: 36px 30px 40px;
  position: sticky;
  top: 90px;
}
@media (max-width: 1000px) { .proj-aside-card { position: static; } }
@media (max-width: 720px) { .proj-aside-card { padding: 26px 20px 30px; } }
.proj-aside-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
  font-weight: 600;
  margin-bottom: 8px;
}
.proj-aside-price {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 28px;
}
@media (max-width: 720px) { .proj-aside-price { font-size: 28px; margin-bottom: 20px; } }
.proj-aside-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(245,239,230,0.1);
  padding-top: 24px;
}
@media (max-width: 720px) { .proj-aside-meta { padding-top: 18px; margin-bottom: 22px; gap: 10px; } }
.proj-aside-meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proj-aside-meta .meta-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.45);
  font-weight: 600;
}
.proj-aside-meta .meta-val {
  font-size: 14px;
  color: var(--bone);
  line-height: 1.4;
}
.proj-aside-ligging {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid rgba(245,239,230,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 720px) { .proj-aside-ligging { padding-top: 18px; margin-bottom: 22px; } }
.proj-aside-ligging li {
  font-size: 13px;
  color: rgba(245,239,230,0.72);
  padding-left: 14px;
  position: relative;
}
.proj-aside-ligging li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.proj-aside-ligging-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.45);
  font-weight: 600;
  margin-bottom: 10px;
}
.proj-aside-cta {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 15px 20px;
  text-decoration: none;
  transition: background 0.25s;
}
.proj-aside-cta:hover { background: var(--accent-deep); }
.proj-aside-note {
  font-size: 11px;
  color: rgba(245,239,230,0.38);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

/* Back link */
.proj-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .proj-back { margin-bottom: 28px; } }
.proj-back svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.proj-back:hover svg { transform: translateX(-3px); }

/* Disclaimer (illustratieve beelden) */
.proj-disclaimer {
  border-top: 1px solid rgba(21,17,14,0.07);
  margin-top: 60px;
  padding-top: 20px;
}
@media (max-width: 720px) { .proj-disclaimer { margin-top: 40px; } }
.proj-disclaimer p {
  font-size: 11px;
  color: rgba(36,28,22,0.45);
  line-height: 1.6;
  max-width: 680px;
}
