: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;
  width: 100%;
  max-width: 100%;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.nav-open {
  overflow: 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;
}

svg {
  max-width: 100%;
}

main {
  display: block;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.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
   ========================================================= */

.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);
}


/* =========================================================
   HEADER
   ========================================================= */

.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: 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 {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 220px;
  height: auto;

  line-height: 0;

  position: relative;
  z-index: 100;

  flex-shrink: 0;
}

.lsa-lead-logo {
  display: block;

  width: 220px;
  height: auto;

  max-width: 100%;

  object-fit: contain;

  transition:
    filter .35s ease,
    opacity .35s ease;
}

.header-dark .lsa-lead-logo {
  filter: brightness(0) invert(1);
}

.header-light .lsa-lead-logo {
  filter: brightness(0);
}

.header-pink .lsa-lead-logo {
  filter: brightness(0) invert(1);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.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%;
}


/* =========================================================
   LANGUAGE BUTTON
   ========================================================= */

.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;

  flex-shrink: 0;
}

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

  font-size: 19px;
  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
   ========================================================= */

.hamburger {
  display: none;

  flex-direction: column;
  gap: 5px;

  flex-shrink: 0;
}

.hamburger span {
  width: 26px;
  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);
}


/* =========================================================
   SERVICE HERO
   ========================================================= */

.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
   ========================================================= */

.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
   ========================================================= */

.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;

  min-width: 0;
}

.acc-index {
  width: 40px;

  font-size: 24px;

  color: #000;

  flex-shrink: 0;
}

.acc-title-text {
  margin: 0;

  font-size: 32px;

  line-height: 1;

  min-width: 0;
}

.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);
}


/* =========================================================
   ACCORDION PANEL
   ========================================================= */

.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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  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;
}

.acc-cta::before {
  content: "";

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

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

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

.acc-cta:hover::before {
  transform: translateY(0);
}

.accordion-item.open .acc-cta {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);

  transition-delay: .15s;
}

.acc-cta:hover {
  background: #123253;

  transform: translateY(-3px);
}


/* =========================================================
   PROJECTS
   ========================================================= */

.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
   ========================================================= */

.slider-buttons {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 6px;
}

.slider-buttons button {
  position: relative;

  isolation: isolate;

  overflow: hidden;

  width: 85px;
  height: 50px;

  display: flex;

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

  border-radius: 999px;

  cursor: pointer;

  flex-shrink: 0;

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

.slider-buttons button::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  border-radius: inherit;

  background: #323334;

  transform: translateY(100%);

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

.slider-buttons button:hover::before,
.slider-buttons button:focus-visible::before {
  transform: translateY(0);
}

.slider-buttons button:hover,
.slider-buttons button:focus-visible {
  transform: translateY(-4px);
}

.slider-buttons button:focus-visible {
  outline: 2px solid #111;

  outline-offset: 4px;
}

.slider-buttons button:active {
  transform: translateY(-1px) scale(.96);
}

.slider-buttons button svg {
  position: relative;

  z-index: 1;

  width: 22px;
  height: 22px;

  display: block;

  flex-shrink: 0;

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

.slider-buttons button:hover svg,
.slider-buttons button:focus-visible svg {
  transform: scale(1.08);
}

.prev-btn {
  background: #000;
}

.next-btn {
  background: #000;
}

.prev-btn::before {
  background: #b7c9e2;
}

.next-btn::before {
  background: #c1d6cb;
}

.prev-btn svg path,
.next-btn svg path {
  stroke: #fff;

  transition:
    stroke .3s ease;
}

.slider-buttons button.swiper-button-disabled {
  cursor: not-allowed;

  opacity: .45;

  transform: none;
}

.slider-buttons button.swiper-button-disabled::before {
  transform: translateY(100%);
}

.slider-buttons button.swiper-button-disabled:hover {
  transform: none;
}


/* =========================================================
   PROJECT SWIPER
   ========================================================= */

.projectSwiper {
  width: 100%;

  overflow: hidden;
}

.projectSwiper .swiper-wrapper {
  align-items: stretch;
}

.projectSwiper .swiper-slide {
  width: auto;

  height: auto;

  display: flex;

  min-width: 0;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.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);

  min-width: 0;
}


/* =========================================================
   PROJECT IMAGE
   ========================================================= */

.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
   ========================================================= */

.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;

  min-width: 0;
}

