:root {
  --teal: #07585b;
  --teal-dark: #064d50;
  --white: #fff;
  --muted: rgba(255,255,255,.82);
  --line: rgba(255,255,255,.34);
  --gutter: clamp(34px, 3.6vw, 62px);
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: #191919;
  color: #fff;
  font-family: "Jost", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font-family: "Jost", sans-serif; }
svg, img { display: block; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
  transition: transform .16s ease;
}
.skip-link:focus { transform: translateY(0); }

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #625b55;
}

.hero-picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-picture { z-index: -3; }
.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.97) contrast(1.01) brightness(1.025);
}
.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15,12,10,.42) 0%, rgba(15,12,10,.22) 25%, rgba(15,12,10,.05) 53%, rgba(15,12,10,.04) 78%, rgba(15,12,10,.09) 100%),
    linear-gradient(180deg, rgba(17,14,12,.07) 0%, rgba(17,14,12,0) 45%, rgba(10,10,10,.26) 100%);
}

/* Header: reference design is intentionally compact and centered. */
.site-header {
  position: absolute;
  z-index: 30;
  top: clamp(20px, 2.55vh, 29px);
  left: 50%;
  width: clamp(790px, 52.4vw, 1005px);
  min-height: clamp(70px, 8.1vh, 78px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 9px 19px 9px 25px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(58,52,48,.48);
  box-shadow: 0 13px 34px rgba(0,0,0,.11);
  -webkit-backdrop-filter: blur(16px) saturate(112%);
  backdrop-filter: blur(16px) saturate(112%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: clamp(1rem, 1.09vw, 1.15rem);
  font-weight: 760;
  letter-spacing: -.025em;
}
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: #197a7c; stroke-width: 2; stroke-linejoin: round; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2vw, 32px); font-size: .78rem; color: rgba(255,255,255,.84); }
.desktop-nav > a:not(.nav-quote) { transition: color .16s ease; }
.desktop-nav > a:not(.nav-quote):hover,
.desktop-nav > a[aria-current="page"] { color: #fff; }
.nav-quote {
  min-width: 112px;
  padding: 12px 20px;
  text-align: center;
  border-radius: 10px;
  background: #064f52;
  color: #fff;
  font-weight: 760;
}

.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  list-style: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 17px; height: 1.5px; border-radius: 4px; background: #fff; }
.mobile-menu nav {
  position: absolute;
  top: 53px;
  right: 0;
  width: 220px;
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 17px;
  background: rgba(32,29,27,.94);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.mobile-menu nav a { padding: 11px 12px; border-radius: 10px; font-size: .92rem; }
.mobile-menu nav a:last-child { background: var(--teal-dark); }

/* Decorative top typography.  Coordinates are based on the supplied 1672x941 reference. */
.hero-slogan {
  position: absolute;
  z-index: 1;
  top: clamp(122px, 14.9vh, 151px);
  left: clamp(120px, 13.05vw, 252px);
  pointer-events: none;
  user-select: none;
}
.hero-slogan-main {
  font-family: "Jost", sans-serif;
  font-size: clamp(8.4rem, 13.4vw, 16rem);
  font-weight: 900;
  line-height: .73;
  letter-spacing: -.073em;
  white-space: nowrap;
  color: rgba(255,255,255,.96);
  text-shadow: 0 6px 28px rgba(0,0,0,.07);
  transform: scaleX(1.20);
  transform-origin: left top;
}
.hero-slogan-script-image {
  position: absolute;
  left: clamp(385px, 27.4vw, 530px);
  top: clamp(112px, 8.1vw, 156px);
  width: clamp(390px, 29.2vw, 560px);
  height: auto;
  object-fit: contain;
}
.hero-slogan-script-text {
  position: absolute;
  left: clamp(385px, 27.4vw, 530px);
  top: clamp(112px, 13.8vw, 262px);
  width: max-content;
  color: var(--teal);
  font-family: "Lobster", cursive;
  font-size: clamp(4.4rem, 8vw, 8.8rem);
  line-height: .72;
  transform: rotate(-2deg);
}

/* Bottom content is anchored to the viewport edges, not a centered max-width container. */
.hero-layout {
  position: absolute;
  z-index: 5;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(46px, 5.1vh, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(390px, 25.7vw, 430px);
  gap: clamp(36px, 5vw, 84px);
  align-items: end;
}
.hero-copy { width: min(100%, 535px); }
.hero-eyebrow {
  margin: 0 0 23px;
  color: rgba(255,255,255,.90);
  font-size: clamp(.70rem, .78vw, .82rem);
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0;
  max-width: 380px;
  font-size: clamp(2.15rem, 2.35vw, 2.55rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
/* The earlier build rendered an extra large subtitle, which pushed the layout away from the reference. */
.hero-supporting { display: none; }
.hero-description {
  margin: 18px 0 0;
  max-width: 470px;
  color: rgba(255,255,255,.88);
  font-size: clamp(.95rem, 1vw, 1.05rem);
  line-height: 1.52;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 13px; }
.btn {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .90rem;
  font-weight: 720;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: #07585b; box-shadow: 0 9px 24px rgba(1,58,61,.20); }
.btn-primary:hover { background: #086568; }
.btn-ghost { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.055); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.11); }

.proof-bar {
  width: min(100%, 535px);
  min-height: 80px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.33);
  border-radius: 13px;
  background: rgba(92,84,79,.27);
  box-shadow: 0 13px 35px rgba(0,0,0,.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.proof-item {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
}
.proof-item + .proof-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  bottom: 24%;
  width: 1px;
  background: rgba(255,255,255,.29);
}
.proof-icon { flex: 0 0 31px; }
.proof-icon svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.proof-item strong,
.proof-item small { display: block; overflow: hidden; text-overflow: ellipsis; }
.proof-item strong { font-size: .99rem; line-height: 1.15; white-space: nowrap; }
.proof-item small { margin-top: 3px; color: rgba(255,255,255,.65); font-size: .73rem; line-height: 1.2; }

.service-card {
  width: 100%;
  min-height: 347px;
  padding: 31px 29px 20px;
  border: 1px solid rgba(255,255,255,.53);
  border-radius: 21px;
  background: rgba(203,203,203,.30);
  box-shadow: 0 22px 58px rgba(0,0,0,.12);
  -webkit-backdrop-filter: blur(17px) saturate(108%);
  backdrop-filter: blur(17px) saturate(108%);
}
.service-card-heading { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; }
.service-card-mark svg { width: 39px; height: 39px; fill: none; stroke: #fff; stroke-width: 1.35; }
.service-card h2 {
  margin: 0;
  max-width: 240px;
  font-size: clamp(1.25rem, 1.34vw, 1.42rem);
  line-height: 1.32;
  letter-spacing: -.018em;
}
.service-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin-top: 35px; }
.service-option {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255,255,255,.91);
  font-size: .72rem;
  transition: color .16s ease, transform .16s ease;
}
.service-option:hover { color: #fff; transform: translateY(-2px); }
.service-icon {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(255,255,255,.065);
}
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--teal); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-option > span:last-child { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.explore-link {
  margin-top: 28px;
  padding: 18px 4px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.29);
  color: #07575a;
  font-size: .82rem;
  font-weight: 780;
}
.explore-link svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }


/* =========================================================
   Footer — based on the supplied dark-marble reference.
   Navigation mirrors the approved site plan without turning
   the footer into a city/service keyword dump.
   ========================================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #081114;
  color: rgba(255,255,255,.91);
  border-top: 1px solid rgba(255,255,255,.16);
}
.footer-cta {
  position: relative;
  z-index: 2;
  min-height: 150px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.28);
  background:
    radial-gradient(circle at 12% 50%, rgba(10,96,99,.12), transparent 34%),
    linear-gradient(90deg, #071114 0%, #071013 62%, #081417 100%);
}
.footer-cta-inner,
.footer-main-inner,
.footer-bottom {
  width: min(1540px, calc(100% - 96px));
  margin-inline: auto;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}
.footer-cta-intro { display: flex; align-items: center; gap: 24px; min-width: 0; }
.footer-cta-icon {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #0b4f53, #123b3f);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 16px 40px rgba(0,0,0,.22);
}
.footer-cta-icon svg { width: 42px; height: 42px; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-cta-copy { display: flex; align-items: center; gap: 25px; min-width: 0; }
.footer-cta-copy strong { font-size: clamp(1.55rem, 2vw, 2.1rem); line-height: 1.05; letter-spacing: -.025em; white-space: nowrap; }
.footer-cta-divider { width: 1px; height: 42px; background: rgba(255,255,255,.42); }
.footer-cta-copy em {
  color: #4cb3b5;
  font-family: "Lobster", cursive;
  font-size: clamp(2.15rem, 2.8vw, 3.15rem);
  line-height: .8;
  font-weight: 400;
  white-space: nowrap;
}
.footer-cta-actions { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; }
.footer-action {
  min-height: 64px;
  min-width: 270px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 750;
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.footer-action:hover { transform: translateY(-2px); }
.footer-action svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-action-outline { border: 1px solid rgba(49,183,186,.62); background: rgba(255,255,255,.015); }
.footer-action-outline:hover { border-color: rgba(78,210,213,.9); background: rgba(36,138,141,.08); }
.footer-action-solid { background: linear-gradient(135deg, #1d6c70, #2f7e81); box-shadow: 0 12px 32px rgba(13,88,92,.18); }
.footer-action-solid:hover { background: linear-gradient(135deg, #24777b, #378a8d); }

.footer-main {
  position: relative;
  isolation: isolate;
  padding: 68px 0 25px;
  background:
    radial-gradient(circle at 20% 18%, rgba(50,76,78,.13), transparent 30%),
    radial-gradient(circle at 78% 74%, rgba(29,66,69,.10), transparent 28%),
    #0b1012;
}
.footer-main::before,
.footer-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.footer-main::before {
  opacity: .44;
  background:
    linear-gradient(118deg, transparent 0 11%, rgba(164,176,177,.12) 11.15%, transparent 11.35% 28%, rgba(113,129,130,.11) 28.15%, transparent 28.35% 52%, rgba(173,181,181,.08) 52.12%, transparent 52.35% 72%, rgba(137,151,152,.10) 72.12%, transparent 72.30%),
    linear-gradient(35deg, transparent 0 18%, rgba(118,132,133,.09) 18.12%, transparent 18.35% 46%, rgba(171,178,178,.07) 46.15%, transparent 46.34% 76%, rgba(121,137,138,.08) 76.12%, transparent 76.34%);
  background-size: 920px 520px, 780px 610px;
}
.footer-main::after { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.22)); }
.footer-main-inner {
  display: grid;
  grid-template-columns: 1.32fr .64fr 1fr .78fr 1.17fr;
  gap: clamp(30px, 3vw, 55px);
  align-items: start;
}
.footer-brand-column { min-width: 0; padding-right: 12px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.footer-brand-mark { width: 76px; height: 76px; display: grid; place-items: center; }
.footer-brand-mark svg { width: 100%; height: 100%; fill: none; stroke: #47aeb0; stroke-width: 1.65; stroke-linejoin: round; }
.footer-brand-text { display: grid; gap: 3px; letter-spacing: .1em; }
.footer-brand-text strong { font-size: 2rem; line-height: .92; letter-spacing: .16em; }
.footer-brand-text small { color: #4cb2b4; font-size: .82rem; letter-spacing: .28em; }
.footer-summary { max-width: 330px; margin: 0; color: rgba(255,255,255,.76); font-size: .95rem; line-height: 1.6; }
.footer-short-line { display: block; width: 42px; height: 2px; margin: 20px 0 17px; background: #2b9295; }
.footer-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; max-width: 350px; }
.footer-info-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-size: .9rem;
}
.footer-info-list li:last-child { border-bottom: 0; }
.footer-info-list a:hover { color: #62c0c2; }
.footer-info-icon { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(56,168,171,.7); border-radius: 50%; color: #49b2b4; }
.footer-info-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.footer-link-column { position: relative; min-width: 0; padding-left: 2px; }
.footer-link-column + .footer-link-column::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 2px;
  bottom: 5px;
  width: 1px;
  background: rgba(255,255,255,.09);
}
.footer-link-column h2 { margin: 0; color: #fff; font-size: .96rem; letter-spacing: .02em; text-transform: uppercase; }
.footer-heading-line { display: block; width: 42px; height: 2px; margin: 16px 0 28px; background: #3fa4a6; }
.footer-link-column ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.footer-link-column li { display: flex; align-items: flex-start; gap: 10px; min-width: 0; color: rgba(255,255,255,.84); font-size: .92rem; line-height: 1.25; }
.footer-link-column a { transition: color .15s ease, transform .15s ease; }
.footer-link-column a:hover { color: #5cc0c2; transform: translateX(2px); }
.footer-chevron { color: #3caeb0; font-size: 1.55rem; line-height: .7; transform: translateY(1px); }
.footer-current { color: rgba(255,255,255,.55); }

.footer-image-card {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 25px;
  background: #293033;
  box-shadow: 0 22px 55px rgba(0,0,0,.23);
}
.footer-image-card img { width: 100%; height: 100%; object-fit: cover; object-position: 87% 49%; filter: saturate(.82) contrast(1.02) brightness(.93); transition: transform .35s ease; }
.footer-image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(3,12,14,.58)); pointer-events: none; }
.footer-image-card > span {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .86rem;
  font-weight: 740;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .2s ease, transform .2s ease;
}
.footer-image-card > span svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer-image-card:hover img { transform: scale(1.025); }
.footer-image-card:hover > span { opacity: 1; transform: translateY(0); }

.footer-bottom {
  min-height: 95px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.33);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 30px;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; align-items: center; gap: 26px; }
.footer-bottom nav > span { width: 1px; height: 23px; background: rgba(255,255,255,.33); }
.footer-bottom a:hover { color: #5ec0c2; }
.footer-coverage { justify-self: end; display: flex; align-items: center; gap: 11px; }
.footer-coverage svg { width: 29px; height: 29px; fill: none; stroke: #37a9ab; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.not-found { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 0%, #31595b, #151515 54%); }
.not-found-card { max-width: 560px; text-align: center; }
.not-found-card h1 { font-size: clamp(2rem,6vw,4rem); margin: 0 0 12px; }
.not-found-card p { color: rgba(255,255,255,.72); }
.not-found-card .btn { margin-top: 14px; }


@media (max-width: 1320px) {
  .footer-cta-inner,
  .footer-main-inner,
  .footer-bottom { width: min(1180px, calc(100% - 56px)); }
  .footer-cta-copy { gap: 18px; }
  .footer-cta-copy strong { font-size: 1.55rem; }
  .footer-action { min-width: 230px; padding-inline: 22px; }
  .footer-main-inner { grid-template-columns: 1.2fr .72fr 1fr .78fr 1.05fr; gap: 28px; }
  .footer-link-column + .footer-link-column::before { left: -14px; }
  .footer-image-card { height: 390px; }
}

@media (max-width: 1080px) {
  .footer-cta { padding: 28px 0; }
  .footer-cta-inner { align-items: flex-start; }
  .footer-cta-copy { display: grid; gap: 7px; }
  .footer-cta-divider { display: none; }
  .footer-cta-actions { flex: 1 1 450px; justify-content: flex-end; }
  .footer-action { min-width: 0; flex: 1 1 210px; }
  .footer-main-inner { grid-template-columns: 1.2fr .75fr 1fr; }
  .footer-link-column + .footer-link-column::before { display: none; }
  .footer-image-card { grid-column: 2 / 4; justify-self: stretch; width: 100%; height: 300px; margin-top: 12px; }
  .footer-image-card img { object-position: 78% 50%; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-bottom nav { justify-self: end; }
  .footer-coverage { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 760px) {
  .footer-cta-inner,
  .footer-main-inner,
  .footer-bottom { width: calc(100% - 32px); }
  .footer-cta-inner { display: grid; gap: 22px; }
  .footer-cta-intro { gap: 15px; }
  .footer-cta-icon { width: 62px; height: 62px; flex-basis: 62px; }
  .footer-cta-icon svg { width: 32px; height: 32px; }
  .footer-cta-copy strong { white-space: normal; font-size: 1.35rem; }
  .footer-cta-copy em { font-size: 2.25rem; }
  .footer-cta-actions { width: 100%; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .footer-action { width: 100%; min-height: 55px; }
  .footer-main { padding-top: 45px; }
  .footer-main-inner { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand-column { grid-column: 1 / -1; padding-right: 0; }
  .footer-summary { max-width: 540px; }
  .footer-info-list { max-width: 540px; }
  .footer-services-column { grid-column: 1 / -1; }
  .footer-services-column ul { grid-template-columns: 1fr 1fr; gap: 17px 20px; }
  .footer-image-card { grid-column: 1 / -1; height: 300px; }
  .footer-bottom { min-height: 0; margin-top: 38px; padding: 24px 0 8px; grid-template-columns: 1fr; gap: 18px; }
  .footer-bottom nav { justify-self: start; flex-wrap: wrap; gap: 14px; }
  .footer-bottom nav > span { height: 18px; }
  .footer-coverage { grid-column: auto; }
}

@media (max-width: 480px) {
  .footer-main-inner { grid-template-columns: 1fr; }
  .footer-link-column,
  .footer-services-column { grid-column: auto; }
  .footer-services-column ul { grid-template-columns: 1fr; }
  .footer-image-card { height: 255px; }
  .footer-brand-mark { width: 62px; height: 62px; }
  .footer-brand-text strong { font-size: 1.65rem; }
  .footer-brand-text small { font-size: .69rem; }
  .footer-bottom nav > span { display: none; }
  .footer-bottom nav { display: grid; gap: 9px; }
}

@media (max-width: 1180px) {
  .site-header { width: calc(100% - 48px); max-width: 980px; }
  .desktop-nav { gap: 18px; }
  .hero-slogan { left: 8vw; }
  .hero-slogan-main { font-size: 14vw; transform: none; }
  .hero-slogan-script-image,
  .hero-slogan-script-text { left: 29vw; }
  .hero-layout { grid-template-columns: minmax(0,1fr) 380px; gap: 30px; }
  .service-card { padding-inline: 22px; }
  .service-icon { width: 54px; height: 54px; }
}

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .site-header { min-height: 66px; padding: 8px 9px 8px 16px; }
  .brand { font-size: .96rem; }
  .brand-mark { width: 29px; height: 29px; }

  .hero { height: auto; min-height: 100svh; overflow: clip; }
  .hero-image { object-position: 56% 50%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12,10,9,.17) 0%, rgba(12,10,9,.04) 35%, rgba(10,10,10,.55) 71%, rgba(10,10,10,.78) 100%),
      linear-gradient(90deg, rgba(10,10,10,.20), rgba(10,10,10,.02));
  }
  .hero-slogan { top: 102px; left: 4vw; }
  .hero-slogan-main { font-size: clamp(6.5rem, 18vw, 10.5rem); transform: none; }
  .hero-slogan-script-image { left: 35vw; top: 12vw; width: min(47vw, 430px); }
  .hero-slogan-script-text { left: 34vw; top: 11vw; font-size: 10vw; }

  .hero-layout {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 34px);
    margin: 0 auto;
    padding: clamp(430px, 56vh, 540px) 0 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-copy { width: min(100%, 620px); }
  .service-card { width: min(100%, 620px); min-height: auto; }
}

@media (max-width: 600px) {
  :root { --gutter: 14px; }
  .site-header { top: 12px; width: calc(100% - 22px); }
  .brand { gap: 8px; font-size: .84rem; }
  .brand-mark { width: 26px; height: 26px; }

  .hero-image { object-position: 60% 50%; }
  .hero-slogan { top: 88px; left: 4vw; }
  .hero-slogan-main { font-size: 24vw; line-height: .80; transform: none; }
  .hero-slogan-script-image { left: 31vw; top: 16vw; width: 61vw; }
  .hero-slogan-script-text { left: 31vw; top: 15vw; font-size: 15vw; }

  .hero-layout { width: calc(100% - 28px); padding-top: clamp(330px, 48vh, 430px); padding-bottom: 16px; }
  .hero-eyebrow { margin-bottom: 10px; font-size: .60rem; letter-spacing: .13em; }
  .hero-copy h1 { font-size: clamp(2rem, 10.7vw, 2.8rem); }
  .hero-description { margin-top: 13px; font-size: .88rem; line-height: 1.48; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 17px; }
  .btn { width: 100%; min-height: 48px; }

  .proof-bar { grid-template-columns: 1fr; min-height: 0; margin-top: 16px; }
  .proof-item { padding: 11px 13px; }
  .proof-item + .proof-item::before { left: 12px; right: 12px; top: 0; bottom: auto; width: auto; height: 1px; }
  .proof-item strong { white-space: normal; }

  .service-card { padding: 20px 17px 15px; border-radius: 18px; }
  .service-card-heading { grid-template-columns: 35px 1fr; gap: 12px; }
  .service-card-mark svg { width: 32px; height: 32px; }
  .service-card h2 { font-size: 1.12rem; }
  .service-grid { grid-template-columns: repeat(4,1fr); gap: 4px; margin-top: 19px; }
  .service-icon { width: 48px; height: 48px; }
  .service-icon svg { width: 25px; height: 25px; }
  .service-option { font-size: .63rem; gap: 7px; }
  .explore-link { margin-top: 17px; padding-top: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}


/* =========================================================
   HOMEPAGE: SERVICE INTENT SELECTOR
   Reference-led asymmetric editorial grid.
   ========================================================= */
.services-showcase {
  position: relative;
  z-index: 8;
  margin-top: -38px;
  padding: 86px 0 94px;
  overflow: clip;
  color: #171b1b;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255,255,255,.78), transparent 44%),
    radial-gradient(ellipse at 86% 76%, rgba(222,220,214,.28), transparent 36%),
    linear-gradient(115deg, rgba(145,145,140,.045) 0 1px, transparent 1px 19%, rgba(145,145,140,.035) 19% 20%, transparent 20% 100%),
    #f5f3ef;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -20px 55px rgba(12,31,31,.06);
  isolation: isolate;
}
.services-showcase::before,
.services-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: .15;
  filter: blur(.2px);
}
.services-showcase::before {
  width: 62%;
  height: 48%;
  left: -13%;
  top: 7%;
  border: 1px solid rgba(89,95,91,.18);
  border-radius: 50%;
  transform: rotate(-18deg) skewX(-16deg);
}
.services-showcase::after {
  width: 48%;
  height: 56%;
  right: -17%;
  bottom: -15%;
  border-left: 1px solid rgba(89,95,91,.17);
  border-radius: 47%;
  transform: rotate(19deg);
}
.services-showcase-inner {
  width: min(1460px, calc(100% - 96px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(330px, .93fr) minmax(0, 1.92fr);
  column-gap: 18px;
  row-gap: 16px;
  align-items: stretch;
}
.services-intro {
  min-width: 0;
  min-height: 370px;
  padding: 3px 30px 10px 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.services-eyebrow {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 10px;
  color: #073f40;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .30em;
  text-transform: uppercase;
}
.services-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 1px;
  background: #197776;
}
.services-heading {
  margin: 0;
  color: #171b1b;
  font-family: "Jost", sans-serif;
  font-size: clamp(3.25rem, 4.25vw, 5rem);
  font-weight: 690;
  line-height: .92;
  letter-spacing: -.047em;
  text-wrap: balance;
}
.services-heading-line {
  display: block;
  overflow: hidden;
  padding-bottom: .025em;
}
.services-heading-line > span {
  display: block;
  will-change: transform, opacity;
}
.services-heading-script {
  margin-top: .05em;
  color: #073f40;
  font-family: "Lobster", cursive;
  font-size: 1.06em;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .94;
}
.services-intro-copy {
  max-width: 380px;
  margin: 21px 0 0;
  color: #454a48;
  font-size: .98rem;
  line-height: 1.64;
}
.services-intro-rule {
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 31px;
  background: #073f40;
}

.service-showcase-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23,27,27,.10);
  border-radius: 16px;
  background: #30302e;
  color: #fff;
  outline: none;
  isolation: isolate;
  transform: translateZ(0);
  transition:
    border-color 470ms cubic-bezier(.22,1,.36,1),
    box-shadow 470ms cubic-bezier(.22,1,.36,1),
    transform 470ms cubic-bezier(.22,1,.36,1);
}
.service-feature {
  min-height: 370px;
}
.services-major-grid,
.services-specialist-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-major {
  min-height: 298px;
}
.service-showcase-media,
.service-showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-showcase-media {
  z-index: -3;
  overflow: hidden;
}
.service-showcase-media img {
  object-fit: cover;
  object-position: center;
  transition: transform 520ms cubic-bezier(.22,1,.36,1), filter 520ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.service-feature .service-showcase-media img { object-position: 56% 49%; }
.service-major:nth-child(1) .service-showcase-media img { object-position: 62% 50%; }
.service-major:nth-child(2) .service-showcase-media img { object-position: 64% 52%; }
.service-major:nth-child(3) .service-showcase-media img { object-position: 67% 49%; }

.service-showcase-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,24,23,.90) 0%, rgba(22,24,23,.80) 30%, rgba(22,24,23,.45) 53%, rgba(22,24,23,.09) 78%, rgba(22,24,23,.02) 100%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.14));
  transition: opacity 470ms cubic-bezier(.22,1,.36,1);
}
.service-major .service-showcase-overlay {
  background:
    linear-gradient(90deg, rgba(19,22,21,.91) 0%, rgba(19,22,21,.79) 34%, rgba(19,22,21,.42) 61%, rgba(19,22,21,.06) 100%),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.16));
}
.service-showcase-content {
  width: min(48%, 310px);
  min-height: 100%;
  padding: 32px 29px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.service-major .service-showcase-content {
  width: min(56%, 260px);
  padding: 23px 22px 21px;
}
.service-showcase-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #073f40;
  box-shadow: 0 8px 22px rgba(1,42,43,.18);
  transition: transform 470ms cubic-bezier(.22,1,.36,1);
}
.service-showcase-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-showcase-card h3,
.service-small-card h3 {
  margin: 20px 0 0;
  color: currentColor;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.46rem, 1.62vw, 1.72rem);
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: -.025em;
  text-transform: uppercase;
  transition: transform 470ms cubic-bezier(.22,1,.36,1);
}
.service-feature h3 {
  max-width: 190px;
  font-size: clamp(1.65rem, 2vw, 2.02rem);
}
.service-major h3 {
  max-width: 230px;
  font-size: clamp(1.2rem, 1.43vw, 1.55rem);
}
.service-accent-line {
  display: block;
  width: 30px;
  height: 1px;
  margin: 18px 0 18px;
  background: #cfc6a5;
}
.service-description {
  display: block;
  color: rgba(255,255,255,.90);
  font-size: .88rem;
  line-height: 1.5;
  transition: color 470ms cubic-bezier(.22,1,.36,1);
}
.service-feature .service-description { max-width: 220px; }
.service-major .service-description { max-width: 190px; font-size: .80rem; }

