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

/*

******************** /// GLOBAL STYLES /// ********************

*/
:root {
  /* Core colors */
  --color-bg: #e7e7e7;
  --color-cream: #f4f1ec;
  --color-black: #080808;
  --color-navy: #0b0b1d;
  --color-orange: #f56e00;
  --color-orange-soft: #fb923c;

  /* Layout + motion */
  --radius-lg: 18px;
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.35);
  --transition-fast: 180ms ease;
  --transition-med: 220ms ease;
  --scroll-offset: 110px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--color-bg);
  line-height: 1.5;
}

html {
  /* Prevent iOS from auto-inflating text sizes (keeps typography consistent). */
  -webkit-text-size-adjust: 100%;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

/* Accessibility: keyboard-only skip link (no layout shift). */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: rgba(245, 110, 0, 0.95);
  color: #f4f1ec;
  font-weight: 800;
  letter-spacing: 0.03rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* Honeypot field (spam protection): visually hidden but present in the DOM. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.icon {
    color: var(--color-orange-soft);
}

lottie-player {
  display: inline-block;
  vertical-align: middle;
}

.lottie-icon--nav {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.lottie-icon--service {
  width: 4rem;
  height: 4rem;
}

a,
li,
ul, 
body {
  text-decoration: none;
  list-style: none;
  color: inherit;
  margin: 0;
  padding: 0;
}

/* Anchor navigation: keep section headings from hiding under the sticky header. */
#hero,
#services,
#why-choose-us,
#recent-projects,
#footer {
  scroll-margin-top: calc(var(--scroll-offset, 110px) + env(safe-area-inset-top));
}

@media (max-width: 430px) {
  :root {
    --scroll-offset: 170px;
  }
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--color-cream);
  letter-spacing: 0.2rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin: 0;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

/*
******************** /// INDEX STYLES /// ********************
/*

/// NAVIGATION STYLES ///

*/
.container {
  position: sticky;
  top: 0;  
  z-index: 1000;
  background-color: var(--color-black);}

  .nav-wrap {
   position: relative;
   display: grid;
   grid-template-columns: 1fr 3fr 1fr;
   grid-template-areas:
     "logo links right";
   align-items: center;  
   margin: 0 5%;
   padding: 0;
 }

 .nav-logo {
   grid-area: logo;
 }
  
  .nav-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 18px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(251, 146, 60, 0.22) 0%,
    rgba(251, 146, 60, 0.1) 30%,
    rgba(251, 146, 60, 0) 68%
  );
}

/* crisp accent line */
.nav-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(251, 146, 60, 0.16) 0%,
    rgba(251, 146, 60, 0.38) 18%,
    rgba(251, 146, 60, 0.85) 50%,
    rgba(251, 146, 60, 0.38) 82%,
    rgba(251, 146, 60, 0.16) 100%
  );
  box-shadow: 0 0 8px rgba(251, 146, 60, 0.28);
}

.nav-logo 
 img {
  grid-area: logo;
  height: auto;
  width: clamp(1rem, 2.5vw, 4rem);
  padding: 1rem 0;
}

/*
  /// BRAND LOGO ANIMATION ///
  Tuning knobs:
  - --logo-charge-scale: overall hover scale
  - --logo-glow: drop-shadow stack (glow strength/color)
  - --logo-anim-duration: keep under ~700ms for a premium feel
*/
.brand-logo-animated {
  --logo-charge-scale: 1.035;
  --logo-charge-y: -1px;
  --logo-glow: drop-shadow(0 0 14px rgba(245, 110, 0, 0.55)) drop-shadow(0 0 30px rgba(184, 115, 51, 0.35));
  --logo-sweep-color: rgba(245, 110, 0, 0.85);
  --logo-sweep-color-2: rgba(251, 146, 60, 0.65);
  --logo-anim-duration: 650ms;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  transform-origin: center;
  will-change: transform;
  transition: transform 220ms ease;
  text-decoration: none;
  color: inherit;
}

.brand-logo-animated img,
.brand-logo-animated svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transform: translateZ(0);
  will-change: filter, opacity;
  transition: filter 220ms ease;
}

/* Soft "charge" glow under the logo */
.brand-logo-animated::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  border-radius: 18px;
  background: radial-gradient(circle at 22% 48%, rgba(245, 110, 0, 0.42), transparent 60%);
  opacity: 0;
  pointer-events: none;
  filter: blur(18px);
  transform: scale(0.96);
}

/* Thin spark sweep that slides left -> right across the logo */
.brand-logo-animated::after {
  content: "";
  position: absolute;
  inset: -20% 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 36%,
    rgba(245, 110, 0, 0) 44%,
    var(--logo-sweep-color) 50%,
    var(--logo-sweep-color-2) 52%,
    rgba(245, 110, 0, 0) 60%,
    transparent 70%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(0.6px);
  transform: translateX(-140%) rotate(8deg);
}

.brand-logo-animated:hover,
.brand-logo-animated:focus-within {
  transform: translateY(var(--logo-charge-y)) scale(var(--logo-charge-scale));
}

.brand-logo-animated:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 6px;
  border-radius: 16px;
}

.brand-logo-animated:hover img,
.brand-logo-animated:focus-within img,
.brand-logo-animated:hover svg,
.brand-logo-animated:focus-within svg {
  filter: var(--logo-glow);
  animation: brandLogoFlicker var(--logo-anim-duration) ease-in-out both;
}

.brand-logo-animated:hover::before,
.brand-logo-animated:focus-within::before {
  animation: brandLogoPulse var(--logo-anim-duration) ease-out both;
}

.brand-logo-animated:hover::after,
.brand-logo-animated:focus-within::after {
  animation: brandLogoSweep var(--logo-anim-duration) ease-out both;
}

@keyframes brandLogoFlicker {
  0% {
    opacity: 1;
  }
  12% {
    opacity: 0.92;
  }
  18% {
    opacity: 1;
  }
  32% {
    opacity: 0.95;
  }
  45% {
    opacity: 1;
  }
  65% {
    opacity: 0.98;
  }
  100% {
    opacity: 1;
  }
}

@keyframes brandLogoPulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  18% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0.22;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes brandLogoSweep {
  0% {
    opacity: 0;
    transform: translateX(-140%) rotate(8deg);
  }
  16% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    transform: translateX(140%) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo-animated {
    transition: none;
  }

  .brand-logo-animated:hover,
  .brand-logo-animated:focus-within {
    transform: none;
  }

  .brand-logo-animated::before,
  .brand-logo-animated::after {
    animation: none !important;
    opacity: 0 !important;
  }

  .brand-logo-animated:hover img,
  .brand-logo-animated:focus-within img,
  .brand-logo-animated:hover svg,
  .brand-logo-animated:focus-within svg {
    animation: none !important;
    filter: var(--logo-glow);
  }
}

.nav-links {
  grid-area: links;
  justify-content: flex-end;
  display: inline-flex;
  gap: 2rem;
  color:#f4f1ec; 
}

  .nav-links a:hover {
    color: #fb923c;
  }

  .nav-links a:active {
    color: #fb923c;
  }

  .nav-links a:focus-visible {
    outline: 3px solid rgba(251, 146, 60, 0.55);
    outline-offset: 4px;
    border-radius: 10px;
    color: #ffffff;
  }

.nav-btns {
  grid-area: right;
  justify-content: flex-end;
  align-items: center;
  display: inline-flex;
  gap: 2rem;
}

.nav-menu-toggle {
  display: none;
}

.contact-btn {
  color:#fb923c;
}

.contact-btn:focus-visible {
  outline: 3px solid rgba(251, 146, 60, 0.55);
  outline-offset: 4px;
  border-radius: 12px;
}

.get-quote-btn {
  background-color: #f56e00;
  font-weight: 700;
  color:#f4f1ec;
  padding: 0.5rem 1rem;
  border-radius: 12px;
}
  .get-quote-btn:hover {
    background-color: #fb923c;
    color:#f4f1ec;
  }

  .get-quote-btn:focus-visible {
    outline: 3px solid rgba(251, 146, 60, 0.55);
    outline-offset: 4px;
  }

/*

/// HERO STYLES ///


*/
 #hero { 
   display: grid;
  background: linear-gradient(
  180deg,
  rgba(0, 0, 0, 0.75) 0%,
  rgba(0, 0, 0, 0.4) 40%,
  rgba(0, 0, 0, 0) 100%);
  grid-template-rows: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-template-areas:
    "hero-wrap right-hero"
    "cta-wrap cta-wrap";
  min-height: clamp(520px, 95vh, calc(980px + 5vh));
 }

.hero-wrapper {
  position: relative;
  overflow: hidden;
  background: url("./assets/img/hero-background.svg") no-repeat 80% 20% / 102%;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  min-height: clamp(420px, 85vh, calc(900px + 5vh));
  z-index: 0;

}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.72) 22%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.18) 58%,
      rgba(0, 0, 0, 0) 72%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 18%,
      rgba(0, 0, 0, 0.18) 36%,
      rgba(0, 0, 0, 0) 55%
    );
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.heading-wrap {
  grid-area: hero-wrap;
  justify-self: start;
  align-self: center;
  width: min(90%, 50rem);
  margin-left: 10vw;
  z-index: 1;
}

.heading-wrap p {
  color: #CAD5E2;
}

.hero-copy--mobile,
.cta-heading-mobile,
.cta-label-mobile {
  display: none;
}

.right-hero {
  grid-area: right-hero;
  z-index: 1;
}

.sub-heading {
  color: #f56e00;
  font-size: clamp(1.5rem, 2vw, 3rem);
}

 .cta-wrap {
   display: grid;
   grid-area: cta-wrap;
   justify-self: center;
   align-self: center;
   /* Responsive overlap into hero (clamp expects min <= max, even with negatives). */
   margin-top: clamp(-10rem, -10vw, -8rem);
   margin-bottom: clamp(2.5rem, 6vw, 5rem);
   height: auto;
   width: min(92vw, 80rem);
   z-index: 2;
 }

.cta-wrap h2 {
  color: #f4f1ec;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.25rem;
}

 .cta-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin-top: 2rem;
 }

.cta-card {
  appearance: none;
  display: inline-flex;
  flex-direction: column;
  background-color: #0a0918;
  color: #fffae6;
  cursor: pointer;
  font: inherit;
  align-self: center;
  align-items: center;
  justify-self: center;
  padding: clamp(0.75rem, 1.5vw, 1.5rem);
  width: clamp(14rem, 18vw, 18rem);
  min-height: clamp(14rem, 18vw, 18rem);
  border-radius: 12px;
  border: #211f46 2px solid;
}

.cta-card:hover {
  display: inline-flex;
  flex-direction: column;
  background-color: #f56e00;
  color: #fffae6;
  align-self: center;
  align-items: center;
  justify-self: center;
  padding: clamp(0.75rem, 1.5vw, 1.5rem);
  width: clamp(14rem, 18vw, 18rem);
  min-height: clamp(14rem, 18vw, 18rem);
  border-radius: 12px;
  border: #fc9b4c 2px solid;
}

.cta-card:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

.card-icon {
  width: clamp(2rem, 4vw, 5rem);
  height: auto;
  margin-top: 2rem;
  transition: filter 0.25s ease, transform 0.2s ease;
}

.cta-card:hover .card-icon {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
}

.card-icon .icon-primary {
fill: #f56e00;
transition: fill 0.25s ease;
}

.card-icon .icon-secondary {
fill: #211f46;
transition: fill 0.25s ease;
}

.cta-card:hover .icon-primary {
fill: #f4f1ec;
}

.cta-card:hover .icon-secondary {
fill: #f4f1ec;
}

.cta-card h4 {
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 0;
}