.project-info {
  flex: 1 1 auto;

  width: 200px;

  min-width: 0;

  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;

  overflow-wrap: anywhere;
}


/* =========================================================
   PROJECT DESCRIPTION
   ========================================================= */

.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 BUTTON
   ========================================================= */

.view-btn {
  position: relative;
  isolation: isolate;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: 56px;
  min-width: 56px;

  height: 56px;

  padding: 0 26px;

  margin-right: 20px;

  background: #000;

  color: #fff;

  border-radius: 999px;

  overflow: hidden;

  text-decoration: none;

  flex-shrink: 0;

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

.view-btn::before {
  content: "";

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

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

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

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

.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;
  min-width: 18px;
  min-height: 18px;
  display: block;
  flex-shrink: 0;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity .25s ease,
    transform .25s ease;
}

/* =========================================================
   PROJECT CARD HOVER
   ========================================================= */

.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: calc(100% - 10px);
  margin-right: 10px;
  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);
}


/* =========================================================
   ACTIVE STATE
   IMPORTANT FOR MOBILE
   ========================================================= */

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

.project-card.active .project-info {
  opacity: 0;

  transform: translateY(-14px);
}

.project-card.active .project-description {
  opacity: 1;

  transform: translateY(0);
}

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

.project-card.active .view-btn span {
  max-width: 120px;

  opacity: 1;
}


.view-btn:hover {
  background: #000;

  transform: translateY(-3px);
}


/* =========================================================
   TABLET - 1200
   ========================================================= */

@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-shape {
    width: 4200px;
    height: 4200px;
  }

  .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;
  }
}


/* =========================================================
   TABLET - 992
   ========================================================= */

@media (max-width: 992px) {

  :root {
    --header-height: 80px;
  }

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

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

  .locale-btn {
    display: none;
  }

  .hamburger {
    display: flex;

    position: relative;

    z-index: 10001;
  }

  .site-nav {
    margin: 0;
  }

  .nav-list {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;
    height: 50vh;

    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;

    z-index: 9998;
  }

  .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;
  }

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

  .hero-shape {
    width: 3400px;
    height: 3400px;
  }

  .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;

    column-gap: 20px;
  }

  .acc-title-text {
    font-size: 28px;
  }

  .acc-panel-inner {
    padding-left: 50px;

    grid-template-columns:
      minmax(0, 1fr)
      160px;

    column-gap: 25px;
  }

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

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

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

  /* Footer */

  .footer-container {
    flex-direction: column;

    gap: 40px;
  }

  .social-list,
  .legal-list {
    justify-content: flex-start;

    gap: 24px;
  }
}


/* =========================================================
   MOBILE - 768
   ========================================================= */