.service-card-link {
  position: relative;
  margin-top: auto;
  padding: 20px 18px 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: .86rem;
  font-weight: 520;
}
.service-card-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 1px;
  background: #4ba6a6;
  transform-origin: left center;
  transition: width 470ms cubic-bezier(.22,1,.36,1);
}
.service-card-link > span {
  display: inline-block;
  transition: transform 470ms cubic-bezier(.22,1,.36,1);
}

.service-showcase-card:hover,
.service-showcase-card:focus-visible {
  border-color: rgba(7,90,90,.62);
  box-shadow: 0 14px 32px rgba(20,36,35,.12);
  transform: translateY(-1px);
}
.service-showcase-card:hover .service-showcase-media img,
.service-showcase-card:focus-visible .service-showcase-media img {
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.02);
}
.service-showcase-card:hover .service-showcase-overlay,
.service-showcase-card:focus-visible .service-showcase-overlay { opacity: 1.11; }
.service-showcase-card:hover .service-showcase-icon,
.service-showcase-card:focus-visible .service-showcase-icon { transform: translateY(-4px); }
.service-showcase-card:hover h3,
.service-showcase-card:focus-visible h3 { transform: translateY(-4px); }
.service-showcase-card:hover .service-description,
.service-showcase-card:focus-visible .service-description { color: #fff; }
.service-showcase-card:hover .service-card-link::after,
.service-showcase-card:focus-visible .service-card-link::after { width: 100%; }
.service-showcase-card:hover .service-card-link > span,
.service-showcase-card:focus-visible .service-card-link > span { transform: translateX(7px); }

.service-small-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: 53% 47%;
  overflow: hidden;
  border: 1px solid rgba(23,27,27,.09);
  border-radius: 15px;
  background: rgba(250,249,246,.82);
  color: #171b1b;
  outline: none;
  transition:
    border-color 470ms cubic-bezier(.22,1,.36,1),
    box-shadow 470ms cubic-bezier(.22,1,.36,1),
    transform 470ms cubic-bezier(.22,1,.36,1);
}
.service-small-content {
  min-width: 0;
  padding: 18px 17px 16px 20px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  column-gap: 14px;
}
.service-small-card .service-showcase-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
.service-small-card .service-showcase-icon svg { width: 23px; height: 23px; }
.service-small-card h3 {
  grid-column: 2;
  margin: 4px 0 0;
  font-size: clamp(.88rem, 1.03vw, 1.05rem);
  line-height: 1.15;
}
.service-small-card .service-description {
  grid-column: 2;
  margin-top: 12px;
  color: #4c504e;
  font-size: .76rem;
  line-height: 1.45;
}
.service-small-card .service-card-link {
  grid-column: 2;
  margin-top: 8px;
  padding-top: 8px;
  color: #171b1b;
  font-size: .80rem;
}
.service-small-card .service-card-link::after { display: none; }
.service-small-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.service-small-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,249,246,.30), transparent 26%);
  pointer-events: none;
}
.service-small-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.service-small-card:hover,
.service-small-card:focus-visible {
  border-color: rgba(7,90,90,.46);
  box-shadow: 0 12px 30px rgba(20,36,35,.09);
  transform: translateY(-1px);
}
.service-small-card:hover .service-small-media img,
.service-small-card:focus-visible .service-small-media img { transform: scale(1.045); }
.service-small-card:hover .service-showcase-icon,
.service-small-card:focus-visible .service-showcase-icon { transform: translateY(-3px); }
.service-small-card:hover h3,
.service-small-card:focus-visible h3 { transform: translateY(-3px); }
.service-small-card:hover .service-card-link > span,
.service-small-card:focus-visible .service-card-link > span { transform: translateX(7px); }