.cta-card p {
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo right"
      "links links";
    row-gap: 0.75rem;
    padding: 0.25rem 0 0.75rem;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-bottom: 0.25rem;
  }

  .nav-btns {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas:
      "hero-wrap"
      "cta-wrap";
    min-height: clamp(580px, 97vh, calc(1100px + 5vh));
  }

  .heading-wrap {
    margin-left: 0;
    width: min(92vw, 44rem);
    justify-self: center;
    padding-inline: 0;
  }

  .cta-wrap {
    justify-self: center;
    align-self: start;
    /* Less overlap on smaller screens so the CTA cards don't crowd the headline. */
    margin-top: clamp(-8rem, -8vw, -6rem);
  }

  .cta-card-container {
    gap: 0.85rem;
  }

  .card-icon {
    margin-top: 1.25rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    gap: 0.9rem;
  }

  .nav-btns {
    justify-content: flex-start;
  }

  .cta-card {
    width: min(92vw, 22rem);
    min-height: 0;
  }

  .cta-card:hover {
    width: min(92vw, 22rem);
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "right"
      "links";
    row-gap: 0.6rem;
    margin: 0 4%;
    padding-bottom: 0.85rem;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 0.75rem 1rem;
    font-size: 0.95rem;
    padding-bottom: 0;
  }

  .nav-btns {
    width: 100%;
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .lottie-icon--nav {
    width: 34px;
    height: 34px;
    margin-right: 6px;
  }

  .get-quote-btn {
    padding: 0.65rem 0.95rem;
  }

  h1 {
    font-size: clamp(2.2rem, 8vw, 3.1rem);
    letter-spacing: 0.12rem;
  }

  .sub-heading {
    font-size: clamp(1.25rem, 4.8vw, 2rem);
  }

  .cta-wrap {
    margin-top: -3.75rem;
    margin-bottom: 2.75rem;
    width: min(94vw, 28rem);
  }

  .cta-wrap h2 {
    letter-spacing: 0.18rem;
  }

  .card-icon {
    width: clamp(2.25rem, 10vw, 4.25rem);
  }
}

@media (max-width: 360px) {
  .nav-links {
    gap: 0.6rem 0.85rem;
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.85rem);
    letter-spacing: 0.1rem;
  }
}

/* Use the modern stable viewport unit on mobile browsers that support it (prevents "vh" jumpiness). */
@supports (height: 100svh) {
  #hero {
    min-height: clamp(520px, 95svh, calc(980px + 5svh));
  }

  .hero-wrapper {
    min-height: clamp(420px, 85svh, calc(900px + 5svh));
  }

  @media (max-width: 900px) {
    #hero {
      min-height: clamp(580px, 97svh, calc(1100px + 5svh));
    }
  }
}

/*

/// SERVICE CALL MODAL ///

*/

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.is-modal-open {
  overflow: hidden;
}

.cta-card--service-call.is-modal-open {
  background-color: #f56e00;
  border-color: #fc9b4c;
  color: #fffae6;
}

.cta-card--planning-project.is-modal-open {
  background-color: #f56e00;
  border-color: #fc9b4c;
  color: #fffae6;
}

.cta-card--service-call.is-modal-open .card-icon {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
}

.cta-card--planning-project.is-modal-open .card-icon {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
}

.cta-card--service-call.is-modal-open .icon-primary,
.cta-card--service-call.is-modal-open .icon-secondary {
  fill: #f4f1ec;
}

.cta-card--planning-project.is-modal-open .icon-primary,
.cta-card--planning-project.is-modal-open .icon-secondary {
  fill: #f4f1ec;
}

.service-call-modal {
  --sc-accent: #f56e00;
  --sc-accent-2: #fb923c;
  --sc-panel: rgba(10, 9, 24, 0.92);
  --sc-panel-solid: #0a0918;
  --sc-panel-2: rgba(18, 16, 38, 0.9);
  --sc-text: rgba(244, 241, 236, 0.96);
  --sc-muted: rgba(244, 241, 236, 0.72);
  --sc-border: rgba(245, 110, 0, 0.55);

  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.service-call-modal[hidden] {
  display: none;
}

.service-call-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-call-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(2px);
}

.service-call-modal__panel {
  position: relative;
  width: min(1120px, 92vw);
  max-height: min(86vh, 860px);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: 1.1rem;

  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  border-radius: 18px;
  border: 1px solid var(--sc-border);
  color: var(--sc-text);
  background: linear-gradient(180deg, var(--sc-panel), var(--sc-panel-2));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(245, 110, 0, 0.08) inset,
    0 0 60px rgba(245, 110, 0, 0.12);

  transform: translateY(18px) scale(0.99);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.service-call-modal.is-open .service-call-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.service-call-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(244, 241, 236, 0.18);
  color: rgba(244, 241, 236, 0.88);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.service-call-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 110, 0, 0.85);
  background: rgba(245, 110, 0, 0.12);
  color: #ffffff;
}

.service-call-modal__close:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 3px;
}

.service-call-modal__header {
  text-align: center;
  padding-right: 3rem;
}

.service-call-modal__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: 0.08rem;
}

.service-call-modal__subtitle {
  margin: 0.4rem 0 0;
  color: var(--sc-muted);
  font-size: 1.05rem;
}

.service-call-modal__stepper {
  padding-top: 0.25rem;
}

.service-stepper {
  position: relative;
  --stepper-progress: 0;
  --stepper-line-start: 1.2rem;
  --stepper-line-end: calc(100% - 1.2rem);
  --stepper-line-progress: calc(
    var(--stepper-line-start) + ((var(--stepper-line-end) - var(--stepper-line-start)) * var(--stepper-progress))
  );
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--stepper-columns, 5), minmax(0, 1fr));
  gap: clamp(0.75rem, 2.2vw, 1.6rem);
  align-items: start;
}

.service-stepper--3 {
  --stepper-columns: 3;
}

.service-stepper::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: var(--stepper-line-start);
  width: calc(var(--stepper-line-end) - var(--stepper-line-start));
  height: 2px;
  background: rgba(244, 241, 236, 0.18);
  z-index: 0;
}

.service-stepper::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: var(--stepper-line-start);
  height: 2px;
  width: calc(var(--stepper-line-progress) - var(--stepper-line-start));
  background: rgba(245, 110, 0, 0.95);
  box-shadow: 0 0 10px rgba(245, 110, 0, 0.22);
  transition: width 0.18s ease;
  z-index: 0;
}

.service-stepper__step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: var(--sc-muted);
  text-align: center;
  z-index: 1;
}

.service-stepper__circle {
  position: relative;
  z-index: 1;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.24);
  background: var(--sc-panel-solid);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  font-weight: 800;
  letter-spacing: 0.03rem;
}

.service-stepper__label {
  font-size: 0.95rem;
  line-height: 1.2;
}

.service-stepper__step.is-current {
  color: #ffffff;
}

.service-stepper__step.is-current .service-stepper__circle {
  border-color: rgba(245, 110, 0, 0.95);
  box-shadow: 0 0 0 3px rgba(245, 110, 0, 0.14);
  color: rgba(255, 255, 255, 0.96);
}

.service-stepper__step.is-current .service-stepper__label {
  color: rgba(245, 110, 0, 0.95);
}

.service-stepper__step.is-complete .service-stepper__circle {
  border-color: rgba(251, 146, 60, 0.7);
  background:
    linear-gradient(180deg, rgba(245, 110, 0, 0.14), rgba(245, 110, 0, 0.06)),
    var(--sc-panel-solid);
  color: rgba(244, 241, 236, 0.92);
}

.service-stepper__step.is-complete .service-stepper__circle::after {
  content: "\2713";
  position: absolute;
  right: -0.4rem;
  top: -0.4rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(245, 110, 0, 0.95);
  color: #0a0918;
  font-size: 0.75rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.service-call-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}

.service-call-form__content {
  flex: 1;
  min-height: 0;
  overflow: auto;

  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: start;
}

.service-call-form__main {
  border-radius: 14px;
  border: 1px solid rgba(244, 241, 236, 0.12);
  background: rgba(0, 0, 0, 0.14);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.service-call-step__title {
  margin: 0 0 1.1rem;
  color: rgba(245, 110, 0, 0.95);
  font-size: 1.35rem;
  letter-spacing: 0.04rem;
}

.service-call-step__title span {
  color: rgba(245, 110, 0, 0.95);
  margin-right: 0.25rem;
}

.service-call-step__hint {
  margin: -0.5rem 0 1rem;
  color: var(--sc-muted);
}

.service-call-step__hint--group {
  margin: 0 0 1rem;
}

.service-field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-field__label {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(244, 241, 236, 0.86);
}

.service-field__control {
  position: relative;
}

.service-select-placeholder {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  max-width: calc(100% - 3.1rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  color: rgba(244, 241, 236, 0.42);
  transition: opacity 0.16s ease, visibility 0.16s ease;
}

select.service-input:valid + .service-select-placeholder {
  opacity: 0;
  visibility: hidden;
}

.service-input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 236, 0.16);
  background: rgba(10, 9, 24, 0.65);
  color: rgba(244, 241, 236, 0.96);
  outline: none;
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.service-input::placeholder {
  color: rgba(244, 241, 236, 0.42);
}

.service-input:focus {
  border-color: rgba(245, 110, 0, 0.85);
  box-shadow: 0 0 0 3px rgba(245, 110, 0, 0.18);
  background: rgba(10, 9, 24, 0.78);
}

.pp-calendar {
  border-radius: 14px;
  border: 1px solid rgba(244, 241, 236, 0.12);
  background: rgba(10, 9, 24, 0.35);
  padding: 0.85rem;
}

.pp-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.pp-calendar__month {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  color: rgba(244, 241, 236, 0.92);
}

.pp-calendar__nav {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 236, 0.18);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(244, 241, 236, 0.92);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.pp-calendar__nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(245, 110, 0, 0.65);
  background: rgba(245, 110, 0, 0.12);
}

.pp-calendar__nav:active:not(:disabled) {
  transform: translateY(0);
}

.pp-calendar__nav:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.45);
  outline-offset: 2px;
}

.pp-calendar__nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pp-calendar__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.35rem 0.35rem;
}

.pp-calendar__table th {
  padding: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  text-align: center;
  color: rgba(244, 241, 236, 0.58);
}

.pp-calendar__table td {
  padding: 0;
}

.pp-calendar__cell.is-empty {
  opacity: 0;
}

.pp-calendar__day {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 236, 0.16);
  background: rgba(10, 9, 24, 0.72);
  color: rgba(244, 241, 236, 0.92);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.pp-calendar__day:hover:not(:disabled) {
  border-color: rgba(245, 110, 0, 0.6);
  background: rgba(245, 110, 0, 0.16);
}

.pp-calendar__day:active:not(:disabled) {
  transform: translateY(1px);
}

.pp-calendar__day:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.45);
  outline-offset: 2px;
}

.pp-calendar__day.is-selected {
  border-color: rgba(245, 110, 0, 0.9);
  background: rgba(245, 110, 0, 0.22);
}

.pp-calendar__day:disabled {
  cursor: not-allowed;
  color: rgba(244, 241, 236, 0.28);
  border-color: rgba(244, 241, 236, 0.08);
  background: rgba(10, 9, 24, 0.55);
}

.service-input--textarea {
  resize: vertical;
  min-height: 110px;
}

.service-input--file {
  padding: 0.75rem 0.9rem;
}

.service-input--file::file-selector-button {
  margin-right: 0.8rem;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(245, 110, 0, 0.85);
  background: rgba(245, 110, 0, 0.95);
  color: #f5f5f5;
  font-weight: 900;
  letter-spacing: 0.04rem;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease;

  /* Replace the default "Choose files" text with an upload icon */
  font-size: 0;
  line-height: 0;
  width: 3.25rem;
  height: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f5f5f5%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2015v4a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2v-4%27/%3E%3Cpolyline%20points%3D%2717%208%2012%203%207%208%27/%3E%3Cline%20x1%3D%2712%27%20y1%3D%273%27%20x2%3D%2712%27%20y2%3D%2715%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.service-input--file::-webkit-file-upload-button {
  margin-right: 0.8rem;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(245, 110, 0, 0.85);
  background: rgba(245, 110, 0, 0.95);
  color: #f5f5f5;
  font-weight: 900;
  letter-spacing: 0.04rem;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease;

  font-size: 0;
  line-height: 0;
  width: 3.25rem;
  height: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f5f5f5%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2015v4a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2v-4%27/%3E%3Cpolyline%20points%3D%2717%208%2012%203%207%208%27/%3E%3Cline%20x1%3D%2712%27%20y1%3D%273%27%20x2%3D%2712%27%20y2%3D%2715%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.service-input--file::file-selector-button:hover,
.service-input--file::-webkit-file-upload-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.service-input--file::file-selector-button:active,
.service-input--file::-webkit-file-upload-button:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.service-input--file::file-selector-button:focus-visible,
.service-input--file::-webkit-file-upload-button:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 2px;
}

select.service-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  padding-right: 2.6rem;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245, 110, 0, 0.95) 50%),
    linear-gradient(135deg, rgba(245, 110, 0, 0.95) 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) 50%,
    calc(100% - 0.95rem) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

