/* ARCHINOVA STRUCTURES LTD — Brand styles */

:root {
  --navy: #0b1f3a;
  --navy-deep: #071528;
  --royal: #1e5aa8;
  --royal-light: #2563a8;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --text: #1a1a1a;
  --text-muted: #5a6472;
  --border: #e2e8f0;
  --placeholder-bg: #e8eef6;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --transition: 0.25s ease;

  /* V2 tokens */
  --royal-bright: #0057d9;
  --blue-050: #eef5ff;
  --blue-025: #f4f8ff;
  --border-cool: #e8edf4;
  --radius-box: 18px;
  --shadow-soft: 0 4px 18px rgba(11, 31, 58, 0.07);
  --shadow-lift: 0 16px 38px rgba(11, 31, 58, 0.14);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--royal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

/* ——— Typography ——— */
.section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.section-pad {
  padding: 4.5rem 0;
}

.section-pad-sm {
  padding: 3rem 0;
}

.bg-off {
  background: var(--off-white);
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.bg-navy .section-title,
.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

.bg-navy .section-lead,
.bg-navy p {
  color: rgba(255, 255, 255, 0.85);
}

/* ——— Navbar ——— */
.site-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  z-index: 1030;
}

.site-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy) !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.site-navbar .navbar-brand span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--royal);
  text-transform: uppercase;
}

.site-navbar .nav-link {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active,
.site-navbar .dropdown-item:hover {
  color: var(--royal) !important;
}

.site-navbar .dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.08);
  border-radius: 0.4rem;
  padding: 0.5rem 0;
}

.site-navbar .dropdown-item {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  padding: 0.5rem 1.25rem;
}

.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ——— Buttons ——— */
.btn-primary-brand {
  background: var(--navy);
  border: 2px solid var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 0.35rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-primary-brand:hover,
.btn-primary-brand:focus {
  background: var(--royal);
  border-color: var(--royal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 0.35rem;
  transition: background var(--transition), color var(--transition);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 0.35rem;
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--navy);
  color: var(--white);
}

/* ——— Heroes ——— */
.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 21, 40, 0.88) 0%,
    rgba(11, 31, 58, 0.72) 55%,
    rgba(30, 90, 168, 0.45) 100%
  );
  z-index: -1;
}

.page-hero.page-hero--sm {
  min-height: 42vh;
}

.page-hero .hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ec0ea;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.page-hero .hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.hero-checklist li i {
  color: #7eb3f0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Feature / service grids ——— */
.service-pillar {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  height: 100%;
}

.service-pillar:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .service-pillar {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 0 1.5rem;
  }

  .service-pillar:first-child {
    padding-left: 0;
  }

  .service-pillar:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.service-pillar h3 {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.service-pillar h3 a {
  color: inherit;
}

.service-pillar h3 a:hover {
  color: var(--royal);
}

.service-pillar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.service-pillar ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-pillar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--royal);
}

.service-pillar .pillar-link {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Why choose */
.why-item {
  text-align: left;
  padding: 1.25rem 0;
}

.why-item .why-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 90, 168, 0.1);
  color: var(--royal);
  border-radius: 0.4rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Process */
.process-steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.process-step {
  position: relative;
  padding-top: 0.25rem;
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--royal);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

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

/* Industries */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-list li {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.3rem;
}

/* Reviews placeholder */
.reviews-placeholder {
  border: 1px dashed var(--border);
  background: var(--off-white);
  padding: 2rem;
  text-align: center;
  border-radius: 0.4rem;
}