@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */

  html,
  body {
    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
  }

  /* ---------- CONTAINER ---------- */

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

  .projects .container,
  .services .container {
    max-width: 100%;

    padding-left: 20px;
    padding-right: 20px;
  }


  /* ---------- HEADER ---------- */

  .site-header {
    height: 72px;

    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hamburger {
    width: 30px;
    height: 24px;

    align-items: flex-end;
    justify-content: center;
  }

  .hamburger span {
    width: 26px;
  }


  /* ---------- HERO ---------- */

  .service-hero {
    min-height: 560px;

    height: 100svh;
  }

  .hero-shape {
    width: 2800px;
    height: 2800px;
  }

  .hero-content {
    width: 100%;

    padding: 0 15px;
  }

  .hero-title {
    width: 100%;

    gap: 8px;
  }

  .hero-line {
    width: 100%;

    max-width: 100%;

    font-size: clamp(30px, 9vw, 42px);

    line-height: .95;

    letter-spacing: -.035em;

    white-space: normal;

    text-align: center;

    -webkit-text-stroke-width: 2px;
  }

  .hero-line.outline,
  .hero-line.outline1,
  .hero-line.solid,
  .hero-line.solid1 {
    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 ---------- */

  .services {
    padding: 60px 0 70px;
  }

  .acc-header {
    display: grid;

    grid-template-columns:
      minmax(0, 1fr)
      25px;

    column-gap: 12px;

    padding: 22px 0;
  }

  .split-element {
    min-width: 0;

    gap: 10px;
  }

  .acc-index {
    width: 24px;

    flex-shrink: 0;

    font-size: 11px;
  }

  .acc-title-text {
    min-width: 0;

    font-size: clamp(21px, 6vw, 28px);

    line-height: 1;

    overflow-wrap: anywhere;
  }

  .acc-icon {
    width: 24px;
    height: 24px;

    margin-left: 0;

    flex-shrink: 0;
  }

  .acc-icon span:first-child {
    width: 24px;
    height: 4px;
  }

  .acc-icon span:last-child {
    width: 4px;
    height: 24px;
  }

  .acc-panel-inner {
    display: flex;

    flex-direction: column;

    gap: 22px;

    padding: 0 0 28px 34px;
  }

  .acc-panel p {
    max-width: 100%;

    font-size: 14px;

    line-height: 1.65;
  }

  .acc-cta {
    width: 140px;

    height: 52px;

    font-size: 13px;
  }


  /* ---------- PROJECTS ---------- */

  .projects {
    padding: 70px 0;
  }

  .projects .container {
    padding-left: 16px;

    padding-right: 16px;
  }

  .section-head {
    width: 100%;

    margin-bottom: 30px;

    gap: 20px;
  }

  .section-head h2 {
    width: 100%;

    font-size: clamp(36px, 11vw, 48px);

    line-height: .92;
  }

  .slider-buttons {
    width: 100%;

    justify-content: flex-start;

    gap: 8px;

    margin-top: 0;
  }

  .slider-buttons button {
    width: 60px;

    height: 40px;

    flex-shrink: 0;
  }

  .slider-buttons button svg {
    width: 20px;

    height: 20px;
  }


  /* ---------- PROJECT IMAGE ---------- */

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

  .project-image img {
    width: 100%;

    height: clamp(240px, 65vw, 320px);

    border-radius: 18px;
  }


  /* ---------- PROJECT CONTENT ---------- */

  .project-content {
    position: relative;

    min-height: 185px;

    padding: 18px 14px;

    gap: 12px;

    align-items: flex-end;

    min-width: 0;
  }

  .project-info {
    width: calc(100% - 70px);

    min-width: 0;
  }

  .project-info span {
    width: auto;

    max-width: 100%;

    margin-bottom: 8px;

    font-size: 13px;
  }

  .project-info h3 {
    max-width: 100%;

    font-size: 18px;

    line-height: 1;

    overflow-wrap: anywhere;
  }


  /* ---------- DESCRIPTION ---------- */

  .project-description {
    left: 14px;

    right: 14px;

    bottom: 78px;

    max-width: calc(100% - 28px);

    font-size: 13px;

    line-height: 1.45;
  }


  /* ---------- VIEW BUTTON ---------- */

  .view-btn {
    width: 52px;

    min-width: 52px;

    height: 52px;

    padding: 0;

    margin-right: 0;

    flex-shrink: 0;
  }

  .view-btn span {
    font-size: 13px;
  }

  /*
   * Keep expanded button inside the card.
   */

  .project-card:hover .view-btn {
    width: min(100%, 220px);

    max-width: 100%;
  }


  /* ---------- FOOTER ---------- */

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

  .footer-logo {
    width: 200px;
  }

  .footer-rows {
    gap: 20px;
  }

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

    justify-content: flex-start;
  }
}


/* =========================================================
   SMALL MOBILE - 480
   ========================================================= */

