:root {
  --bg: #f7f2e8;
  --cream: #f7f2e8;
  --black: #000;
  --text: #111;
  --white: #fff;
  --line: #d8d3ca;
  --muted: #777;
  --navy: #1c4266;
  --navy-dark: #071c32;
  --panel: #f8f2e8;
  --ease: cubic-bezier(.16, .84, .24, 1);
  --header-height: 105px;
  --background-color: var(--cream)
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth
}
body {
  background: var(--cream);
  color: var(--text);
  font-family: Inter,Arial,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}
a {
  color: inherit;
  text-decoration: none
}
ul {
  list-style: none
}
button {
  font-family: inherit;
  background: 0 0;
  border: none;
  color: inherit;
  cursor: pointer
}
img {
  max-width: 100%;
  display: block
}
main {
  display: block
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px
}
.projects .container,
.services .container {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  overflow: hidden;
  visibility: visible
}
.page-transition-bg {
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateY(-100%);
  will-change: transform
}
body.page-loading .page-transition {
  pointer-events: all
}
body.page-loading .page-transition-bg {
  transform: translateY(0)
}
body.page-leaving .page-transition {
  pointer-events: all
}
body.page-leaving .page-transition-bg {
  transform: translateY(0)
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  z-index: 9999;
  background: 0 0;
  mix-blend-mode: difference;
  transition: transform .4s var(--ease),background .35s var(--ease),box-shadow .35s var(--ease)
}
.site-header.header-hidden {
  transform: translateY(-100%)
}
.logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
  height: auto;
  color: #111;
  text-decoration: none;
  line-height: 0;
  transition: color .3s ease
}
.lsa-lead-logo {
  display: block;
  width: 220px;
  height: auto
}
.header-dark .logo {
  color: #fff
}
.header-light .logo {
  color: #111
}
.header-colored .logo {
  color: #fff
}
@media (max-width:768px) {
  .logo {
    width: 160px
  }
  .lsa-lead-logo {
    width: 160px
  }
}
.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;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .02em
}
.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;
  border-radius: 50px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease,color .3s ease
}
.locale-text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 700
}
.background-hover {
  position: absolute;
  inset: 0;
  background: #45c17d;
  border-radius: 50px;
  transform: translateY(100%);
  transition: transform .45s var(--ease);
  z-index: 1
}
.locale-btn:hover .background-hover {
  transform: translateY(0)
}
.locale-btn:hover {
  color: #fff;
  transform: translateY(-2px)
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff
}
.service-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none
}
.hero-shape-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none
}
.hero-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5000px;
  height: 5000px;
  max-width: none;
  max-height: none;
  transform: translate(-50%,-50%);
  overflow: visible;
  pointer-events: none;
  opacity: 1;
  will-change: transform
}
.hero-shape-spin {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: heroShapeRotation 35s linear infinite;
  will-change: transform
}
@keyframes heroShapeRotation {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none
}
.hero-title {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative
}
.hero-line {
  display: block;
  position: relative;
  font-size: 75px;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -.04em
}
.hero-line.outline,
.hero-line.outline1 {
  color: transparent;
  -webkit-text-stroke: 3px #111;
  text-stroke: 3px #111
}
.hero-line.outline {
  margin-right: 600px
}
.hero-line.outline1 {
  margin-right: 300px
}
.hero-line.solid {
  margin-left: 0
}
.hero-line.solid1 {
  margin-left: 300px
}
.hero-line.solid,
.hero-line.solid1 {
  color: #111
}
.services {
  padding: 0 0 80px;
  background: var(--background-color);
  color: #000
}
.services-accordion {
  width: 100%
}
.accordion-item {
  border-bottom: 1px solid var(--line)
}
.acc-header {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0,1fr) 30px;
  align-items: flex-start;
  column-gap: 40px;
  padding: 30px 4px;
  text-align: left;
  cursor: pointer
}
.acc-title {
  min-width: 0;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin: 0
}
.accordion-item .acc-title {
  transition: transform .45s cubic-bezier(.16, .84, .24, 1)
}
.accordion-item:hover .acc-title {
  transform: translateX(25px)
}
.split-element {
  display: flex;
  align-items: baseline;
  gap: 20px
}
.acc-index {
  width: 40px;
  font-size: 24px;
  color: #000;
  flex-shrink: 0
}
.acc-title-text {
  margin: 0;
  font-size: 32px;
  line-height: 1
}
.acc-icon {
  width: 30px;
  height: 30px;
  position: relative;
  margin-top: 4px;
  flex-shrink: 0
}
.acc-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #000;
  transform: translate(-50%,-50%);
  transition: transform .35s ease
}
.acc-icon span:first-child {
  width: 30px;
  height: 5px
}
.acc-icon span:last-child {
  width: 5px;
  height: 30px
}
.accordion-item.open .acc-icon span:last-child {
  transform: translate(-50%,-50%) rotate(90deg) scaleY(0)
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16, .84, .24, 1)
}
.acc-panel-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0,1fr) 160px;
  column-gap: 40px;
  align-items: start;
  padding: 0 4px 35px 60px
}
.acc-panel p {
  margin: 0;
  max-width: 700px;
  font-size: 17px;
  line-height: 1.7;
  color: #666
}
.acc-cta {
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity .35s ease,visibility .35s ease,transform .35s ease,background .35s ease
}
.accordion-item.open .acc-cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: .15s
}
.acc-cta:hover {
  background: #123253;
  transform: translateY(-3px)
}
.projects {
  padding: 80px 0;
  background: #fff;
  color: #000
}
.projects .container {
  max-width: 1800px
}
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px
}
.section-head h2 {
  font-family: Fraunces,Georgia,serif;
  font-weight: 600;
  font-size: clamp(
      38px,
      5.5vw,
      74px
    );
  line-height: .92;
  text-transform: uppercase
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease),transform .8s var(--ease)
}
.reveal.in {
  opacity: 1;
  transform: none
}
.slider-buttons {
  display: flex;
  gap: 12px;
  margin-top: 6px
}
.slider-buttons button {
  width: 84px;
  height: 44px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease)
}
.slider-buttons button:hover {
  transform: translateY(-4px)
}
.prev-btn {
  background: #d4d4d4
}
.next-btn {
  background: #000
}
.projectSwiper {
  width: 100%;
  overflow: hidden
}
.projectSwiper .swiper-wrapper {
  align-items: stretch
}
.projectSwiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex
}
.project-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f8f2e8;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  transition: transform .45s var(--ease)
}
.project-image {
  position: relative;
  padding: 22px 22px 0;
  overflow: hidden
}
.project-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
  transform: scale(1);
  transition: transform .5s var(--ease)
}
.project-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 0 20px 20px;
  min-height: 190px
}
.project-info {
  flex: 1 1 auto;
  width: 200px;
  transition: opacity .35s var(--ease),transform .35s var(--ease)
}
.project-info span {
  width: 150px;
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1
}
.project-info h3 {
  margin: 0;
  max-width: 78%;
  font-size: 20px;
  line-height: .95;
  font-weight: 800;
  text-transform: uppercase
}
.project-description {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 110px;
  max-width: 90%;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .45s var(--ease),transform .45s var(--ease)
}
.view-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 56px;
  min-width: 56px;
  height: 56px;
  padding: 0 26px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  transition: width .4s ease,gap .4s ease,transform .35s ease,background .35s ease
}
.view-btn span {
  display: block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: max-width .35s ease,opacity .35s ease
}
.view-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  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 {
  opacity: 0;
  width: 0;
  transform: scale(0)
}
.view-btn:hover svg {
  opacity: 0;
  width: 0;
  transform: scale(0)
}
.view-btn:hover {
  background: #000;
  transform: translateY(-3px)
}