.reviews-placeholder .stars {
  color: var(--royal);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

/* ——— Service detail blocks ——— */
.service-block {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-of-type {
  border-bottom: none;
}

@media (min-width: 768px) {
  .service-block {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
  }

  .service-block--reverse {
    grid-template-columns: 1.1fr 1fr;
  }

  .service-block--reverse .service-block-media {
    order: -1;
  }
}

.service-block h3 {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-block p,
.service-block li {
  color: var(--text-muted);
}

.service-block ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.service-block-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  aspect-ratio: 4 / 3;
  background: var(--placeholder-bg);
}

.service-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d6e4f5 0%, #e8eef6 50%, #c5d8f0 100%);
  color: var(--navy);
  text-align: center;
  padding: 1.5rem;
}

.img-placeholder i {
  font-size: 2rem;
  color: var(--royal);
  margin-bottom: 0.75rem;
}

.img-placeholder span {
  font-weight: 700;
  font-size: 0.9rem;
}

.img-placeholder small {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Icon service cards for planning / party wall */
.icon-service {
  padding: 1.5rem 0;
  height: 100%;
}

.icon-service .icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 90, 168, 0.1);
  color: var(--royal);
  border-radius: 0.4rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.icon-service h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.icon-service p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.icon-service ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.icon-service ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.icon-service ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--royal);
}

/* FAQ */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  margin-bottom: 0.65rem;
  border-radius: 0.35rem !important;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
  font-size: 1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--off-white);
  color: var(--royal);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.faq-accordion .accordion-body {
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 50%, var(--royal) 140%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

/* Contact */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-list .ci-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 90, 168, 0.1);
  color: var(--royal);
  border-radius: 0.35rem;
}

.contact-info-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 0.4rem;
  scroll-margin-top: 5.5rem;
}

#enquiry-form-section {
  scroll-margin-top: 5.5rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border-color: var(--border);
  padding: 0.65rem 0.85rem;
  border-radius: 0.3rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 0.2rem rgba(30, 90, 168, 0.15);
}

.form-feedback-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.3rem;
  font-weight: 600;
}

.form-feedback-msg.is-success {
  display: block;
  background: #e8f5e9;
  color: #1b5e20;
}

.form-feedback-msg.is-error {
  display: block;
  background: #fdecea;
  color: #b71c1c;
}

.areas-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.92rem;
}

.site-footer h4 {
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.site-footer .footer-brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Utility */
.text-navy {
  color: var(--navy) !important;
}

.text-royal {
  color: var(--royal) !important;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.check-list li i {
  color: var(--royal);
  margin-top: 0.2rem;
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 3rem 0;
  }

  .page-hero {
    min-height: 78vh;
  }

  .contact-form {
    padding: 1.35rem;
  }
}

/* ==========================================================================
   V2 COMPONENTS
   ========================================================================== */

/* ——— Navbar: logo mark, centred links ——— */
.site-navbar .navbar-brand img {
  height: 44px;
  width: auto;
}

.site-navbar .navbar-nav .nav-link {
  position: relative;
  color: var(--royal) !important;
}

.site-navbar .navbar-nav .nav-link:hover {
  color: var(--navy) !important;
}

/* The current page has to out-signal the resting blue rather than fall back to
   it, or the one link that is *not* highlighted is the page you are on. */
.site-navbar .navbar-nav .nav-link.active {
  color: var(--navy) !important;
  font-weight: 700;
}

@media (min-width: 992px) {
  .site-navbar .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.1rem;
    height: 2px;
    border-radius: 2px;
    background: var(--royal);
  }
}

/* Stacked menu has no room for an underline, so the accent moves to the side. */
@media (max-width: 991.98px) {
  .site-navbar .navbar-nav .nav-link.active {
    border-left: 3px solid var(--royal);
    background: var(--blue-025);
    border-radius: 0 0.35rem 0.35rem 0;
  }
}

/* Bootstrap's own active item is #0d6efd with white text; both are overridden
   here so the open dropdown stays on brand. */
.site-navbar .dropdown-item.active,
.site-navbar .dropdown-item:active {
  background: var(--blue-050);
  color: var(--royal);
  font-weight: 700;
}

/* ——— Generic panel box ——— */
.panel-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 2.25rem;
}

/* ——— Hero: service items as links that grow on hover ——— */
.hero-checklist li a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 600;
  transform-origin: left center;
  transition: transform var(--transition), color var(--transition);
}

.hero-checklist li a:hover,
.hero-checklist li a:focus-visible {
  transform: scale(1.08);
  color: #9ec0ea;
}

/* Architectural hero: lighter overlay so the photo reads through */
.page-hero--showcase::before {
  background: linear-gradient(
    105deg,
    rgba(7, 21, 40, 0.66) 0%,
    rgba(11, 31, 58, 0.42) 55%,
    rgba(30, 90, 168, 0.24) 100%
  );
}