select.service-input:invalid {
  color: rgba(244, 241, 236, 0.42);
}

select.service-input option {
  background-color: #0a0918;
  color: rgba(244, 241, 236, 0.92);
}

select.service-input option[value=""] {
  display: none;
}

select.service-input option:focus,
select.service-input option:checked,
select.service-input option:active {
  background-color: #0a0918;
  color: rgba(244, 241, 236, 0.92);
}

select.service-input option:hover {
  background-color: rgba(245, 110, 0, 0.16);
  color: rgba(255, 255, 255, 0.96);
}

select.service-input option:disabled {
  color: rgba(244, 241, 236, 0.6);
}

@supports (appearance: base-select) {
  #sc-property-type,
  #sc-property-type::picker(select),
  #sc-timeline,
  #sc-timeline::picker(select) {
    appearance: base-select;
  }

  #sc-property-type,
  #sc-timeline {
    background-image: none;
  }

  #sc-property-type::picker-icon,
  #sc-timeline::picker-icon {
    color: rgba(245, 110, 0, 0.95);
    transition: 0.2s rotate;
  }

  #sc-property-type:open::picker-icon,
  #sc-timeline:open::picker-icon {
    rotate: 180deg;
  }

  #sc-property-type::picker(select),
  #sc-timeline::picker(select) {
    background: #0a0918;
    border: 1px solid rgba(244, 241, 236, 0.16);
    border-radius: 14px;
    padding: 0.45rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  }

  #sc-property-type option,
  #sc-timeline option {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }

  #sc-property-type option::before,
  #sc-timeline option::before {
    display: none;
  }

  #sc-property-type option:focus,
  #sc-property-type option:active,
  #sc-property-type option:checked,
  #sc-timeline option:focus,
  #sc-timeline option:active,
  #sc-timeline option:checked {
    background: #0a0918;
    color: rgba(244, 241, 236, 0.92);
  }

  #sc-property-type option:hover,
  #sc-timeline option:hover {
    background: rgba(245, 110, 0, 0.16);
    color: rgba(255, 255, 255, 0.96);
  }
}

.service-field__error {
  margin: 0;
  color: rgba(251, 146, 60, 0.95);
  font-size: 0.95rem;
}

.service-field.is-invalid .service-input {
  border-color: rgba(251, 146, 60, 0.9);
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.14);
}

.service-fieldset {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
}

.service-fieldset__legend {
  font-size: 0.95rem;
  color: rgba(244, 241, 236, 0.9);
  margin-bottom: 0.75rem;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
}

.service-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-choice {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.service-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.service-choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 236, 0.16);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(244, 241, 236, 0.86);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.service-choice span:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 110, 0, 0.55);
}

.service-choice input:focus-visible + span {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 3px;
}

.service-choice input:checked + span {
  border-color: rgba(245, 110, 0, 0.95);
  background: rgba(245, 110, 0, 0.16);
  color: rgba(255, 255, 255, 0.96);
}

.service-choice--inline span {
  min-width: 6.75rem;
}

.service-fieldset.is-invalid .service-choice span,
.service-fieldset.is-invalid .service-check {
  border-color: rgba(251, 146, 60, 0.7);
}

.service-checklist {
  display: grid;
  gap: 0.65rem;
}

.service-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 236, 0.14);
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.service-check:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 110, 0, 0.55);
}

.service-check input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 4px;
  border: 1px solid rgba(244, 241, 236, 0.28);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.service-check input[type="checkbox"]:checked {
  border-color: rgba(245, 110, 0, 0.85);
  background-color: rgba(245, 110, 0, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f5f5f5%27%20stroke-width%3D%273%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M20%206%209%2017%204%2012%27/%3E%3C/svg%3E");
}

.service-check input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 3px;
}

.service-call-form__aside {
  border-radius: 14px;
  border: 1px solid rgba(244, 241, 236, 0.12);
  background: rgba(0, 0, 0, 0.14);
  padding: clamp(1rem, 2vw, 1.25rem);
}

.service-call-form__aside-title {
  margin: 0 0 1rem;
  color: rgba(245, 110, 0, 0.95);
  font-size: 1.1rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.service-call-form__aside-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.service-call-form__aside-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 236, 0.12);
  background: rgba(10, 9, 24, 0.45);
}

.service-call-form__aside-list .service-call-form__aside-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.18);
  color: rgba(244, 241, 236, 0.86);
  font-weight: 800;
}

.service-call-form__aside-list .service-call-form__aside-item-title {
  margin: 0;
  font-size: 1.02rem;
  color: rgba(244, 241, 236, 0.92);
}

.service-call-form__aside-list .service-call-form__aside-item-subtitle {
  margin: 0.25rem 0 0;
  color: var(--sc-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.service-call-form__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 241, 236, 0.12);
}

.service-call-form__back {
  justify-self: start;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 236, 0.16);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(244, 241, 236, 0.86);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.service-call-form__back:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(245, 110, 0, 0.55);
}

.service-call-form__back:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.service-call-form__progress {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
}

.service-call-form__step-count {
  color: rgba(244, 241, 236, 0.86);
  font-weight: 700;
  letter-spacing: 0.08rem;
}

.service-call-form__dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.service-call-form__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 236, 0.32);
  background: transparent;
}

.service-call-form__dot.is-active {
  background: rgba(245, 110, 0, 0.95);
  border-color: rgba(245, 110, 0, 0.95);
}

.service-call-form__dot.is-complete {
  background: rgba(251, 146, 60, 0.45);
  border-color: rgba(251, 146, 60, 0.65);
}

.service-call-form__primary {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 110, 0, 0.85);
  background: rgba(245, 110, 0, 0.95);
  color: #f5f5f5;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.service-call-form__primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.service-call-form__primary:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 3px;
}

.service-call-form__primary-icon {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #f5f5f5;
  font-size: 1.3rem;
  line-height: 1;
}

.service-call-confirmation {
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3rem) 1rem;
}

.service-call-confirmation__title {
  margin: 0;
  color: rgba(245, 110, 0, 0.95);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.service-call-confirmation__text {
  margin: 0.75rem auto 1.5rem;
  max-width: 42ch;
  color: var(--sc-muted);
}

.service-call-confirmation__text--secondary {
  margin-top: -0.75rem;
  max-width: 54ch;
}

.service-call-confirmation__link {
  color: rgba(245, 110, 0, 0.95);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 110, 0, 0.55);
  padding-bottom: 0.1rem;
}

.service-call-confirmation__link:hover {
  color: rgba(251, 146, 60, 0.96);
  border-bottom-color: rgba(251, 146, 60, 0.75);
}

.service-call-confirmation__link:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
  border-radius: 8px;
}

.service-call-confirmation__close {
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 110, 0, 0.85);
  background: rgba(245, 110, 0, 0.95);
  color: #f5f5f5;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.service-call-modal.is-confirmation .service-call-modal__stepper,
.service-call-modal.is-confirmation .service-call-form__aside,
.service-call-modal.is-confirmation .service-call-form__footer {
  display: none;
}

@media (max-width: 900px) {
  .service-stepper {
    grid-template-columns: repeat(var(--stepper-columns, 5), minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }

  .service-stepper__step {
    scroll-snap-align: center;
  }
}

.planning-appointment {
  margin-top: 1rem;
  padding-top: 0.25rem;
}

@media (max-width: 840px) {
  .service-call-form__content {
    grid-template-columns: 1fr;
  }

  .service-call-form__aside {
    order: 2;
  }
}

@media (max-width: 600px) {
  .service-call-modal__panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 16px;
  }

  .service-call-modal__header {
    padding-right: 2.5rem;
  }

  .service-call-form__footer {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0.75rem;
  }

  .service-call-form__back,
  .service-call-form__primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .service-call-modal {
    padding: 0.75rem;
  }

  .service-call-modal__panel {
    padding: 1.05rem;
    gap: 0.95rem;
  }

  .service-call-modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .service-call-modal__title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    letter-spacing: 0.06rem;
  }

  .service-call-modal__subtitle {
    font-size: 0.98rem;
  }

  .service-call-form__main,
  .service-call-form__aside {
    padding: 0.95rem;
  }

  .service-call-form__aside-list li {
    padding: 0.75rem 0.8rem;
  }

  .pp-calendar {
    padding: 0.7rem;
  }

  .pp-calendar__nav {
    width: 2.15rem;
    height: 2.15rem;
  }

  .pp-calendar__table {
    border-spacing: 0.25rem 0.25rem;
  }

  .pp-calendar__day {
    border-radius: 10px;
    font-size: 0.92rem;
  }
}

@supports (height: 100dvh) {
  .service-call-modal__panel {
    max-height: min(86dvh, 860px);
  }

  @media (max-width: 600px) {
    .service-call-modal__panel {
      max-height: 92dvh;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-call-modal,
  .service-call-modal__panel,
  .service-choice span,
  .service-check,
  .service-call-form__back,
  .service-call-form__primary {
    transition: none !important;
  }
}

/*

/// SERVICES STYLES ///

*/
#services {
  position: relative;
  overflow: hidden;
  padding-inline: 5%;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "service-heading"
    "service-card-wrapper"
    "service-card-wrapper2";
  align-items: center;
  justify-items: center;
  gap: 2rem;

  background:
    radial-gradient(circle at 20% 0%, rgba(251, 146, 60, 0.18) 0%, rgba(251, 146, 60, 0.05) 12%, transparent 28%),
    radial-gradient(circle at 42% 0%, rgba(251, 146, 60, 0.2) 0%, rgba(251, 146, 60, 0.05) 12%, transparent 28%),
    radial-gradient(circle at 65% 0%, rgba(251, 146, 60, 0.18) 0%, rgba(251, 146, 60, 0.05) 12%, transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(251, 146, 60, 0.18) 0%, rgba(251, 146, 60, 0.05) 12%, transparent 28%),

    linear-gradient(
      180deg,
      #f0dcc0 0%,   /* warm light top */
      #e6d3b8 25%,
      #ded0c2 55%,
      #e7e7e7 100%  /* your original base */
    );
}
.services-light {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: clamp(140px, 18vw, 300px);

display: grid;
grid-template-columns: repeat(4, 1fr);
place-items: start center;

padding-inline: clamp(3rem, 8vw, 10rem);
pointer-events: none;
z-index: 2;
}

.services-light img {
width: clamp(12rem, 18vw, 22rem);
height: auto;
opacity: 0.95;
filter:
drop-shadow(0 0 8px rgba(255, 210, 120, 0.75))
drop-shadow(0 0 22px rgba(245, 110, 0, 0.45));
}

#services::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 3px;
width: 100%;
pointer-events: none;
z-index: 3;

background: linear-gradient(
90deg,
rgba(245, 110, 0, 0.15),
rgba(255, 244, 200, 0.95) 20%,
rgba(245, 110, 0, 0.9) 50%,
rgba(255, 244, 200, 0.95) 80%,
rgba(245, 110, 0, 0.15)
);

box-shadow:
0 0 8px rgba(245, 110, 0, 0.75),
0 0 22px rgba(245, 110, 0, 0.45);
}

#services::after {
content: "";
position: absolute;
top: 0;
left: 0;
height: clamp(120px, 18vw, 260px);
width: 100%;
pointer-events: none;
z-index: 0;

background: linear-gradient(
180deg,
rgba(255, 190, 90, 0.38) 8%,
rgba(255, 190, 90, 0.18) 35%,
rgba(255, 190, 90, 0) 100%
);
}

#services > *:not(.services-light) {
position: relative;
z-index: 4;
}

.service-heading {
grid-area: service-heading;
text-align: center;
margin-top: 6rem;
}

