/* =========================================
   PROMISE SECTION
   ========================================= */
.promise-section {
  background: var(--charcoal);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.promise-section .section-eyebrow { color: var(--gold); }
.promise-section blockquote {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 780px;
  margin: 1.5rem auto 1rem;
  line-height: 1.45;
}
.promise-section p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* =========================================
   LUCIDE ICON SYSTEM
   ========================================= */

/* Service card icons */
/* Service card icons */
.svc-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.svc-card:hover .svc-card__icon {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.45);
  transform: translateY(-4px) scale(1.05);
}
.svc-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--amber);
  stroke-width: 1.5;
  transition: stroke 0.4s var(--ease), stroke-width 0.4s var(--ease);
}
.svc-card:hover .svc-card__icon svg {
  stroke: var(--white);
  stroke-width: 2;
}

/* Industry icons */
.ind span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ind span svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber);
  stroke-width: 1.75;
  transition: stroke 0.25s;
}
.ind:hover span svg { stroke: var(--amber-light); }

/* Pillar icons */
.pillar__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}
.pillar__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
  stroke-width: 1.75;
}

/* Why PR matters card icons */
.matter-card__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.matter-card__stat svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  stroke-width: 1.25;
}

/* MP arrow icons */
.mp__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mp__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 2;
}

/* Social icons */
.social-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.75;
}

/* Logo images */
.nav__logo-img {
  height: 112px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer__logo-img {
  height: 158px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1.25rem;
}
