:root {
  --text: #111;
  --muted: #777;
  --line: #d9d3c9;
  --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
}
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: 1600px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px
}
.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)
}
@media (prefers-reduced-motion:reduce) {
  .page-transition {
    display: none
  }
}
.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
}
.contact-hero {
  padding: calc(var(--header-height) + 90px) 0 60px;
  background: #000;
  text-align: center
}
.contact-eyebrow {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9d9d9d;
  margin-bottom: 18px
}
.contact-title {
  font-size: clamp(48px, 8vw, 110px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px
}
.contact-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.6;
  color: #9d9d9d
}
.contact-form-section {
  padding: 40px 0 120px;
  background: #fff
}
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start
}
.contact-info h2 {
  font-family: Fraunces,Georgia,serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 20px
}
.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line)
}
.contact-details span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted)
}
.contact-details a {
  font-size: 18px;
  font-weight: 700;
  transition: color .25s var(--ease)
}
.contact-details a:hover {
  color: #45c17d
}
.contact-form {
  background: var(--cream);
  border-radius: 28px;
  padding: 48px
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.form-field-full {
  margin-bottom: 24px
}
.form-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #111
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 2px solid transparent;
  border-bottom: 2px solid #c9c2b4;
  background: 0 0;
  padding: 12px 4px;
  font-family: inherit;
  font-size: 16px;
  color: #111;
  transition: border-color .25s var(--ease);
  resize: vertical
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M6 12l10 10 10-10' stroke='%23111' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  cursor: pointer
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-bottom-color: #111
}
.form-field.field-invalid input,
.form-field.field-invalid select,
.form-field.field-invalid textarea {
  border-bottom-color: #d64545
}
.form-error {
  display: none;
  font-size: 13px;
  color: #d64545
}
.form-field.field-invalid .form-error {
  display: block
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer
}
.form-checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #111;
  flex-shrink: 0
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 30px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .3s var(--ease),background .3s var(--ease)
}
.submit-btn svg {
  width: 18px;
  height: 18px
}
.submit-btn:hover {
  background: #45c17d;
  transform: translateY(-3px)
}
.submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none
}
.form-status {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700
}
.form-status.success {
  color: #2f8a4b
}
.form-status.error {
  color: #d64545
}

@media (max-width:1200px) {
  .site-header {
    padding: 0 35px
  }
  .nav-list {
    gap: 35px;
    margin-right: 25px
  }
  .container {
    padding-left: 35px;
    padding-right: 35px
  }
  .contact-grid {
    grid-template-columns: 320px 1fr;
    gap: 50px
  }
}
@media (max-width:992px) {
  :root {
    --header-height: 80px
  }
  .site-header {
    padding: 0 24px
  }
  .locale-btn,
  .site-nav {
    display: none
  }
  .hamburger {
    display: flex
  }
  .contact-hero {
    padding: calc(var(--header-height) + 60px) 0 40px
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px
  }
  .contact-form {
    padding: 32px
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px
  }
  
  
  .legal-list,
  .social-list {
    gap: 25px
  }
}
@media (max-width:600px) {
  .contact-form {
    padding: 24px
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start
  }
  .submit-btn {
    width: 100%;
    justify-content: center
  }
  
}

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