/* ——— Scrolling headline banner ——— */
.ticker-band {
  background: var(--royal);
  color: var(--white);
  padding: 0.95rem 0;
  overflow: hidden;
}

.ticker-viewport {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.ticker-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 100%;
  animation: ticker-scroll 42s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  padding-right: 4rem;
  font-weight: 600;
  font-size: 1rem;
}

.ticker-band:hover .ticker-track,
.ticker-band:focus-within .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .ticker-viewport {
    overflow-x: auto;
  }
}

/* ——— Why Us: boxed reason that inverts to blue on hover ——— */
.why-box {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  transition: background var(--transition), border-color var(--transition),
    transform var(--transition), box-shadow var(--transition);
}

.why-box:hover {
  background: var(--royal);
  border-color: var(--royal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.why-box .why-icon {
  transition: background var(--transition), color var(--transition);
}

.why-box:hover .why-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.why-box:hover h3,
.why-box:hover p {
  color: var(--white);
}

/* ——— Why Us list rows (Home) ——— */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0.85rem;
  margin-bottom: 0.35rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--royal);
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition),
    box-shadow var(--transition), transform var(--transition);
}

.why-list li i {
  color: var(--royal);
  margin-top: 0.25rem;
}

.why-list li:hover {
  background: var(--blue-025);
  border-color: var(--border-cool);
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.08);
  transform: translateY(-2px);
}

/* ——— Projects We Support chips ——— */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chip-list li {
  background: var(--blue-025);
  border: 1px solid var(--border-cool);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.15rem;
  border-radius: 10px;
  transition: background var(--transition), box-shadow var(--transition),
    transform var(--transition), border-color var(--transition);
}

.chip-list li:hover {
  background: #dbe7f8;
  border-color: #c3d6ef;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.12);
  transform: translateY(-3px);
}

/* ——— Process: boxed stage with logo-swap circle ——— */
.process-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .process-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .process-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-box {
  position: relative;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--royal);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.35rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.process-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.process-badge .badge-num,
.process-badge .badge-logo {
  transition: opacity var(--transition);
}

.process-badge .badge-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.process-badge .badge-logo img {
  width: 62%;
  height: auto;
}

.process-box:hover .process-badge .badge-num {
  opacity: 0;
}

.process-box:hover .process-badge .badge-logo {
  opacity: 1;
}

.process-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  transition: color var(--transition), font-size var(--transition);
}

.process-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  transition: color var(--transition), font-size var(--transition);
}

/* Blue-text variant (Party Wall / Surveys / Planning) */
.process-box--blue h3 {
  color: var(--royal);
}

.process-box--blue p {
  color: var(--royal-light);
}

/* Reveals a background photo on hover and scales up in place */
.process-box--media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--step-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.process-box--media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    160deg,
    rgba(7, 21, 40, 0.86) 0%,
    rgba(11, 31, 58, 0.74) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.process-box--media:hover {
  z-index: 3;
  transform: translateY(-6px) scale(1.07);
}

.process-box--media:hover::before,
.process-box--media:hover::after {
  opacity: 1;
}

.process-box--media:hover h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.process-box--media:hover p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.process-box--media:hover .process-badge {
  background: var(--royal);
}

@media (prefers-reduced-motion: reduce) {
  .process-box,
  .process-box--media:hover {
    transform: none;
  }
}

/* ——— Industries We Serve cards ——— */
.industry-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition),
    transform var(--transition), box-shadow var(--transition);
}

.industry-card i {
  font-size: 1.9rem;
  color: var(--royal);
  transition: transform var(--transition);
}

.industry-card:hover {
  border-color: var(--navy);
  background: var(--blue-025);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.industry-card:hover i {
  transform: scale(1.18);
}

/* ——— Achievements ——— */
.achievement-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.achievement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--royal);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.achievement-card .achievement-figure {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--royal);
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

/* Word-based stats need a smaller size than the numeric ones to fit the card. */
.achievement-card .achievement-figure--text {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  letter-spacing: -0.01em;
}