@media (max-width: 480px) {

  /* ---------- HEADER ---------- */

  .site-header {
    padding-left: 16px;

    padding-right: 16px;
  }

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


  /* ---------- HERO ---------- */

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

  .hero-content {
    padding: 0 10px;
  }

  .hero-shape {
    width: 2400px;

    height: 2400px;
  }

  .hero-line {
    font-size: clamp(27px, 8.5vw, 34px);

    white-space: normal;

    -webkit-text-stroke-width: 1.5px;
  }

  .hero-line.outline {
    transform: translateX(-4%);
  }

  .hero-line.outline1 {
    transform: translateX(0);
  }

  .hero-line.solid1 {
    transform: translateX(4%);
  }


  /* ---------- SERVICES ---------- */

  .services .container {
    padding-left: 16px;

    padding-right: 16px;
  }

  .acc-title-text {
    font-size: 20px;
  }

  .acc-header {
    grid-template-columns:
      minmax(0, 1fr)
      22px;

    column-gap: 8px;

    padding: 20px 0;
  }

  .split-element {
    gap: 8px;
  }

  .acc-index {
    width: 20px;

    font-size: 10px;
  }

  .acc-icon {
    width: 22px;

    height: 22px;
  }

  .acc-icon span:first-child {
    width: 22px;
  }

  .acc-icon span:last-child {
    height: 22px;
  }

  .acc-panel-inner {
    padding-left: 28px;
  }

  .acc-cta {
    width: 130px;

    height: 48px;

    font-size: 12px;
  }


  /* ---------- PROJECTS ---------- */

  .projects .container {
    padding-left: 14px;

    padding-right: 14px;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .slider-buttons button {
    width: 56px;

    height: 38px;
  }

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

  .project-image img {
    height: 240px;

    border-radius: 16px;
  }

  .project-content {
    min-height: 175px;

    padding: 16px 12px;
  }

  .project-info {
    width: calc(100% - 62px);
  }

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

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

  .project-description {
    left: 12px;

    right: 12px;

    bottom: 74px;

    max-width: calc(100% - 24px);

    font-size: 12px;
  }

  .view-btn {
    width: 50px;

    min-width: 50px;

    height: 50px;
  }


  /* ---------- FOOTER ---------- */

  .site-footer {
    padding: 55px 18px 35px;
  }

  .footer-logo {
    width: 170px;
  }

  .social-list,
  .legal-list {
    width: 100%;

    justify-content: flex-start;

    gap: 14px 18px;
  }

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

    overflow-wrap: anywhere;
  }
}


/* =========================================================
   VERY SMALL MOBILE - 360
   ========================================================= */

@media (max-width: 360px) {

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

  .hamburger span {
    width: 24px;
  }

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

  .hero-shape {
    width: 2100px;
    height: 2100px;
  }

  .hero-line {
    font-size: 26px;
  }

  .acc-title-text {
    font-size: 18px;
  }

  .acc-header {
    column-gap: 6px;
    padding: 18px 0;
  }

  .acc-index {
    width: 18px;
    font-size: 9px;
  }

  .acc-panel-inner {
    padding-left: 22px;
  }

  .acc-cta {
    width: 120px;
    height: 46px;
    font-size: 11px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .slider-buttons {
    gap: 6px;
  }

  .slider-buttons button {
    width: 50px;
    height: 36px;
  }

  .slider-buttons button svg {
    width: 18px;
    height: 18px;
  }

  .project-content {
    min-height: 165px;
    padding: 14px 10px;
  }

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

  .project-info {
    width: calc(100% - 56px);
  }

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

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

  .view-btn {
    width: 46px;

    min-width: 46px;

    height: 46px;
  }

  .project-description {
    left: 10px;
    right: 10px;
    bottom: 68px;
    font-size: 11px;
  }

  .footer-logo {
    width: 150px;
  }
}


/* =========================================================
   FOOTER - BASE
   ========================================================= */

.site-footer {
  padding: 100px 60px 60px;

  border-top: 1px solid var(--line);

  background: #000;
}

.footer-container {
  display: flex;

  align-items: flex-start;

  gap: 60px;

  width: 100%;
}

.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;

  text-transform: none;

  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;
}


/* =========================================================
   FOOTER TABLET
   ========================================================= */

@media (max-width: 992px) {

  .footer-container {
    flex-direction: column;

    gap: 40px;
  }

  .social-list,
  .legal-list {
    justify-content: flex-start;

    gap: 24px;
  }
}


/* =========================================================
   FOOTER MOBILE
   ========================================================= */

@media (max-width: 768px) {

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

  .footer-logo {
    width: 200px;
  }

  .footer-rows {
    gap: 20px;
  }

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


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@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;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;
  }
}