/* ==========================================================================
   Page sections
   Built incrementally by phase. Footer ships in Phase 1 since it's shared
   chrome; hero, services grid, service-area, etc. are added in Phase 2+.
   ========================================================================== */

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

.site-footer {
  padding-block: var(--space-6) var(--space-4);
}

.site-footer__cta {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.site-footer__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(63, 168, 76, 0.16);
  color: var(--pcs-green-light);
  margin-bottom: var(--space-2);
}

.site-footer__cta-icon svg {
  width: 26px;
  height: 26px;
}

.site-footer__cta h2 {
  margin-bottom: var(--space-3);
}

.site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-block: var(--space-6);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.site-footer__col h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
  color: var(--pcs-white);
}

.site-footer__col ul li {
  margin-bottom: var(--space-1);
  color: var(--pcs-gray-300);
}

.site-footer__col ul li a:hover {
  /* Original brand orange kept here on purpose: this is orange text on a
     near-black background (7.1:1), not white text on orange, so it
     doesn't need the accessible variant used for buttons/focus. */
  color: var(--pcs-orange);
}

.site-footer__social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pcs-gray-300);
  transition: background-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard);
}

.site-footer__social a svg {
  width: 18px;
  height: 18px;
}

.site-footer__social a:hover {
  background: var(--color-primary);
  color: var(--pcs-white);
}

.site-footer__logo {
  margin-bottom: var(--space-2);
}

.site-footer__col p {
  color: var(--pcs-gray-300);
  max-width: 32ch;
}

.site-footer__bottom {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--pcs-gray-300);
}

@media (max-width: 720px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    text-align: center;
  }

  .site-footer__col p {
    margin-inline: auto;
  }
}

/* ---- Hero -------------------------------------------------------------
   Full-bleed photo hero with a dark gradient overlay so white headline
   text stays legible over any part of the truck photo.
   ------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--pcs-white);
  overflow: hidden;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__bg {
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.hero__overlay {
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.72) 38%,
    rgba(10, 10, 10, 0.35) 68%,
    rgba(10, 10, 10, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-block: var(--space-6);
}

.hero__eyebrow {
  display: inline-block;
  color: var(--pcs-white);
  background: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}

.hero h1 {
  color: var(--pcs-white);
  margin-bottom: var(--space-3);
}

.hero h1 .hero__accent {
  color: var(--pcs-green-light);
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--pcs-gray-100);
  max-width: 52ch;
  margin-bottom: var(--space-4);
  line-height: var(--lh-loose);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero__actions .btn {
  font-size: 1.05rem;
  padding-inline: 2rem;
}

@media (max-width: 720px) {
  .hero {
    min-height: 560px;
    align-items: flex-end;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.82) 55%,
      rgba(10, 10, 10, 0.92) 100%
    );
  }

  .hero__content {
    max-width: 100%;
    padding-block: var(--space-5) var(--space-5);
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.08;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--space-3);
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }
}

/* ---- Trust badges — premium strip flush against the Hero ------------- */

.trust-badges-strip {
  background: var(--pcs-black);
  padding-block: 1.1rem;
}

.trust-badges__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
}

.trust-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.7rem;
  position: relative;
  padding-inline: var(--space-2);
}

.trust-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(-1 * var(--space-4) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
}

.trust-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(63, 168, 76, 0.2);
  color: var(--pcs-green-light);
  flex-shrink: 0;
}

.trust-badge__icon svg {
  width: 30px;
  height: 30px;
}

.trust-badge__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pcs-white);
  text-align: left;
  line-height: 1.25;
  max-width: 15ch;
}

@media (max-width: 860px) {
  .trust-badges__grid {
    gap: var(--space-3) var(--space-3);
  }

  .trust-badge__icon {
    width: 52px;
    height: 52px;
  }

  .trust-badge__icon svg {
    width: 26px;
    height: 26px;
  }

  .trust-badge__label {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .trust-badges-strip {
    padding-block: var(--space-3);
  }

  .trust-badges__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-2);
  }

  .trust-badge {
    flex: 1 1 calc(50% - var(--space-2));
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.5rem;
    padding-inline: 0;
  }

  .trust-badge__icon {
    width: 44px;
    height: 44px;
  }

  .trust-badge__icon svg {
    width: 22px;
    height: 22px;
  }

  .trust-badge__label {
    font-size: 0.8rem;
    line-height: 1.2;
    max-width: 12ch;
  }

  .trust-badge:not(:last-child)::after {
    display: none;
  }
}

