/* BrandSquare shared website styles */
.home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 233, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.home-header nav {
  border-bottom: 0;
}
.home-header .brand {
  font-size: 24px;
}

.home-header .brand span {
  color: var(--orange);
}
.home-header .nav-links {
  gap: 28px;
}
.home-header .nav-links > a:not(.nav-cta):not(.call-button) {
  position: relative;
}
.home-header .nav-links > a:not(.nav-cta):not(.call-button):after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--orange);
  left: 0;
  right: 100%;
  bottom: -9px;
  transition: right 0.25s;
}
.home-header .nav-links > a:hover:after,
.home-header .nav-links > a.active:after {
  right: 0;
}
.call-button {
  border: 1px solid var(--ink);
  padding: 12px 18px;
  border-radius: 4px;
  transition: 0.2s;
}
.call-button:hover {
  background: var(--ink);
  color: #fff;
}
.home-header .nav-cta {
  display: flex;
  gap: 22px;
  align-items: center;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.home-header .nav-cta span {
  color: var(--mint);
}
.hero-art.hero-art-custom {
  background: #e8ebe5;
}
.hero-art-custom > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.website-footer {
  background: var(--ink);
  color: #fff;
  padding: 80px max(28px, calc((100vw - 1184px) / 2)) 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.6fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 65px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}
.footer-logo i {
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff66;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 15px Manrope;
  font-style: normal;
  color: var(--mint);
}
.footer-logo > span {
  font: 700 23px Manrope;
}
.footer-logo strong {
  color: var(--mint);
}
.footer-about > p {
  color: #aeb9b5;
  max-width: 390px;
  font-size: 13px;
  line-height: 1.75;
  margin: 25px 0;
}
.footer-callout {
  display: flex;
  width: max-content;
  gap: 35px;
  border-bottom: 1px solid var(--mint);
  padding-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
}
.footer-callout span {
  color: var(--mint);
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-column h3 {
  font: 600 12px Manrope;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mint);
  margin: 4px 0 12px;
}
.footer-column > a {
  font-size: 11px;
  color: #cbd3d0;
  transition: 0.2s;
}
.footer-column > a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-contact > a,
.footer-contact > p {
  display: grid !important;
  gap: 5px;
  line-height: 1.5;
  margin: 0;
}
.footer-contact span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #778b84;
}
.footer-contact > p {
  font-size: 11px;
  color: #cbd3d0;
}
.footer-bottom {
  border-top: 1px solid #ffffff1f;
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #778b84;
}
.footer-bottom > span:last-child {
  text-align: right;
}
.social-links {
  display: flex;
  gap: 24px;
}
.social-links a {
  color: #cbd3d0;
}
.social-links a:hover {
  color: var(--mint);
}
@media (max-width: 900px) {
  .home-header .nav-links > a:not(.nav-cta):not(.call-button) {
    display: none;
  }
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 45px;
  }
  .footer-about {
    grid-column: 1/-1;
  }
  .footer-about > p {
    max-width: 580px;
  }
  .footer-main > .footer-column:nth-child(2) {
    display: none;
  }
  .footer-bottom {
    grid-template-columns: 1fr auto;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
}
@media (max-width: 600px) {
  .home-header nav {
    padding: 0 18px;
  }
  .home-header .brand {
    font-size: 24px;
  }
  .home-header .nav-links {
    gap: 8px;
  }
  .call-button {
    padding: 10px 12px;
    font-size: 10px;
  }
  .home-header .nav-cta {
    padding: 11px 12px;
    font-size: 10px;
  }
  .home-header .nav-cta span {
    display: none;
  }
  .website-footer {
    padding-top: 60px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }
  .footer-about {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    padding: 25px 0;
    align-items: flex-start;
  }
  .social-links {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 390px) {
  .call-button {
    display: none;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-column {
    border-top: 1px solid #ffffff1f;
    padding-top: 25px;
  }
}

/* Increased footer typography for easier reading */
.footer-about > p {
  font-size: 17px;
}
.footer-callout {
  font-size: 15px;
}
.footer-column h3 {
  font-size: 16px;
}
.footer-column > a {
  font-size: 15px;
}
.footer-contact span {
  font-size: 12px;
}
.footer-contact > p {
  font-size: 15px;
}
.footer-bottom {
  font-size: 12px;
}

/* Larger desktop navigation and accessible mobile menu */
.home-header .nav-links {
  font-size: 15px;
}
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 0.25s,
    opacity 0.2s;
}
.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
  .home-header nav {
    position: relative;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .home-header .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px #14252222;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    font-size: 15px;
  }
  .home-header .nav-links.is-open {
    display: flex;
  }
  .home-header .nav-links > a,
  .home-header .nav-links > a:not(.nav-cta):not(.call-button) {
    display: block;
    padding: 14px 15px;
    text-align: left;
  }
  .home-header .nav-links > a:not(.nav-cta):not(.call-button):after {
    display: none;
  }
  .home-header .nav-links > a.active {
    background: #e9e8df;
  }
  .home-header .nav-links .call-button {
    text-align: center;
  }
  .home-header .nav-links .nav-cta {
    display: flex;
    justify-content: space-between;
    padding: 15px 18px;
  }
  .home-header .nav-cta span {
    display: inline;
  }
}
@media (min-width: 901px) {
  .home-header .nav-links {
    display: flex !important;
  }
}

