/* =============================================================
   PDZ Booking Form — Stylesheet  v2.0.0
   Full branching: Maintenance / Restoration / Landscaping / New Build
   ============================================================= */

/* ── Shell ───────────────────────────────────────────────────── */
.pdz-bf-shell {
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--moss, #1d2a22);
}

/* ── Progress ────────────────────────────────────────────────── */
.pdz-bf-progress { margin-bottom: 28px; }

.pdz-bf-progress-track {
  height: 2px;
  background: var(--line, rgba(29,42,34,0.12));
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}
.pdz-bf-progress-fill {
  height: 100%;
  background: var(--ochre, #c4884a);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.7,0,0.3,1);
  width: 0%;
}
.pdz-bf-steps-dots { display: flex; gap: 6px; justify-content: center; }
.pdz-bf-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--line-strong, rgba(29,42,34,0.25));
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.pdz-bf-dot.active { background: var(--ochre, #c4884a); transform: scale(1.25); }
.pdz-bf-dot.done   { background: var(--moss, #1d2a22); }

/* ── Branch indicator pill ───────────────────────────────────── */
.pdz-bf-branch-pill {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pdz-bf-branch-pill.visible { display: inline-flex; }
.pdz-bf-branch-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ochre, #c4884a);
  flex-shrink: 0;
}
.pdz-bf-branch-label { color: var(--ochre, #c4884a); }
.pdz-bf-branch-change {
  color: var(--moss-mid, #2d4035);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-weight: 400;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.pdz-bf-branch-change:hover { color: var(--moss, #1d2a22); }

/* ── Step error banner ───────────────────────────────────────── */
.pdz-bf-step-error {
  display: none;
  background: rgba(139,74,43,0.08);
  border-left: 3px solid var(--rust, #8b4a2b);
  color: var(--rust, #8b4a2b);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 14px;
  line-height: 1.45;
}
.pdz-bf-step-error.visible { display: block; }

/* ── Step visibility ─────────────────────────────────────────── */
.pdz-bf-step { display: none; animation: pdzIn 0.35s ease forwards; }
.pdz-bf-step.active { display: block; }
@keyframes pdzIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Step head ───────────────────────────────────────────────── */
.pdz-bf-step-head { margin-bottom: 20px; }
.pdz-bf-eyebrow {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ochre, #c4884a);
  display: inline-block; margin-bottom: 6px;
}
.pdz-bf-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--moss, #1d2a22);
  margin-bottom: 6px;
}
.pdz-bf-sub {
  font-size: 13px; color: var(--moss-mid, #2d4035);
  line-height: 1.5; max-width: 520px;
}

/* ── Job type cards (Step 0) ─────────────────────────────────── */
.pdz-bf-jobtype-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.pdz-bf-jobtype-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px 18px;
  border: 1.5px solid rgba(29,42,34,0.18);
  border-radius: 10px;
  background: rgba(250,247,241,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.7,0,0.3,1);
  position: relative;
  user-select: none;
}
.pdz-bf-jobtype-card:hover {
  border-color: var(--moss, #1d2a22);
  background: rgba(244,239,230,0.75);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,24,19,0.08);
}
.pdz-bf-jobtype-card.selected {
  border-color: var(--moss, #1d2a22);
  background: var(--moss, #1d2a22);
  color: var(--bone, #f4efe6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,24,19,0.15);
}
.pdz-bf-jt-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 2px;
}
.pdz-bf-jt-label {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: inherit;
}
.pdz-bf-jt-desc {
  font-size: 12px;
  color: var(--moss-mid, #2d4035);
  line-height: 1.4;
  transition: color 0.25s;
}
.pdz-bf-jobtype-card.selected .pdz-bf-jt-desc {
  color: rgba(244,239,230,0.7);
}
.pdz-bf-jt-check {
  position: absolute; top: 10px; right: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ochre, #c4884a);
  display: flex; align-items: center; justify-content: center;
  color: white; opacity: 0; transform: scale(0.5);
  transition: all 0.2s;
}
.pdz-bf-jobtype-card.selected .pdz-bf-jt-check { opacity: 1; transform: scale(1); }

/* ── Card grid (radio) ───────────────────────────────────────── */
.pdz-bf-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px; margin-bottom: 14px;
}
.pdz-bf-card-grid--list { grid-template-columns: 1fr; }
.pdz-bf-card-grid--2col { grid-template-columns: 1fr 1fr; }

.pdz-bf-card {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 3px; padding: 14px 14px 12px;
  border: 1.5px solid rgba(29,42,34,0.2);
  border-radius: 8px;
  background: rgba(250,247,241,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.7,0,0.3,1);
  position: relative; user-select: none;
}
.pdz-bf-card:hover { border-color: var(--moss, #1d2a22); background: rgba(244,239,230,0.7); }
.pdz-bf-card.selected {
  border-color: var(--moss, #1d2a22);
  background: var(--moss, #1d2a22);
  color: var(--bone, #f4efe6);
}
.pdz-bf-card--row {
  flex-direction: row; align-items: center;
  gap: 12px; padding: 12px 14px;
}
.pdz-bf-card-row-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pdz-bf-card-icon  { font-size: 18px; line-height: 1; margin-bottom: 2px; }
.pdz-bf-card-label { font-size: 13px; font-weight: 500; color: inherit; line-height: 1.2; }
.pdz-bf-card-detail { font-size: 11px; color: var(--moss-mid, #2d4035); line-height: 1.2; }
.pdz-bf-card.selected .pdz-bf-card-detail { color: rgba(244,239,230,0.7); }

.pdz-bf-card-check {
  position: absolute; top: 8px; right: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ochre, #c4884a);
  display: flex; align-items: center; justify-content: center;
  color: white; opacity: 0; transform: scale(0.5);
  transition: all 0.2s;
}
.pdz-bf-card--row .pdz-bf-card-check { position: static; flex-shrink: 0; }
.pdz-bf-card.selected .pdz-bf-card-check { opacity: 1; transform: scale(1); }

.pdz-bf-radio-hidden, .pdz-bf-checkbox-hidden {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}

/* ── Multi-select chip grid ──────────────────────────────────── */
.pdz-bf-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.pdz-bf-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid rgba(29,42,34,0.2);
  border-radius: 100px;
  background: rgba(250,247,241,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  font-size: 13px; font-weight: 500;
  transition: all 0.2s;
  user-select: none; position: relative;
}
.pdz-bf-chip:hover { border-color: var(--moss, #1d2a22); background: rgba(244,239,230,0.7); }
.pdz-bf-chip.selected {
  border-color: var(--moss, #1d2a22);
  background: var(--moss, #1d2a22);
  color: var(--bone, #f4efe6);
}

/* ── Upload zone ─────────────────────────────────────────────── */
.pdz-bf-upload-zone {
  width: 100%;
  border: 2px dashed rgba(29,42,34,0.22);
  background: rgba(250,247,241,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 28px 24px; text-align: center; cursor: pointer;
  transition: all 0.3s; margin-bottom: 10px; position: relative;
}
.pdz-bf-upload-zone:hover, .pdz-bf-upload-zone:focus {
  border-color: rgba(29,42,34,0.55);
  background: rgba(244,239,230,0.55);
  outline: none;
}
.pdz-bf-upload-zone.dragover {
  border-color: var(--ochre, #c4884a);
  background: rgba(196,136,74,0.12); border-style: solid;
}
.pdz-bf-upload-icon-wrap {
  position: relative;
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  pointer-events: none;
}
.pdz-bf-upload-icon {
  width: 44px; height: 44px;
  background: var(--moss, #1d2a22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone, #f4efe6);
  position: relative; z-index: 1;
  pointer-events: none;
}
.pdz-bf-pulse-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--moss, #1d2a22);
  animation: pdzPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.pdz-bf-pulse-ring--2 { animation-delay: 1.2s; }
@keyframes pdzPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(2.2);  opacity: 0; }
}
.pdz-bf-upload-title { font-size: 14px; font-weight: 500; color: var(--moss, #1d2a22); margin-bottom: 4px; }
.pdz-bf-link { color: var(--ochre, #c4884a); text-decoration: underline; text-underline-offset: 2px; }
.pdz-bf-upload-hint { font-size: 12px; color: var(--moss-mid, #2d4035); }
.pdz-bf-file-input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }

/* ── Photo thumbs ────────────────────────────────────────────── */
.pdz-bf-photo-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.pdz-bf-photo-thumb-wrap { position: relative; }
.pdz-bf-photo-thumb {
  width: 64px; height: 64px; border-radius: 6px; object-fit: cover;
  border: 2px solid var(--line-strong, rgba(29,42,34,0.25));
}
.pdz-bf-photo-remove {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--moss, #1d2a22); color: white;
  border: none; cursor: pointer; font-size: 11px;
  display: flex; align-items: center; justify-content: center; padding: 0;
}

/* ── Services grid ───────────────────────────────────────────── */
.pdz-bf-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 7px; margin-bottom: 14px;
}
.pdz-bf-service-card {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid rgba(29,42,34,0.2);
  border-radius: 7px;
  background: rgba(250,247,241,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer; transition: all 0.25s; position: relative; user-select: none;
}
.pdz-bf-service-card:hover { border-color: var(--moss, #1d2a22); background: rgba(244,239,230,0.7); }
.pdz-bf-service-card.selected {
  border-color: var(--moss, #1d2a22); background: var(--moss, #1d2a22); color: var(--bone, #f4efe6);
}
.pdz-bf-service-icon { font-size: 15px; flex-shrink: 0; }
.pdz-bf-service-label { font-size: 12px; font-weight: 500; flex: 1; line-height: 1.2; }
.pdz-bf-service-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ochre, #c4884a);
  display: flex; align-items: center; justify-content: center;
  color: white; opacity: 0; transform: scale(0.5);
  transition: all 0.2s; flex-shrink: 0;
}
.pdz-bf-service-card.selected .pdz-bf-service-check { opacity: 1; transform: scale(1); }

/* ── Sub-group ───────────────────────────────────────────────── */
.pdz-bf-sub-group { margin-bottom: 18px; }
.pdz-bf-group-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300; font-size: 16px; letter-spacing: -0.01em;
  margin-bottom: 10px; color: var(--moss, #1d2a22);
}

/* ── Collapsible reveal ──────────────────────────────────────── */
.pdz-bf-reveal-wrap { margin-bottom: 14px; }
.pdz-bf-reveal-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; font-family: inherit;
  color: var(--moss-mid, #2d4035);
  background: none; border: none; cursor: pointer;
  padding: 4px 0; transition: color 0.2s;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: transparent;
}
.pdz-bf-reveal-trigger:hover { color: var(--moss, #1d2a22); text-decoration-color: var(--line-strong, rgba(29,42,34,0.25)); }
.pdz-bf-chevron { transition: transform 0.25s; flex-shrink: 0; }
.pdz-bf-reveal-trigger.open .pdz-bf-chevron { transform: rotate(180deg); }
.pdz-bf-reveal-body { display: none; margin-top: 8px; animation: pdzIn 0.25s ease forwards; }
.pdz-bf-reveal-body.open { display: block; }

/* ── Postcode ────────────────────────────────────────────────── */
.pdz-bf-postcode-wrap { margin-bottom: 16px; }
.pdz-bf-input-row { display: flex; gap: 8px; align-items: stretch; }
.pdz-bf-postcode-input {
  flex: 1; max-width: 200px;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 16px; font-weight: 500;
}
.pdz-bf-btn-check {
  padding: 11px 18px; background: var(--moss, #1d2a22); color: var(--bone, #f4efe6);
  border: none; border-radius: 100px; font-size: 13px; font-weight: 500;
  font-family: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.25s; white-space: nowrap;
}
.pdz-bf-btn-check:hover { background: var(--moss-deep, #0f1813); }
.pdz-bf-postcode-result {
  margin-top: 10px; font-size: 13px; line-height: 1.5; min-height: 0;
}
.pdz-bf-postcode-result.success {
  color: var(--moss, #1d2a22); background: rgba(29,42,34,0.06);
  border-radius: 6px; padding: 10px 14px;
  border-left: 3px solid var(--moss, #1d2a22);
}
.pdz-bf-postcode-result.outside {
  color: var(--rust, #8b4a2b); background: rgba(139,74,43,0.07);
  border-radius: 6px; padding: 10px 14px;
  border-left: 3px solid var(--rust, #8b4a2b);
}
.pdz-bf-postcode-result.error { color: var(--rust, #8b4a2b); }

/* ── Consultation notice (design/new-build branches) ─────────── */
.pdz-bf-consult-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(196,136,74,0.08);
  border: 1px solid rgba(196,136,74,0.25);
  border-radius: 8px; padding: 12px 14px;
  margin-bottom: 14px; font-size: 13px;
  color: var(--moss, #1d2a22); line-height: 1.55;
}
.pdz-bf-consult-notice svg { flex-shrink: 0; color: var(--ochre, #c4884a); margin-top: 1px; }

/* ── Text inputs ─────────────────────────────────────────────── */
.pdz-bf-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.pdz-bf-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdz-bf-field { display: flex; flex-direction: column; gap: 5px; }

.pdz-bf-label { font-size: 12px; font-weight: 500; color: var(--moss, #1d2a22); }
.pdz-bf-label--sub { margin-top: 10px; }
.pdz-bf-label-opt { font-weight: 400; color: var(--moss-mid, #2d4035); }
.pdz-bf-required { color: var(--ochre, #c4884a); }

.pdz-bf-input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid rgba(29,42,34,0.22);
  border-radius: 7px; font-size: 14px; font-family: inherit;
  color: var(--moss, #1d2a22);
  background: rgba(250,247,241,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: border-color 0.25s, background 0.25s; -webkit-appearance: none;
}
.pdz-bf-input:focus {
  outline: none; border-color: var(--moss, #1d2a22);
  background: rgba(250,247,241,0.85);
  box-shadow: 0 0 0 3px rgba(29,42,34,0.07);
}
.pdz-bf-input::placeholder { color: rgba(29,42,34,0.3); }

/* ── WhatsApp question ───────────────────────────────────────── */
.pdz-bf-wa-question {
  margin-top: 10px; padding: 12px 14px;
  background: rgba(244,239,230,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px; border: 1px solid rgba(29,42,34,0.12);
}
.pdz-bf-wa-q-label { font-size: 13px; font-weight: 500; color: var(--moss, #1d2a22); margin-bottom: 10px; }
.pdz-bf-wa-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pdz-bf-wa-btn {
  padding: 8px 16px; border-radius: 100px; font-size: 12px;
  font-weight: 500; font-family: inherit; cursor: pointer;
  border: 1.5px solid rgba(29,42,34,0.22);
  background: rgba(250,247,241,0.5); color: var(--moss, #1d2a22);
  transition: all 0.2s;
}
.pdz-bf-wa-btn:hover { border-color: var(--moss, #1d2a22); background: var(--moss, #1d2a22); color: var(--bone, #f4efe6); }
.pdz-bf-wa-btn.active { background: var(--moss, #1d2a22); color: var(--bone, #f4efe6); border-color: var(--moss, #1d2a22); }

/* ── Textarea ────────────────────────────────────────────────── */
.pdz-bf-textarea {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid rgba(29,42,34,0.15);
  border-radius: 7px; font-size: 13px; font-family: inherit;
  color: var(--moss, #1d2a22);
  background: rgba(235,227,212,0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  resize: vertical; line-height: 1.5; transition: border-color 0.25s;
}
.pdz-bf-textarea:focus { outline: none; border-color: var(--moss, #1d2a22); }
.pdz-bf-textarea::placeholder { color: rgba(29,42,34,0.3); font-style: italic; }

/* ── Consent ─────────────────────────────────────────────────── */
.pdz-bf-consent {
  margin-bottom: 16px; padding: 12px 14px;
  border: 1.5px solid rgba(29,42,34,0.15);
  border-radius: 8px;
  background: rgba(244,239,230,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pdz-bf-consent-label {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: var(--moss-mid, #2d4035);
  line-height: 1.5; cursor: pointer;
}
.pdz-bf-checkbox {
  margin-top: 2px; flex-shrink: 0;
  width: 14px; height: 14px; cursor: pointer;
  accent-color: var(--moss, #1d2a22);
}

/* ── Nav buttons ─────────────────────────────────────────────── */
.pdz-bf-nav { display: flex; gap: 8px; align-items: center; margin-top: 6px; flex-wrap: wrap; }

.pdz-bf-btn-next, .pdz-bf-btn-submit {
  padding: 11px 20px; background: var(--moss, #1d2a22); color: var(--bone, #f4efe6);
  border: 1px solid var(--moss, #1d2a22); border-radius: 100px;
  font-size: 13px; font-weight: 500; font-family: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.pdz-bf-btn-next:hover, .pdz-bf-btn-submit:hover {
  background: var(--moss-deep, #0f1813); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15,24,19,0.18);
}
.pdz-bf-btn-next:hover svg, .pdz-bf-btn-submit:hover svg { transform: translateX(2px); }
.pdz-bf-btn-next svg, .pdz-bf-btn-submit svg { transition: transform 0.3s; }

.pdz-bf-btn-ghost {
  background: transparent; color: var(--moss-mid, #2d4035);
  border-color: var(--line-strong, rgba(29,42,34,0.25));
}
.pdz-bf-btn-ghost:hover {
  background: var(--bone, #f4efe6); color: var(--moss, #1d2a22);
  border-color: var(--moss, #1d2a22); transform: none; box-shadow: none;
}
.pdz-bf-btn-back {
  padding: 11px 14px; background: transparent; color: var(--moss-mid, #2d4035);
  border: 1px solid transparent; border-radius: 100px;
  font-size: 13px; font-weight: 500; font-family: inherit; cursor: pointer; transition: all 0.2s;
}
.pdz-bf-btn-back:hover { color: var(--moss, #1d2a22); border-color: var(--line-strong, rgba(29,42,34,0.25)); }

/* ── Submit loading ──────────────────────────────────────────── */
@keyframes pdzSpin { to { transform: rotate(360deg); } }
.pdz-bf-spinner {
  width: 13px; height: 13px;
  border: 2px solid rgba(244,239,230,0.35); border-top-color: var(--bone, #f4efe6);
  border-radius: 50%; animation: pdzSpin 0.7s linear infinite; display: none;
}
.pdz-bf-btn-submit.loading .pdz-bf-spinner { display: block; }
.pdz-bf-btn-submit.loading svg { display: none; }

.pdz-bf-error {
  margin-top: 10px; font-size: 13px; color: var(--rust, #8b4a2b); line-height: 1.5;
}

/* ── Success ─────────────────────────────────────────────────── */
.pdz-bf-success { display: none; text-align: center; padding: 48px 16px; animation: pdzIn 0.4s ease forwards; }
.pdz-bf-success.visible { display: block; }
.pdz-bf-success-icon {
  width: 60px; height: 60px; background: var(--moss, #1d2a22); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone, #f4efe6); margin: 0 auto 20px;
}
.pdz-bf-success-title {
  font-family: 'Fraunces', Georgia, serif; font-weight: 300;
  font-size: 38px; letter-spacing: -0.03em; color: var(--moss, #1d2a22); margin-bottom: 10px;
}
.pdz-bf-success-msg  { font-size: 15px; color: var(--moss, #1d2a22); margin-bottom: 8px; }
.pdz-bf-success-sub  { font-size: 13px; color: var(--moss-mid, #2d4035); font-family: 'Fraunces', Georgia, serif; font-style: italic; line-height: 1.5; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 560px) {
  .pdz-bf-jobtype-grid    { grid-template-columns: 1fr; }
  .pdz-bf-card-grid       { grid-template-columns: 1fr 1fr; }
  .pdz-bf-card-grid--2col { grid-template-columns: 1fr; }
  .pdz-bf-services-grid   { grid-template-columns: 1fr 1fr; }
  .pdz-bf-field-row       { grid-template-columns: 1fr; }
  .pdz-bf-input-row       { flex-direction: column; }
  .pdz-bf-postcode-input  { max-width: 100%; }
  .pdz-bf-btn-check       { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .pdz-bf-card-grid       { grid-template-columns: 1fr; }
  .pdz-bf-services-grid   { grid-template-columns: 1fr; }
}