@media (max-width:1200px) {
  .site-header {
    padding: 0 35px
  }
  .nav-list {
    gap: 35px;
    margin-right: 25px
  }
  .container {
    padding-left: 35px;
    padding-right: 35px
  }
  .projects .container,
  .services .container {
    max-width: 1800px;
    padding-left: 35px;
    padding-right: 35px
  }
  .hero-line {
    font-size: 72px
  }
  .hero-line.outline {
    margin-right: 420px
  }
  .hero-line.outline1 {
    margin-right: 220px
  }
  .hero-line.solid1 {
    margin-left: 220px
  }
  .project-image img {
    height: 390px
  }
}
@media (max-width:992px) {
  :root {
    --header-height: 80px
  }
  .site-header {
    padding: 0 24px
  }
  .locale-btn,
  .site-nav {
    display: none
  }
  .hamburger {
    display: flex
  }
  .service-hero {
    min-height: 650px
  }
  .hero-content {
    width: 90%
  }
  .hero-line {
    font-size: 54px;
    line-height: .95
  }
  .hero-line.outline {
    margin-right: 250px
  }
  .hero-line.outline1 {
    margin-right: 120px
  }
  .hero-line.solid1 {
    margin-left: 120px
  }
  .services {
    padding: 80px 0 90px
  }
  .acc-header {
    padding: 28px 0
  }
  .acc-title {
    font-size: 38px
  }
  .acc-panel-inner {
    padding-left: 50px
  }
  .project-image img {
    height: 340px
  }
  .project-info h3 {
    font-size: 20px
  }
  
  
  .legal-list,
  .social-list {
    gap: 25px
  }
}
@media (max-width:768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px
  }
  .projects .container,
  .services .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px
  }
  .service-hero {
    min-height: 600px
  }
  .hero-shape {
    width: 3500px;
    height: 3500px
  }
  .hero-content {
    width: 94%
  }
  .hero-line {
    font-size: 42px;
    line-height: .95;
    -webkit-text-stroke-width: 2px;
    margin-left: 0!important;
    margin-right: 0!important
  }
  .hero-line.outline {
    transform: translateX(-7%)
  }
  .hero-line.outline1 {
    transform: translateX(-3%)
  }
  .hero-line.solid {
    transform: translateX(0)
  }
  .hero-line.solid1 {
    transform: translateX(3%)
  }
  .services {
    padding: 70px 0 80px
  }
  .split-element {
    gap: 15px
  }
  .acc-index {
    width: 30px;
    font-size: 12px
  }
  .acc-title {
    font-size: 28px
  }
  .acc-icon {
    width: 25px;
    height: 25px;
    margin-left: 15px
  }
  .acc-icon span:first-child {
    width: 25px
  }
  .acc-icon span:last-child {
    height: 25px
  }
  .acc-panel-inner {
    padding: 0 0 30px 45px
  }
  .acc-panel p {
    font-size: 15px
  }
  .projects {
    padding: 90px 0
  }
  .section-head {
    margin-bottom: 35px
  }
  .section-head h2 {
    font-size: 48px
  }
  .slider-buttons {
    margin-top: 0
  }
  .slider-buttons button {
    width: 65px;
    height: 40px
  }
  .project-image {
    padding: 15px 15px 0
  }
  .project-image img {
    height: 300px;
    border-radius: 20px
  }
  .project-content {
    padding: 22px 18px;
    min-height: 180px
  }
  .project-description {
    left: 18px;
    right: 18px;
    bottom: 78px;
    font-size: 14px
  }
  .view-btn {
    height: 52px;
    min-width: 52px
  }
  
}
@media (max-width:480px) {
  .hero-shape {
    width: 3000px;
    height: 3000px
  }
  .hero-line {
    font-size: 34px;
    -webkit-text-stroke-width: 1.5px
  }
  .hero-line.outline {
    transform: translateX(-4%)
  }
  .hero-line.outline1 {
    transform: translateX(0)
  }
  .hero-line.solid1 {
    transform: translateX(4%)
  }
  .acc-title {
    font-size: 23px
  }
  .acc-header {
    padding: 22px 0
  }
  .acc-panel-inner {
    padding-left: 38px
  }
  .section-head h2 {
    font-size: 40px
  }
  .project-image img {
    height: 260px;
    border-radius: 18px
  }
  .project-content {
    padding: 20px 16px;
    min-height: 170px
  }
  .project-description {
    left: 16px;
    right: 16px;
    bottom: 72px;
    font-size: 13px
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  .hero-shape-spin {
    animation: none
  }
  .hero-line.solid,
  .hero-line.solid1 {
    clip-path: none;
    animation: none
  }
}

.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 {
  width: 280px;
  height: auto;
  flex-shrink: 0
}
.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;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px
}
.social-list a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  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
}
@media (max-width:992px) {
  .footer-container {
    flex-direction: column;
    gap: 40px
  }
  .social-list,
  .legal-list {
    justify-content: flex-start;
    gap: 24px
  }
}
@media (max-width:768px) {
  .site-footer {
    padding: 60px 24px 40px
  }
  .footer-logo {
    width: 200px
  }
  .footer-rows {
    gap: 20px
  }
  .social-list,
  .legal-list {
    gap: 16px
  }
}