/* Navigation enquiry modal */
body.modal-open {
  overflow: hidden;
}
.enquiry-modal[hidden] {
  display: none;
}
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.enquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 37, 34, 0.72);
  backdrop-filter: blur(5px);
}
.enquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 42px;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(7, 20, 17, 0.35);
}
.enquiry-dialog > h2 {
  margin: 14px 0 10px;
  font: 700 35px/1.08 Manrope;
  letter-spacing: -1.5px;
}
.enquiry-dialog > p {
  margin: 0 45px 24px 0;
  color: #65716e;
  font-size: 14px;
  line-height: 1.6;
}
.enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.enquiry-close:hover {
  background: var(--ink);
  color: #fff;
}
.enquiry-form {
  padding: 25px;
  gap: 15px;
  box-shadow: none;
}
.enquiry-form label {
  font-size: 13px;
}
.enquiry-form input {
  width: 100%;
  padding: 14px;
}
.enquiry-form button[type="submit"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
@media (max-width: 540px) {
  .enquiry-modal {
    align-items: end;
    padding: 0;
  }
  .enquiry-dialog {
    width: 100%;
    max-height: 92vh;
    padding: 34px 20px 20px;
    border-radius: 14px 14px 0 0;
  }
  .enquiry-dialog > h2 {
    padding-right: 42px;
    font-size: 29px;
  }
  .enquiry-dialog > p {
    margin-right: 0;
  }
  .enquiry-form {
    padding: 20px;
  }
}

/* Expanded selected work */
.work-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-grid .project {
  height: 330px;
  min-width: 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.work-grid .project:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px #14252220;
}
.work-grid .project-wide {
  grid-column: span 2;
}
.work-grid .p3 {
  grid-column: auto;
}
.work-grid .project-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.work-grid .project-mark small {
  display: block;
  width: 100%;
  margin-top: 7px;
  font: 600 7px DM Sans;
  letter-spacing: 2px;
}
.work-grid .project-logo {
  width: min(68%, 420px);
  height: min(58%, 180px);
}
.work-grid .project-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.work-grid .project footer {
  align-items: flex-end;
  gap: 18px;
}
.work-grid .project footer b {
  max-width: 48%;
  font-size: 14px;
}
.work-grid .project footer span {
  max-width: 52%;
  text-align: right;
}
.work-grid .project footer span i {
  font-style: normal;
}
.p4 {
  background: #e9c8b7;
}
.p5 {
  background: #772f27;
  color: #fff;
}
.p6 {
  background: #d8d5ca;
}
.p7 {
  background: #171918;
  color: #fff;
}
.p8 {
  background: #aec7cb;
}
.p9 {
  background: #dceef0;
  color: #185861;
}
.p10 {
  background: #5346c7;
  color: #fff;
}
.p11 {
  background: #e69a75;
}
.p12 {
  background: #b8c69d;
}
.luma-mark {
  font: 600 35px Manrope;
  letter-spacing: 5px;
}
.luma-mark > span {
  color: var(--orange);
  margin-right: 10px;
}
.ember-mark {
  font: 500 38px Georgia;
  letter-spacing: 4px;
}
.north-mark {
  gap: 22px;
}
.north-mark > i {
  width: 72px;
  height: 72px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font: normal 700 34px Manrope;
}
.north-mark > span {
  display: grid;
  text-align: left;
  font: 700 31px Manrope;
}
.north-mark small {
  text-align: left;
}
.circa-mark {
  display: grid !important;
  font: 600 37px Manrope;
  letter-spacing: 6px;
}
.circa-mark i {
  color: var(--orange);
  font-style: normal;
  font-size: 45px;
  line-height: 0.7;
}
.plinth-mark {
  font: 700 36px Manrope;
  letter-spacing: 5px;
}
.plinth-mark span {
  color: #fff;
}
.bloom-mark {
  display: grid !important;
  font: 700 32px Manrope;
  letter-spacing: 3px;
}
.bloom-mark i {
  color: var(--orange);
  font-style: normal;
  font-size: 34px;
}
.morrow-mark {
  font: 700 34px Manrope;
  letter-spacing: 3px;
  gap: 10px;
}
.morrow-mark span {
  color: var(--mint);
}
.sunday-mark {
  font: 700 50px Manrope;
  letter-spacing: -3px;
}
.sunday-mark em {
  font: italic 32px Georgia;
  color: #fff;
  margin-left: 10px;
}
.field-mark {
  font: 600 34px/0.9 Georgia;
}
.field-mark span {
  width: 100%;
  color: #fff;
  font-size: 35px;
  margin-bottom: 10px;
}
@media (max-width: 850px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid .project-wide {
    grid-column: span 2;
  }
}
@media (max-width: 540px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-grid .project,
  .work-grid .project-wide {
    grid-column: auto;
    height: 310px;
  }
  .north-mark {
    gap: 12px;
  }
  .north-mark > span {
    font-size: 25px;
  }
}

/* Industries */
.industries {
  padding: 115px max(28px, calc((100vw - 1184px) / 2));
  background: #e8e4d9;
}
.industries-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}
.industries-head h2 {
  font: 700 clamp(40px, 5vw, 66px) / 1.05 Manrope;
  letter-spacing: -3px;
  margin: 18px 0 0;
}
.industries-head > div:last-child {
  padding-bottom: 6px;
}
.industries-head p {
  color: #65716e;
  line-height: 1.7;
  margin: 0 0 24px;
}
.industries-head a {
  display: inline-flex;
  gap: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.industries-head a span {
  color: var(--orange);
}
.industries-head .industries-all-button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 14px;
  transition:
    color 0.2s,
    background 0.2s;
}
.industries-head .industries-all-button:hover {
  color: #fff;
  background: var(--ink);
}
.industries-head .industries-all-button:hover span {
  color: var(--mint);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.industry-card {
  min-height: 390px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid #14252222;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px #14252220;
}
.industry-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.industry-top i {
  font-style: normal;
  font-size: 18px;
  transition: transform 0.3s;
}
.industry-card:hover .industry-top i {
  transform: translate(3px, -3px);
}
.industry-card h3 {
  font: 700 27px/1.08 Manrope;
  letter-spacing: -1px;
  margin: 0 0 13px;
}
.industry-card p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  max-width: 310px;
  opacity: 0.72;
}
.real-estate {
  background: #294b43;
  color: #fff;
}
.doctors {
  background: #dceaf0;
}
.restaurants {
  background: #ff7654;
}
.technology {
  background: #b9d9ff;
}
.wellness {
  background: #d8ee88;
}
.ecommerce {
  background: #f5efe4;
}
.industry-icon {
  width: 115px;
  height: 115px;
  margin: auto;
  position: relative;
}
.building-icon {
  border: 2px solid var(--mint);
  border-top-width: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 13px;
}
.building-icon b {
  border: 1px solid var(--mint);
  box-shadow:
    0 23px 0 -1px transparent,
    0 23px 0 0 var(--mint),
    0 46px 0 -1px transparent,
    0 46px 0 0 var(--mint);
}
.cross-icon {
  border: 2px solid var(--blue, #246ba1);
  border-radius: 50%;
}
.cross-icon b::before,
.cross-icon b::after {
  content: "";
  position: absolute;
  background: #246ba1;
  border-radius: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cross-icon b::before {
  width: 54px;
  height: 16px;
}
.cross-icon b::after {
  width: 16px;
  height: 54px;
}
.plate-icon b {
  position: absolute;
  inset: 8px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px #ff9b7f;
}
.plate-icon i {
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--ink);
  right: -12px;
}
.orbit-icon {
  border: 2px solid var(--blue, #3155ed);
  border-radius: 50%;
  transform: rotate(-20deg) scaleY(0.55);
}
.orbit-icon b {
  position: absolute;
  width: 38px;
  height: 38px;
  background: #3155ed;
  border-radius: 50%;
  left: 36px;
  top: 36px;
}
.orbit-icon i {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  right: -4px;
  top: 22px;
}
.petal-icon {
  transform: rotate(45deg);
}
.petal-icon b {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #4c6f55;
  border-radius: 50% 4px 50% 4px;
}
.petal-icon b:nth-child(2) {
  right: 0;
  transform: rotate(90deg);
}
.petal-icon b:nth-child(3) {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.petal-icon b:nth-child(4) {
  bottom: 0;
  transform: rotate(270deg);
}
.bag-icon {
  border: 3px solid var(--ink);
  border-radius: 5px 5px 18px 18px;
  height: 95px;
  margin-top: auto;
  margin-bottom: auto;
}
.bag-icon b {
  position: absolute;
  width: 48px;
  height: 35px;
  border: 3px solid var(--orange);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  left: 30px;
  top: -25px;
}
@media (max-width: 850px) {
  .industries-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .industries {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    min-height: 350px;
  }
}

/* Homepage Logo Redesign Scorecard feature */
.home-scorecard {
  min-height: 720px;
  padding: 115px max(28px, calc((100vw - 1184px) / 2));
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 80px;
  align-items: center;
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.home-scorecard::before {
  content: "SCORE";
  position: absolute;
  left: -28px;
  bottom: -55px;
  color: transparent;
  font: 800 clamp(130px, 20vw, 300px) / 0.8 Manrope;
  letter-spacing: -18px;
  -webkit-text-stroke: 1px #ffffff0a;
  pointer-events: none;
}
.home-scorecard-glow {
  width: 540px;
  height: 540px;
  position: absolute;
  top: -250px;
  left: 37%;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.1;
}
.home-scorecard-copy,
.home-scorecard-stage {
  position: relative;
  z-index: 2;
}
.home-scorecard-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.home-scorecard-eyebrow i {
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.home-scorecard-copy h2 {
  max-width: 650px;
  margin: 24px 0 25px;
  font: 800 clamp(48px, 5.5vw, 72px) / 0.98 Manrope;
  letter-spacing: -4px;
}
.home-scorecard-copy h2 em {
  display: block;
  color: var(--mint);
  font-style: normal;
}
.home-scorecard-copy p {
  max-width: 610px;
  margin: 0;
  color: #bac6c2;
  font-size: 15px;
  line-height: 1.75;
}
.home-scorecard-points {
  margin: 34px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.home-scorecard-points span {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #ffffff1c;
  background: #ffffff08;
  color: #aab8b3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.home-scorecard-points b {
  color: var(--orange);
  font: 800 19px/1 Manrope;
}
.home-scorecard-action {
  display: flex;
  align-items: center;
  gap: 25px;
}
.home-scorecard-action a {
  width: max-content;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  gap: 60px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 35px #00000026;
  transition:
    transform 0.25s,
    background 0.25s;
}
.home-scorecard-action a:hover {
  background: #fff;
  transform: translateY(-3px);
}
.home-scorecard-action a b {
  color: var(--orange);
  font-size: 17px;
}
.home-scorecard-action > small {
  color: #91a09b;
  font-size: 10px;
  line-height: 1.9;
}
.home-scorecard-action > small i {
  margin-right: 5px;
  color: var(--mint);
  font-style: normal;
}
.home-scorecard-stage {
  min-height: 530px;
  display: grid;
  place-items: center;
}
.home-scorecard-ring {
  width: 450px;
  height: 450px;
  position: absolute;
  border: 1px solid #caff621f;
  border-radius: 50%;
  box-shadow:
    0 0 0 45px #caff6208,
    0 0 0 90px #caff6205;
}
.home-scorecard-ring::before,
.home-scorecard-ring::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 50%;
}
.home-scorecard-ring::before {
  width: 12px;
  height: 12px;
  top: 39px;
  right: 60px;
}
.home-scorecard-ring::after {
  width: 7px;
  height: 7px;
  left: 22px;
  bottom: 130px;
}
.home-scorecard-visual {
  width: min(405px, calc(100% - 30px));
  min-height: 485px;
  padding: 29px;
  position: relative;
  z-index: 2;
  color: var(--ink);
  background: #f4f1e9;
  box-shadow:
    19px 19px 0 var(--orange),
    0 28px 70px #00000040;
  transform: rotate(1.8deg);
  transition: transform 0.35s ease;
}
.home-scorecard-stage:hover .home-scorecard-visual {
  transform: rotate(0.4deg) translateY(-5px);
}
.home-scorecard-visual > header {
  padding-bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #14252224;
}
.home-scorecard-visual > header span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.home-scorecard-visual > header b {
  padding: 5px 8px;
  color: #fff;
  background: var(--ink);
  font-size: 7px;
  letter-spacing: 1px;
}
.home-scorecard-question {
  padding: 28px 0 21px;
}
.home-scorecard-question small,
.home-scorecard-question strong {
  display: block;
}
.home-scorecard-question small {
  color: #79847f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
}
.home-scorecard-question strong {
  max-width: 310px;
  margin-top: 9px;
  font: 800 25px/1.08 Manrope;
  letter-spacing: -1.3px;
}
.home-scorecard-row {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #14252222;
}
.home-scorecard-row > span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  font-weight: 700;
}
.home-scorecard-row > span i {
  color: var(--orange);
  font-size: 7px;
  font-style: normal;
}
.home-scorecard-row > em {
  display: flex;
  gap: 4px;
  font-style: normal;
}
.home-scorecard-row > em b {
  width: 13px;
  height: 13px;
  border: 1px solid #9ca7a2;
  border-radius: 50%;
}
.home-scorecard-row > em b:nth-child(-n + 3) {
  border-color: var(--orange);
  background: var(--orange);
}
.home-scorecard-visual > footer {
  margin-top: 25px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--ink);
}
.home-scorecard-visual > footer > span {
  color: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.home-scorecard-visual > footer strong {
  font: 800 28px/1 Manrope;
}
.home-scorecard-visual > footer small {
  color: #9daca7;
  font-size: 9px;
}
.home-scorecard-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 15px 38px #00000038;
}
.home-scorecard-float-top {
  top: 25px;
  right: -25px;
  padding: 13px 17px 13px 11px;
  gap: 11px;
}
.home-scorecard-float-top > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-style: normal;
}
.home-scorecard-float span,
.home-scorecard-float small,
.home-scorecard-float strong {
  display: block;
}
.home-scorecard-float-top small {
  color: #87928e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.home-scorecard-float-top b {
  font: 800 9px/1.45 Manrope;
}
.home-scorecard-float-bottom {
  left: -32px;
  bottom: 40px;
  padding: 14px 18px;
  gap: 12px;
  background: var(--mint);
}
.home-scorecard-float-bottom > b {
  font: 800 31px/1 Manrope;
}
.home-scorecard-float-bottom strong {
  font-size: 8px;
  letter-spacing: 0.8px;
}
.home-scorecard-float-bottom small {
  margin-top: 3px;
  font-size: 7px;
}
@media (max-width: 850px) {
  .home-scorecard {
    grid-template-columns: 1fr;
    gap: 75px;
  }
  .home-scorecard-stage {
    width: min(570px, 100%);
    justify-self: center;
  }
}
@media (max-width: 540px) {
  .home-scorecard {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .home-scorecard-copy h2 {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .home-scorecard-points {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-scorecard-action {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-scorecard-stage {
    min-height: 475px;
  }
  .home-scorecard-ring {
    width: 340px;
    height: 340px;
  }
  .home-scorecard-visual {
    min-height: 445px;
    padding: 21px;
    box-shadow:
      11px 11px 0 var(--orange),
      0 24px 55px #0000003b;
  }
  .home-scorecard-question strong {
    font-size: 21px;
  }
  .home-scorecard-float-top {
    top: -8px;
    right: -5px;
  }
  .home-scorecard-float-bottom {
    left: -5px;
    bottom: 8px;
  }
}

/* Homepage redesign outcome guide */
.home-outcomes {
  padding: 110px max(28px, calc((100vw - 1184px) / 2));
  background: #f4f1e9;
  border-bottom: 1px solid #1425221a;
}
.home-outcomes-head {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 90px;
  align-items: end;
}
.home-outcomes-head h2 {
  max-width: 720px;
  margin: 18px 0 0;
  font: 800 clamp(40px, 5vw, 64px) / 1.04 Manrope;
  letter-spacing: -3px;
}
.home-outcomes-head > p {
  margin: 0 0 6px;
  color: #64716c;
  font-size: 15px;
  line-height: 1.75;
}
.home-outcomes-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.home-outcome {
  min-height: 390px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #1425221c;
  background: #fffdf8;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.home-outcome::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: -90px;
  bottom: -95px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.11;
  box-shadow:
    0 0 0 24px currentColor,
    0 0 0 25px #fffdf8,
    0 0 0 48px currentColor;
}
.home-outcome:hover {
  z-index: 2;
  border-color: #1425223b;
  box-shadow: 0 22px 50px #14252217;
  transform: translateY(-7px);
}
.home-outcome header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f7b76;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.home-outcome header b {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 8px;
}
.outcome-retain header b {
  background: #dff6a6;
}
.outcome-refresh header b {
  background: #ffe3a0;
}
.outcome-redesign header b {
  color: #fff;
  background: var(--orange);
}
.outcome-rebuild header b {
  color: #fff;
  background: #623747;
}
.outcome-symbol {
  width: 95px;
  height: 95px;
  margin: 38px 0 36px;
  position: relative;
}
.outcome-symbol i,
.outcome-symbol b {
  position: absolute;
  display: block;
}
.outcome-retain .outcome-symbol {
  border: 2px solid #4f795c;
  border-radius: 50%;
}
.outcome-retain .outcome-symbol i {
  width: 46px;
  height: 46px;
  top: 23px;
  left: 23px;
  border: 2px solid #4f795c;
  border-radius: 50%;
}
.outcome-retain .outcome-symbol b {
  width: 14px;
  height: 14px;
  top: 39px;
  left: 39px;
  background: #4f795c;
  border-radius: 50%;
}
.outcome-refresh .outcome-symbol i,
.outcome-refresh .outcome-symbol b {
  width: 58px;
  height: 58px;
  border: 2px solid #bd7a24;
  border-radius: 50%;
}
.outcome-refresh .outcome-symbol i {
  top: 0;
  left: 0;
}
.outcome-refresh .outcome-symbol b {
  right: 0;
  bottom: 0;
  background: #ffd77f;
}
.outcome-redesign .outcome-symbol {
  transform: rotate(12deg);
}
.outcome-redesign .outcome-symbol i {
  width: 74px;
  height: 74px;
  top: 10px;
  left: 10px;
  border: 3px solid var(--orange);
}
.outcome-redesign .outcome-symbol b {
  width: 42px;
  height: 42px;
  top: 26px;
  left: 26px;
  background: var(--orange);
  transform: rotate(45deg);
}
.outcome-rebuild .outcome-symbol i,
.outcome-rebuild .outcome-symbol b {
  width: 42px;
  height: 42px;
  background: #623747;
}
.outcome-rebuild .outcome-symbol i {
  top: 2px;
  left: 2px;
}
.outcome-rebuild .outcome-symbol b {
  right: 2px;
  bottom: 2px;
}
.home-outcome > small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.home-outcome h3 {
  margin: 10px 0 12px;
  font: 800 24px/1.15 Manrope;
  letter-spacing: -1px;
}
.home-outcome p {
  margin: 0;
  color: #66726e;
  font-size: 12px;
  line-height: 1.7;
}
.home-outcomes-cta {
  margin-top: 20px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid #1425221c;
  background: #e8e4d9;
}
.home-outcomes-cta > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #66726e;
  font-size: 12px;
}
.home-outcomes-cta > span i {
  width: 32px;
  height: 32px;
  margin-right: 4px;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: var(--ink);
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
}
.home-outcomes-cta > span b {
  color: var(--ink);
}
.home-outcomes-cta > a {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.home-outcomes-cta > a b {
  color: var(--orange);
  font-size: 15px;
}
@media (max-width: 960px) {
  .home-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .home-outcomes-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-outcomes-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .home-outcomes {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home-outcomes-grid {
    grid-template-columns: 1fr;
  }
  .home-outcome {
    min-height: 350px;
  }
}

/* Sticky WhatsApp contact */
.whatsapp-button {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px 8px 8px;
  color: #fff;
  background: #25d366;
  border: 1px solid #ffffff33;
  border-radius: 999px;
  box-shadow: 0 12px 30px #128c4b55;
  transition:
    transform 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.whatsapp-button:hover {
  color: #fff;
  background: #1fbd5a;
  transform: translateY(-4px);
  box-shadow: 0 17px 36px #128c4b66;
}
.whatsapp-button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}
.whatsapp-icon {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 50%;
}
.whatsapp-icon img {
  display: block;
  width: 26px;
  height: 26px;
  filter: invert(69%) sepia(67%) saturate(695%) hue-rotate(87deg)
    brightness(94%) contrast(91%);
}
.whatsapp-label {
  display: block;
  padding-right: 2px;
}
.whatsapp-label b {
  display: block;
  font: 700 13px/1.05 Manrope;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .whatsapp-button {
    right: 16px;
    bottom: 16px;
    padding: 7px 12px 7px 7px;
  }
  .whatsapp-icon {
    width: 39px;
    height: 39px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-button {
    transition: none;
  }
}

/* Homepage process reassurance */
.process-promise span {
  font-size: 14px;
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-message {
  min-height: 18px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}
.form-message.success {
  color: #37734f;
}
.form-message.error {
  color: #b4442c;
}