.achievement-card .achievement-label {
  display: block;
  margin-top: 0.4rem;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ——— Our Mission panel (About) ——— */
.mission-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-box);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lift);
  padding: 3.25rem 2.5rem;
  color: var(--white);
}

.mission-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    rgba(7, 21, 40, 0.88) 0%,
    rgba(11, 31, 58, 0.76) 55%,
    rgba(30, 90, 168, 0.55) 100%
  );
}

.mission-panel .section-eyebrow {
  color: #9ec0ea;
}

.mission-panel h2,
.mission-panel p {
  color: var(--white);
}

.mission-panel p {
  max-width: 46rem;
  margin-bottom: 0;
}

/* ——— Our Expertise panel (About) ——— */
.expertise-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-lift);
  background: var(--white);
}

.expertise-panel-head {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  padding: 3rem 2.5rem;
  color: var(--white);
}

.expertise-panel-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(7, 21, 40, 0.82) 0%,
    rgba(11, 31, 58, 0.55) 60%,
    rgba(30, 90, 168, 0.3) 100%
  );
}

.expertise-panel-head .section-eyebrow {
  color: #9ec0ea;
}

.expertise-panel-head h3 {
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
  color: #cfe1f8;
  margin: 0;
  max-width: 28ch;
}

.expertise-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  background: var(--border);
}

.expertise-tile {
  background: var(--white);
  padding: 1.6rem 1.1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition);
}

.expertise-tile img {
  height: 56px;
  width: auto;
  margin: 0 auto 0.85rem;
  transition: transform var(--transition);
}

.expertise-tile h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.expertise-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.expertise-tile:hover {
  position: relative;
  z-index: 2;
  background: var(--blue-025);
  transform: scale(1.07);
  box-shadow: var(--shadow-lift);
}

.expertise-tile:hover img {
  transform: scale(1.1);
}

/* ——— About: zig-zag process timeline ——— */
.process-timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
  }

  .timeline-row {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.75rem;
  }
}

.timeline-marker {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 0 0 6px var(--white);
}

@media (min-width: 768px) {
  .timeline-marker {
    display: flex;
  }
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.timeline-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

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

.timeline-media {
  overflow: hidden;
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Benefits panel ——— */
.benefits-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-box);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lift);
  padding: 3rem 2.5rem;
}

.benefits-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.benefits-panel--light::before {
  background: rgba(255, 255, 255, 0.88);
}

.benefits-panel--light h2 {
  color: var(--royal);
}

.benefits-panel--light p {
  color: var(--text);
}

.benefits-panel--dark::before {
  background: linear-gradient(
    115deg,
    rgba(7, 21, 40, 0.9) 0%,
    rgba(11, 31, 58, 0.78) 60%,
    rgba(30, 90, 168, 0.55) 100%
  );
}

.benefits-panel--dark h2 {
  color: var(--white);
}

.benefits-panel--dark p {
  color: rgba(255, 255, 255, 0.9);
}

.benefits-panel h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.benefit-list .benefit-tick {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  font-size: 0.8rem;
}

.benefit-list .benefit-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
}

.benefits-panel--light .benefit-list li {
  background: rgba(30, 90, 168, 0.06);
  color: var(--navy);
}

.benefits-panel--light .benefit-list li:hover {
  background: rgba(30, 90, 168, 0.13);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.1);
}

.benefits-panel--light .benefit-tick {
  background: var(--royal);
  color: var(--white);
}

.benefits-panel--light .benefit-icon {
  color: var(--royal);
}