/* ---- Services grid --------------------------------------------------- */

.services__header {
  max-width: 640px;
  margin-bottom: var(--space-4);
}

.services__header p {
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--pcs-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard),
              border-color var(--duration-normal) var(--ease-standard);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--pcs-white);
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
  flex-grow: 1;
  margin-bottom: var(--space-1);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--color-primary);
  border-bottom: 2px solid transparent;
  align-self: flex-start;
  transition: border-color var(--duration-fast) var(--ease-standard);
}

.service-card__link:hover {
  border-color: var(--color-primary);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.service-card__link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1300px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}

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

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Service area ----------------------------------------------------- */

.service-area {
  text-align: center;
}

.service-area__inner {
  max-width: 720px;
  margin-inline: auto;
}

.service-area__title {
  font-size: var(--fs-h2);
  color: var(--pcs-green-light);
  margin-bottom: var(--space-3);
}

.service-area p {
  color: var(--pcs-gray-300);
  margin-inline: auto;
  margin-bottom: var(--space-4);
}

/* ---- How it works ------------------------------------------------------ */

.steps__header {
  max-width: 640px;
  margin-bottom: var(--space-4);
}

.steps__header p {
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.step {
  text-align: left;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--pcs-white);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--pcs-white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.step p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-inline: 0;
}

@media (max-width: 780px) {
  .steps__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

/* Tighter section padding specifically for How It Works, per the compact
   WOW reference layout (overrides the default .section padding-block). */
.steps-section {
  padding-block: var(--space-5);
}

/* ---- Why choose us ------------------------------------------------------ */

.why-choose__header {
  max-width: 640px;
  margin-bottom: var(--space-5);
}

.why-choose__header p {
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.why-choose-card {
  padding: var(--space-4);
  background: var(--pcs-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
}

.why-choose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-choose-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(11, 110, 18, 0.08);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.why-choose-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-choose-card h3 {
  margin-bottom: var(--space-1);
  font-size: 1.15rem;
}

.why-choose-card p {
  color: var(--color-text-muted);
}

@media (max-width: 780px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Testimonials placeholder -------------------------------------------- */

.testimonials {
  text-align: center;
}

.testimonials__header {
  margin-bottom: var(--space-5);
}

.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.testimonials__stars,
.testimonial-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5a623;
}

.testimonials__stars svg,
.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.testimonial-card {
  text-align: left;
  padding: var(--space-4);
  background: var(--pcs-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.testimonial-card__stars {
  margin-bottom: var(--space-2);
}

.testimonial-card__quote {
  color: var(--pcs-near-black);
  margin-bottom: var(--space-2);
  line-height: var(--lh-loose);
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

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

@media (max-width: 560px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- FAQ (home summary) -------------------------------------------------- */

.faq__header {
  max-width: 640px;
  margin-bottom: var(--space-4);
}

.faq__header p {
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.faq__list {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: var(--space-3);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--pcs-near-black);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--color-text-muted);
  padding-bottom: var(--space-3);
  max-width: 70ch;
}

@media (max-width: 640px) {
  .faq-item summary {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Service detail pages + hub + contact page (Phase 4)
   ========================================================================== */

/* ---- Breadcrumb ---------------------------------------------------- */

.breadcrumb {
  padding-block: var(--space-3);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb__current {
  color: var(--pcs-near-black);
  font-weight: 500;
}

.breadcrumb__sep {
  margin-inline: 0.4rem;
  color: var(--pcs-gray-300);
}

/* ---- Service hero (real photography, Phase: photo integration) -------- */

.service-hero {
  position: relative;
  color: var(--pcs-white);
  text-align: center;
  padding-block: var(--space-7);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.service-hero__bg,
.service-hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.service-hero__bg {
  z-index: 0;
}

.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero__overlay {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.78) 100%
  );
}

.service-hero__content {
  position: relative;
  z-index: 2;
}

.service-hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--pcs-white);
  margin-inline: auto;
  margin-bottom: var(--space-3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.service-hero__icon svg {
  width: 38px;
  height: 38px;
}

.service-hero h1 {
  color: var(--pcs-white);
  margin-bottom: var(--space-2);
}

.service-hero__intro {
  max-width: 640px;
  margin-inline: auto;
  color: var(--pcs-gray-100);
}

@media (max-width: 560px) {
  .service-hero {
    min-height: 320px;
    padding-block: var(--space-6);
  }
}

/* ---- Secondary service photo (optional, only when a 2nd real photo exists) */

.service-secondary-photo {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 720px;
}

.service-secondary-photo img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* ---- What's Included ------------------------------------------------- */

.included-list {
  max-width: 680px;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.included-list li:last-child {
  border-bottom: none;
}

.included-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  margin-top: 0.15rem;
}

/* ---- Service page CTA block ------------------------------------------- */

.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

/* ---- Contact page (minimal) -------------------------------------------- */

.contact-page {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.contact-page__intro {
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  text-align: left;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11, 110, 18, 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 26px;
  height: 26px;
}

.contact-card__label {
  display: block;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.contact-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-primary);
}

.contact-card__badge--secondary {
  color: var(--pcs-gray-600);
}

.contact-card__value {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--pcs-near-black);
  word-break: break-word;
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ---- Page hero (text-only pages: About, Service Areas, FAQ) ----------- */

.page-hero {
  background: var(--pcs-black);
  color: var(--pcs-white);
  text-align: center;
  padding-block: var(--space-6);
}

.page-hero h1 {
  color: var(--pcs-white);
  margin-bottom: var(--space-2);
}

.page-hero__intro {
  max-width: 680px;
  margin-inline: auto;
  color: var(--pcs-gray-300);
}

/* Optional 2-column variant of the card grid (used on About for 4 points) */
.why-choose__grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 780px) {
  .why-choose__grid--cols-2 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Service Area — full-width photo section (Phase 9: real photography)
   ========================================================================== */

.service-area-photo {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: var(--pcs-white);
  overflow: hidden;
}

.service-area-photo__bg,
.service-area-photo__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.service-area-photo__bg {
  z-index: 0;
}

.service-area-photo__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 60%;
}

.service-area-photo__overlay {
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(5, 20, 6, 0.88) 0%,
    rgba(5, 20, 6, 0.72) 42%,
    rgba(5, 20, 6, 0.30) 75%,
    rgba(5, 20, 6, 0.12) 100%
  );
}

.service-area-photo__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  padding-block: var(--space-7);
}

.service-area-photo__content {
  max-width: 560px;
}

.service-area-photo__title {
  color: var(--pcs-white);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-3);
}

.service-area-photo__desc {
  color: var(--pcs-gray-100);
  margin-bottom: var(--space-4);
  line-height: var(--lh-loose);
}

@media (max-width: 900px) {
  .service-area-photo__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-block: var(--space-6);
  }

  .service-area-photo__overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 20, 6, 0.55) 0%,
      rgba(5, 20, 6, 0.85) 60%,
      rgba(5, 20, 6, 0.94) 100%
    );
  }
}