.services-all-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 1px;
}
.services-all-button {
  width: min(460px, 100%);
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(7,63,64,.12);
  border-radius: 11px;
  background: #073f40;
  color: #fff;
  font-size: .82rem;
  font-weight: 520;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition:
    background-color 420ms cubic-bezier(.22,1,.36,1),
    transform 420ms cubic-bezier(.22,1,.36,1),
    box-shadow 420ms cubic-bezier(.22,1,.36,1);
}
.services-all-button:hover,
.services-all-button:focus-visible {
  background: #075a5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(7,63,64,.14);
}
.services-all-arrow {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 420ms cubic-bezier(.22,1,.36,1);
}
.services-all-button:hover .services-all-arrow,
.services-all-button:focus-visible .services-all-arrow { transform: translateX(7px); }

.service-showcase-card:focus-visible,
.service-small-card:focus-visible,
.services-all-button:focus-visible {
  outline: 3px solid rgba(25,119,118,.55);
  outline-offset: 3px;
}

/* Progressive entrance: JS only adds services-animate when observers exist.
   Without JS, the whole section remains immediately visible. */
.services-showcase.services-animate .services-eyebrow,
.services-showcase.services-animate .services-heading-line > span,
.services-showcase.services-animate .services-intro-copy,
.services-showcase.services-animate .services-intro-rule,
.services-showcase.services-animate .services-reveal:not(.services-intro) {
  opacity: 0;
  transform: translateY(32px);
}
.services-showcase.services-animate .services-heading-line > span {
  transform: translateY(45px);
}
.services-showcase.services-animate .services-reveal:not(.services-intro) {
  transform: translateY(55px) scale(.97);
}
.services-showcase.services-animate.is-inview .services-eyebrow,
.services-showcase.services-animate.is-inview .services-heading-line > span,
.services-showcase.services-animate.is-inview .services-intro-copy,
.services-showcase.services-animate.is-inview .services-intro-rule,
.services-showcase.services-animate.is-inview .services-reveal:not(.services-intro) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-property: opacity, transform;
  transition-duration: 820ms;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}
