/* The Paper Clay — banner depth and reference-led footer composition */
:root {
  --pc-depth-red: #b73643;
  --pc-depth-red-deep: #932833;
}

/*
 * Heading accents requested for the three warm family-focused sections.
 * This reuses the banner's "beautifully" coral without changing the banner.
 */
.pc-why__eyebrow,
.pc-why__copy h2 em,
.pc-reviews__eyebrow,
.pc-reviews__header h2 em {
  color: var(--pc-hero-coral);
}

/* Footer invite: black eyebrow, banner-coral lead, black ending. */
.pc-complete-footer__eyebrow {
  color: var(--pc-hero-ink);
}

.pc-complete-footer__invite-copy h2 {
  color: var(--pc-hero-coral);
}

.pc-complete-footer__invite-copy h2 em {
  color: var(--pc-hero-ink);
}

/* A tactile dark-red clay shadow beneath the main banner action. */
.pc-hero__primary {
  box-shadow:
    0 8px 0 var(--pc-depth-red),
    0 16px 28px rgba(147, 40, 51, .24);
}

.pc-hero__primary:hover {
  box-shadow:
    0 10px 0 var(--pc-depth-red-deep),
    0 20px 34px rgba(147, 40, 51, .28);
}

/* The banner hands off to the next section with the same dark-red depth tone. */
.pc-hero {
  border-bottom: clamp(7px, .65vw, 11px) solid var(--pc-depth-red);
}

/* Reference-led desktop footer: logo | centre cards | vertical utility rail. */
.pc-complete-footer.mxd-footer {
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pc-complete-footer__container {
  padding-right: 0;
  padding-left: 0;
}

.pc-complete-footer__locations {
  min-width: 0;
}

.pc-complete-footer__main {
  padding: 12px 0 24px;
}

.pc-complete-footer__top {
  grid-template-columns:
    minmax(230px, 280px)
    minmax(470px, 1fr)
    minmax(210px, 250px);
  align-items: center;
  gap: clamp(28px, 3vw, 52px);
}

.pc-complete-footer__brand {
  width: min(100%, 270px);
}

.pc-complete-footer__identity > p {
  display: none;
}

.pc-complete-footer__heading {
  margin-bottom: 14px;
}

.pc-complete-footer__heading > div > p {
  margin-bottom: 5px;
}

.pc-complete-footer__heading h2 {
  font-size: clamp(28px, 2.15vw, 36px);
}

.pc-complete-footer__location-card {
  min-height: 172px;
  grid-template-rows: 1fr auto auto;
  padding: clamp(17px, 1.35vw, 21px);
  border-radius: 24px 24px 24px 12px;
}

.pc-complete-footer__location-card--green {
  border-radius: 24px 24px 12px 24px;
}

.pc-complete-footer__location-card > a {
  width: 100%;
  justify-self: stretch;
}

.pc-complete-footer__card-detail {
  display: block;
  width: 100%;
  height: 3px;
  margin: 1px 0 0;
  background-image: radial-gradient(circle, rgba(242, 85, 91, .72) 1.5px, transparent 1.7px);
  background-position: left center;
  background-size: 9px 3px;
}

.pc-complete-footer__location-card--green .pc-complete-footer__card-detail {
  background-image: radial-gradient(circle, rgba(8, 117, 176, .62) 1.5px, transparent 1.7px);
}

.pc-complete-footer__utility {
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: 14px;
  margin: 0;
  padding: 3px 0 3px clamp(25px, 2.5vw, 40px);
  border-top: 0;
  border-left: 1px solid rgba(72, 41, 36, .34);
}

.pc-complete-footer__nav,
.pc-complete-footer__contact {
  display: grid;
  width: 100%;
  gap: 2px;
}

.pc-complete-footer__nav a {
  display: grid;
  min-height: 43px;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 3px 0;
  color: var(--pc-flow-ink);
  font-size: 15px;
  font-weight: 720;
}

.pc-complete-footer__nav a i {
  color: var(--pc-flow-blue-deep);
  font-size: 21px;
  filter: drop-shadow(0 3px 3px rgba(92, 45, 36, .16));
}

.pc-complete-footer__nav a:nth-child(2) i { color: #7d4aa8; }
.pc-complete-footer__nav a:nth-child(3) i { color: #3e8a58; }
.pc-complete-footer__nav a:nth-child(4) i { color: var(--pc-depth-red); }
.pc-complete-footer__nav a:nth-child(5) i { color: #0875b0; }

.pc-complete-footer__nav a::after {
  right: auto;
  bottom: 5px;
  left: 38px;
  width: calc(100% - 38px);
  background: var(--pc-depth-red);
}

.pc-complete-footer__contact {
  gap: 4px;
  padding-top: 13px;
  border-top: 2px dotted rgba(72, 41, 36, .3);
}

.pc-complete-footer__contact a {
  min-height: 44px;
  justify-content: flex-start;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pc-flow-ink);
  font-size: 15px;
}

.pc-complete-footer__contact a:hover {
  background: transparent;
  color: var(--pc-depth-red-deep);
  transform: translateX(3px);
}

.pc-complete-footer__contact i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  color: var(--pc-depth-red-deep);
  font-size: 19px;
  box-shadow: 0 4px 0 rgba(147, 40, 51, .15);
}

@media only screen and (max-width: 1199px) {
  .pc-complete-footer__top {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .pc-complete-footer__utility {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(72, 41, 36, .25);
    border-left: 0;
  }

  .pc-complete-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 20px;
  }

  .pc-complete-footer__contact {
    display: flex;
    width: auto;
    padding-top: 0;
    border-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .pc-hero {
    border-bottom-width: 7px;
  }

  .pc-hero__primary {
    box-shadow:
      0 7px 0 var(--pc-depth-red),
      0 14px 24px rgba(147, 40, 51, .22);
  }

  .pc-complete-footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pc-complete-footer__brand {
    width: min(62vw, 228px);
  }

  .pc-complete-footer__utility {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0 0;
  }

  .pc-complete-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 14px;
  }

  .pc-complete-footer__nav a {
    min-height: 48px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px;
    font-size: 14px;
  }

  .pc-complete-footer__nav a span {
    overflow-wrap: anywhere;
  }

  .pc-complete-footer__contact {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 14px;
    border-top: 2px dotted rgba(72, 41, 36, .3);
  }

  .pc-complete-footer__contact a {
    min-height: 50px;
    justify-content: flex-start;
    padding: 7px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .3);
  }

  .pc-complete-footer__base-inner p:first-child {
    max-width: 27ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-hero__primary,
  .pc-complete-footer__contact a {
    transition: none;
  }
}

/* Final footer colour and clay-detail pass. */
.pc-complete-footer__heading > div > p {
  color: #ffe9a8;
}

.pc-complete-footer__heading h2 {
  color: #fffaf0;
  text-shadow: 0 3px 0 rgba(147, 40, 51, .16);
}

/* Actual logo-style clay art replaces the generic glossy icon badges. */
.pc-complete-footer__pin,
.pc-complete-footer__location-card--green .pc-complete-footer__pin {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: rotate(-3deg);
}

.pc-complete-footer__location-card--green .pc-complete-footer__pin {
  transform: rotate(3deg);
}

.pc-complete-footer__pin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 4px rgba(91, 43, 38, .2));
}