@media (max-width: 560px) {
  .service-area-photo {
    min-height: 260px;
  }

  .service-area-photo__bg img {
    object-position: 100% 55%;
  }

  .service-area-photo__title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Service cards with photos (Phase 9: real photography)
   Applied only to cards that have a confirmed photo; cards without one
   (container-sales, new-house-cleanup) keep the original icon-only layout.
   ========================================================================== */

.service-card--photo {
  padding-top: 0;
  padding-inline: 0;
  overflow: hidden;
}

.service-card--photo .service-card__icon,
.service-card--photo h3,
.service-card--photo p,
.service-card--photo .service-card__link {
  margin-inline: var(--space-2);
}

.service-card--photo .service-card__link {
  margin-bottom: var(--space-2);
}

.service-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--pcs-gray-100);
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration-normal) var(--ease-standard);
}

.service-card--photo:hover .service-card__photo img {
  transform: scale(1.04);
}

.service-card--photo .service-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-top: -17px;
  margin-bottom: var(--space-1);
  border: 2px solid var(--pcs-white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.service-card--photo .service-card__icon svg {
  width: 16px;
  height: 16px;
}

/* ---- About page team photo -------------------------------------------- */

.about-team-photo {
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-team-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Contact page social links (light background variant) ------------- */

.contact-social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pcs-gray-100);
  color: var(--color-primary);
  transition: background-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard);
}

.contact-social a svg {
  width: 20px;
  height: 20px;
}

.contact-social a:hover {
  background: var(--color-primary);
  color: var(--pcs-white);
}