.services-showcase.services-animate.is-inview .services-eyebrow { transition-delay: 0ms; }
.services-showcase.services-animate.is-inview .services-heading-line:nth-child(1) > span { transition-delay: 120ms; }
.services-showcase.services-animate.is-inview .services-heading-line:nth-child(2) > span { transition-delay: 185ms; }
.services-showcase.services-animate.is-inview .services-heading-script > span { transition-delay: 285ms; }
.services-showcase.services-animate.is-inview .services-intro-copy { transition-delay: 300ms; }
.services-showcase.services-animate.is-inview .services-intro-rule { transition-delay: 340ms; }
.services-showcase.services-animate.is-inview .services-reveal:not(.services-intro) {
  transition-delay: var(--reveal-delay, 380ms);
}

@media (max-width: 1180px) {
  .services-showcase { padding-top: 78px; }
  .services-showcase-inner {
    width: min(1080px, calc(100% - 56px));
    grid-template-columns: 1fr;
  }
  .services-intro {
    min-height: auto;
    padding: 0 0 16px;
  }
  .services-heading { max-width: 720px; }
  .services-intro-copy { max-width: 620px; }
  .service-feature {
    min-height: 400px;
  }
  .service-feature .service-showcase-content { width: min(48%, 330px); }
  .services-major-grid,
  .services-specialist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-major-grid .service-major:last-child,
  .services-specialist-grid .service-small-card:last-child {
    grid-column: 1 / -1;
  }
  .services-specialist-grid .service-small-card:last-child {
    grid-template-columns: 58% 42%;
  }
}