/* Peach Directions pills echo the logo's chunky hand-shaped letters. */
.pc-complete-footer__location-card > a {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 47px;
  border: 3px solid #fff1d9;
  border-radius: 23px 19px 24px 18px / 19px 24px 18px 23px;
  background: #f57961;
  box-shadow:
    inset 3px 3px 0 rgba(255, 255, 255, .18),
    inset -3px -4px 0 rgba(185, 58, 64, .16),
    0 6px 0 #c8454e,
    0 10px 13px rgba(111, 45, 41, .16);
  color: #fffaf0;
  transform: translateY(-2px) rotate(-.35deg);
}

.pc-complete-footer__location-card--green > a {
  border-radius: 19px 24px 18px 23px / 24px 18px 23px 19px;
  transform: translateY(-2px) rotate(.35deg);
}

.pc-complete-footer__location-card > a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 13px;
  z-index: -1;
  width: 7px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 235, 219, .33);
  transform: rotate(-20deg);
}

.pc-complete-footer__location-card > a:hover {
  background: #fb8169;
  box-shadow:
    inset 3px 3px 0 rgba(255, 255, 255, .2),
    inset -3px -4px 0 rgba(185, 58, 64, .14),
    0 4px 0 #bc3d47,
    0 8px 11px rgba(111, 45, 41, .16);
  color: #fff;
  transform: translateY(0) rotate(0);
}

/* Light copy restores contrast and colour flow across the peach utility rail. */
.pc-complete-footer__utility {
  border-left-color: rgba(255, 250, 240, .42);
}

.pc-complete-footer__nav a,
.pc-complete-footer__contact a {
  color: #fffaf0;
  text-shadow: 0 1px 1px rgba(116, 36, 43, .16);
}

.pc-complete-footer__nav a:hover,
.pc-complete-footer__contact a:hover {
  color: #fff;
}

/* Standalone moulded-clay symbols: no generic square/circle containers. */
.pc-complete-footer__nav a {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
}

.pc-clay-link-icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  filter: drop-shadow(0 5px 4px rgba(91, 43, 38, .2));
  transform: rotate(-3deg) scale(.96);
  transition: transform .2s ease;
}

.pc-complete-footer__nav a:nth-child(even) .pc-clay-link-icon,
.pc-complete-footer__contact a:last-child .pc-clay-link-icon {
  transform: rotate(3deg) scale(.96);
}

.pc-complete-footer__nav a:hover .pc-clay-link-icon,
.pc-complete-footer__contact a:hover .pc-clay-link-icon {
  transform: translateY(-2px) rotate(0) scale(1.03);
}

.pc-complete-footer__nav a::after {
  left: 56px;
  width: calc(100% - 56px);
  background: #ffe9a8;
}

.pc-complete-footer__contact {
  border-top-color: rgba(255, 250, 240, .42);
}

.pc-complete-footer__contact a {
  gap: 9px;
}

/* The copyright line ends the page cleanly, centred and fully white. */
.pc-complete-footer__base {
  color: #fff;
}

.pc-complete-footer__base-inner {
  justify-content: center;
  text-align: center;
}

.pc-complete-footer__base p {
  width: 100%;
  color: #fff;
  font-weight: 650;
}

@media only screen and (max-width: 1199px) {
  .pc-complete-footer__utility {
    border-top-color: rgba(255, 250, 240, .42);
  }
}

@media only screen and (max-width: 767px) {
  .pc-complete-footer__nav a {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
  }

  .pc-clay-link-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .pc-complete-footer__contact {
    border-top-color: rgba(255, 250, 240, .42);
  }

  .pc-complete-footer__contact a {
    background: rgba(255, 255, 255, .13);
  }

  .pc-complete-footer__base-inner p:first-child {
    max-width: none;
  }
}
