:root {
  --background-color: #f8f2e8;
  --black: #111;
  --white: #fff;
  --text: #111;
  --muted: #777;
  --line: #d9d3c9;
  --cream: #f7f2e8;
  --rotating-cream: #f7f2e8;
  --ease: cubic-bezier(.16, .84, .24, 1);
  --header-height: 105px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open,
body.page-leaving,
body.page-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  outline: 0;
  font: inherit;
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  overflow: hidden;
}

.page-transition-bg {
  position: absolute;
  inset: 0;
  background: #111;
  transform: translateY(100%);
  will-change: transform;
}

body.page-loading .page-transition-bg {
  transform: translateY(0);
}

body.page-leaving .page-transition-bg {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  width: 100%;
  height: var(--header-height);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 64px;

  background: transparent;
  mix-blend-mode: difference;

  transition:
    transform .4s var(--ease),
    background .35s var(--ease),
    box-shadow .35s var(--ease);
}

.site-header:has(.nav-list.mobile-open) {
  mix-blend-mode: normal;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.logo {
  position: relative;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 220px;
  height: auto;
  line-height: 0;
}

.lsa-lead-logo {
  display: block;
  width: 220px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-nav {
  margin-left: auto;
  margin-right: 24px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-right: 54px;
}

.nav-list a {
  position: relative;

  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.nav-list a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #fff;
  transition: width .3s ease;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  width: 100%;
}

.locale-btn {
  position: relative;
  overflow: hidden;

  width: 85px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50px;
  background: #111;
  color: #fff;

  transition:
    transform .3s ease,
    color .3s ease;
}

.locale-text {
  position: relative;
  z-index: 2;

  font-size: 19px;
  font-weight: 700;
}

.background-hover {
  position: absolute;
  inset: 0;
  z-index: 1;

  border-radius: 50px;
  background: #45c17d;
  transform: translateY(100%);

  transition: transform .45s var(--ease);
}

.locale-btn:hover .background-hover {
  transform: translateY(0);
}

.locale-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;

  width: 30px;
  padding: 5px 0;
  background: transparent;
}

.hamburger span {
  display: block;

  width: 28px;
  height: 2px;

  background: #fff;

  transition:
    transform .3s ease,
    opacity .3s ease;
}

.hamburger[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}

/* Hero */

.service-hero {
  position: relative;

  width: 100%;
  height: 100vh;
  min-height: 700px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero-fold-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
  pointer-events: none;
}

.hero-shape-wrap {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

.hero-shape {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 5000px;
  height: 5000px;
  max-width: none;
  max-height: none;

  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
}

.hero-shape-spin {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: workHeroRotation 35s linear infinite;
  will-change: transform;
}

@keyframes workHeroRotation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1500px;
  margin: 0 auto;

  text-align: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  text-transform: uppercase;
}

.hero-line {
  display: block;

  font-family: Inter, Arial, sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 75px);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.07em;
  white-space: nowrap;
}

.hero-line.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px #111;
  margin-right: clamp(0px, 4vw, 60px);
}

.hero-line.solid {
  color: #111;
  margin-left: clamp(0px, 20vw, 300px);
}

/* Work section */

.work-list {
  position: relative;

  padding: 50px 0 120px;
  background: #fff;
}

.highlights-dropdown {
  position: relative;
  z-index: 100;

  width: 300px;
  margin-bottom: 40px;
}

.highlights-toggle {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 24px;

  border: 1px solid #c9c9c9;
  border-radius: 999px;
  background: #fff;
  color: #111;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;

  transition:
    color .35s var(--ease),
    background-color .35s var(--ease),
    border-color .35s var(--ease);
}

.highlights-toggle::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 0;

  background: #000;
  transform: translateY(100%);

  transition: transform .35s var(--ease);
}

.highlights-dropdown.open .highlights-toggle::before,
.highlights-toggle:hover::before {
  transform: translateY(0);
}

.highlights-dropdown.open .highlights-toggle,
.highlights-toggle:hover {
  border-color: #000;
  color: #fff;
}

.highlights-toggle>* {
  position: relative;
  z-index: 2;
}

.highlights-chevron {
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}

.highlights-dropdown.open .highlights-chevron {
  transform: rotate(180deg);
}

.highlights-list {
  position: absolute;
  top: 58px;
  left: 0;
  z-index: 100;

  width: 100%;
  max-height: 520px;

  overflow-x: hidden;
  overflow-y: auto;

  border: 1px solid #bdbdbd;
  border-top: 0;
  border-radius: 0 0 32px 32px;
  background: #fff;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transform-origin: top;

  transition:
    opacity .3s var(--ease),
    transform .35s var(--ease),
    visibility .3s;
}