.service-card-wrapper {
grid-area: service-card-wrapper;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}

.service-card-wrapper2 {
grid-area: service-card-wrapper2;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
margin-bottom: 4rem;
}

.service-card-container {
display: flex;
flex-direction: column;

background:
linear-gradient(
180deg,
rgba(255, 245, 210, 0.75) 0%,
rgba(255, 232, 170, 0.35) 20%,
rgba(244, 241, 236, 0.05) 48%
),
#f4f1ec;

border-radius: 12px;
width: clamp(18rem, 25vw, 25rem);
padding: clamp(1rem, 2vw, 2rem);

border-top: 2px solid rgba(255, 250, 225, 0.95);

box-shadow:
inset 0 18px 28px rgba(255, 245, 210, 0.22),
0 -2px 10px rgba(255, 210, 120, 0.18),
0 18px 30px rgba(0, 0, 0, 0.08);
}
.service-card-container a {
color: #f56e00;
font-weight: 700;
margin-top: auto;
align-self: flex-start;
}

.service-card-container p {
margin-top: 0;
}

.service-card-container h4 {
 margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .services-light {
    grid-template-columns: repeat(2, 1fr);
    height: clamp(120px, 28vw, 240px);
    padding-inline: clamp(1.5rem, 6vw, 4rem);
  }

  .services-light img {
    width: clamp(10rem, 28vw, 18rem);
  }

  .service-heading {
    margin-top: clamp(4rem, 10vw, 6rem);
  }

  .service-card-wrapper,
  .service-card-wrapper2 {
    gap: 1.35rem;
  }
}

@media (max-width: 600px) {
  .services-light {
    display: none;
  }

  .service-heading {
    margin-top: 3.25rem;
  }

  .service-card-container {
    width: min(92vw, 28rem);
  }
}

/*

/// WHY CHOOSE US STYLES ///

*/

#why-choose-us {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6rem) 5%;
}

.about-col-left-card {
  grid-area: review;
  background: linear-gradient(145deg, #0a0918, #121026);
  color: #fffae6;
  width: clamp(14rem, 18vw, 18rem);
  padding: clamp(1rem, 2vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 20px rgba(245, 110, 0, 0.15);
  backdrop-filter: blur(4px);
  z-index: 1;
  justify-self: end;
  align-self: start;
}

.about-col-left-card p {
  margin-top: 0;
}

.about-col-left-card .review-rotator {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0.75rem;
}

.about-col-left-card .review-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.6s ease-in-out, visibility 0s linear 1.6s;
  z-index: 0;
}

.about-col-left-card .review-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.6s ease-in-out;
  z-index: 1;
}

.about-col-left-card .review-text {
  margin: 0 0 0.75rem;
}

.about-col-left-card .review-slide .reviewer {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .about-col-left-card .review-slide {
    transition: none;
  }
}

.reviewer {
  font-size: 1rem;
  color: #f56e00;
}

.about-col-left-card svg {
  fill: currentColor;
  stroke: currentColor;
  height: 4rem;
  width: auto;
  color: #f56e00;
}

.why-choose-us-wrapper {
  position: relative;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 80% 20%;
  border-radius: 24px;
  overflow: hidden;
  min-height: clamp(520px, 80vh, 900px);
  padding: clamp(2.5rem, 5vw, 4.25rem);
  display: grid;
  grid-template-columns: minmax(24rem, 1fr) minmax(22rem, 44rem) minmax(16rem, 18rem);
  grid-template-areas:
    ". content review"
    ". trust .";
  row-gap: clamp(1.75rem, 4vw, 3.5rem);
  column-gap: clamp(1rem, 2.5vw, 2.25rem);
  align-items: start;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.about-media {
  display: none;
}

.about-media__image {
  display: block;
  width: 100%;
  height: 100%;
}

.about-col-right {
  grid-area: content;
  max-width: 44rem;
}

.about-col-right .about-eyebrow {
  letter-spacing: .25rem;
  margin: 0;
  font-size: 1.25rem;
  color: #f56e00;
}

.sub-heading-about {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #f56e00;
}

.signature {
  font-family: "Qwitcher Grypen", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: #f56e00;
  margin-bottom: 0;
}

.sub-signature {
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 1.1rem;
}

.trust-col-wrap {
  grid-area: trust;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.trust-card {
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.trust-card:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.trust-card:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.35);
}

.trust-card svg {
  fill: currentColor;
  stroke: currentColor;
  height: 4rem;
  width: auto;
  color: #f56e00;
}

.trust-card p {
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .why-choose-us-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "review"
      "trust";
    padding: clamp(2rem, 6vw, 3.25rem);
    background-size: cover;
    background-position: center;
  }

  .about-col-right {
    max-width: 100%;
    margin-left: 0;
  }

  .about-col-left-card {
    justify-self: start;
    width: min(92vw, 22rem);
  }

  .trust-col-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card:not(:last-child) {
    border-right: none;
  }

  .trust-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 600px) {
  #why-choose-us {
    padding: 3.25rem 5%;
  }

  .why-choose-us-wrapper {
    min-height: auto;
    padding: 1.75rem;
    border-radius: 18px;
  }

  .about-col-right .about-eyebrow {
    font-size: 1.05rem;
    letter-spacing: 0.22rem;
  }

  .signature {
    font-size: clamp(3rem, 14vw, 3.75rem);
  }

  .trust-col-wrap {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .trust-card {
    padding: 1.1rem 0.9rem;
  }
}

/*

/// RECENT PROJECTS STYLES ///

*/

#recent-projects {
  --color-bg-warm: #f8f4ee;
  --color-navy: #0b0b1d;
  --color-navy-2: #111126;
  --color-orange: #f56e00;
  --color-text-dark: #090914;
  --color-text-muted: #6f6f78;
  --color-text-light: #f7f3ea;
  --color-card-border: rgba(10, 9, 24, 0.12);

  /* Backward-compatible aliases for older selectors in this file */
  --accent: var(--color-orange);
  --dark: var(--color-navy);
  --dark-2: var(--color-navy-2);
  position: relative;
  padding: clamp(4rem, 6vw, 7rem) 5%;
  color: var(--color-text-dark);
  background: var(--color-bg-warm);
  overflow: hidden;
}

#recent-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(9, 9, 20, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.08;
  transform: translateX(6%) translateY(-6%);
  pointer-events: none;
}

#recent-projects::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.recent-projects__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.recent-projects__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(2.2rem, 4vw, 3.25rem);
}

.recent-projects__headline {
  margin: 0 0 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-text-dark);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.recent-projects__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.recent-projects__lead {
  margin: 0;
  max-width: 560px;
  color: var(--color-text-muted);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.recent-projects__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.95rem;
  min-width: min(28rem, 100%);
  margin-top: 0.8rem;
}

.recent-projects__social-text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(12, 12, 20, 0.65);
  white-space: nowrap;
}

.recent-projects__social-rule {
  flex: 1;
  height: 1px;
  background: rgba(12, 12, 20, 0.18);
}

.recent-projects__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(12, 12, 20, 0.22);
  transition: transform 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.recent-projects__social-link svg {
  width: 2rem;
  height: 2rem;
}

.recent-projects__social-link--instagram {
  color: #ffffff;
  border-color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 14px 30px rgba(10, 9, 24, 0.12);
}

.recent-projects__social-link--instagram svg {
  /* Slightly zoom the Instagram glyph so the rounded-square stroke doesn't look "boxed in" */
  transform: scale(1.18);
  transform-origin: center;
}

.recent-projects__social-link:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(245, 110, 0, 0.55);
}

.recent-projects__social-link--instagram:hover {
  color: var(--accent);
}

.recent-projects__social-link:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

#recent-projects .projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

#recent-projects .featured-project-card {
  min-width: 0;
}

#recent-projects .featured-project-card__link {
  min-height: clamp(620px, 50vw, 680px);
  display: grid;
  grid-template-columns: 42% 58%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 9, 24, 0.14);
  background: var(--color-navy);
  box-shadow: 0 18px 48px rgba(10, 9, 24, 0.12);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

#recent-projects .featured-project-card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(10, 9, 24, 0.16);
  border-color: rgba(245, 110, 0, 0.22);
}

#recent-projects .featured-project-card__link:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

#recent-projects .featured-project-content {
  position: relative;
  padding: clamp(2.75rem, 3.4vw, 4rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-navy);
  color: var(--color-text-light);
}

#recent-projects .featured-project-content::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 1.55rem;
  width: 9.75rem;
  height: 6.25rem;
  background: radial-gradient(rgba(247, 243, 234, 0.18) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  opacity: 0.38;
  pointer-events: none;
}

#recent-projects .featured-project-content__label {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(245, 110, 0, 0.95);
}

#recent-projects .featured-project-content__rule {
  width: 3.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-orange);
  margin-bottom: 1.35rem;
}

#recent-projects .featured-project-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 110, 0, 0.75);
  background: rgba(245, 110, 0, 0.06);
  color: rgba(245, 110, 0, 0.95);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
}

#recent-projects .featured-project-chip__icon {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 110, 0, 0.55);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(245, 110, 0, 0.95);
}

#recent-projects .featured-project-chip__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

#recent-projects .featured-project-content__title {
  margin: 1.35rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

#recent-projects .featured-project-content__desc {
  margin: 0;
  max-width: 340px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
}

#recent-projects .featured-project-content__divider {
  margin-top: auto;
  width: 100%;
  height: 1px;
  background: rgba(247, 243, 234, 0.12);
  border-radius: 999px;
}

#recent-projects .featured-project-content__arrow {
  margin-top: 1.5rem;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 110, 0, 0.96);
  color: #ffffff;
  box-shadow: 0 0 0 6px rgba(245, 110, 0, 0.16), 0 18px 44px rgba(10, 9, 24, 0.3);
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;
}

#recent-projects .featured-project-content__arrow svg {
  width: 1.4rem;
  height: 1.4rem;
}

#recent-projects .featured-project-card__link:hover .featured-project-content__arrow {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 0 0 7px rgba(245, 110, 0, 0.18), 0 22px 48px rgba(10, 9, 24, 0.34);
}

#recent-projects .featured-project-image {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-2);
}

#recent-projects .featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 200ms ease;
}

#recent-projects .featured-project-card__link:hover .featured-project-image img {
  transform: scale(1.03);
}

#recent-projects .project-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

#recent-projects .project-card {
  min-width: 0;
}

#recent-projects .project-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-navy);
  border: 1px solid rgba(10, 9, 24, 0.14);
  box-shadow: 0 14px 38px rgba(10, 9, 24, 0.12);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

#recent-projects .project-card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(10, 9, 24, 0.18);
  border-color: rgba(245, 110, 0, 0.22);
}

#recent-projects .project-card__link:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

#recent-projects .project-card__media {
  position: relative;
  height: clamp(190px, 14vw, 220px);
  overflow: hidden;
}

#recent-projects .project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 200ms ease;
}

#recent-projects .project-card__link:hover .project-card__media img {
  transform: scale(1.03);
}

#recent-projects .project-card__body {
  padding: 1.55rem 1.65rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: var(--color-text-light);
}

#recent-projects .project-card__tag {
  margin: 0 0 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.75rem;
}

#recent-projects .project-card__tag-icon {
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(245, 110, 0, 0.4);
  background: rgba(245, 110, 0, 0.08);
  color: var(--color-orange);
  flex: 0 0 auto;
}

#recent-projects .project-card__tag-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

#recent-projects .project-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #ffffff;
}

#recent-projects .project-card__desc {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

#recent-projects .project-card__accent {
  width: 3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-orange);
  margin-top: 1.25rem;
}

@media (max-width: 1024px) {
  #recent-projects .projects-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #recent-projects .featured-project-card__link {
    grid-template-columns: 1fr;
  }

  #recent-projects .featured-project-image {
    order: -1;
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  #recent-projects .project-grid {
    grid-template-columns: 1fr;
  }

  #recent-projects .project-card__media {
    height: 200px;
  }
}

@media (max-width: 430px) {
  .recent-projects__social {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .recent-projects__social-text {
    white-space: normal;
  }

  .recent-projects__social-rule {
    flex-basis: 100%;
    order: 3;
  }
}

.recent-projects__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.7rem);
  align-items: center;
}