.benefits-panel--dark .benefit-list li {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.benefits-panel--dark .benefit-list li:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.benefits-panel--dark .benefit-tick {
  background: var(--white);
  color: var(--royal);
}

.benefits-panel--dark .benefit-icon {
  color: #9ec0ea;
}

/* ——— Party Wall service items ——— */
.service-item {
  height: 100%;
  background: #f0f4f8;
  border: 1px solid var(--border-cool);
  border-radius: var(--radius-box);
  box-shadow: 0 2px 10px rgba(11, 31, 58, 0.06);
  padding: 1.6rem 1.4rem;
  transition: background var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.service-item:hover {
  background: #e0e7ef;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.14);
  transform: translateY(-2px);
}

/* ——— Icon service cards: icon swaps to the logo mark on hover ——— */
.icon-service--card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.icon-service--card:hover {
  transform: translateY(-5px);
  border-color: var(--royal);
  box-shadow: var(--shadow-lift);
}

.icon-service--card h3 {
  color: var(--royal);
}

.icon-service .icon-wrap {
  position: relative;
  transition: background var(--transition);
}

.icon-service .icon-wrap .icon-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.icon-service .icon-wrap .icon-logo img {
  width: 64%;
  height: auto;
}

.icon-service .icon-wrap i {
  transition: opacity var(--transition);
}

.icon-service--card:hover .icon-wrap {
  background: var(--royal);
}

.icon-service--card:hover .icon-wrap i {
  opacity: 0;
}

.icon-service--card:hover .icon-wrap .icon-logo {
  opacity: 1;
}

/* ——— What We Offer: grid for the icon service cards ———
   Separate from .process-grid because these hold a heading, a paragraph and a
   bullet list, so they need far more width than a numbered process step. */
.service-card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .service-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ——— What We Offer: bigger blue headings + hover on the block ——— */
.section-title--lg {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--royal);
}

.service-block h3 {
  color: var(--royal);
  font-size: 1.55rem;
}

.service-block {
  border-radius: var(--radius-box);
  padding: 2rem 1.5rem;
  transition: background var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.service-block:hover {
  background: var(--blue-025);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.service-block-media img {
  transition: transform 0.45s ease;
}

.service-block:hover .service-block-media img {
  transform: scale(1.06);
}

/* ——— Contact: premium information card ——— */
.contact-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 50px;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  background-image: linear-gradient(var(--royal) 1px, transparent 1px),
    linear-gradient(90deg, var(--royal) 1px, transparent 1px);
  background-size: 28px 28px;
}

.contact-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--royal-bright);
}

.contact-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-cool);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.06);
  padding: 1.35rem;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--royal-bright);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.16);
}

.contact-card .cc-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-050);
  color: var(--royal-bright);
  border-radius: 14px;
  font-size: 1.4rem;
  transition: background var(--transition), color var(--transition);
}

.contact-card:hover .cc-icon {
  background: var(--royal-bright);
  color: var(--white);
}

.contact-card .cc-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-card .cc-value {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.contact-card .cc-value a {
  color: var(--text);
  word-break: break-word;
}

.contact-card .cc-value a:hover {
  color: var(--royal-bright);
}

.office-hours {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}

.office-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--border-cool);
}

.office-hours li:last-child {
  border-bottom: none;
}

.office-hours .oh-day {
  font-weight: 700;
  color: var(--navy);
}

.office-hours .oh-time {
  color: var(--text-muted);
}

/* ——— Contact hero: logo beside the copy ——— */
.hero-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* ——— Footer bottom bar ——— */
/* The contact email is longer than the column at the md breakpoint. */
.site-footer ul li,
.site-footer ul li a {
  overflow-wrap: anywhere;
}

.footer-bottom .footer-legalese {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

@media (max-width: 767.98px) {
  .panel-box,
  .mission-panel,
  .benefits-panel {
    padding: 1.75rem 1.35rem;
  }

  .contact-panel {
    padding: 1.75rem 1.35rem;
  }

  .expertise-panel-head {
    padding: 2rem 1.35rem;
  }
}

/* ==========================================================================
   V3 COMPONENTS
   ========================================================================== */

:root {
  --sky: #5eb3ef;
  --sky-soft: #e8f4fc;
  --tint-soft: #eef5fb;
}

.site-navbar .navbar-brand--named img {
  height: 48px;
  width: auto;
  max-width: min(320px, 58vw);
}

.site-navbar .navbar-nav .nav-link {
  font-size: 1.05rem;
  padding: 0.65rem 1.1rem !important;
}

.site-navbar .btn-nav-contact {
  font-size: 1.05rem;
  padding: 0.65rem 1.35rem !important;
}

@media (min-width: 992px) {
  .nav-item--hover:hover > .dropdown-menu,
  .nav-item--hover:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .nav-item--hover:hover > .dropdown-toggle,
  .nav-item--hover:focus-within > .dropdown-toggle {
    color: var(--navy) !important;
  }
}

.btn-sky {
  background: var(--sky);
  border: 2px solid var(--sky);
  color: var(--white);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 0.35rem;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform var(--transition);
}

.btn-sky:hover,
.btn-sky:focus {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-cta-invert {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--royal);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 0.35rem;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.btn-cta-invert:hover,
.btn-cta-invert:focus {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--royal);
  border-color: var(--royal);
  color: var(--white);
}

.page-hero--slideshow {
  background-image: none !important;
  overflow: hidden;
}

.page-hero--slideshow .hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero--slideshow .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(8%);
  transition: opacity 1.1s ease, transform 1.4s ease;
}

