/* Static-export enhancements */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* Home-page splash — short hold then fade so first paint is not blocked for ~3.6s. */
.static-splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: max(24px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  box-sizing: border-box;
  overflow: hidden;
  background: var(--ink);
  animation: static-splash-out .5s ease-in-out 1s forwards;
}
.splash-seen .static-splash { display: none; }

.static-splash__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 440px);
  max-height: 100%;
  gap: clamp(20px, 4vh, 32px);
  animation: static-splash-in .8s ease-out both;
}
.static-splash__float {
  display: grid;
  width: 100%;
  place-items: center;
  animation: static-splash-float 2.2s ease-in-out infinite;
}
.static-splash__logo {
  display: block;
  width: min(100%, 380px);
  height: auto;
  max-height: min(34dvh, 285px);
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, .35));
  animation: static-splash-logo 1.6s ease-out both;
}
.static-splash__bar {
  position: relative;
  height: 3px;
  width: min(224px, 64vw);
  overflow: hidden;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, .55);
}
.static-splash__bar span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 33.3333%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  filter: blur(var(--blur-sm, 8px));
  animation: static-splash-shimmer 1.2s ease-in-out infinite;
}

@keyframes static-splash-out {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes static-splash-in {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: none; }
}
@keyframes static-splash-logo {
  0% { opacity: 0; transform: scale(.7) rotate(-8deg); }
  60% { opacity: 1; transform: scale(1.08) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes static-splash-float {
  0%, 100% { transform: none; }
  50% { transform: translateY(-6px); }
}
@keyframes static-splash-shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@media (max-width: 480px) {
  .static-splash__group {
    width: min(100%, 340px);
  }

  .static-splash__logo {
    width: min(100%, 320px);
    max-height: 30dvh;
  }
}

.static-hero-zoom {
  transform-origin: center center;
  animation: static-hero-ken-burns 7.5s linear both;
  will-change: transform;
}

[data-hero-media] picture,
[data-hero-media] picture img {
  display: block;
  width: 100%;
  height: 100%;
}

[data-hero-media] picture img {
  object-fit: cover;
  object-position: center;
}

@keyframes static-hero-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

/* Scroll reveals. Scoped to `.js` so the content stays readable when scripting is unavailable,
   and each element carries its own starting offset and duration from the React source. */
.js [data-reveal] {
  opacity: 0;
  transform: var(--reveal-from, none);
  transition:
    opacity var(--reveal-duration, .5s) ease-out,
    transform var(--reveal-duration, .5s) ease-out;
  will-change: opacity, transform;
}
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.static-mobile-menu {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 49;
  display: none;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #111;
  padding: 12px 20px 20px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, .4);
}
.static-mobile-menu.is-open { display: block; }
.static-mobile-menu a {
  display: block;
  padding: 11px 12px;
  color: rgba(255, 255, 255, .86);
  font-family: Mulish, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.static-mobile-menu a:hover { color: #f4b400; }
.static-mobile-menu .subnav {
  margin-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-left: 10px;
}

.static-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  overflow-y: auto;
  padding: 20px;
  background: rgba(0, 0, 0, .8);
}
.static-modal.is-open { display: grid; }
.static-modal__panel {
  position: relative;
  width: min(672px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}
.static-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 24px;
}
.static-modal__header h2 { margin: 0; }
.static-modal__close {
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  padding: 4px;
  color: #64748b;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s ease;
}
.static-modal__close:hover { opacity: 1; }

/* Stands in for the Radix select trigger: hide the native arrow, draw the chevron instead. */
.static-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}
.static-select.is-placeholder { color: #94a3b8; }
.static-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 110;
  max-width: min(380px, calc(100vw - 110px));
  translate: 0 20px;
  border-left: 4px solid #f4b400;
  border-radius: 6px;
  background: #111;
  padding: 13px 16px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.static-toast.is-visible { translate: 0 0; opacity: 1; }

/* Floating WhatsApp CTA — mirrors the back-to-top button size, position stack, and scroll reveal. */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  place-items: center;
  height: 50px;
  width: 50px;
  border-radius: 999px;
  background: #25d366;
  color: #06170d;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -4px rgba(0, 0, 0, .2);
  transition: all .3s ease-out;
  -webkit-tap-highlight-color: transparent;
}
.wa-float:hover,
.wa-float:focus-visible {
  background: #45e47d;
  transform: scale(1.1);
  outline: none;
}
.wa-float:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #25d366, 0 10px 15px -3px rgba(0, 0, 0, .2);
}
.wa-float.opacity-0 {
  opacity: 0;
}
.wa-float.pointer-events-none {
  pointer-events: none;
}
.wa-float.translate-y-2 {
  transform: translateY(.5rem);
}
.wa-float__icon {
  width: 26px;
  height: 26px;
  display: block;
}