@media (max-width: 760px) {
  .services-showcase {
    margin-top: -20px;
    padding: 62px 0 68px;
    border-radius: 24px 24px 0 0;
  }
  .services-showcase-inner {
    width: calc(100% - 28px);
    row-gap: 13px;
  }
  .services-eyebrow {
    margin-bottom: 22px;
    font-size: .68rem;
    letter-spacing: .25em;
  }
  .services-heading {
    font-size: clamp(3rem, 14.5vw, 4.25rem);
    line-height: .92;
  }
  .services-intro-copy {
    margin-top: 18px;
    font-size: .92rem;
    line-height: 1.58;
  }
  .services-intro-rule { margin-top: 24px; }
  .service-feature,
  .service-major { min-height: 360px; }
  .services-major-grid,
  .services-specialist-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .services-major-grid .service-major:last-child,
  .services-specialist-grid .service-small-card:last-child {
    grid-column: auto;
  }
  .service-showcase-content,
  .service-feature .service-showcase-content,
  .service-major .service-showcase-content {
    width: min(68%, 290px);
    padding: 25px 22px 22px;
  }
  .service-showcase-overlay,
  .service-major .service-showcase-overlay {
    background:
      linear-gradient(90deg, rgba(18,21,20,.92) 0%, rgba(18,21,20,.78) 41%, rgba(18,21,20,.32) 75%, rgba(18,21,20,.04) 100%),
      linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.18));
  }
  .service-small-card,
  .services-specialist-grid .service-small-card:last-child {
    min-height: 190px;
    grid-template-columns: 58% 42%;
  }
  .service-small-content { padding: 17px 14px 15px 16px; column-gap: 11px; }
  .service-small-card .service-showcase-icon { width: 43px; height: 43px; }
  .service-small-card h3 { font-size: .82rem; }
  .service-small-card .service-description { font-size: .70rem; }
  .services-all-wrap { padding-top: 3px; }
  .services-all-button {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: .73rem;
    letter-spacing: .14em;
  }

  .services-showcase.services-animate .services-reveal:not(.services-intro) {
    transform: translateY(30px) scale(.985);
  }
}

@media (max-width: 480px) {
  .service-feature,
  .service-major { min-height: 330px; }
  .service-showcase-content,
  .service-feature .service-showcase-content,
  .service-major .service-showcase-content { width: min(75%, 265px); }
  .service-small-card,
  .services-specialist-grid .service-small-card:last-child {
    min-height: 208px;
    grid-template-columns: 1fr;
  }
  .service-small-content {
    grid-template-columns: 43px 1fr;
    padding-bottom: 10px;
  }
  .service-small-media { min-height: 105px; }
  .service-small-media::after { background: linear-gradient(180deg, rgba(250,249,246,.20), transparent 30%); }
}

@media (prefers-reduced-motion: reduce) {
  .services-showcase.services-animate .services-eyebrow,
  .services-showcase.services-animate .services-heading-line > span,
  .services-showcase.services-animate .services-intro-copy,
  .services-showcase.services-animate .services-intro-rule,
  .services-showcase.services-animate .services-reveal:not(.services-intro),
  .services-showcase.services-animate.is-inview .services-eyebrow,
  .services-showcase.services-animate.is-inview .services-heading-line > span,
  .services-showcase.services-animate.is-inview .services-intro-copy,
  .services-showcase.services-animate.is-inview .services-intro-rule,
  .services-showcase.services-animate.is-inview .services-reveal:not(.services-intro) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   WHY CHOOSE DUBAI MARBLE FIXING
   DB-driven SSR section. JavaScript only enhances motion.
   ========================================================= */
.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;
}

.why-choose {
  --why-text: #172121;
  --why-muted: #525c5b;
  --why-teal: #074f50;
  --why-teal-2: #147575;
  --why-pale: #eaf3f1;
  --why-border: #dddcd7;
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(92px, 8vw, 132px) 0 clamp(76px, 7vw, 116px);
  background: #f7f5f0;
  color: var(--why-text);
}

.why-choose__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: #f7f5f0;
}
.why-choose__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,245,240,.90) 0%, rgba(247,245,240,.67) 38%, rgba(247,245,240,.72) 100%),
    linear-gradient(180deg, rgba(251,250,247,.42), rgba(247,245,240,.22));
}
.why-choose__bg img {
  position: absolute;
  left: -5%;
  top: -7%;
  width: 110%;
  height: 114%;
  object-fit: cover;
  opacity: .72;
  transform: translate3d(0, 0, 0) scale(1.035);
  will-change: transform;
}

.why-choose__inner {
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: minmax(0, 39%) minmax(0, 61%);
  gap: clamp(30px, 3vw, 48px);
  align-items: start;
}

.why-choose__left { min-width: 0; }
.why-choose__sticky {
  position: sticky;
  top: 92px;
  min-width: 0;
}
.why-choose__intro {
  position: relative;
  z-index: 2;
  padding: 0 28px 28px 0;
}
.why-choose__eyebrow {
  margin: 0 0 10px;
  color: var(--why-teal);
  font-size: clamp(.73rem, .82vw, .88rem);
  font-weight: 600;
  letter-spacing: .30em;
  line-height: 1.25;
  text-transform: uppercase;
}
.why-choose__eyebrow-line {
  display: block;
  width: 30px;
  height: 1.5px;
  margin-bottom: 26px;
  background: var(--why-teal-2);
  transform-origin: left center;
}
.why-choose__heading {
  margin: 0;
  color: var(--why-text);
  font-size: clamp(3rem, 4.25vw, 4.65rem);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.045em;
}
.why-choose__visual-heading { display: block; }
.why-choose__heading-line {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}
.why-choose__heading-line > span { display: block; }
.why-choose__heading em {
  display: inline-block;
  margin-left: .07em;
  color: var(--why-teal);
  font-family: "Lobster", cursive;
  font-size: 1.06em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.why-choose__description {
  max-width: 440px;
  margin: 24px 0 0;
  color: var(--why-muted);
  font-size: clamp(.97rem, 1.05vw, 1.08rem);
  line-height: 1.68;
}

.why-choose__main-media {
  position: relative;
  width: 100%;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23,33,33,.08);
  border-radius: 20px;
  background: #ebe7df;
  box-shadow: 0 16px 48px rgba(27,36,35,.055);
}
.why-choose__main-media picture,
.why-choose__main-media img {
  width: 100%;
  height: 100%;
}
.why-choose__main-media picture { display: block; }
.why-choose__main-media img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.90) contrast(1.015) brightness(1.02);
  transform: scale(1.01);
}
.why-choose__main-grid { position: absolute; inset: 0; pointer-events: none; }
.why-choose__main-grid i {
  position: absolute;
  display: block;
  background: rgba(70,182,180,.40);
  box-shadow: 0 0 12px rgba(72,178,176,.10);
}
.why-choose__main-grid i:first-child { left: 10%; top: 0; bottom: 0; width: 1px; }
.why-choose__main-grid i:last-child { left: 0; right: 0; top: 58%; height: 1px; }