.featured-project {
  position: relative;
  min-height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-project:visited {
  color: inherit;
}

.featured-project:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 6px;
}

.featured-project__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 20%, rgba(245, 110, 0, 0.7), transparent 55%),
    radial-gradient(circle at 70% 66%, rgba(255, 255, 255, 0.16), transparent 52%),
    linear-gradient(145deg, rgba(10, 9, 24, 0.95), rgba(18, 16, 38, 0.85));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.featured-project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-project__card {
  position: absolute;
  left: clamp(1rem, 2vw, 1.6rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(18.5rem, 74%);
  padding: clamp(1rem, 2vw, 1.55rem);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  color: #fffae6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.project-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--accent);
}

.project-card__tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--accent);
}

.project-card__tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(245, 110, 0, 0.12);
  border: 1px solid rgba(245, 110, 0, 0.25);
  color: var(--accent);
  flex: 0 0 auto;
}

.project-card__tag-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.featured-project__card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0.03rem;
  color: #fffae6;
}

.project-card__desc {
  margin: 0;
  font-size: 1rem;
  color: rgba(202, 213, 226, 0.95);
  line-height: 1.55;
}

.project-card__cta {
  margin-top: 0.35rem;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0a0918;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 14px 26px rgba(245, 110, 0, 0.25);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.project-card__cta:hover {
  transform: translateY(-1px);
  background: #fb923c;
}

.project-card__cta:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.55rem);
}

.project-tile {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.project-tile:visited {
  color: inherit;
}

.project-tile:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 6px;
}

.project-tile__media {
  position: relative;
  height: clamp(8.5rem, 12vw, 10.2rem);
  background: radial-gradient(circle at 25% 30%, rgba(245, 110, 0, 0.6), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project-tile__media--meter .project-tile__img {
  object-position: 50% 70%;
}

.project-tile__media--repair .project-tile__img {
  object-position: 50% 65%;
}

.project-tile__media--meter {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 70% 40%, rgba(245, 110, 0, 0.5), transparent 55%),
    linear-gradient(90deg, rgba(160, 170, 190, 0.22), rgba(14, 14, 28, 0.85));
}

.project-tile__media--lighting {
  background:
    radial-gradient(circle at 55% 20%, rgba(255, 199, 120, 0.7), transparent 60%),
    linear-gradient(180deg, rgba(10, 9, 24, 0.55), rgba(10, 9, 24, 1));
}

.project-tile__media--ev {
  background:
    radial-gradient(circle at 30% 35%, rgba(48, 220, 160, 0.55), transparent 58%),
    radial-gradient(circle at 78% 70%, rgba(245, 110, 0, 0.35), transparent 60%),
    linear-gradient(145deg, rgba(10, 9, 24, 0.65), rgba(18, 16, 38, 1));
}

.project-tile__media--repair {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 3px, transparent 3px 18px),
    radial-gradient(circle at 25% 25%, rgba(245, 110, 0, 0.45), transparent 58%),
    linear-gradient(145deg, rgba(10, 9, 24, 0.8), rgba(18, 16, 38, 1));
}

.project-tile__body {
  padding: 1.15rem 1.2rem 1.35rem;
  color: #fffae6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-tile__tag {
  margin: 0 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.project-tile__tag-icon {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(245, 110, 0, 0.35);
  background: rgba(245, 110, 0, 0.08);
  color: var(--accent);
  flex: 0 0 auto;
}

.project-tile__tag-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.project-tile__title {
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
  color: #fffae6;
  letter-spacing: 0.02rem;
}

.project-tile__desc {
  margin: 0;
  color: rgba(202, 213, 226, 0.95);
  font-size: 1rem;
  line-height: 1.55;
}

.project-tile__accent {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .recent-projects__header {
    grid-template-columns: 1fr;
  }

  .recent-projects__social {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
    margin-top: 0.5rem;
  }

  .recent-projects__grid {
    grid-template-columns: 1fr;
  }

  .featured-project__media {
    aspect-ratio: 4 / 3;
  }

  .featured-project__card {
    top: auto;
    bottom: clamp(1rem, 2vw, 1.6rem);
    transform: none;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
}

/*

/// FOOTER STYLES ///

*/

.site-footer {
  --accent: #f56e00;
  --accent-2: #fb923c;
  position: relative;
  padding: clamp(3.2rem, 6vw, 4.5rem) 5%;
  color: #f4f1ec;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(245, 110, 0, 0.28) 0%, rgba(245, 110, 0, 0) 60%),
    radial-gradient(820px 560px at 85% 35%, rgba(251, 146, 60, 0.14) 0%, rgba(251, 146, 60, 0) 60%),
    linear-gradient(180deg, #080808 0%, #0a0918 55%, #05040e 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(251, 146, 60, 0.55) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
  opacity: 0.12;
  transform: translateX(18%) rotate(2deg);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(251, 146, 60, 0.16) 0%,
    rgba(251, 146, 60, 0.45) 18%,
    rgba(245, 110, 0, 0.9) 50%,
    rgba(251, 146, 60, 0.45) 82%,
    rgba(251, 146, 60, 0.16) 100%
  );
  box-shadow: 0 0 10px rgba(245, 110, 0, 0.28);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
  gap: clamp(1.75rem, 3vw, 3rem);
  align-items: start;
}

.site-footer__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
}

.site-footer__brand-body {
  min-width: 0;
}

.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.site-footer__logo-link:hover {
  opacity: 0.9;
}

.site-footer__logo-link:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

.site-footer__logo-link .site-footer__logo {
  filter: none;
  transition: filter 220ms ease;
}

.site-footer__logo-link:hover .site-footer__logo,
.site-footer__logo-link:focus-visible .site-footer__logo {
  filter: drop-shadow(0 0 14px rgba(245, 110, 0, 0.55)) drop-shadow(0 0 30px rgba(184, 115, 51, 0.35));
}

.site-footer__logo {
  width: 18.9rem;
  height: 18.9rem;
  display: block;
}

.site-footer__tagline {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  color: rgba(244, 241, 236, 0.78);
  font-size: 1.05rem;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0;
}

.site-footer__badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(244, 241, 236, 0.22);
  color: rgba(244, 241, 236, 0.92);
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.site-footer__social-link svg {
  width: 2.1rem;
  height: 2.1rem;
}

.site-footer__social-link--facebook {
  color: #1877f2;
}

.site-footer__social-link--instagram {
  color: #ffffff;
  border-color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.site-footer__social-link--instagram svg {
  /* Match the Recent Projects icon fill/crop so the Instagram border doesn't peek at top/bottom */
  transform: scale(1.18);
  transform-origin: center;
}

.site-footer__social-link:hover {
  transform: translateY(-1px);
  color: var(--accent);
  border-color: rgba(245, 110, 0, 0.75);
}

.site-footer__social-link--instagram:hover {
  color: var(--accent);
}

.site-footer__social-link:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.26rem;
  text-transform: uppercase;
  color: var(--accent-2);
}

.site-footer__list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.site-footer__link {
  color: rgba(244, 241, 236, 0.82);
  font-size: 1.05rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__link:hover {
  color: #ffffff;
}

.site-footer__nav .site-footer__link:hover,
.site-footer__nav .site-footer__link:active {
  color: #f56e00;
}

.site-footer__link:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
  border-radius: 10px;
}

.site-footer__link--strong {
  color: #ffffff;
  font-weight: 800;
}

.site-footer__muted {
  color: rgba(244, 241, 236, 0.72);
  font-size: 1rem;
}

.site-footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02rem;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.site-footer__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer__btn:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
}

.site-footer__btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: rgba(245, 110, 0, 0.55);
  color: #f5f5f5;
  box-shadow: 0 16px 35px rgba(245, 110, 0, 0.28);
}