@media print {
  .wa-float { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { transition: none; }
}

.static-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}
.static-lightbox[hidden] { display: none !important; }
.static-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.static-lightbox__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(806px, 90vw);
  max-height: min(66vh, 662px);
  max-height: min(66dvh, 662px);
  transform: translateY(18px) scale(.97);
  opacity: 0;
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), opacity .38s cubic-bezier(.22, 1, .36, 1);
}
.static-lightbox.is-open .static-lightbox__panel {
  transform: none;
  opacity: 1;
}
.static-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(8, 17, 25, .55);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.static-lightbox__close svg {
  width: 18px;
  height: 18px;
}
.static-lightbox__close:hover,
.static-lightbox__close:focus-visible {
  background: var(--gold, #d4af37);
  border-color: var(--gold, #d4af37);
  color: var(--ink, #081119);
  outline: none;
  transform: scale(1.04);
}
.static-lightbox__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: min(38vh, 414px);
  height: min(50vh, 504px);
  height: min(50dvh, 504px);
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(255, 255, 255, .06), transparent 55%),
    #050b10;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
  touch-action: pan-y;
}
.static-lightbox__viewport {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.static-lightbox__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 16px 48px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
.static-lightbox__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.static-lightbox__slide img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .32);
  transform-origin: center center;
}
.static-lightbox__slide.is-entering,
.static-lightbox__slide.is-leaving {
  visibility: visible;
  pointer-events: none;
  z-index: 2;
}

/* Effect: fade */
.static-lightbox__slide.fx-fade.is-entering { opacity: 0; }
.static-lightbox__slide.fx-fade.is-entering.is-in {
  opacity: 1;
  transition: opacity .45s ease;
}
.static-lightbox__slide.fx-fade.is-leaving { opacity: 1; }
.static-lightbox__slide.fx-fade.is-leaving.is-out {
  opacity: 0;
  transition: opacity .45s ease;
}