.why-choose__steps {
  position: relative;
  display: grid;
  gap: 20px;
  min-width: 0;
}
.why-choose__steps::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 51px;
  top: 62px;
  bottom: 62px;
  border-left: 1px dashed rgba(61,88,86,.23);
  pointer-events: none;
}

.why-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(53,66,64,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.73);
  box-shadow: 0 12px 40px rgba(20,30,30,.04);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.why-step--assessment {
  min-height: 220px;
  grid-template-columns: 82px minmax(245px, .88fr) minmax(300px, 1.18fr);
}
.why-step--method {
  min-height: 310px;
  grid-template-columns: 82px minmax(230px, .70fr) minmax(480px, 1.55fr);
}
.why-step--quality {
  min-height: 230px;
  grid-template-columns: 82px minmax(225px, .82fr) minmax(180px, .62fr) minmax(250px, 1fr);
}

.why-step__number {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  margin: 22px 0 0 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(99,112,110,.26);
  border-radius: 50%;
  background: rgba(251,250,247,.94);
  color: var(--why-teal);
  font-size: 1.65rem;
  font-weight: 650;
  letter-spacing: -.04em;
}
.why-step__number::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(20,117,117,.34);
  border-radius: 50%;
  opacity: .0;
}

.why-step__content {
  min-width: 0;
  padding: 31px 22px 26px 28px;
  align-self: center;
}
.why-step__header h3 {
  margin: 0;
  color: var(--why-text);
  font-size: clamp(1.16rem, 1.32vw, 1.42rem);
  font-weight: 650;
  line-height: 1.10;
  letter-spacing: -.022em;
  text-transform: uppercase;
}
.why-step__subtitle {
  margin: 5px 0 0;
  color: var(--why-teal);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.3;
}
.why-step__rule {
  display: block;
  width: 38px;
  height: 1.5px;
  margin-top: 20px;
  background: var(--why-teal-2);
  transform-origin: left center;
}
.why-step__description {
  max-width: 360px;
  margin: 24px 0 0;
  color: var(--why-muted);
  font-size: .91rem;
  line-height: 1.62;
}

.why-step__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}
.why-step__media picture,
.why-step__media img { width: 100%; height: 100%; }
.why-step__media img {
  object-fit: cover;
  filter: saturate(.91) contrast(1.02) brightness(1.02);
}
.why-step__assessment-media {
  border-radius: 0 18px 18px 0;
}
.why-step__assessment-media img { object-position: 55% 50%; }

.why-laser {
  position: absolute;
  z-index: 2;
  display: block;
  background: rgba(46,169,165,.60);
  box-shadow: 0 0 8px rgba(72,191,187,.18);
  transform-origin: left center;
}
.why-laser--x { left: 0; top: 54%; width: 100%; height: 1px; }
.why-laser--y { top: 0; left: 41%; width: 1px; height: 100%; transform-origin: center top; }
.why-laser-point {
  position: absolute;
  z-index: 3;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: rgba(20,117,117,.82);
  box-shadow: 0 0 0 4px rgba(20,117,117,.10);
}
.why-laser-point--1 { left: 41%; top: 53%; }
.why-laser-point--2 { left: 71%; top: 53%; }