.site-footer__btn--accent:hover {
  background: linear-gradient(135deg, #fb923c, #ffad6c);
}

.site-footer__bottom {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__copy {
  margin: 0;
  color: rgba(244, 241, 236, 0.72);
  font-size: 0.95rem;
}

.site-footer__to-top {
  color: rgba(244, 241, 236, 0.82);
  font-weight: 800;
}

.site-footer__to-top:hover {
  color: #ffffff;
}

.site-footer__to-top:focus-visible {
  outline: 3px solid rgba(245, 110, 0, 0.55);
  outline-offset: 4px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .site-footer__logo {
    width: 8.5rem;
    height: 8.5rem;
  }

  .site-footer__tagline {
    max-width: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .site-footer__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__btn {
    width: 100%;
  }
}

/*

/// TARGETED TABLET + MOBILE RESPONSIVE REFINEMENTS ///

*/
@media (max-width: 768px) {
  :root {
    --scroll-offset: 132px;
  }

  .nav-wrap {
    grid-template-columns: minmax(3rem, auto) minmax(0, 1fr);
    grid-template-areas:
      "logo right"
      "links links";
    align-items: center;
    row-gap: 0.25rem;
    column-gap: clamp(0.5rem, 2vw, 1rem);
    margin-inline: clamp(0.85rem, 4vw, 2rem);
    padding: 0.25rem 0 0.45rem;
  }

  .nav-wrap::before {
    bottom: -10px;
    height: 14px;
  }

  .nav-logo img {
    width: clamp(2.75rem, 10vw, 3.65rem);
    padding: 0.35rem 0 0.2rem;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem clamp(0.45rem, 2vw, 0.85rem);
    width: 100%;
    padding-bottom: 0;
    font-size: clamp(0.88rem, 2.4vw, 0.98rem);
  }

  .nav-links a,
  .contact-btn,
  .get-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .nav-links a {
    padding: 0.35rem 0.45rem;
    border-radius: 10px;
    white-space: nowrap;
  }

  .nav-btns {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(0.4rem, 1.8vw, 0.75rem);
    min-width: 0;
  }

  .contact-btn,
  .get-quote-btn {
    white-space: nowrap;
    font-size: clamp(0.82rem, 2.2vw, 0.95rem);
    line-height: 1;
  }

  .contact-btn {
    min-width: 0;
  }

  .lottie-icon--nav {
    flex: 0 0 auto;
    width: clamp(1.75rem, 6vw, 2.25rem);
    height: clamp(1.75rem, 6vw, 2.25rem);
    margin-right: 0.35rem;
  }

  .get-quote-btn {
    padding: 0.55rem 0.85rem;
  }

  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "hero-wrap"
      "cta-wrap";
    min-height: auto;
    padding: clamp(2.4rem, 7vw, 4rem) 0 clamp(2rem, 6vw, 3.25rem);
  }

  .hero-wrapper {
    min-height: 100%;
    background-position: 62% center;
    background-size: cover;
  }

  .hero-wrapper::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.72) 46%,
        rgba(0, 0, 0, 0.84) 100%
      ),
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.44) 58%,
        rgba(0, 0, 0, 0.2) 100%
      );
  }

  .heading-wrap {
    align-self: start;
    width: min(calc(100% - 2rem), 42rem);
    margin: 0 auto;
  }

  .heading-wrap h1 {
    margin: 0 0 0.4rem;
    font-size: clamp(2.35rem, 8vw, 3.65rem);
    letter-spacing: clamp(0.08rem, 0.5vw, 0.16rem);
  }

  .sub-heading {
    margin: 0;
    font-size: clamp(1.18rem, 4vw, 1.8rem);
    line-height: 1.15;
  }

  .heading-wrap p {
    max-width: 38rem;
    margin: 0.85rem 0 0;
    font-size: clamp(0.98rem, 2.6vw, 1.12rem);
    line-height: 1.55;
  }

  .cta-wrap {
    align-self: start;
    width: min(calc(100% - 2rem), 34rem);
    margin: clamp(1.35rem, 4vw, 2rem) auto 0;
  }

  .cta-wrap h2 {
    font-size: clamp(1.55rem, 5vw, 2.25rem);
    letter-spacing: clamp(0.12rem, 0.8vw, 0.2rem);
  }

  .cta-card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0.95rem;
  }

  .cta-card,
  .cta-card:hover {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: center;
    justify-items: start;
    column-gap: 0.9rem;
    width: 100%;
    min-height: 5.25rem;
    padding: 0.85rem 1rem;
    text-align: left;
  }

  .card-icon {
    grid-area: icon;
    width: clamp(2.15rem, 7vw, 3rem);
    margin-top: 0;
  }

  .cta-card h4 {
    grid-area: title;
    margin: 0;
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
    line-height: 1.15;
  }

  .cta-card p {
    grid-area: text;
    margin: 0.2rem 0 0;
    font-size: clamp(0.92rem, 2.7vw, 1rem);
    line-height: 1.35;
  }

  #services {
    padding-inline: clamp(1rem, 4vw, 2rem);
    padding-block-end: clamp(2rem, 6vw, 3rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-auto-rows: 1fr;
    grid-template-areas: "service-heading service-heading";
    align-items: stretch;
    row-gap: clamp(0.75rem, 2.2vw, 1rem);
    column-gap: clamp(0.6rem, 2vw, 1rem);
  }

  .services-light {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: clamp(5.5rem, 18vw, 8rem);
    padding-inline: clamp(1rem, 6vw, 3.25rem);
    opacity: 0.72;
  }

  .services-light img {
    width: clamp(8rem, 26vw, 13rem);
    opacity: 0.78;
    filter:
      drop-shadow(0 0 7px rgba(255, 210, 120, 0.52))
      drop-shadow(0 0 18px rgba(245, 110, 0, 0.28));
  }

  .services-light img:nth-child(n + 3) {
    display: none;
  }

  #services::after {
    height: clamp(6rem, 20vw, 10rem);
    background: linear-gradient(
      180deg,
      rgba(255, 190, 90, 0.3) 0%,
      rgba(255, 190, 90, 0.13) 42%,
      rgba(255, 190, 90, 0) 100%
    );
  }

  .service-heading {
    grid-column: 1 / -1;
    max-width: min(100%, 34rem);
    margin-top: clamp(3.25rem, 9vw, 4.75rem);
  }

  .service-heading h2 {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  .service-heading p {
    margin: 0.6rem 0 0;
    font-size: clamp(0.98rem, 2.8vw, 1.08rem);
    line-height: 1.5;
  }

  .service-card-wrapper,
  .service-card-wrapper2 {
    display: contents;
  }

  .service-card-wrapper2 {
    margin-bottom: 0;
  }

  .service-card-container {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    gap: 0.45rem;
    padding: clamp(0.78rem, 2.6vw, 1rem);
  }

  .lottie-icon--service {
    flex: 0 0 auto;
    align-self: flex-start;
    width: clamp(2.1rem, 6vw, 2.75rem);
    height: clamp(2.1rem, 6vw, 2.75rem);
  }

  .service-card-container h4 {
    margin: 0;
    font-size: clamp(0.96rem, 2.9vw, 1.18rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .service-card-container p {
    margin: 0;
    font-size: clamp(0.84rem, 2.25vw, 0.96rem);
    line-height: 1.34;
  }

  .service-card-container a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: auto;
    font-size: clamp(0.84rem, 2.2vw, 0.96rem);
  }

  #why-choose-us {
    padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2rem);
  }

  .why-choose-us-wrapper {
    width: min(100%, 48rem);
    min-height: auto;
    padding: clamp(1.25rem, 4vw, 2rem);
    row-gap: clamp(1rem, 4vw, 1.5rem);
    grid-template-areas:
      "content"
      "media"
      "review"
      "trust";
    background-image: none;
    background-size: auto;
    background-position: center;
  }

  .about-col-right {
    max-width: 100%;
    padding: clamp(1.1rem, 4vw, 1.75rem);
    border-radius: 18px;
    background: rgba(244, 241, 236, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  }

  .about-media {
    grid-area: media;
    display: block;
    justify-self: center;
    width: min(100%, 28rem);
    height: clamp(15rem, 54vw, 21rem);
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(244, 241, 236, 0.7);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.13),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  }

  .about-media__image {
    object-fit: cover;
    object-position: 24% 42%;
    transform: scale(1.08);
    transform-origin: 24% 42%;
  }

  .about-col-right br {
    display: none;
  }

  .about-col-right h2 {
    margin: 0.25rem 0 0.35rem;
    font-size: clamp(1.9rem, 6vw, 2.65rem);
    line-height: 1.12;
  }

  .about-col-right p {
    font-size: clamp(0.96rem, 2.7vw, 1.05rem);
    line-height: 1.55;
  }

  .about-col-right .about-eyebrow,
  .sub-heading-about {
    font-size: clamp(0.92rem, 2.7vw, 1.05rem);
  }

  .signature {
    margin: 0.8rem 0 0;
    font-size: clamp(3rem, 10vw, 3.75rem);
    line-height: 0.9;
  }

  .sub-signature {
    margin-top: 0.25rem;
    line-height: 1.2;
    font-size: clamp(0.94rem, 2.5vw, 1.05rem);
  }

  .about-col-left-card {
    justify-self: stretch;
    width: min(100%, 24rem);
    padding: clamp(1rem, 3.4vw, 1.35rem);
    grid-area: review;
  }

  .about-col-left-card svg {
    height: clamp(2.4rem, 8vw, 3.1rem);
  }

  .about-col-left-card .review-text {
    font-size: clamp(0.95rem, 2.6vw, 1rem);
    line-height: 1.5;
  }

  .trust-col-wrap {
    margin-top: 0.25rem;
  }

  .trust-card {
    padding: 1rem 0.9rem;
  }

  .trust-card svg {
    height: clamp(2.5rem, 8vw, 3.25rem);
  }

  .trust-card h5 {
    margin: 0.55rem 0 0.35rem;
    font-size: clamp(0.98rem, 2.7vw, 1.08rem);
  }

  .trust-card p {
    margin: 0;
    font-size: clamp(0.92rem, 2.4vw, 0.98rem);
  }
}

@media (max-width: 480px) {
  :root {
    --scroll-offset: 118px;
  }

  .nav-wrap {
    grid-template-columns: minmax(2.65rem, auto) minmax(0, 1fr);
    grid-template-areas:
      "logo right"
      "links links";
    row-gap: 0.15rem;
    column-gap: 0.45rem;
    margin-inline: 0.75rem;
    padding-bottom: 0.35rem;
  }

  .nav-logo img {
    width: clamp(2.55rem, 12vw, 3rem);
    padding-block: 0.25rem 0.15rem;
  }

  .nav-btns {
    width: auto;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .contact-btn,
  .get-quote-btn {
    font-size: clamp(0.76rem, 3vw, 0.86rem);
  }

  .lottie-icon--nav {
    width: 1.65rem;
    height: 1.65rem;
    margin-right: 0.2rem;
  }

  .get-quote-btn {
    padding-inline: 0.55rem;
    border-radius: 10px;
  }

  .nav-links {
    justify-content: space-between;
    gap: 0.15rem;
    font-size: clamp(0.82rem, 3.2vw, 0.92rem);
  }

  .nav-links a {
    padding-inline: 0.25rem;
  }

  #hero {
    padding: clamp(2rem, 7vw, 2.6rem) 0 clamp(1.75rem, 6vw, 2.4rem);
  }

  .hero-wrapper {
    background-position: 66% center;
  }

  .heading-wrap {
    width: min(calc(100% - 1.5rem), 28rem);
  }

  .heading-wrap h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.08;
  }

  .heading-wrap p {
    margin-top: 0.75rem;
    font-size: clamp(0.96rem, 3.4vw, 1.02rem);
    line-height: 1.5;
  }

  .cta-wrap {
    width: min(calc(100% - 1.5rem), 28rem);
    margin-top: 1.1rem;
  }

  .cta-card-container {
    gap: 0.65rem;
  }

  .cta-card,
  .cta-card:hover {
    min-height: 4.75rem;
    padding: 0.75rem 0.85rem;
    column-gap: 0.75rem;
  }

  .card-icon {
    width: clamp(2rem, 8vw, 2.35rem);
  }

  .cta-card h4 {
    font-size: clamp(1rem, 4vw, 1.12rem);
  }

  .cta-card p {
    font-size: 0.92rem;
  }

  #services {
    padding-inline: 0.7rem;
    padding-block-end: 2.25rem;
    row-gap: 0.65rem;
    column-gap: 0.55rem;
  }

  .service-heading {
    margin-top: clamp(3rem, 12vw, 3.75rem);
  }

  .service-card-wrapper,
  .service-card-wrapper2 {
    display: contents;
  }

  .service-card-container {
    width: 100%;
    padding: 0.72rem;
    gap: 0.38rem;
  }

  .lottie-icon--service {
    width: 2rem;
    height: 2rem;
  }

  .service-card-container h4 {
    font-size: clamp(0.9rem, 3.3vw, 1rem);
  }

  .service-card-container p {
    font-size: clamp(0.8rem, 2.9vw, 0.88rem);
    line-height: 1.32;
  }

  .service-card-container a {
    font-size: clamp(0.84rem, 3vw, 0.9rem);
  }

  #why-choose-us {
    padding-inline: 0.85rem;
  }

  .why-choose-us-wrapper {
    padding: 0.9rem;
    border-radius: 18px;
    background-position: center, 74% bottom;
  }

  .about-media {
    width: 100%;
    height: clamp(13.5rem, 62vw, 17.5rem);
    border-radius: 16px;
  }

  .about-media__image {
    object-position: 24% 45%;
    transform: scale(1.12);
  }

  .about-col-right {
    padding: 1rem;
    border-radius: 16px;
  }

  .about-col-left-card {
    width: 100%;
  }

  .trust-col-wrap {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 0.95rem 0.75rem;
  }
}

@media (min-width: 421px) and (max-width: 768px) {
  .service-card-container {
    padding: clamp(0.82rem, 2.2vw, 1rem);
    gap: clamp(0.42rem, 1.3vw, 0.55rem);
  }

  .lottie-icon--service {
    width: clamp(2.1rem, 5.2vw, 2.65rem);
    height: clamp(2.1rem, 5.2vw, 2.65rem);
  }

  .service-card-container h4 {
    font-size: clamp(0.95rem, 2.55vw, 1.15rem);
  }

  .service-card-container p {
    font-size: clamp(0.82rem, 2.15vw, 0.94rem);
  }
}

@media (max-width: 340px) {
  #services {
    grid-template-columns: 1fr;
    grid-template-areas: "service-heading";
  }
}