.page-hero--slideshow[data-hero-dir="ltr"] .hero-slide {
  transform: translateX(-8%);
}

.page-hero--slideshow .hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.page-hero--tall {
  min-height: 78vh;
}

.page-hero--tall.page-hero--sm {
  min-height: 58vh;
}

.page-hero .hero-text--lg,
.page-hero.page-hero--copy-lg .hero-text {
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.7;
  max-width: 40rem;
}

.page-hero h1.hero-title-blue {
  color: #9ec8ff;
}

.anim-from-center {
  opacity: 0;
  transform: translateX(12vw);
  animation: v3FromCenter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

@keyframes v3FromCenter {
  from {
    opacity: 0;
    transform: translateX(18vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim-from-center {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .page-hero--slideshow .hero-slide {
    transition: none;
  }
}

.hero-checklist.tick-draw-list li a i,
.why-list.tick-draw-list li i,
.check-list.tick-draw-list li i,
.benefit-list.tick-draw-list .benefit-tick i {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.45s ease;
}

.hero-checklist.tick-draw-list li:hover a i,
.why-list.tick-draw-list li:hover i,
.check-list.tick-draw-list li:hover i,
.benefit-list.tick-draw-list li:hover .benefit-tick i {
  clip-path: inset(0 0 0 0);
}

.why-list.grow-on-hover li,
.check-list.grow-on-hover li {
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.why-list.grow-on-hover li:hover,
.check-list.grow-on-hover li:hover {
  transform: scale(1.04);
}

.home-about-section {
  background: var(--tint-soft);
}

.home-about-section .section-title {
  color: var(--royal);
}

.home-about-section .panel-box p {
  font-size: 1.12rem;
}

.home-services-section {
  position: relative;
  background-color: var(--off-white);
  background-image: url("../assets/images/home/bg-services.png");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.home-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 252, 0.88);
  z-index: -1;
}

.home-services-section .section-title {
  color: var(--royal);
}

.home-services-section .section-lead,
.home-services-section .service-pillar li {
  font-size: 1.08rem;
}

.home-services-section .service-pillar h3,
.home-services-section .service-pillar h3 a {
  color: var(--royal);
  font-size: 1.35rem;
}

.home-why-section {
  position: relative;
  background-image: url("../assets/images/home/bg-why-us.png");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.home-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.home-why-section .section-title,
.section-title--blue {
  color: var(--royal);
}

.home-why-section .why-list li,
.home-why-section .chip-list li,
.text-size-up {
  font-size: 1.08rem;
}

.home-who-section {
  background: var(--sky-soft);
}

.home-who-section .section-title {
  color: var(--royal);
}

.home-who-section .section-lead,
.home-who-section .industry-card {
  font-size: 1.08rem;
}

.cta-band--lg h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.cta-band--lg p {
  font-size: 1.12rem;
}

.site-footer--lg {
  font-size: 1.02rem;
}

.site-footer--lg h4,
.site-footer--lg .footer-heading {
  font-size: 0.95rem;
}

.site-footer .footer-brand a {
  color: var(--white);
  font-weight: 800;
}

.site-footer .footer-brand a:hover {
  color: var(--sky);
}

.site-footer .footer-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
  margin-bottom: 1.15rem;
}

.site-footer .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: var(--white);
  transition: width 0.35s ease;
}

.site-footer .footer-heading:hover::after {
  width: 100%;
}

.services-marquee {
  background: var(--royal);
  color: var(--white);
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.12);
}

.services-marquee .ticker-viewport {
  width: 100%;
}

.services-marquee:hover .ticker-track,
.services-marquee:focus-within .ticker-track {
  animation-play-state: paused;
}

.mission-panel .section-title {
  color: var(--royal);
}

.mission-panel,
.about-process-wrap .process-timeline,
.about-quote-section {
  font-size: 1.08rem;
}

.about-process-wrap {
  background: var(--off-white);
}

.about-process-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-soft);
  padding: 2.25rem 1.5rem;
}