.highlights-dropdown.open .highlights-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.highlights-list::-webkit-scrollbar {
  width: 6px;
}

.highlights-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.highlights-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #111;
}

.highlights-list {
  scrollbar-color: #111 #f1f1f1;
  scrollbar-width: thin;
}

.highlights-list li {
  width: 100%;
}

.highlights-list li button {
  position: relative;
  overflow: hidden;

  display: block;

  width: 100%;
  min-height: 58px;

  padding: 18px 24px;

  border: 0;
  border-bottom: 1px solid #c9c9c9;
  background: #fff;
  color: #111;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;

  transition:
    background-color .3s ease,
    color .3s ease;
}

.highlights-list li:last-child button {
  border-bottom: 0;
  border-radius: 0 0 31px 31px;
}

.highlights-list li button:hover,
.highlights-list li.active button {
  background-color: #000;
  color: #fff;
}

.highlights-dropdown.open .highlights-toggle {
  border-color: #000;
  border-radius: 32px 32px 0 0;
  background-color: #000;
  color: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* Shared Services-style project cards */

.project-card {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  border-radius: 0;
  background: #f8f2e8;
  cursor: pointer;

  transition: transform .45s var(--ease);
}

.project-image {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 0;
}

.project-image img {
  width: 100%;
  height: 440px;

  display: block;

  border-radius: 26px;
  object-fit: cover;
  transform: scale(1);

  transition: transform .5s var(--ease);
}

.project-content {
  position: relative;

  flex: 1;
  min-height: 190px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;

  padding: 0 0 20px 20px;
}

.project-info {
  flex: 1 1 auto;
  width: 200px;

  transition:
    opacity .35s var(--ease),
    transform .35s var(--ease);
}

.project-info span {
  display: block;

  width: 150px;
  margin-bottom: 12px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.project-info h3 {
  max-width: 78%;
  margin: 0;

  font-size: 20px;
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.project-description {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 110px;

  max-width: 90%;
  margin: 0;

  color: #111;
  font-size: 16px;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(22px);

  transition:
    opacity .45s var(--ease),
    transform .45s var(--ease);
}

.view-btn {
  position: relative;
  overflow: hidden;

  width: 56px;
  min-width: 56px;
  height: 56px;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 26px;

  border-radius: 999px;
  background: #000;
  color: #fff;

  transition:
    width .4s ease,
    gap .4s ease,
    transform .35s ease,
    background .35s ease;
}

.view-btn span {
  display: block;

  max-width: 0;
  overflow: hidden;

  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;

  opacity: 0;

  transition:
    max-width .35s ease,
    opacity .35s ease;
}

.view-btn svg {
  flex-shrink: 0;

  width: 18px;
  height: 18px;

  transition:
    opacity .25s ease,
    width .25s ease,
    transform .25s ease;
}

.project-card:hover .project-image img {
  transform: scale(.94);
}

.project-card:hover .project-info {
  opacity: 0;
  transform: translateY(-14px);
}

.project-card:hover .project-description {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover .view-btn {
  width: 100%;
  justify-content: center;
  gap: 12px;
  background: #000;
  transform: translateY(-3px);
}

.project-card:hover .view-btn span {
  max-width: 120px;
  opacity: 1;
}

.project-card:hover .view-btn svg,
.view-btn:hover svg {
  width: 0;
  opacity: 0;
  transform: scale(0);
}

.view-btn:hover {
  background: #000;
  transform: translateY(-3px);
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.show-more-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  height: 46px;

  margin: 0 auto;
  padding: 0 40px;

  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;

  transition:
    color .35s var(--ease),
    border-color .35s var(--ease),
    transform .3s var(--ease);
}

.show-more-btn::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background: #b7c9e2;
  transform: translateY(100%);

  transition: transform .45s var(--ease);
}

.show-more-btn:hover {
  border-color: #b7c9e2;
  color: #fff;
}

.show-more-btn:hover::before {
  transform: translateY(0);
}

.show-more-btn:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 4px;
}

.show-more-btn[hidden] {
  display: none;
}

/* Footer */

.site-footer {
  padding: 100px 60px 60px;
  border-top: 1px solid var(--line);
  background: #000;
}

.footer-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-logo {
  flex-shrink: 0;
  width: 280px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-rows {
  flex: 1;
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 28px;
}

.social-list,
.legal-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.social-list a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-list a {
  color: #9d9d9d;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.footer-copyright {
  color: #9d9d9d;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-list a:hover,
.social-list a:hover,
.footer-brand a:hover {
  color: #fff;
}

/* Responsive */

@media (max-width: 1200px) {
  .site-header {
    padding: 0 35px;
  }

  .nav-list {
    gap: 35px;
    margin-right: 25px;
  }

  .container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .hero-line {
    font-size: clamp(2.3rem, 5.6vw, 64px);
  }

  .hero-line.outline {
    margin-right: clamp(0px, 10vw, 180px);
  }

  .hero-line.solid {
    margin-left: clamp(0px, 14vw, 220px);
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights-dropdown {
    width: 440px;
  }

  .project-image img {
    height: 390px;
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 80px;
  }

  .site-header {
    padding: 0 24px;
  }

  .locale-btn {
    display: none;
  }

  .hamburger {
    position: relative;
    z-index: 10001;
    display: flex;
  }

  .site-nav {
    margin: 0;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    z-index: 9998;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;

    margin: 0;
    padding-top: var(--header-height);

    background: #0b0b0b;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);

    transition:
      opacity .35s ease,
      visibility .35s ease,
      transform .35s ease;
  }

  .nav-list.mobile-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list li {
    flex: 1;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .nav-list a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
  }

  .hero-content {
    width: 94%;
  }

  .hero-line {
    font-size: clamp(2rem, 7vw, 52px);
    line-height: .92;
    letter-spacing: -.06em;
  }

  .hero-line.outline,
  .hero-line.solid {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .work-list {
    padding: 60px 0 90px;
  }

  .highlights-dropdown {
    width: 100%;
    max-width: 500px;
  }

  .highlights-toggle {
    height: 56px;
    padding: 0 22px;
    font-size: 17px;
  }

  .highlights-list {
    top: 56px;
  }

  .highlights-list li button {
    padding: 18px 22px;
    font-size: 17px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .project-image {
    padding: 18px 18px 0;
  }

  .project-image img {
    height: 300px;
    border-radius: 20px;
  }

  .project-content {
    min-height: 180px;
    padding: 22px 18px;
  }

  .project-info span {
    font-size: 17px;
  }

  .project-info h3 {
    font-size: 15px;
  }

  .project-description {
    top: auto;
    bottom: 110px;
    left: 18px;
    right: 18px;
    max-width: calc(100% - 36px);
    font-size: 14px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .social-list,
  .legal-list {
    justify-content: flex-start;
    gap: 25px;
  }
}

@media (max-width: 768px) {

  .logo,
  .lsa-lead-logo {
    width: 160px;
  }

  .site-footer {
    padding: 60px 24px 40px;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-rows {
    gap: 20px;
  }

  .social-list,
  .legal-list {
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .highlights-dropdown {
    width: 100%;
  }

  .highlights-toggle {
    height: 54px;
    padding: 0 20px;
    font-size: 16px;
  }

  .highlights-list {
    top: 54px;
    border-radius: 0 0 26px 26px;
  }

  .highlights-list li button {
    min-height: 54px;
    padding: 17px 20px;
    font-size: 16px;
  }

  .highlights-list li:last-child button {
    border-radius: 0 0 25px 25px;
  }

  .service-hero {
    min-height: 600px;
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  .hero-title {
    gap: 4px;
  }

  .hero-line {
    width: 100%;
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: .95;
    letter-spacing: -.065em;
    white-space: normal;
    text-align: center;
  }

  .hero-line.outline,
  .hero-line.solid {
    margin: 0;
  }

  .hero-line.outline {
    -webkit-text-stroke-width: 1px;
    font-size: 40px;
  }

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

  .project-image {
    padding: 18px 18px 0;
  }

  .project-image img {
    height: 300px;
    border-radius: 20px;
  }

  .project-content {
    align-items: center;
    min-height: 170px;
    padding: 22px 18px;
  }

  .project-description {
    top: auto;
    bottom: 98px;
    left: 18px;
    right: 18px;
    max-width: calc(100% - 36px);
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 16px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo,
  .lsa-lead-logo {
    width: 130px;
  }

  .work-list {
    padding: 44px 0 60px;
  }

  .project-image img {
    height: 260px;
  }

  .site-footer {
    padding: 40px 16px 30px;
  }

  .footer-logo {
    width: 150px;
  }

  .social-list a,
  .legal-list a,
  .footer-brand a,
  .footer-copyright {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-shape-spin {
    animation: none;
  }

  .highlights-list,
  .highlights-list li button,
  .highlights-toggle,
  .highlights-toggle::before,
  .project-card,
  .project-image img,
  .project-info,
  .project-description,
  .view-btn,
  .view-btn span,
  .view-btn svg,
  .show-more-btn,
  .show-more-btn::before {
    transition: none;
  }
}