/*

/// MOBILE LANDING SECTION REFINEMENTS ///

*/
@media (max-width: 768px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(3, 3, 12, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
  }

  body.is-mobile-nav-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  :root {
    --scroll-offset: 82px;
    --mobile-header-overlap: 82px;
    --mobile-hero-edge-space: clamp(1.35rem, 3.5vw, 2rem);
  }

  .container {
    margin-bottom: calc(-1 * var(--mobile-header-overlap));
    background: var(--color-black);
    backdrop-filter: none;
  }

  .nav-wrap {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo right"
      "links links";
    row-gap: 0;
    padding: 0.25rem 0 0.35rem;
  }

  .nav-logo img {
    width: clamp(3rem, 7vw, 3.55rem);
    padding: 0.1rem 0;
  }

  .nav-links {
    display: grid;
    position: absolute;
    top: calc(100% + 0.25rem);
    right: 0;
    width: min(16rem, calc(100vw - 1.5rem));
    padding: 0.45rem;
    border: 1px solid rgba(251, 146, 60, 0.22);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(17, 16, 38, 0.98), rgba(10, 9, 24, 0.96));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    gap: 0.15rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.55rem) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0s linear 220ms;
    z-index: 1002;
  }

  .nav-wrap.is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-btns {
    justify-content: flex-end;
    gap: clamp(0.35rem, 1.4vw, 0.6rem);
    width: auto;
  }

  .nav-links a,
  .contact-btn,
  .get-quote-btn {
    min-height: 44px;
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    padding: 0.55rem 0.7rem;
  }

  .contact-btn {
    width: 44px;
    padding: 0;
    border-radius: 12px;
  }

  .contact-btn__text {
    display: none;
  }

  .nav-menu-toggle {
    appearance: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(251, 146, 60, 0.28);
    border-radius: 12px;
    background: rgba(10, 9, 24, 0.72);
    color: #f56e00;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .nav-menu-toggle__line {
    display: block;
    width: 1.05rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .nav-wrap.is-menu-open .nav-menu-toggle {
    background: rgba(245, 110, 0, 0.14);
    border-color: rgba(245, 110, 0, 0.52);
  }

  .nav-wrap.is-menu-open .nav-menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-wrap.is-menu-open .nav-menu-toggle__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-wrap.is-menu-open .nav-menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-menu-toggle:focus-visible {
    outline: 3px solid rgba(251, 146, 60, 0.55);
    outline-offset: 3px;
  }

  #hero {
    position: relative;
    align-content: center;
    overflow: hidden;
    min-height: clamp(500px, 66vh, 620px);
    min-height: clamp(500px, 66svh, 620px);
    padding: calc(var(--mobile-header-overlap) + var(--mobile-hero-edge-space)) 0 var(--mobile-hero-edge-space);
    background: #080808;
  }

  .hero-wrapper {
    position: absolute;
    inset: 0;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    background-position: 58% center;
  }

  .hero-video {
    object-position: 58% center;
    filter: saturate(1.08) contrast(1.06) brightness(0.9);
  }

  .hero-wrapper::before {
    background:
      radial-gradient(circle at 76% 14%, rgba(245, 110, 0, 0.14) 0%, rgba(245, 110, 0, 0.06) 24%, transparent 42%),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.5) 36%,
        rgba(0, 0, 0, 0.18) 68%,
        rgba(0, 0, 0, 0.08) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.46) 0%,
        rgba(0, 0, 0, 0.14) 42%,
        rgba(0, 0, 0, 0.5) 100%
      );
  }

  .heading-wrap {
    width: min(calc(100% - 1.5rem), 34rem);
  }

  .heading-wrap h1 {
    max-width: min(100%, 34rem);
    margin-bottom: 0.48rem;
    font-size: clamp(1.85rem, 5.4vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: clamp(0.04rem, 0.25vw, 0.1rem);
  }

  .sub-heading {
    margin-top: 0;
    font-size: clamp(1rem, 3vw, 1.45rem);
    line-height: 1.1;
  }

  .hero-copy--desktop,
  .cta-heading-desktop {
    display: none;
  }

  .hero-copy--mobile,
  .cta-heading-mobile {
    display: block;
  }

  .heading-wrap .hero-copy--mobile {
    max-width: 32rem;
    margin-top: 0.82rem;
    font-size: clamp(0.9rem, 2.2vw, 0.98rem);
    line-height: 1.38;
  }

  .cta-wrap {
    width: min(calc(100% - 1.5rem), 34rem);
    margin-top: clamp(1.75rem, 4.5vw, 2.35rem);
    padding-bottom: 0;
  }

  .cta-wrap h2 {
    text-align: left;
    font-size: clamp(1rem, 2.8vw, 1.28rem);
    line-height: 1.2;
    letter-spacing: 0.04rem;
  }

  .cta-card-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.42rem, 1.25vw, 0.58rem);
    margin-top: 1rem;
  }

  .cta-card,
  .cta-card:hover {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title";
    align-content: center;
    justify-items: center;
    background-color: #0a0918;
    color: #fffae6;
    min-height: clamp(4rem, 8.5vw, 4.7rem);
    padding: 0.48rem 0.4rem;
    border-color: #211f46;
    border-radius: 14px;
    text-align: center;
    row-gap: 0.35rem;
  }

  .cta-card:hover .icon-primary {
    fill: #f56e00;
  }

  .cta-card:hover .icon-secondary {
    fill: #211f46;
  }

  .card-icon {
    justify-self: center;
    width: clamp(1.65rem, 3.8vw, 2.05rem);
  }

  .cta-card h4 {
    font-size: clamp(0.82rem, 2vw, 1rem);
    font-weight: 800;
    line-height: 1.08;
  }

  .cta-card p {
    display: none;
  }

  .cta-card--planning-project .cta-label-desktop {
    display: none;
  }

  .cta-card--planning-project .cta-label-mobile {
    display: inline;
  }
}

@media (max-width: 480px) {
  :root {
    --scroll-offset: 76px;
    --mobile-header-overlap: 76px;
    --mobile-hero-edge-space: clamp(1.35rem, 5vw, 1.75rem);
  }

  .nav-wrap {
    row-gap: 0;
    column-gap: 0.35rem;
    margin-inline: 0.65rem;
    padding: 0.18rem 0 0.25rem;
  }

  .nav-logo img {
    width: clamp(2.75rem, 12vw, 3.1rem);
    padding-block: 0.08rem 0;
  }

  .nav-links {
    width: min(15rem, calc(100vw - 1.25rem));
    font-size: clamp(0.9rem, 3.4vw, 1rem);
  }

  .contact-btn,
  .get-quote-btn {
    min-height: 44px;
  }

  .nav-btns {
    gap: 0.3rem;
  }

  .contact-btn,
  .get-quote-btn {
    font-size: clamp(0.72rem, 2.9vw, 0.82rem);
  }

  .lottie-icon--nav {
    width: 1.55rem;
    height: 1.55rem;
    margin-right: 0;
  }

  .get-quote-btn {
    padding-inline: 0.48rem;
  }

  .nav-menu-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  #hero {
    min-height: auto;
    padding: calc(var(--mobile-header-overlap) + var(--mobile-hero-edge-space)) 0 var(--mobile-hero-edge-space);
  }

  .hero-wrapper,
  .hero-video {
    background-position: 63% center;
    object-position: 63% center;
  }

  .heading-wrap {
    width: min(calc(100% - 1.25rem), 28rem);
  }

  .heading-wrap h1 {
    max-width: 100%;
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .sub-heading {
    font-size: clamp(0.96rem, 3.6vw, 1.12rem);
  }

  .heading-wrap .hero-copy--mobile {
    margin-top: 0.72rem;
    font-size: clamp(0.86rem, 3vw, 0.94rem);
    line-height: 1.34;
  }

  .cta-wrap {
    width: min(calc(100% - 1.25rem), 28rem);
    margin-top: 1.55rem;
    padding-bottom: 0;
  }

  .cta-wrap h2 {
    font-size: clamp(0.98rem, 4vw, 1.12rem);
  }

  .cta-card-container {
    gap: 0.38rem;
    margin-top: 0.95rem;
  }

  .cta-card,
  .cta-card:hover {
    min-height: 3.55rem;
    padding: 0.42rem 0.26rem;
    row-gap: 0.28rem;
  }

  .card-icon {
    width: clamp(1.38rem, 5.7vw, 1.65rem);
  }

  .cta-card h4 {
    font-size: clamp(0.7rem, 2.9vw, 0.84rem);
  }

  .cta-card p {
    display: none;
  }
}

@media (max-width: 375px) {
  .cta-card-container {
    gap: 0.35rem;
  }

  .cta-card,
  .cta-card:hover {
    min-height: 3.45rem;
    padding-inline: 0.25rem;
    row-gap: 0.25rem;
  }

  .card-icon {
    width: 1.4rem;
  }

  .cta-card h4 {
    font-size: clamp(0.68rem, 2.9vw, 0.78rem);
  }
}

@media (max-width: 340px) {
  .cta-card-container {
    grid-template-columns: 1fr;
  }

  .cta-card,
  .cta-card:hover {
    grid-template-columns: 1.75rem minmax(0, 1fr);
    grid-template-areas: "icon title";
    justify-items: start;
    min-height: 3.25rem;
    padding: 0.5rem 0.65rem;
    text-align: left;
  }
}

/*

/// ABOUT MELISSA STRUCTURAL LAYOUT ///

*/

#why-choose-us.about-melissa-section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6rem) 5%;
  background: var(--color-bg);
  overflow: hidden;
  overflow: clip;
}

.about-melissa-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 90rem);
  min-height: clamp(600px, 78vh, 860px);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 4.25rem);
  display: block;
  background: #f4f1ec;
  background-image: none;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}


.about-melissa-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: none;
}

.about-melissa-bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(245, 110, 0, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(244, 241, 236, 0.1), rgba(244, 241, 236, 0.72) 48%, rgba(244, 241, 236, 0.9));
}

.about-melissa-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "media copy"
    "stats stats";
  align-items: start;
  gap: clamp(1rem, 2.3vw, 2.25rem);
  min-height: clamp(480px, 62vh, 720px);
}

.about-melissa-media {
  grid-area: media;
  display: block;
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-height: clamp(30rem, 58vw, 43rem);
  margin: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.about-melissa-media__picture,
.about-melissa-media__image {
  display: block;
  width: 100%;
  height: 100%;
}

.about-melissa-media__image {
  object-fit: cover;
  object-position: 18% 48%;
  transform: scale(1.06);
  transform-origin: 18% 48%;
}

.about-melissa-copy {
  grid-area: copy;
  position: relative;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.about-melissa-copy h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.65rem);
  line-height: 1.05;
  margin: 0.25rem 0 0.45rem;
}

.about-melissa-copy p {
  line-height: 1.55;
}

.about-melissa-testimonial {
  width: min(100%, 18rem);
}

@media (min-width: 1200px) {
  #why-choose-us.about-melissa-section {
    width: 100vw;
    max-width: 1800px;
    margin: 0 auto;
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background: var(--color-bg);
    border-radius: 32px;
    overflow: visible;
  }

  .about-melissa-shell {
    width: 96vw;
    max-width: 1680px;
    min-height: clamp(540px, 68vh, 900px);
    margin-inline: auto;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 3.5rem);
    background: #f4f1ec;
    border-radius: 32px;
    box-shadow: 0 26px 70px rgba(0,0,0,0.14);
    position: relative;
    overflow: visible;
  }

  .about-melissa-bg-layer {
    z-index: 1;
  }
  .about-melissa-grid {
    grid-template-columns: 0.52fr 0.38fr;
    grid-template-areas:
      "media copy"
      ". stats";
    align-items: end;
    gap: clamp(2.5rem, 5vw, 5rem) clamp(3.5rem, 7vw, 7rem);
    min-height: clamp(540px, 68vh, 900px);
    position: relative;
    z-index: 3;
  }

  .about-melissa-media {
    grid-area: media;
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 540px;
    height: 100%;
    margin-left: -3vw;
    margin-bottom: -2vw;
    border-radius: 0 0 120px 0/0 0 120px 0;
    box-shadow: none;
    background: none;
    z-index: 4;
    overflow: visible;
  }
  .about-melissa-media__image {
    border-radius: 0 0 120px 0/0 0 120px 0;
    object-fit: cover;
    object-position: 18% 48%;
    width: 100%;
    height: 100%;
    box-shadow: 0 12px 48px rgba(0,0,0,0.10);
  }

  .about-melissa-copy {
    grid-area: copy;
    max-width: 640px;
    padding: 0 0 0 2vw;
    background: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 5;
    position: relative;
  }

  .about-melissa-testimonial {
    position: absolute;
    top: 4vw;
    right: 2vw;
    width: 300px;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 18px;
  }

  .about-melissa-stats {
    grid-area: stats;
    margin-top: 3vw;
    margin-bottom: 0;
    width: 90%;
    justify-self: end;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    z-index: 6;
    background: rgba(244,241,236,0.92);
    position: relative;
  }
}