/* Effect: zoom */
.static-lightbox__slide.fx-zoom.is-entering {
  opacity: 0;
}
.static-lightbox__slide.fx-zoom.is-entering img {
  transform: scale(1.12);
}
.static-lightbox__slide.fx-zoom.is-entering.is-in {
  opacity: 1;
  transition: opacity .45s ease;
}
.static-lightbox__slide.fx-zoom.is-entering.is-in img {
  transform: scale(1);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.static-lightbox__slide.fx-zoom.is-leaving { opacity: 1; }
.static-lightbox__slide.fx-zoom.is-leaving img { transform: scale(1); }
.static-lightbox__slide.fx-zoom.is-leaving.is-out {
  opacity: 0;
  transition: opacity .4s ease;
}
.static-lightbox__slide.fx-zoom.is-leaving.is-out img {
  transform: scale(.92);
  transition: transform .45s ease;
}

/* Effect: rise */
.static-lightbox__slide.fx-rise.is-entering {
  opacity: 0;
}
.static-lightbox__slide.fx-rise.is-entering img {
  transform: translateY(28px);
}
.static-lightbox__slide.fx-rise.is-entering.is-in {
  opacity: 1;
  transition: opacity .4s ease;
}
.static-lightbox__slide.fx-rise.is-entering.is-in img {
  transform: translateY(0);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.static-lightbox__slide.fx-rise.is-leaving { opacity: 1; }
.static-lightbox__slide.fx-rise.is-leaving img { transform: translateY(0); }
.static-lightbox__slide.fx-rise.is-leaving.is-out {
  opacity: 0;
  transition: opacity .35s ease;
}
.static-lightbox__slide.fx-rise.is-leaving.is-out img {
  transform: translateY(-18px);
  transition: transform .4s ease;
}

/* Effect: sweep (direction aware) */
.static-lightbox__slide.fx-sweep.is-entering {
  opacity: 0;
}
.static-lightbox__slide.fx-sweep.fx-dir-next.is-entering img {
  transform: translateX(42px);
}
.static-lightbox__slide.fx-sweep.fx-dir-prev.is-entering img {
  transform: translateX(-42px);
}
.static-lightbox__slide.fx-sweep.is-entering.is-in {
  opacity: 1;
  transition: opacity .4s ease;
}
.static-lightbox__slide.fx-sweep.is-entering.is-in img {
  transform: translateX(0);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.static-lightbox__slide.fx-sweep.is-leaving { opacity: 1; }
.static-lightbox__slide.fx-sweep.is-leaving img { transform: translateX(0); }
.static-lightbox__slide.fx-sweep.fx-dir-next.is-leaving.is-out {
  opacity: 0;
  transition: opacity .35s ease;
}
.static-lightbox__slide.fx-sweep.fx-dir-next.is-leaving.is-out img {
  transform: translateX(-36px);
  transition: transform .4s ease;
}
.static-lightbox__slide.fx-sweep.fx-dir-prev.is-leaving.is-out {
  opacity: 0;
  transition: opacity .35s ease;
}
.static-lightbox__slide.fx-sweep.fx-dir-prev.is-leaving.is-out img {
  transform: translateX(36px);
  transition: transform .4s ease;
}

.static-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  height: 44px;
  width: 44px;
  transform: translateY(-58%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.static-lightbox__nav svg {
  width: 18px;
  height: 18px;
}
.static-lightbox__nav:hover,
.static-lightbox__nav:focus-visible {
  background: var(--gold, #d4af37);
  border-color: var(--gold, #d4af37);
  color: var(--ink, #081119);
  outline: none;
  transform: translateY(-58%) scale(1.05);
}
.static-lightbox__nav[hidden] { display: none !important; }
.static-lightbox__nav--prev { left: 12px; }
.static-lightbox__nav--next { right: 12px; }
.static-lightbox__caption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px 20px;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(180deg, rgba(8, 17, 25, .72), rgba(8, 17, 25, .92)),
    rgba(8, 17, 25, .65);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
}
.static-lightbox__meta {
  min-width: 0;
}
.static-lightbox__cat {
  color: var(--gold, #d4af37);
  font-family: Mulish, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.static-lightbox__title {
  margin-top: 4px;
  color: #fff;
  font-family: Mulish, sans-serif;
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.static-lightbox__tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}
.static-lightbox__counter {
  font-family: Mulish, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .78);
  font-variant-numeric: tabular-nums;
}
.static-lightbox__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: 160px;
}
.static-lightbox__dots[hidden] { display: none !important; }
.static-lightbox__dots button {
  height: 8px;
  width: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .2s ease, width .2s ease, transform .2s ease;
}
.static-lightbox__dots button:hover { background: rgba(255, 255, 255, .7); }
.static-lightbox__dots button.is-active {
  width: 22px;
  background: var(--gold, #d4af37);
}

@media (max-width: 900px) {
  .static-lightbox__panel {
    width: min(860px, 94vw);
  }
  .static-lightbox__slide {
    padding: 16px 42px 24px;
  }
}

@media (max-width: 760px) {
  .static-lightbox {
    padding: max(8px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
    align-items: center;
  }
  .static-lightbox__panel {
    width: min(100%, 357px);
    max-height: min(74dvh, 612px);
    height: auto;
  }
  .static-lightbox.is-open .static-lightbox__panel {
    transform: none;
  }
  /* Stage follows the image ratio so portrait phones do not show tall empty bands. */
  .static-lightbox__stage {
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
    height: auto;
    max-height: min(44dvh, 340px);
    border-radius: 14px 14px 0 0;
  }
  .static-lightbox__slide {
    padding: 44px 12px 14px;
  }
  .static-lightbox__slide img {
    max-width: 100%;
    max-height: 100%;
  }
  .static-lightbox__nav {
    width: 36px;
    height: 36px;
    transform: translateY(-40%);
  }
  .static-lightbox__nav svg {
    width: 16px;
    height: 16px;
  }
  .static-lightbox__nav:hover,
  .static-lightbox__nav:focus-visible {
    transform: translateY(-40%) scale(1.05);
  }
  .static-lightbox__nav--prev { left: 6px; }
  .static-lightbox__nav--next { right: 6px; }
  .static-lightbox__caption {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 11px 13px calc(11px + env(safe-area-inset-bottom));
    border-radius: 0 0 14px 14px;
  }
  .static-lightbox__cat {
    font-size: 10px;
    letter-spacing: .2em;
  }
  .static-lightbox__title {
    white-space: normal;
    font-size: .95rem;
  }
  .static-lightbox__tools {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }
  .static-lightbox__dots {
    max-width: none;
    justify-content: flex-end;
  }
  .static-lightbox__close {
    top: 7px;
    right: 7px;
    width: 34px;
    height: 34px;
  }
  .static-lightbox__close svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 760px) and (max-height: 640px) {
  .static-lightbox__panel {
    max-height: 88dvh;
  }
  .static-lightbox__stage {
    max-height: 40dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .static-lightbox,
  .static-lightbox__panel,
  .static-lightbox__nav,
  .static-lightbox__close,
  .static-lightbox__dots button,
  .static-lightbox__slide,
  .static-lightbox__slide img { transition: none !important; }
}

/* Positioned against the viewport from JavaScript so the surrounding
   card's overflow:hidden cannot clip the list. */
[data-city-panel] {
  position: fixed;
  z-index: 120;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .18);
}
[data-city-panel].is-open { display: flex; }
[data-city-options] { flex: 1 1 auto; min-height: 0; }
[data-city-option] { cursor: pointer; }
[data-city-option][aria-selected="true"] {
  background: #fffbeb;
  color: #b45309;
  font-weight: 500;
}
[data-city-check] { display: none; }
[data-city-option][aria-selected="true"] [data-city-check] { display: block; }
[data-city-trigger] { cursor: pointer; }

[data-expertise-toggle] { cursor: pointer; }
[data-expertise-desc] { display: none; }
[data-expertise-toggle][aria-expanded="true"] [data-expertise-desc] {
  display: block;
  animation: static-expertise-reveal .28s ease both;
}
[data-expertise-toggle][aria-expanded="true"] [data-expertise-icon] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
[data-expertise-toggle][aria-expanded="true"] [data-expertise-label] { color: var(--ink); }

@keyframes static-expertise-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.static-calculator-active {
  border-color: #c62828 !important;
  background: #c62828 !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(198, 40, 40, .22);
}

/* Corner-mounted hero scroll control, kept clear of the centered slide dots. */
.static-hero-scroll {
  position: absolute;
  right: clamp(20px, 3vw, 44px);
  bottom: clamp(20px, 3.5vh, 36px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.static-hero-scroll::before {
  content: "";
  width: clamp(24px, 3vw, 44px);
  height: 1px;
  background: rgba(255, 255, 255, .34);
  transition: width .2s ease, background .2s ease;
}
.static-hero-scroll__label {
  font-family: var(--font-heading, inherit);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.static-hero-scroll__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(8, 17, 25, .24);
  backdrop-filter: blur(8px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.static-hero-scroll__icon svg {
  width: 18px;
  height: 18px;
  animation: static-hero-chevron 1.6s ease-in-out infinite;
}
.static-hero-scroll:hover,
.static-hero-scroll:focus-visible {
  color: var(--gold);
  transform: translateY(-2px);
  outline: none;
}
.static-hero-scroll:hover::before,
.static-hero-scroll:focus-visible::before {
  width: clamp(32px, 4vw, 56px);
  background: var(--gold);
}
.static-hero-scroll:hover .static-hero-scroll__icon,
.static-hero-scroll:focus-visible .static-hero-scroll__icon {
  border-color: var(--gold);
  background: rgba(212, 175, 55, .12);
}
@keyframes static-hero-chevron {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

/* Projects category filters */
.projects-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin: 2rem auto 0;
  max-width: 820px;
}
.projects-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .7rem 1.15rem;
  border: 1px solid rgba(8, 17, 25, .12);
  background: #fff;
  color: var(--body, #4a5560);
  font-family: var(--font-heading, inherit);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.projects-filter:hover,
.projects-filter:focus-visible {
  border-color: var(--gold, #d4af37);
  color: var(--ink, #081119);
  outline: none;
}
.projects-filter.is-active {
  border-color: var(--ink, #081119);
  background: var(--ink, #081119);
  color: #fff;
}

/* Aligned responsive projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  margin-top: 2.25rem;
}
.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--ink, #081119);
  color: #fff;
  text-align: left;
  cursor: pointer;
}
.project-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}
.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.08);
}
.project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 17, 25, .92), rgba(8, 17, 25, .35) 48%, transparent 78%);
  opacity: .92;
  pointer-events: none;
}
.project-card__copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem 1.35rem 1.4rem;
}
.project-card__cat {
  font-family: var(--font-heading, inherit);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
}
.project-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .4rem;
}
.project-card__title-row h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.project-card__arrow {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  background: var(--gold, #d4af37);
  color: var(--ink, #081119);
  opacity: 0;
  transition: opacity .2s ease;
}
.project-card:hover .project-card__arrow,
.project-card:focus-visible .project-card__arrow {
  opacity: 1;
}
.project-card__arrow svg {
  width: 1rem;
  height: 1rem;
}
.projects-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.projects-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.projects-pagination a,
.projects-pagination span {
  display: grid;
  place-items: center;
  min-width: 2.55rem;
  min-height: 2.55rem;
  padding: .4rem .7rem;
  border: 1px solid rgba(8, 17, 25, .12);
  background: #fff;
  color: var(--ink, #081119);
  font-family: var(--font-heading, inherit);
  font-size: 13px;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.projects-pagination a:hover,
.projects-pagination a:focus-visible {
  border-color: var(--gold, #d4af37);
  color: var(--gold, #b78d22);
  outline: none;
}
.projects-pagination .is-active {
  border-color: var(--ink, #081119);
  background: var(--ink, #081119);
  color: #fff;
}
@media (max-width: 1023px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .projects-filters {
    gap: .5rem;
    margin-top: 1.5rem;
  }
  .projects-filter {
    min-height: 38px;
    padding: .6rem .9rem;
    font-size: 10px;
    letter-spacing: .12em;
  }
  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: .9rem;
    margin-top: 1.5rem;
  }
  .project-card__copy {
    padding: 1.1rem 1.15rem 1.2rem;
  }
  .projects-pagination {
    margin-top: 1.75rem;
  }
}

/* Home hero copy + actions */
.home-hero-copy {
  width: min(100%, 36rem);
  margin-inline: auto;
  padding-inline: .25rem;
}
.home-hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .05em;
  font-family: var(--font-heading, inherit);
  font-size: clamp(2.6rem, 11vw, 4.75rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  text-wrap: balance;
}
.home-hero-title__line {
  display: block;
  max-width: 100%;
}
.home-hero-subtitle {
  margin: clamp(1rem, 3vh, 1.5rem) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15em;
  font-family: var(--font-heading, inherit);
  font-size: clamp(.95rem, 3.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .92);
}
.home-hero-subtitle__line {
  display: block;
  max-width: 100%;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: clamp(1.35rem, 4vh, 2.1rem);
}
.home-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 50px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-heading, inherit);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.home-hero-action svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-hero-cta-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
}
.home-hero-cta-lines span {
  display: block;
}
.home-hero-action--ghost {
  border-color: rgba(255, 255, 255, .85);
  background: transparent;
  color: #fff;
}
.home-hero-action--ghost:hover,
.home-hero-action--ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}
.home-hero-action--services {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(8, 17, 25, .24);
  color: #fff;
  backdrop-filter: blur(8px);
}
.home-hero-action--services:hover,
.home-hero-action--services:focus-visible {
  border-color: var(--gold, #d4af37);
  background: var(--gold, #d4af37);
  color: var(--ink, #081119);
  transform: translateY(-2px);
  outline: none;
}
@media (min-width: 768px) {
  .home-hero-copy {
    width: min(100%, 58rem);
  }
  .home-hero-title {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: .28em;
    font-size: clamp(3.4rem, 6.2vw, 5.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .home-hero-title__line {
    display: inline;
  }
  .home-hero-subtitle {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: .35em;
    margin-top: 1.15rem;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 400;
    letter-spacing: .01em;
    white-space: nowrap;
  }
  .home-hero-subtitle__line {
    display: inline;
  }
  .home-hero-cta-lines {
    flex-direction: row;
    gap: .35em;
  }
  .home-hero-action--ghost {
    min-height: 52px;
    padding: .95rem 1.7rem;
    border-width: 1.5px;
    border-color: rgba(255, 255, 255, .9);
    font-size: 12px;
    letter-spacing: .16em;
  }
}
@media (max-width: 640px) {
  .home-hero-copy {
    width: min(100%, 20rem);
  }
  .home-hero-title {
    font-size: clamp(2.35rem, 12.5vw, 3.4rem);
    letter-spacing: .06em;
  }
  .home-hero-subtitle {
    font-size: clamp(.92rem, 4.2vw, 1.05rem);
  }
  .home-hero-actions {
    width: 100%;
  }
  .home-hero-action {
    width: min(100%, 15.5rem);
    min-height: 58px;
    padding: .9rem 1.1rem;
  }
}
@media (max-height: 700px) {
  .home-hero-actions {
    margin-top: 1rem;
  }
  .home-hero-action {
    min-height: 44px;
    padding-block: .7rem;
  }
}

/* —— Service detail page —— */
.svc-detail-body {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(212, 175, 55, .08), transparent 24rem),
    #f7f8f6;
}
.svc-detail-layout {
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.svc-detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8, 17, 25, .82) 0%, rgba(8, 17, 25, .55) 48%, rgba(8, 17, 25, .35) 100%);
  pointer-events: none;
}
.svc-detail-main {
  min-width: 0;
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.svc-detail-block {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid rgba(8, 17, 25, .08);
  border-radius: 2px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 50px rgba(8, 17, 25, .055);
}
.svc-detail-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4.5rem;
  background: var(--gold, #d4af37);
}
.svc-detail-kicker {
  margin: 0;
  font-family: var(--font-heading, inherit);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
}
.svc-detail-title {
  margin: .55rem 0 0;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink, #081119);
}
.svc-detail-copy {
  margin-top: 1rem;
  max-width: 48rem;
  overflow-wrap: anywhere;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: var(--body, #4a5560);
}
.svc-support-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.svc-support-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .85rem;
  align-items: start;
  padding: .95rem 1rem;
  min-width: 0;
  border: 1px solid rgba(8, 17, 25, .08);
  border-radius: 2px;
  background: linear-gradient(145deg, #f8f6f0, #fff);
}
.svc-support-mark {
  margin-top: .35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold, #d4af37);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .18);
}
.svc-process-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: none;
}
.svc-process-list li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(8, 17, 25, .08);
}
.svc-process-list li:first-child {
  padding-top: .25rem;
}
.svc-process-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.svc-process-num {
  font-family: var(--font-heading, inherit);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--gold, #d4af37);
  line-height: 1.4;
}
.svc-process-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink, #081119);
  font-weight: 500;
}
.svc-detail-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(8, 17, 25, .08);
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 17, 25, .04);
}
.svc-detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  border: 0;
  background: var(--ink, #081119);
  color: #fff;
  font-family: var(--font-heading, inherit);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.svc-detail-cta:hover,
.svc-detail-cta:focus-visible {
  background: var(--gold, #d4af37);
  color: var(--ink, #081119);
  outline: none;
}
.svc-detail-cta--compact {
  width: 100%;
  padding: .85rem 1.1rem;
  margin-top: .85rem;
}
.svc-detail-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--body, #4a5560);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.svc-detail-link:hover {
  color: var(--gold, #c49a2a);
}
.svc-detail-aside {
  position: sticky;
  top: 100px;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid rgba(8, 17, 25, .1);
  border-radius: 2px;
  background:
    linear-gradient(165deg, rgba(247, 245, 240, .95), #fff 55%),
    #fff;
  box-shadow: 0 18px 45px rgba(8, 17, 25, .06);
}
.svc-aside-heading {
  padding: .2rem .35rem 1rem;
  border-bottom: 1px solid rgba(8, 17, 25, .09);
}
.svc-aside-heading h2 {
  margin: .35rem 0 0;
  font-family: var(--font-heading, inherit);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink, #081119);
}
.svc-aside-nav ul {
  display: grid;
  gap: .25rem;
  margin: .8rem 0 0;
  padding: 0;
  list-style: none;
}
.svc-aside-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-width: 0;
  padding: .8rem .75rem;
  border-left: 2px solid transparent;
  border-radius: 0 2px 2px 0;
  font-size: 14px;
  color: var(--body, #4a5560);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.svc-aside-link span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.svc-aside-arrow {
  flex: 0 0 auto;
  opacity: .45;
  transition: transform .15s ease, opacity .15s ease;
}
.svc-aside-link:hover {
  color: var(--gold, #c49a2a);
  background: rgba(212, 175, 55, .06);
}
.svc-aside-link:hover .svc-aside-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.svc-aside-link.is-active {
  border-left-color: var(--gold, #d4af37);
  color: var(--ink, #081119);
  font-weight: 700;
  background: rgba(212, 175, 55, .1);
}
.svc-aside-link.is-active .svc-aside-arrow {
  opacity: 1;
  color: var(--gold, #d4af37);
}
.svc-aside-note {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(8, 17, 25, .08);
}
.svc-aside-note__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .7rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, .14);
  color: #9b7716;
  font-weight: 800;
}
.svc-aside-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--body, #4a5560);
}
@media (max-width: 1023px) {
  .svc-detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .svc-detail-aside {
    position: static;
    padding: 1.15rem;
  }
  .svc-aside-heading {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    padding: 0 .15rem .8rem;
  }
  .svc-aside-heading h2 {
    margin: 0;
    font-size: 1rem;
  }
  .svc-aside-nav {
    margin-inline: -.15rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .svc-aside-nav ul {
    display: flex;
    width: max-content;
    max-width: none;
    gap: .5rem;
    margin-top: .75rem;
    padding: 0 .15rem .45rem;
  }
  .svc-aside-nav li {
    flex: 0 0 auto;
  }
  .svc-aside-link {
    max-width: 250px;
    padding: .72rem .85rem;
    border: 1px solid rgba(8, 17, 25, .1);
    border-left-width: 1px;
    border-radius: 999px;
    background: #fff;
    white-space: nowrap;
  }
  .svc-aside-link span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .svc-aside-link.is-active {
    border-color: var(--gold, #d4af37);
  }
  .svc-aside-arrow,
  .svc-aside-note {
    display: none;
  }
}
@media (max-width: 640px) {
  .svc-detail-hero__shade {
    background: linear-gradient(110deg, rgba(8, 17, 25, .88), rgba(8, 17, 25, .48));
  }
  .svc-detail-block {
    padding: 1.25rem;
  }
  .svc-support-list {
    grid-template-columns: 1fr;
  }
  .svc-support-list li {
    grid-template-columns: 18px minmax(0, 1fr);
  }
  .svc-process-list li {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: .65rem;
  }
  .svc-process-num {
    font-size: .95rem;
  }
  .svc-detail-cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .svc-detail-cta {
    width: 100%;
  }
  .svc-detail-link {
    text-align: center;
  }
}

/* Reference-style service template */
.svc-page {
  min-height: calc(100vh - 76px);
  background: #fff;
}
.svc-reference {
  padding: 3rem 1rem;
  background:
    radial-gradient(circle at 8% 5%, rgba(212, 175, 55, .075), transparent 20rem),
    linear-gradient(180deg, #fff 0, #fff 70%, #fafaf8 100%);
}
.svc-reference-shell {
  width: min(100%, 1240px);
  margin-inline: auto;
}
.svc-service-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  background: var(--ink, #081119);
  color: #fff;
}
.svc-service-banner > img,
.svc-service-banner__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.svc-service-banner > img {
  z-index: -2;
  object-fit: cover;
  opacity: .42;
}
.svc-service-banner__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 17, 25, .72), rgba(8, 17, 25, .9)),
    linear-gradient(90deg, rgba(8, 17, 25, .22), transparent);
}
.svc-service-banner__inner {
  align-self: center;
  width: min(calc(100% - 2.5rem), 1240px);
  margin-inline: auto;
  padding-block: 7rem;
  text-align: center;
}
.svc-service-banner__copy {
  max-width: 820px;
  margin-inline: auto;
}
.svc-service-banner__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 0;
  font-family: var(--font-heading, inherit);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
}
.svc-service-banner__label::before,
.svc-service-banner__label::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}
.svc-service-banner h1 {
  margin: 1.25rem auto 0;
  overflow-wrap: anywhere;
  font-family: var(--font-heading, inherit);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: #fff;
}
.svc-banner-breadcrumb {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  width: min(calc(100% - 2.5rem), 1240px);
  transform: translateX(-50%);
}
.svc-banner-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem .7rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.svc-banner-breadcrumb li {
  min-width: 0;
  font-family: var(--font-heading, inherit);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.svc-banner-breadcrumb a {
  color: rgba(255, 255, 255, .72);
  transition: color .18s ease;
}
.svc-banner-breadcrumb a:hover,
.svc-banner-breadcrumb a:focus-visible {
  color: var(--gold, #d4af37);
  outline: none;
}
.svc-banner-breadcrumb li[aria-current="page"] {
  max-width: min(52vw, 420px);
  overflow: hidden;
  color: var(--gold, #d4af37);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.svc-reference-head {
  max-width: 780px;
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}
.svc-reference-service-title {
  position: relative;
  margin: 0;
  padding-bottom: 1rem;
  overflow-wrap: anywhere;
  color: var(--ink, #081119);
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  text-align: center;
}
.svc-reference-service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3rem;
  height: 3px;
  background: var(--gold, #d4af37);
  transform: translateX(-50%);
}
.svc-reference-head p {
  max-width: 700px;
  margin: 1.15rem auto 0;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: var(--body, #5c6570);
}
.svc-reference-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 22px);
  background: #eceee9;
  box-shadow: 0 24px 65px rgba(8, 17, 25, .11);
}
.svc-reference-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: inherit;
  pointer-events: none;
}
.svc-reference-hero img,
.svc-reference-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-reference-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: clamp(2.5rem, 6vw, 5rem);
}
.svc-reference-content {
  min-width: 0;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.svc-reference-section h2,
.svc-reference-services h2 {
  margin: 0;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink, #081119);
}
.svc-reference-list {
  display: grid;
  gap: .8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.svc-reference-list li {
  position: relative;
  padding-left: 1.4rem;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body, #4c5660);
}
.svc-reference-list li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: .1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #d4af37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .14);
}
.svc-reference-list--checks li::before {
  width: 8px;
  height: 5px;
  border: 0;
  border-bottom: 2px solid var(--gold, #d4af37);
  border-left: 2px solid var(--gold, #d4af37);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(-45deg);
}
.svc-reference-highlight {
  position: relative;
  margin: 0;
  padding: 1.2rem 1.35rem 1.2rem 1.6rem;
  border-left: 4px solid var(--gold, #d4af37);
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, .11), rgba(212, 175, 55, .025));
  font-family: var(--font-heading, inherit);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink, #081119);
}
.svc-reference-secondary {
  width: min(78%, 620px);
  aspect-ratio: 1.65 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #eceee9;
  box-shadow: 0 18px 45px rgba(8, 17, 25, .1);
}
.svc-reference-goal p {
  margin: .9rem 0 0;
  max-width: 760px;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body, #4c5660);
}
.svc-reference-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: .25rem;
}
.svc-reference-services {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 25, .09);
  border-radius: 16px;
  background: linear-gradient(145deg, #f7f8f6, #fff);
  box-shadow: 0 20px 50px rgba(8, 17, 25, .07);
}
.svc-reference-services__head {
  padding: 1.35rem 1.35rem 1rem;
}
.svc-reference-services__head h2 {
  margin-top: .35rem;
  font-size: 1.2rem;
}
.svc-reference-services ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0 .65rem .75rem;
  list-style: none;
}
.svc-reference-services a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  min-width: 0;
  padding: .9rem .75rem;
  border-radius: 10px;
  color: var(--body, #4c5660);
  font-size: 14px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.svc-reference-services a:hover {
  color: var(--ink, #081119);
  background: rgba(212, 175, 55, .09);
  transform: translateX(2px);
}
.svc-reference-services a.is-active {
  color: var(--ink, #081119);
  background: rgba(212, 175, 55, .13);
  font-weight: 700;
}
.svc-reference-services a > span:nth-child(2) {
  min-width: 0;
  overflow-wrap: anywhere;
}
.svc-reference-service-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 8px;
  background: #fff;
  color: #a27b17;
}
.svc-reference-service-arrow {
  color: #9aa09b;
  transition: transform .18s ease;
}
.svc-reference-services a:hover .svc-reference-service-arrow {
  transform: translateX(3px);
  color: var(--gold, #d4af37);
}
.svc-reference-empty {
  max-width: 650px;
  margin: 3rem auto 0;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(8, 17, 25, .09);
  background: #fafaf8;
}
.svc-reference-empty .svc-detail-cta {
  margin-top: 1.25rem;
}
@media (max-width: 900px) {
  .svc-reference-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  .svc-reference-services {
    position: static;
    order: -1;
  }
  .svc-reference-services nav {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .svc-reference-services ul {
    display: flex;
    width: max-content;
    max-width: none;
    gap: .5rem;
    padding: 0 .9rem 1rem;
  }
  .svc-reference-services li {
    flex: 0 0 auto;
  }
  .svc-reference-services a {
    width: min(270px, 72vw);
    border: 1px solid rgba(8, 17, 25, .08);
    background: #fff;
  }
}
@media (min-width: 640px) {
  .svc-reference {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .svc-reference {
    padding: 5rem 2.5rem;
  }
}
@media (max-width: 640px) {
  .svc-reference-head {
    width: 100%;
    margin-bottom: 2rem;
  }
  .svc-reference-service-title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }
  .svc-service-banner__inner {
    width: min(calc(100% - 2rem), 1240px);
  }
  .svc-service-banner__label {
    letter-spacing: .22em;
  }
  .svc-banner-breadcrumb ol {
    gap: .35rem .5rem;
  }
  .svc-banner-breadcrumb li {
    font-size: 9px;
    letter-spacing: .1em;
  }
  .svc-banner-breadcrumb li[aria-current="page"] {
    max-width: 42vw;
  }
  .svc-banner-breadcrumb {
    bottom: 1rem;
    width: min(calc(100% - 2rem), 1240px);
  }
  .svc-service-banner h1 {
    margin-top: .75rem;
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }
  .svc-reference-hero {
    aspect-ratio: 1.45 / 1;
    border-radius: 12px;
  }
  .svc-reference-grid {
    margin-top: 2rem;
  }
  .svc-reference-services__head {
    padding: 1rem 1rem .75rem;
  }
  .svc-reference-secondary {
    width: 100%;
    border-radius: 12px;
  }
  .svc-reference-highlight {
    padding: 1rem 1rem 1rem 1.25rem;
  }
  .svc-reference-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .svc-reference-actions .svc-detail-cta {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .svc-service-banner__inner {
    padding-block: 9rem;
  }
  .static-mobile-menu { display: none !important; }
}
@media (max-width: 640px) {
  .static-modal { padding: 12px; }
  .static-modal__header { padding: 16px 20px; }
  .static-hero-scroll {
    right: 16px;
    bottom: 18px;
  }
  .static-hero-scroll::before,
  .static-hero-scroll__label {
    display: none;
  }
  .static-hero-scroll__icon {
    width: 44px;
    height: 44px;
  }
}
@media print {
  header, footer, .static-mobile-menu, .static-modal, .static-toast { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .static-hero-zoom {
    animation: none;
    transform: none;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  /* The splash still fades out on schedule, it just holds still while it is up. */
  .static-splash__group,
  .static-splash__float,
  .static-splash__logo,
  .static-splash__bar span {
    animation: none;
    transform: none;
  }
  .static-hero-scroll__icon svg {
    animation: none;
  }
}