.about-process-box .section-title,
.about-process-box .section-eyebrow {
  color: var(--royal);
}

.about-process-box .timeline-card h3 {
  color: var(--royal);
}

.about-process-box .timeline-card p {
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .process-timeline.has-progress::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 3px;
    margin-left: 0;
    background: linear-gradient(var(--royal), var(--sky));
    border-radius: 2px;
    transform: translateX(-50%) scaleY(1);
    transform-origin: top center;
    animation: v3TimelineGrow 1.4s ease forwards;
    z-index: 0;
  }

  .process-timeline.has-progress .timeline-marker {
    position: relative;
    z-index: 1;
  }
}

@keyframes v3TimelineGrow {
  from {
    transform: translateX(-50%) scaleY(0);
  }
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

.expertise-panel--tall {
  min-height: 520px;
}

.expertise-panel--tall .expertise-tile {
  font-size: 1.05rem;
  border-radius: var(--radius-box);
  transition: background 0.3s ease, transform 0.3s ease;
}

.expertise-panel--tall .expertise-tile:hover {
  background: var(--sky);
  color: var(--white);
}

.expertise-panel--tall .expertise-tile:hover h4,
.expertise-panel--tall .expertise-tile:hover p {
  color: var(--white);
}

.about-quote-section {
  background: var(--sky-soft);
}

.about-quote-section .section-title {
  color: var(--royal);
}

.ticker-band.ticker-band--slow .ticker-track {
  animation-duration: 48s;
}

.ticker-logo {
  height: 1.1em;
  width: auto;
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.55rem;
}

.service-block p,
.why-box p,
.process-box p,
.benefits-panel .benefit-list li {
  font-size: 1.05rem;
}

.why-section-tint {
  background: var(--tint-soft);
}

.why-section-tint .section-title,
.why-section-tint .why-box h3 {
  color: var(--royal);
}

.slide-in-cards .why-box {
  opacity: 0;
  transform: translateY(24px);
  animation: v3SlideUp 0.7s ease forwards;
}

.slide-in-cards .col-md-6:nth-child(1) .why-box,
.slide-in-cards .col-lg-4:nth-child(1) .why-box {
  animation-delay: 0.05s;
}
.slide-in-cards .col-md-6:nth-child(2) .why-box,
.slide-in-cards .col-lg-4:nth-child(2) .why-box {
  animation-delay: 0.12s;
}
.slide-in-cards .col-md-6:nth-child(3) .why-box,
.slide-in-cards .col-lg-4:nth-child(3) .why-box {
  animation-delay: 0.19s;
}
.slide-in-cards .col-md-6:nth-child(4) .why-box,
.slide-in-cards .col-lg-4:nth-child(4) .why-box {
  animation-delay: 0.26s;
}
.slide-in-cards .col-md-6:nth-child(5) .why-box,
.slide-in-cards .col-lg-4:nth-child(5) .why-box {
  animation-delay: 0.33s;
}
.slide-in-cards .col-md-6:nth-child(6) .why-box,
.slide-in-cards .col-lg-4:nth-child(6) .why-box {
  animation-delay: 0.4s;
}

@keyframes v3SlideUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.benefits-logo {
  display: block;
  width: 64px;
  height: auto;
  margin: 0 auto 1rem;
}

.planning-why-logo {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}

.pw-why-section {
  position: relative;
  background-image: url("../assets/images/partywall/bg-why-us.png");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.pw-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.pw-why-section .section-title {
  color: var(--royal);
}

.achievement-figure[data-count] {
  font-variant-numeric: tabular-nums;
}