.about-melissa-stats {
  grid-area: stats;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: clamp(0.5rem, 1.6vw, 1.25rem);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: rgba(244, 241, 236, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}

.about-melissa-stats .trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .about-melissa-shell {
    min-height: auto;
    padding: clamp(1.5rem, 4vw, 2.75rem);
  }

  .about-melissa-grid {
    min-height: 0;
    grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr);
    grid-template-areas:
      "media copy"
      "testimonial copy"
      "stats stats";
    gap: clamp(1rem, 2.8vw, 1.75rem);
  }

  .about-melissa-media {
    min-height: clamp(23rem, 44vw, 32rem);
  }

  .about-melissa-testimonial {
    position: static;
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
  }

  .about-melissa-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .about-melissa-stats .trust-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  #why-choose-us.about-melissa-section {
    padding: clamp(2.5rem, 7vw, 3.75rem) clamp(0.85rem, 4vw, 1.5rem);
  }

  .about-melissa-shell {
    width: min(100%, 48rem);
    padding: clamp(0.95rem, 3.6vw, 1.35rem);
    border-radius: 20px;
  }

  .about-melissa-bg-layer::after {
    background:
      linear-gradient(rgba(244, 241, 236, 0.86), rgba(244, 241, 236, 0.94)),
      radial-gradient(circle at 50% 30%, rgba(245, 110, 0, 0.18), transparent 42%);
  }

  .about-melissa-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "testimonial"
      "stats";
    gap: clamp(0.95rem, 3.5vw, 1.35rem);
  }

  .about-melissa-copy {
    max-width: 100%;
    padding: clamp(1rem, 4vw, 1.45rem);
    border-radius: 18px;
    background: rgba(244, 241, 236, 0.94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
  }

  .about-melissa-copy br {
    display: none;
  }

  .about-melissa-copy h2 {
    font-size: clamp(1.9rem, 7vw, 2.65rem);
    line-height: 1.12;
  }

  .about-melissa-copy p {
    font-size: clamp(0.96rem, 2.7vw, 1.05rem);
    line-height: 1.55;
  }

  .about-melissa-copy .about-eyebrow,
  .about-melissa-copy .sub-heading-about {
    font-size: clamp(0.92rem, 2.7vw, 1.05rem);
  }

  .about-melissa-media {
    width: min(100%, 32rem);
    min-height: 0;
    height: clamp(18.5rem, 96vw, 29rem);
    justify-self: center;
    border-radius: 18px;
    background: rgba(244, 241, 236, 0.78);
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.38) inset;
  }

  .about-melissa-media__image {
    object-fit: cover;
    object-position: center 18%;
    transform: scale(1.02);
    transform-origin: center 18%;
  }

  .about-melissa-testimonial {
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
    padding: clamp(1rem, 3.4vw, 1.35rem);
  }

  .about-melissa-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
  }

  .about-melissa-stats .trust-card {
    padding: 1rem 0.8rem;
  }
}

@media (max-width: 480px) {
  #why-choose-us.about-melissa-section {
    padding-inline: 0.85rem;
  }

  .about-melissa-shell {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .about-melissa-grid {
    gap: 0.95rem;
  }

  .about-melissa-copy {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(244, 241, 236, 0.94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
  }

  .about-melissa-media {
    width: 100%;
    height: clamp(18rem, 104vw, 25rem);
    border-radius: 16px;
  }

  .about-melissa-testimonial {
    border-radius: 14px;
  }

  .about-melissa-stats {
    grid-template-columns: 1fr;
  }

  .about-melissa-stats .trust-card {
    border-right: none;
  }
}

/*

/// ABOUT MELISSA RESPONSIVE REPAIR ///

*/

#why-choose-us.about-melissa-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  background: var(--color-bg);
  border-radius: 0;
  overflow: hidden;
}

#why-choose-us.about-melissa-section .about-melissa-bg-layer {
  position: absolute;
  inset: 0;
  width: min(100%, 58rem);
  margin-inline: auto;
  z-index: 0;
  pointer-events: none;
  background-image: url("./assets/img/about-melissa-mobile.svg");
  background-repeat: no-repeat;
  background-size: min(46rem, 135vw) auto;
  background-position: center 40%;
  opacity: 0.14;
  overflow: hidden;
}

#why-choose-us.about-melissa-section .about-melissa-bg-layer::after {
  content: none;
}

#why-choose-us.about-melissa-section .about-melissa-inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "media"
    "testimonial"
    "stats";
  gap: clamp(1.25rem, 5vw, 2rem);
  width: min(100% - 2rem, 440px);
  max-width: none;
  min-height: 0;
  height: auto;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  background-image: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

#why-choose-us.about-melissa-section .about-melissa-copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(1.25rem, 5vw, 1.75rem);
  background: rgba(244, 241, 236, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

#why-choose-us.about-melissa-section .about-melissa-copy br {
  display: none;
}

#why-choose-us.about-melissa-section .about-melissa-copy h2 {
  margin: 0.25rem 0 0.45rem;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.08;
}

#why-choose-us.about-melissa-section .about-melissa-copy p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.96rem, 2.7vw, 1.05rem);
  line-height: 1.58;
}

#why-choose-us.about-melissa-section .about-melissa-copy p:last-child {
  margin-bottom: 0;
}

#why-choose-us.about-melissa-section .about-melissa-copy .about-eyebrow,
#why-choose-us.about-melissa-section .about-melissa-copy .sub-heading-about {
  font-size: clamp(0.9rem, 2.7vw, 1.05rem);
}

#why-choose-us.about-melissa-section .about-melissa-copy .about-eyebrow {
  margin-bottom: 0.45rem;
  color: #f56e00;
}

#why-choose-us.about-melissa-section .about-melissa-copy .sub-heading-about {
  margin-bottom: 1rem;
  color: #f56e00;
}

#why-choose-us.about-melissa-section .about-melissa-copy .about-quote {
  margin-top: 0.25rem;
}

#why-choose-us.about-melissa-section .about-melissa-copy .signature {
  margin: 0.95rem 0 0;
  font-size: clamp(3rem, 9vw, 4rem);
  line-height: 0.9;
}

#why-choose-us.about-melissa-section .about-melissa-copy .sub-signature {
  margin: 0.2rem 0 0;
  line-height: 1.2;
}

#why-choose-us.about-melissa-section .about-melissa-media {
  grid-area: media;
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 0;
  height: auto;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transform: none;
}

#why-choose-us.about-melissa-section .about-melissa-media__picture,
#why-choose-us.about-melissa-section .about-melissa-media__image {
  display: block;
  width: 100%;
}

#why-choose-us.about-melissa-section .about-melissa-media__image {
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.14));
}

#why-choose-us.about-melissa-section .about-melissa-testimonial {
  grid-area: testimonial;
  position: static;
  inset: auto;
  width: 100%;
  max-width: 380px;
  min-width: 0;
  margin: 0 auto;
  justify-self: center;
  align-self: start;
  transform: none;
  padding: clamp(1rem, 3.5vw, 1.35rem);
  border-radius: 14px;
  z-index: 2;
}

#why-choose-us.about-melissa-section .about-melissa-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  align-self: start;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: rgba(244, 241, 236, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

#why-choose-us.about-melissa-section .about-melissa-stats .trust-card {
  min-width: 0;
  padding: clamp(0.95rem, 3.4vw, 1.2rem);
  border-right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#why-choose-us.about-melissa-section .about-melissa-stats .trust-card:last-child {
  border-bottom: 0;
}

#why-choose-us.about-melissa-section .about-melissa-stats .trust-card svg {
  height: clamp(2.35rem, 8vw, 3rem);
}

#why-choose-us.about-melissa-section .about-melissa-stats .trust-card h5 {
  margin: 0.55rem 0 0.35rem;
  font-size: clamp(0.96rem, 2.6vw, 1.06rem);
  line-height: 1.18;
}

#why-choose-us.about-melissa-section .about-melissa-stats .trust-card p {
  margin: 0;
  font-size: clamp(0.9rem, 2.4vw, 0.98rem);
  line-height: 1.42;
}

@media (min-width: 421px) and (max-width: 767px) {
  #why-choose-us.about-melissa-section .about-melissa-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-child(2n) {
    border-right: 0;
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  #why-choose-us.about-melissa-section {
    padding: clamp(2.5rem, 7vw, 3.75rem) 0;
  }

  #why-choose-us.about-melissa-section .about-melissa-bg-layer {
    inset: 0;
    width: 100%;
    background-image: url("./assets/img/about-melissa-mobile.svg");
    background-size: min(44rem, 145vw) auto;
    background-position: center 36%;
    opacity: 0.12;
  }

  #why-choose-us.about-melissa-section .about-melissa-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "testimonial"
      "stats";
    width: min(100% - 2rem, 440px);
    gap: clamp(1.25rem, 5vw, 2rem);
  }

  #why-choose-us.about-melissa-section .about-melissa-copy,
  #why-choose-us.about-melissa-section .about-melissa-media,
  #why-choose-us.about-melissa-section .about-melissa-testimonial,
  #why-choose-us.about-melissa-section .about-melissa-stats {
    position: static;
    inset: auto;
    transform: none;
  }

  #why-choose-us.about-melissa-section .about-melissa-media {
    width: 100%;
    max-width: 400px;
  }

  #why-choose-us.about-melissa-section .about-melissa-media__image {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #why-choose-us.about-melissa-section .about-melissa-bg-layer {
    width: min(92vw, 920px);
    border-radius: 24px;
  }

  #why-choose-us.about-melissa-section .about-melissa-inner {
    width: min(92vw, 920px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    grid-template-areas:
      "copy copy"
      "media testimonial"
      "stats stats";
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: rgba(244, 241, 236, 0.86);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  }

  #why-choose-us.about-melissa-section .about-melissa-copy {
    max-width: 100%;
  }

  #why-choose-us.about-melissa-section .about-melissa-media {
    max-width: 390px;
  }

  #why-choose-us.about-melissa-section .about-melissa-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 1024px) {
  #why-choose-us.about-melissa-section {
    padding: clamp(3rem, 5vw, 5.25rem) 0;
    overflow: hidden;
  }

  #why-choose-us.about-melissa-section .about-melissa-bg-layer {
    inset: clamp(2.25rem, 4vw, 4rem) 0 clamp(2.75rem, 4.5vw, 5rem);
    width: min(92vw, 1680px);
    background-image: url("./assets/img/desktop-about-melissa-background.svg");
    background-size: cover;
    background-position: center top;
    background-color: rgba(244, 241, 236, 0.82);
    background-blend-mode: multiply;
    border-radius: 28px;
    opacity: 1;
    filter: saturate(1.32) contrast(1.32) brightness(0.96);
  }

  #why-choose-us.about-melissa-section .about-melissa-inner {
    width: min(92vw, 1680px);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr) minmax(14rem, 0.44fr);
    grid-template-areas:
      "media copy copy"
      "stats stats stats";
    align-items: start;
    gap: clamp(1.5rem, 2.6vw, 3.5rem);
    padding: clamp(1.5rem, 2.8vw, 3.5rem);
    background: rgba(244, 241, 236, 0.42);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.13);
  }

  #why-choose-us.about-melissa-section .about-melissa-copy {
    max-width: 760px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    justify-self: stretch;
  }

  #why-choose-us.about-melissa-section .about-melissa-copy h2 {
    font-size: clamp(2.35rem, 3.4vw, 4rem);
  }

  #why-choose-us.about-melissa-section .about-melissa-copy p {
    font-size: clamp(0.98rem, 1vw, 1.08rem);
  }

  #why-choose-us.about-melissa-section .about-melissa-media {
    width: 100%;
    max-width: none;
    align-self: center;
    justify-self: stretch;
  }

  #why-choose-us.about-melissa-section .about-melissa-media__image {
    width: 112%;
    max-width: 920px;
    margin-inline: auto;
    transform: translateX(6%) scale(1.5);
    transform-origin: center center;
  }

  #why-choose-us.about-melissa-section .about-melissa-testimonial {
    position: absolute;
    top: clamp(20rem, 31vw, 31rem);
    right: clamp(1.5rem, 2.8vw, 3.5rem);
    width: clamp(17rem, 22vw, 21rem);
    max-width: 340px;
    margin: 0;
    justify-self: auto;
    transform: none;
    box-shadow:
      0 16px 42px rgba(0, 0, 0, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  }

  #why-choose-us.about-melissa-section .about-melissa-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: end;
    justify-self: start;
    width: min(calc(100% - clamp(20rem, 28vw, 26rem)), 1040px);
    margin-top: clamp(0.25rem, 1vw, 0.85rem);
    border-radius: 18px;
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card {
    border-bottom: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: clamp(1rem, 1.4vw, 1.4rem);
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:last-child {
    border-right: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  #why-choose-us.about-melissa-section .about-melissa-stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-child(2n) {
    border-right: 0;
  }

  #why-choose-us.about-melissa-section .about-melissa-stats .trust-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/*

******************** /// SERVICES PAGE STYLES /// ********************

*/

/*

********************* /// PLANNING A PROJECT STYLES ///  *********************

*/
