/* =========================================================
   Black Parrot Media — Retainer Proposal (responsive site)
   Scoped under .bpm-proposal so it can be pasted into any
   WordPress Custom HTML block without leaking styles.
   ========================================================= */

.bpm-proposal, .bpm-proposal * {
  box-sizing: border-box;
}

.bpm-proposal {
  --bpm-dark: #202020;
  --bpm-mid: #252626;
  --bpm-orange: #ff5b00;
  --bpm-text: #f1efe9;
  --bpm-muted: #a9a7a1;
  --bpm-border: rgba(255,255,255,0.10);

  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: var(--bpm-text);
  background: var(--bpm-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bpm-proposal img { max-width: 100%; display: block; }

.bpm-proposal a { color: var(--bpm-orange); }

/* ---------- shared section shell ---------- */

.bpm-section {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 64px);
}

.bpm-section--dark { background: var(--bpm-dark); }
.bpm-section--mid { background: var(--bpm-mid); }

.bpm-container {
  max-width: 1120px;
  margin: 0 auto;
}

.bpm-eyebrow {
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bpm-orange);
  margin: 0 0 12px 0;
}

.bpm-title {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: bold;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

.bpm-rule {
  width: 64px;
  height: 4px;
  background: var(--bpm-orange);
  margin: 20px 0 24px 0;
}

.bpm-lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--bpm-text);
  max-width: 680px;
  margin: 0 0 8px 0;
}

/* ---------- top brand bar ---------- */

.bpm-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px clamp(20px, 6vw, 64px);
  background: var(--bpm-mid);
  border-bottom: 1px solid var(--bpm-border);
}

.bpm-topbar img { width: clamp(120px, 16vw, 170px); height: auto; }

/* ---------- hero ---------- */

.bpm-hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}

.bpm-hero-text { flex: 1 1 320px; min-width: 280px; }

.bpm-hero-text h1 {
  font-size: clamp(32px, 7vw, 56px);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}

.bpm-hero-statement {
  font-size: clamp(19px, 3.2vw, 27px);
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.bpm-hero-sub {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: var(--bpm-muted);
  max-width: 480px;
  margin: 0;
}

.bpm-hero-photo {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bpm-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  background: #1a1a1a;
  margin: 0 auto;
}

.bpm-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- stat cards (slide 2) ---------- */

.bpm-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.bpm-stat-card {
  flex: 1 1 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bpm-border);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 26px) clamp(20px, 3vw, 28px);
}

.bpm-stat-label {
  font-size: 11.5px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bpm-muted);
  margin-bottom: 10px;
}

.bpm-stat-num {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: bold;
  color: var(--bpm-orange);
  font-style: italic;
  line-height: 1.1;
}

.bpm-stat-num.bpm-num-long { font-size: clamp(17px, 3vw, 23px); line-height: 1.25; }

.bpm-stat-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bpm-muted);
}

/* ---------- two column layout (slides 3 & 4) ---------- */

.bpm-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 48px);
  margin-top: 32px;
}

.bpm-two-col .bpm-col { flex: 1 1 320px; min-width: 280px; }
.bpm-two-col .bpm-col--photo { display: flex; flex-direction: column; justify-content: center; }

/* item list (numbered rows, slides 3 / 4 / 7) */

.bpm-item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bpm-item-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bpm-border);
  border-radius: 8px;
  flex-wrap: wrap;
}

.bpm-item-row .bpm-idx {
  font-size: 26px;
  font-weight: bold;
  font-style: italic;
  color: var(--bpm-orange);
  width: 42px;
  flex-shrink: 0;
}

.bpm-item-row .bpm-body { flex: 1 1 200px; min-width: 180px; }

.bpm-item-row .bpm-name {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 4px;
}

.bpm-item-row .bpm-desc {
  font-size: 13.5px;
  color: var(--bpm-muted);
  line-height: 1.5;
}

.bpm-item-row .bpm-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--bpm-orange);
  text-align: right;
  flex-shrink: 0;
  margin-left: auto;
}

.bpm-item-row .bpm-sub-price {
  display: block;
  font-size: 11.5px;
  font-weight: normal;
  color: var(--bpm-muted);
  margin-top: 5px;
  line-height: 1.4;
  font-style: normal;
  text-align: right;
  max-width: 220px;
}

/* photo collage grid (slide 3) */

.bpm-photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bpm-photo-collage .bpm-tile {
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bpm-border);
}

.bpm-photo-collage .bpm-tile img { width: 100%; height: 100%; object-fit: cover; }

/* photo panel with caption (slide 4) */

.bpm-photo-panel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bpm-border);
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.bpm-photo-panel img { width: 100%; height: 100%; object-fit: cover; }

.bpm-photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  font-size: 13.5px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

/* ---------- feature grid (slide 5) ---------- */

.bpm-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.bpm-feature-tile {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bpm-border);
  background: rgba(255,255,255,0.03);
}

.bpm-feature-tile img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.bpm-feature-label {
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

.bpm-feature-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--bpm-muted);
}

.bpm-feature-note strong { color: var(--bpm-text); }

/* ---------- pricing terms (slide 6) ---------- */

.bpm-term-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.bpm-term-card {
  flex: 1 1 220px;
  border: 1px solid var(--bpm-border);
  border-radius: 8px;
  padding: 22px 22px 24px 22px;
  background: rgba(255,255,255,0.03);
}

.bpm-term-card.bpm-featured {
  border-color: var(--bpm-orange);
  background: rgba(255,91,0,0.06);
}

.bpm-term-badge {
  font-size: 11.5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bpm-orange);
  margin-bottom: 8px;
}

.bpm-term-length {
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.bpm-term-rate {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: bold;
  font-style: italic;
  color: var(--bpm-orange);
}

.bpm-term-rate .bpm-per {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  color: var(--bpm-muted);
}

.bpm-term-save {
  margin-top: 12px;
  font-size: 13px;
  color: var(--bpm-muted);
  line-height: 1.5;
}

.bpm-base-rate-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--bpm-muted);
  line-height: 1.6;
  max-width: 900px;
}

/* ---------- button ---------- */

.bpm-btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}

.bpm-btn--primary {
  background: #ffffff;
  color: #252626;
  border-color: #ffffff;
}

.bpm-btn--primary:hover {
  background: var(--bpm-orange);
  color: #ffffff;
  border-color: var(--bpm-orange);
}

/* ---------- footer ---------- */

.bpm-footer {
  padding: 30px clamp(20px, 6vw, 64px);
  background: var(--bpm-mid);
  border-top: 1px solid var(--bpm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bpm-footer img { width: 30px; height: auto; }

.bpm-footer-text {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--bpm-muted);
  text-transform: uppercase;
}

/* =========================================================
   Responsive breakpoints
   ========================================================= */

@media (max-width: 900px) {
  .bpm-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bpm-hero-flex { flex-direction: column; }
  .bpm-hero-text, .bpm-hero-photo { max-width: 100%; }
  .bpm-hero-text h1, .bpm-hero-statement, .bpm-hero-sub { text-align: left; }

  .bpm-photo-collage { grid-template-columns: 1fr 1fr; }

  .bpm-item-row { flex-direction: column; gap: 8px; }
  .bpm-item-row .bpm-idx { width: auto; }
  .bpm-item-row .bpm-body { flex: 0 1 auto; }
  .bpm-item-row .bpm-price,
  .bpm-item-row .bpm-sub-price { text-align: left; margin-left: 0; max-width: 100%; }

  .bpm-term-row { flex-direction: column; }

  .bpm-two-col { flex-direction: column; }
}

@media (max-width: 480px) {
  .bpm-feature-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
