/* ============================================================
   Op de Foto — subpagina styles (gedeeld)
   ============================================================ */

/* Page hero */
.page-hero {
  padding-block: clamp(40px, 6vw, 80px) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--ink-15);
}
.page-hero .crumbs {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.page-hero .crumbs a { color: var(--ink-60); }
.page-hero .crumbs a:hover { color: var(--accent); }
.page-hero .crumbs .sep { color: var(--ink-40); }
.page-hero .crumbs .current { color: var(--ink); }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.page-hero p.lead { font-size: 18px; max-width: 56ch; }
.page-hero .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.page-hero .hero-tags li {
  list-style: none;
  padding: 8px 14px;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  font-size: 13px;
  background: var(--paper);
}

@media (max-width: 880px) {
  .page-hero-grid { grid-template-columns: 1fr; }
}

/* Service body grid */
.svc-page section {
  padding-block: clamp(56px, 7vw, 100px);
}
.svc-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.svc-body-grid h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.svc-body-grid p { font-size: 17px; color: var(--ink); margin-bottom: 18px; }
.svc-body-grid p + p { color: var(--ink-60); }

.svc-side {
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 96px;
}
.svc-side h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 12px;
  font-weight: 500;
}
.svc-side dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 20px;
}
.svc-side dl > div {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--ink-15);
}
.svc-side dl > div:last-child { border-bottom: 0; }
.svc-side dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  align-self: center;
}
.svc-side dd {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.svc-side .btn { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 880px) {
  .svc-body-grid { grid-template-columns: 1fr; }
  .svc-side { position: static; padding: 24px; }
}

/* Feature list (deep-dive on service page) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.feature h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feature p { font-size: 14px; color: var(--ink-60); margin-bottom: 0; }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* Process strip (used on service pages) */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.process-step {
  padding: 22px;
  border: 1px solid var(--ink-15);
  border-radius: var(--radius);
  background: var(--paper);
}
.process-step strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.process-step p { font-size: 13px; color: var(--ink-60); margin: 0; }
@media (max-width: 720px) { .process-strip { grid-template-columns: 1fr 1fr; } }

/* Related services nav */
.related {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 32px;
}
.related h3 { margin-bottom: 18px; font-size: 22px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.related-card {
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.related-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.related-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-40);
}
.related-card h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 4px;
  letter-spacing: -0.015em;
}
.related-card p { font-size: 13px; color: var(--ink-60); margin: 0; }
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Offerte form
   ============================================================ */
.offerte-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.offerte-intro {
  position: sticky;
  top: 96px;
}
.offerte-intro h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 20px;
}
.offerte-intro em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.offerte-intro p { color: var(--ink-60); font-size: 17px; margin-bottom: 24px; max-width: 38ch; }
.offerte-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.offerte-points li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  align-items: flex-start;
}
.offerte-points .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 3px;
  min-width: 20px;
}

.offerte-contact-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
}
.offerte-contact-card .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
  margin-bottom: 6px;
}
.offerte-contact-card a {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.offerte-contact-card a:last-child { margin-bottom: 0; }
.offerte-contact-card a:hover { color: var(--accent); }

/* Form proper */
.offerte-form {
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-section h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section h3 .step-dot {
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--ink-15);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; font-family: var(--body); line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(255,91,31,0.12);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230F0E0D' stroke-width='1.6' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* Pill checkbox group for services */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-pills input { position: absolute; opacity: 0; pointer-events: none; }
.service-pills label {
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  background: var(--bg);
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  transition: all 0.15s ease;
  user-select: none;
}
.service-pills label:hover { border-color: var(--ink); }
.service-pills input:checked + label {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.service-pills input:focus-visible + label {
  box-shadow: 0 0 0 4px rgba(255,91,31,0.2);
}

/* Honeypot — hidden from humans */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit row */
.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-submit small {
  font-size: 13px;
  color: var(--ink-60);
  max-width: 36ch;
}
.form-submit .btn { padding: 18px 28px; }

/* Form alert */
.form-alert {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 8px;
}
.form-alert.error {
  background: #ffeae0;
  color: #8a2a00;
  border: 1px solid #ffb38a;
}
.form-alert.success {
  background: #d8f6e6;
  color: #0c5a32;
  border: 1px solid #84d9a8;
}

@media (max-width: 880px) {
  .offerte-grid { grid-template-columns: 1fr; }
  .offerte-intro { position: static; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Over ons
   ============================================================ */
.over-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.over-block.reverse { grid-template-columns: 1.1fr 1fr; }
.over-block.reverse .over-text { order: 2; }
.over-block.reverse .over-visual { order: 1; }
.over-text h2 { font-size: clamp(28px, 4vw, 56px); letter-spacing: -0.025em; margin-bottom: 18px; }
.over-text p { color: var(--ink); font-size: 17px; margin-bottom: 16px; max-width: 52ch; }
.over-text p + p { color: var(--ink-60); }
.over-visual .ph { aspect-ratio: 5/4; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.value {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: var(--radius);
}
.value-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.value h3 { font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.value p { font-size: 15px; color: var(--ink-60); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.team-card { display: flex; flex-direction: column; gap: 12px; }
.team-ph { aspect-ratio: 3/4; border-radius: var(--radius); }
.team-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.team-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
}

@media (max-width: 880px) {
  .over-block, .over-block.reverse { grid-template-columns: 1fr; }
  .over-block.reverse .over-text { order: 1; }
  .over-block.reverse .over-visual { order: 2; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Thank you page
   ============================================================ */
.thanks {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(80px, 12vw, 160px);
}
.thanks h1 {
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 24px;
}
.thanks em { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--accent); }
.thanks p.lead { margin-bottom: 32px; max-width: 52ch; font-size: 19px; }