.why-step__methods {
  align-self: stretch;
  min-width: 0;
  padding: 18px 18px 18px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.fixing-method {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(53,66,64,.12);
  border-radius: 12px;
  background: rgba(251,250,247,.62);
}
.fixing-method h4 {
  margin: 0;
  padding: 16px 12px 6px;
  color: var(--why-teal);
  font-size: clamp(.75rem, .85vw, .9rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
}
.fixing-method__body {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(90px, .72fr);
  align-items: center;
  gap: 0;
  padding: 0 7px 9px 3px;
}
.fixing-method__diagram-stack {
  position: relative;
  min-width: 0;
  aspect-ratio: 520 / 300;
}
.fixing-method__diagram-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Split a single DB-managed illustration into visual layers, allowing the
   assembly animation to reveal one technical layer at a time. */
.fixing-method--wet .fixing-method__diagram-layer:nth-child(1) { clip-path: inset(57% 0 0 0); }
.fixing-method--wet .fixing-method__diagram-layer:nth-child(2) { clip-path: inset(29% 0 31% 0); }
.fixing-method--wet .fixing-method__diagram-layer:nth-child(3) { clip-path: inset(0 0 57% 0); }
.fixing-method--dry .fixing-method__diagram-layer:nth-child(1) { clip-path: inset(0 50% 0 0); }
.fixing-method--dry .fixing-method__diagram-layer:nth-child(2) { clip-path: inset(0 25% 0 48%); }
.fixing-method--dry .fixing-method__diagram-layer:nth-child(3) { clip-path: inset(22% 6% 10% 63%); }
.fixing-method--dry .fixing-method__diagram-layer:nth-child(4) { clip-path: inset(6% 0 6% 77%); }
.fixing-method__labels {
  list-style: none;
  min-width: 0;
  padding: 4px 0 0 6px;
  margin: 0;
  display: grid;
  align-content: space-evenly;
  align-self: stretch;
  gap: 2px;
}
.fixing-method__labels li {
  position: relative;
  min-height: 28px;
  display: flex;
  align-items: center;
  color: #3e4948;
  font-size: clamp(.61rem, .63vw, .69rem);
  line-height: 1.25;
}
.fixing-method__labels li::before {
  content: "";
  position: absolute;
  right: calc(100% + 3px);
  width: 22px;
  height: 1px;
  background: rgba(20,117,117,.68);
  transform-origin: right center;
}

.why-step__quality-media {
  margin: 0;
  min-height: 100%;
  border-left: 1px solid rgba(53,66,64,.08);
  border-right: 1px solid rgba(53,66,64,.08);
}
.why-step__quality-media img { object-position: 50% 49%; }
.why-quality-list {
  min-width: 0;
  align-self: center;
  padding: 22px 22px 22px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.why-quality-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  color: #354140;
  font-size: .76rem;
  line-height: 1.35;
}
.why-quality-item img {
  width: 36px;
  height: 36px;
}

.process-timeline {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  min-height: 142px;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(53,66,64,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 42px rgba(20,30,30,.035);
}
.process-timeline__track {
  position: absolute;
  z-index: 0;
  left: 7.3%;
  right: 7.3%;
  top: 68px;
  height: 1.5px;
  overflow: hidden;
  background: rgba(7,79,80,.12);
}
.process-timeline__progress {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--why-teal-2);
  transform: scaleX(1);
  transform-origin: left center;
}
.process-timeline__item {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
}
.process-timeline__icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53,66,64,.15);
  border-radius: 50%;
  background: rgba(251,250,247,.98);
}
.process-timeline__icon img { width: 58px; height: 58px; }
.process-timeline__copy { min-width: 0; }
.process-timeline__copy strong {
  display: block;
  margin-bottom: 7px;
  color: var(--why-text);
  font-size: .96rem;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.process-timeline__copy span {
  display: block;
  max-width: 185px;
  color: var(--why-muted);
  font-size: .79rem;
  line-height: 1.5;
}

/* ------------------------ Motion enhancement ------------------------ */
.why-choose.why-animate .why-choose__eyebrow,
.why-choose.why-animate .why-choose__description {
  opacity: 0;
  transform: translateY(18px);
}
.why-choose.why-animate .why-choose__eyebrow-line { transform: scaleX(0); }
.why-choose.why-animate .why-choose__heading-line > span {
  opacity: 0;
  transform: translateY(45px);
}
.why-choose.why-animate .why-choose__heading em {
  opacity: 0;
  transform: translateY(24px) scale(.97);
}
.why-choose.why-animate .why-choose__main-media {
  clip-path: inset(100% 0 0 0 round 20px);
}
.why-choose.why-animate .why-choose__main-media img { transform: scale(1.045); }

.why-choose.why-animate.is-intro-revealed .why-choose__eyebrow {
  opacity: 1;
  transform: none;
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.why-choose.why-animate.is-intro-revealed .why-choose__eyebrow-line {
  transform: scaleX(1);
  transition: transform 650ms cubic-bezier(.16,1,.3,1) 220ms;
}
.why-choose.why-animate.is-intro-revealed .why-choose__heading-line:nth-child(1) > span {
  opacity: 1;
  transform: none;
  transition: opacity 850ms cubic-bezier(.16,1,.3,1) 390ms, transform 850ms cubic-bezier(.16,1,.3,1) 390ms;
}
.why-choose.why-animate.is-intro-revealed .why-choose__heading-line:nth-child(2) > span {
  opacity: 1;
  transform: none;
  transition: opacity 850ms cubic-bezier(.16,1,.3,1) 530ms, transform 850ms cubic-bezier(.16,1,.3,1) 530ms;
}
.why-choose.why-animate.is-intro-revealed .why-choose__heading-line:nth-child(3) > span {
  opacity: 1;
  transform: none;
  transition: opacity 850ms cubic-bezier(.16,1,.3,1) 670ms, transform 850ms cubic-bezier(.16,1,.3,1) 670ms;
}
.why-choose.why-animate.is-intro-revealed .why-choose__heading-line:nth-child(3) em {
  opacity: 1;
  transform: none;
  transition: opacity 900ms cubic-bezier(.16,1,.3,1) 810ms, transform 900ms cubic-bezier(.16,1,.3,1) 810ms;
}
.why-choose.why-animate.is-intro-revealed .why-choose__description {
  opacity: 1;
  transform: none;
  transition: opacity 750ms cubic-bezier(.16,1,.3,1) 960ms, transform 750ms cubic-bezier(.16,1,.3,1) 960ms;
}
.why-choose.why-animate.is-main-revealed .why-choose__main-media {
  clip-path: inset(0 0 0 0 round 20px);
  transition: clip-path 1250ms cubic-bezier(.16,1,.3,1);
}
.why-choose.why-animate.is-main-revealed .why-choose__main-media img {
  transform: scale(1.01);
  transition: transform 1250ms cubic-bezier(.16,1,.3,1);
}

.why-choose.why-animate .why-step {
  opacity: 0;
  transform: translateY(42px) scale(.985);
}
.why-choose.why-animate .why-step__number,
.why-choose.why-animate .why-step__header h3,
.why-choose.why-animate .why-step__subtitle,
.why-choose.why-animate .why-step__rule,
.why-choose.why-animate .why-step__description,
.why-choose.why-animate .why-step__media,
.why-choose.why-animate .fixing-method,
.why-choose.why-animate .why-quality-item {
  opacity: 0;
  transform: translateY(16px);
}
.why-choose.why-animate .why-step__rule { transform: scaleX(0); }
.why-choose.why-animate .why-laser--x { transform: scaleX(0); }
.why-choose.why-animate .why-laser--y { transform: scaleY(0); }
.why-choose.why-animate .why-laser-point { opacity: 0; transform: scale(.6); }
.why-choose.why-animate .fixing-method__diagram-layer { opacity: 0; transform: translateY(14px); }
.why-choose.why-animate .fixing-method__labels li { opacity: 0; transform: translateX(-8px); }
.why-choose.why-animate .fixing-method__labels li::before { transform: scaleX(0); }

.why-choose.why-animate .why-step.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 950ms cubic-bezier(.16,1,.3,1), transform 950ms cubic-bezier(.16,1,.3,1);
}
.why-choose.why-animate .why-step.is-revealed .why-step__number {
  opacity: 1;
  transform: none;
  transition: opacity 600ms cubic-bezier(.16,1,.3,1) 110ms, transform 600ms cubic-bezier(.16,1,.3,1) 110ms;
}
.why-choose.why-animate .why-step.is-revealed .why-step__number::before {
  opacity: 1;
  transition: opacity 600ms ease 120ms;
}
.why-choose.why-animate .why-step.is-revealed .why-step__header h3 {
  opacity: 1;
  transform: none;
  transition: opacity 720ms cubic-bezier(.16,1,.3,1) 240ms, transform 720ms cubic-bezier(.16,1,.3,1) 240ms;
}
.why-choose.why-animate .why-step.is-revealed .why-step__subtitle {
  opacity: 1;
  transform: none;
  transition: opacity 700ms cubic-bezier(.16,1,.3,1) 365ms, transform 700ms cubic-bezier(.16,1,.3,1) 365ms;
}
.why-choose.why-animate .why-step.is-revealed .why-step__rule {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 500ms ease 470ms, transform 620ms cubic-bezier(.16,1,.3,1) 470ms;
}
.why-choose.why-animate .why-step.is-revealed .why-step__description {
  opacity: 1;
  transform: none;
  transition: opacity 720ms cubic-bezier(.16,1,.3,1) 560ms, transform 720ms cubic-bezier(.16,1,.3,1) 560ms;
}
.why-choose.why-animate .why-step.is-revealed .why-step__media {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(.16,1,.3,1) 690ms, transform 800ms cubic-bezier(.16,1,.3,1) 690ms;
}
.why-choose.why-animate .why-step--assessment.is-revealed .why-laser--x {
  transform: scaleX(1);
  transition: transform 1000ms cubic-bezier(.16,1,.3,1) 1120ms;
}
.why-choose.why-animate .why-step--assessment.is-revealed .why-laser--y {
  transform: scaleY(1);
  transition: transform 1000ms cubic-bezier(.16,1,.3,1) 1220ms;
}
.why-choose.why-animate .why-step--assessment.is-revealed .why-laser-point {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease 1620ms, transform 500ms cubic-bezier(.16,1,.3,1) 1620ms;
}
.why-choose.why-animate .why-step--assessment.is-revealed .why-laser-point--2 { transition-delay: 1740ms; }

.why-choose.why-animate .why-step--method.is-revealed .fixing-method {
  opacity: 1;
  transform: none;
  transition: opacity 760ms cubic-bezier(.16,1,.3,1), transform 760ms cubic-bezier(.16,1,.3,1);
}
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child { transition-delay: 720ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) { transition-delay: 1760ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child .fixing-method__diagram-layer:nth-child(1) { animation: whyLayerIn 650ms cubic-bezier(.16,1,.3,1) 950ms forwards; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child .fixing-method__diagram-layer:nth-child(2) { animation: whyLayerIn 650ms cubic-bezier(.16,1,.3,1) 1110ms forwards; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child .fixing-method__diagram-layer:nth-child(3) { animation: whyLayerIn 650ms cubic-bezier(.16,1,.3,1) 1270ms forwards; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__diagram-layer:nth-child(1) { animation: whyLayerIn 650ms cubic-bezier(.16,1,.3,1) 1990ms forwards; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__diagram-layer:nth-child(2) { animation: whyLayerIn 650ms cubic-bezier(.16,1,.3,1) 2130ms forwards; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__diagram-layer:nth-child(3) { animation: whyLayerIn 650ms cubic-bezier(.16,1,.3,1) 2270ms forwards; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__diagram-layer:nth-child(4) { animation: whyLayerIn 650ms cubic-bezier(.16,1,.3,1) 2410ms forwards; }

.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child .fixing-method__labels li,
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__labels li {
  animation: whyLabelIn 540ms cubic-bezier(.16,1,.3,1) forwards;
}
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child .fixing-method__labels li:nth-child(1) { animation-delay: 1430ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child .fixing-method__labels li:nth-child(2) { animation-delay: 1550ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:first-child .fixing-method__labels li:nth-child(3) { animation-delay: 1670ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__labels li:nth-child(1) { animation-delay: 2550ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__labels li:nth-child(2) { animation-delay: 2670ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__labels li:nth-child(3) { animation-delay: 2790ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method:nth-child(2) .fixing-method__labels li:nth-child(4) { animation-delay: 2910ms; }
.why-choose.why-animate .why-step--method.is-revealed .fixing-method__labels li::before {
  animation: whyConnectorIn 560ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: inherit;
}

.why-choose.why-animate .why-step--quality.is-revealed .why-quality-item {
  animation: whyQualityIn 680ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(930ms + (var(--quality-index, 0) * 160ms));
}
.why-choose.why-animate .why-step--quality.is-revealed .why-quality-item img {
  transform-origin: center;
  animation: whyIconDraw 620ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(870ms + (var(--quality-index, 0) * 160ms));
}

.why-choose.why-animate .process-timeline__progress {
  transform: scaleX(0);
  transition: none;
}
.why-choose.why-animate .process-timeline__item {
  opacity: .10;
  transform: translateY(5px);
}
.why-choose.why-animate .process-timeline__icon img { opacity: .22; }
.why-choose.why-animate .process-timeline.is-revealed .process-timeline__progress {
  transform: scaleX(1);
  transition: transform var(--timeline-duration, 4200ms) linear;
}
.why-choose.why-animate .process-timeline__item.is-active {
  opacity: 1;
  transform: none;
  transition: opacity 450ms ease, transform 450ms cubic-bezier(.16,1,.3,1);
}
.why-choose.why-animate .process-timeline__item.is-active .process-timeline__icon img {
  opacity: 1;
  animation: whyMilestoneIcon 520ms cubic-bezier(.16,1,.3,1) both;
}

@keyframes whyLayerIn { to { opacity: 1; transform: translateY(0); } }
@keyframes whyLabelIn { to { opacity: 1; transform: translateX(0); } }
@keyframes whyConnectorIn { to { transform: scaleX(1); } }
@keyframes whyQualityIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes whyIconDraw { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
@keyframes whyMilestoneIcon { from { transform: scale(.88); } to { transform: scale(1); } }

@media (max-width: 1240px) {
  .why-choose__inner { width: min(1160px, calc(100% - 56px)); }
  .why-choose__grid { grid-template-columns: minmax(0, 38%) minmax(0, 62%); gap: 28px; }
  .why-choose__heading { font-size: clamp(2.8rem, 4.2vw, 4rem); }
  .why-step--assessment { grid-template-columns: 76px minmax(200px, .8fr) minmax(250px, 1.15fr); }
  .why-step--method { grid-template-columns: 76px 205px minmax(420px, 1fr); }
  .why-step--quality { grid-template-columns: 76px 210px 175px 1fr; }
  .why-step__content { padding-left: 20px; padding-right: 14px; }
  .why-step__methods { padding-right: 12px; }
  .fixing-method__body { grid-template-columns: 1fr; }
  .fixing-method__labels { grid-template-columns: 1fr 1fr; padding: 0 10px 8px; }
  .fixing-method__labels li::before { display: none; }
  .why-quality-list { gap: 12px; padding-inline: 14px; }
}

@media (max-width: 1024px) {
  .why-choose { padding-top: 88px; }
  .why-choose__inner { width: min(920px, calc(100% - 44px)); }
  .why-choose__grid { grid-template-columns: 1fr; gap: 30px; }
  .why-choose__sticky { position: static; }
  .why-choose__intro { max-width: 720px; padding-right: 0; }
  .why-choose__heading { font-size: clamp(3rem, 7vw, 4.7rem); }
  .why-choose__description { max-width: 660px; }
  .why-choose__main-media { min-height: 520px; max-height: 680px; }
  .why-choose__steps::before { left: 50px; }
  .why-step--assessment { grid-template-columns: 82px minmax(220px, .9fr) minmax(260px, 1.15fr); }
  .why-step--method { grid-template-columns: 82px minmax(220px, .72fr) minmax(0, 1.6fr); }
  .why-step--quality { grid-template-columns: 82px minmax(220px, .86fr) minmax(190px, .65fr) minmax(230px, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .process-timeline__track { display: none; }
}

@media (max-width: 780px) {
  .why-choose { padding: 74px 0 76px; }
  .why-choose__inner { width: calc(100% - 28px); }
  .why-choose__bg img { left: 0; top: 0; width: 100%; height: 100%; transform: none !important; }
  .why-choose__eyebrow { font-size: .67rem; letter-spacing: .26em; }
  .why-choose__heading { font-size: clamp(2.8rem, 12vw, 4.1rem); }
  .why-choose__description { margin-top: 18px; font-size: .94rem; }
  .why-choose__main-media { min-height: 440px; border-radius: 16px; }
  .why-choose__steps { gap: 14px; }
  .why-choose__steps::before { display: none; }
  .why-step,
  .why-step--assessment,
  .why-step--method,
  .why-step--quality {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 0;
    border-radius: 16px;
  }
  .why-step__number {
    width: 52px;
    height: 52px;
    margin: 18px 0 0 12px;
    font-size: 1.35rem;
  }
  .why-step__content { padding: 22px 16px 20px 12px; }
  .why-step__header h3 { font-size: 1.10rem; }
  .why-step__subtitle { font-size: .88rem; }
  .why-step__description { margin-top: 18px; font-size: .86rem; }
  .why-step__media,
  .why-step__methods,
  .why-quality-list {
    grid-column: 1 / -1;
  }
  .why-step__assessment-media { min-height: 260px; border-radius: 0; }
  .why-step__methods {
    padding: 0 12px 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .fixing-method__body { grid-template-columns: minmax(0, 1.3fr) minmax(105px, .75fr); }
  .fixing-method__labels { grid-template-columns: 1fr; }
  .why-step__quality-media { min-height: 260px; border: 0; border-top: 1px solid rgba(53,66,64,.08); }
  .why-quality-list { padding: 18px; grid-template-columns: 1fr 1fr; }
  .process-timeline {
    margin-top: 24px;
    padding: 22px 18px 22px 16px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-timeline__track {
    display: block;
    left: 56px;
    right: auto;
    top: 58px;
    bottom: 58px;
    width: 1.5px;
    height: auto;
  }
  .process-timeline__progress {
    width: 100%;
    height: 100%;
    transform-origin: center top;
  }
  .process-timeline__item { grid-template-columns: 78px 1fr; gap: 13px; }
  .process-timeline__icon { width: 72px; height: 72px; }
  .process-timeline__icon img { width: 48px; height: 48px; }
  .process-timeline__copy span { max-width: 100%; }
  .why-choose.why-animate .why-step { transform: translateY(26px) scale(.992); }
  .why-choose.why-animate .process-timeline.is-revealed .process-timeline__progress {
    transform: scaleY(1);
  }
  .why-choose.why-animate .process-timeline__progress { transform: scaleY(0); }
}

@media (max-width: 520px) {
  .why-choose__heading { font-size: clamp(2.7rem, 13.6vw, 3.75rem); }
  .why-choose__heading em { white-space: normal; }
  .why-choose__main-media { min-height: 390px; }
  .why-quality-list { grid-template-columns: 1fr; }
  .fixing-method__body { grid-template-columns: 1fr; }
  .fixing-method__labels { grid-template-columns: 1fr 1fr; gap: 3px 10px; padding: 4px 12px 12px; }
  .why-step__assessment-media { min-height: 220px; }
  .why-step__quality-media { min-height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  .why-choose__bg img,
  .why-choose.why-animate .why-choose__eyebrow,
  .why-choose.why-animate .why-choose__description,
  .why-choose.why-animate .why-choose__heading-line > span,
  .why-choose.why-animate .why-choose__heading em,
  .why-choose.why-animate .why-choose__main-media,
  .why-choose.why-animate .why-choose__main-media img,
  .why-choose.why-animate .why-step,
  .why-choose.why-animate .why-step__number,
  .why-choose.why-animate .why-step__header h3,
  .why-choose.why-animate .why-step__subtitle,
  .why-choose.why-animate .why-step__rule,
  .why-choose.why-animate .why-step__description,
  .why-choose.why-animate .why-step__media,
  .why-choose.why-animate .fixing-method,
  .why-choose.why-animate .fixing-method__diagram-layer,
  .why-choose.why-animate .fixing-method__labels li,
  .why-choose.why-animate .why-quality-item,
  .why-choose.why-animate .process-timeline__item,
  .why-choose.why-animate .process-timeline__icon img,
  .why-choose.why-animate .process-timeline__progress {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
  .why-choose.why-animate .why-laser--x,
  .why-choose.why-animate .why-laser--y { transform: none !important; }
  .why-choose.why-animate .why-laser-point { opacity: 1 !important; transform: none !important; }
}
