@font-face {
  font-family: "Wix Madefor Text";
  font-style: normal;
  font-weight: 400;
  src:
    url("https://static.wixstatic.com/ufonts/22faeb_b1330aee72da4b55963bdabb004d22d3/woff2/file.woff2") format("woff2"),
    url("https://static.wixstatic.com/ufonts/22faeb_b1330aee72da4b55963bdabb004d22d3/woff/file.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Text";
  font-style: normal;
  font-weight: 400;
  src:
    url("https://static.wixstatic.com/ufonts/c837a6_ca8d7e5e5b6b48d6b28736895918abe7/woff2/file.woff2") format("woff2"),
    url("https://static.wixstatic.com/ufonts/c837a6_ca8d7e5e5b6b48d6b28736895918abe7/woff/file.woff") format("woff");
  font-display: swap;
}

:root {
  --bg: rgb(255, 232, 189);
  --text: rgb(32, 33, 36);
  --muted: rgb(77, 74, 72);
  --line: rgba(32, 33, 36, 0.18);
  --max-width: 1600px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: .5rem .75rem;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}

.site-header .container {
  width: min(100% - 2rem, 1244px);
}

.header-inner {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand img {
  width: 86px;
  height: auto;
  display: block;
}

body.page-home .site-header .brand {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

body.page-home.scrolled-past-hero-logo .site-header .brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-list a[aria-current="page"],
.nav-list a:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

.nav-list a:not([aria-current="page"]) {
  text-decoration: none;
}

.page-content {
  padding: 0 0 3rem;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 1.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-logo {
  grid-column: 1 / -1;
  grid-row: 1;
  padding-top: 0.2rem;
  animation: motionFadeIn 500ms ease both;
}

.home-logo img {
  width: 248px;
  height: auto;
  display: block;
}

.hero-content {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 16vh;
  width: 100%;
}

.hero-main {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: clamp(3.5rem, 6vw, 7rem);
  align-items: center;
  width: 100%;
  margin-bottom: 16vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-title {
  margin: 0;
  font-size: clamp(62px, 6vw, 92px);
  line-height: 1.07;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: heroLetterFlipIn 500ms cubic-bezier(0.7, 0, 0.95, 0.1) both;
}

@keyframes motionFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroLetterFlipIn {
  0% {
    opacity: 0.15;
    transform: perspective(1600px) translateZ(-420px) rotateX(-88deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1600px) translateZ(0) rotateX(0deg);
  }
}

.hero-subtitle {
  margin: 0.95rem 0 0;
  color: var(--text);
  font-size: 16px;
  font-style: italic;
  font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: heroLetterFlipIn 500ms cubic-bezier(0.7, 0, 0.95, 0.1) both;
}

.tag-list {
  align-self: center;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: heroLetterFlipIn 500ms cubic-bezier(0.7, 0, 0.95, 0.1) both;
}

.tag-list li {
  margin: 0.24rem 0;
  color: var(--text);
  font-size: 35.4px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  font-style: italic;
  font-weight: 400;
  font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, Helvetica, sans-serif;
  width: fit-content;
  white-space: nowrap;
  transition: transform 240ms ease;
}

.tag-list li:hover {
  transform: translateX(1em);
}

.logo-carousel {
  overflow: visible;
  position: relative;
  width: 100%;
  display: block;
  padding: 0 0 0.75rem;
  animation: motionFadeIn 700ms ease both;
  animation-delay: 280ms;
}

.logo-viewport {
  overflow: hidden;
  width: 100%;
}

.logo-rail {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  will-change: transform;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 100px;
  min-width: max-content;
}

.logo-track img {
  width: var(--logo-thumb-size, 400px);
  height: var(--logo-thumb-size, 400px);
  object-fit: cover;
  display: block;
  border-radius: 18px;
  filter: saturate(0.92) contrast(1.03);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow .slideshow-arrow {
  width: auto;
  height: 20px;
  transform: scaleX(1) scale(0.534188);
}

.carousel-arrow .slideshow-arrow path {
  fill: #000;
}

.carousel-arrow.prev .slideshow-arrow {
  transform: scaleX(-1) scale(0.534188);
}

.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }

h1, h2, h3, p, li { color: var(--text); }
h2 {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
}

p, li {
  font-size: 1.02rem;
  line-height: 1.56;
}

.hero .hero-title,
.hero .hero-subtitle,
.hero .tag-list li {
  color: var(--text);
}

.grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.card,
.client-card {
  grid-column: span 12;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
}

.client-card {
  overflow: hidden;
  padding: 0;
}

.client-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.client-card .content {
  padding: .95rem 1rem 1.15rem;
}

.cta {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  text-decoration: none;
  padding: .7rem 1rem;
  font-style: italic;
}

input,
textarea,
button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  padding: .55rem .7rem;
  font: inherit;
}

textarea { min-height: 120px; }
button { width: auto; }

.site-footer {
  margin-top: 2rem;
  padding: 1.1rem 0 1.8rem;
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid > div { grid-column: span 12; }
.footer-grid > .footer-hero { grid-column: 1 / -1; }
.footer-grid p { margin: .3rem 0; }
.footer-grid a { color: var(--text); }

.footer-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 96px;
  padding: 0.4rem 0 1.2rem;
}

.callout span {
  display: block;
  font-size: 96px;
  line-height: 0.92;
  font-style: italic;
  font-weight: 400;
  font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.callout {
  margin: 0;
}

.footer-mailto {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.footer-mailbox {
  display: inline-flex;
  width: 100px;
  height: 100px;
  transform-origin: 50% 50%;
  transition: transform 260ms ease;
}

.footer-mailbox svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-mailbox:hover,
.footer-mailbox:focus-visible {
  transform: rotate(30deg);
}

@media (min-width: 980px) {
  .card,
  .client-card { grid-column: span 4; }
  .footer-grid > .footer-col { grid-column: span 6; }
  .footer-grid > .footer-hero { grid-column: 1 / -1; }
}

@media (max-width: 1280px) {
  .nav-list a { font-size: 13px; }
  .hero-main { grid-template-columns: 4fr 1fr; gap: 1rem; }
  .tag-list { align-self: end; margin-bottom: 0.3rem; }
  .hero-subtitle { font-size: 15px; }
  .tag-list li { font-size: 35.4px; }
  .logo-track img { width: var(--logo-thumb-size, 300px); height: var(--logo-thumb-size, 300px); }
}

@media (max-width: 980px) {
  .hero-main { grid-template-columns: 1fr; gap: 1rem; }
  .tag-list { align-self: start; }
  .logo-track img { width: var(--logo-thumb-size, 220px); height: var(--logo-thumb-size, 220px); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 1.4rem, var(--max-width)); }
  .header-inner { justify-content: space-between; min-height: 68px; }
  .brand img { width: 74px; }
  .site-header { background: var(--bg) !important; }
  .page-home .site-header .brand,
  .page-offer .site-header .brand,
  .page-clients .site-header .brand,
  .page-contact .site-header .brand {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  .nav-list { gap: .55rem; flex-wrap: nowrap; }
  .nav-list a { font-size: 11px; }
  .page-clients .nav-list,
  .page-contact .nav-list { gap: .55rem; flex-wrap: nowrap; }
  .page-clients .nav-list a,
  .page-contact .nav-list a { font-size: 11px; line-height: 1.1; }
  .page-home .page-content,
  .offer-page,
  .clients-page,
  .contact-page {
    width: min(100% - 1.4rem, 1244px);
    margin-inline: auto;
    padding-top: 1rem;
  }
  .home-logo,
  .offer-top-logo,
  .clients-top-logo,
  .contact-top-logo {
    padding-top: 0;
    margin-top: 0;
  }
  .home-logo img,
  .offer-top-logo img,
  .clients-top-logo img,
  .contact-top-logo img {
    width: 200px;
  }
  .hero-content { padding-top: 8vh; }
  .hero-title { font-size: clamp(42px, 12vw, 64px); }
  .hero-subtitle { font-size: 14px; }
  .tag-list li { font-size: 30px; margin: .35rem 0; }
  .logo-track { gap: 1.2rem; }
  .logo-track img { width: var(--logo-thumb-size, 160px); height: var(--logo-thumb-size, 160px); }
  .logo-rail { gap: 1rem; }
  .carousel-arrow {
    width: 42px;
    height: 42px;
  }
  .carousel-arrow .slideshow-arrow { height: 16px; }
  .carousel-arrow.prev { left: 8px; }
  .carousel-arrow.next { right: 8px; }
  .footer-hero {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .callout span { font-size: clamp(44px, 11vw, 72px); }
  .footer-mailbox { width: 100px; height: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-logo,
  .hero-title,
  .hero-subtitle,
  .tag-list li,
  .logo-carousel,
  .logo-track,
  .logo-rail {
    opacity: 1 !important;
    transform: none !important;
  }
}

.offer-page {
  max-width: 1244px;
  margin: 0 auto;
  padding: 0.2rem 0 0.4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}

.offer-top-logo img {
  width: 248px;
  height: auto;
  display: block;
}

.offer-title {
  margin: 1.65rem 0 1.35rem;
  font-size: 52px;
  line-height: 1.08;
  font-style: italic;
  font-weight: 400;
}

.offer-accordion {
  margin-bottom: 1.8rem;
}

.offer-item {
  border-top: 1px solid rgba(32, 33, 36, 0.34);
}

.offer-item:last-child {
  border-bottom: 1px solid rgba(32, 33, 36, 0.34);
}

.offer-item h2 {
  margin: 0;
}

.offer-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  padding: 0.58rem 0;
}

.offer-sign {
  width: 1.2em;
  display: inline-block;
  text-align: center;
  font-size: 1em;
  line-height: 1;
}

.offer-panel {
  padding-bottom: 0.12rem;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 360ms ease, opacity 260ms ease;
  will-change: height, opacity;
}

.offer-item.is-open .offer-panel {
  opacity: 1;
}

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

.offer-row {
  margin: 0;
  padding: 0.43rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  font-size: 16px;
  line-height: 1.52;
}

.offer-row span {
  color: rgba(32, 33, 36, 0.9);
}

.offer-row strong {
  font-weight: 600;
  white-space: nowrap;
}

.offer-steps {
  margin-top: 2.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
  grid-auto-rows: 432px;
}

.offer-step {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 20px;
  overflow: visible;
  padding-top: 70px;
}

.offer-step-card {
  width: 339px;
  min-height: 231px;
  padding: 22px 8px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.offer-step.step-top-a .offer-step-card { padding-top: 24px; }
.offer-step.step-top-b .offer-step-card { padding-top: 23px; }
.offer-step.step-top-c .offer-step-card { padding-top: 21px; }
.offer-step.step-top-d .offer-step-card { padding-top: 22px; }
.offer-step.step-top-e .offer-step-card { padding-top: 23px; }
.offer-step.step-top-f .offer-step-card { padding-top: 22px; }

.offer-step-card h3 {
  margin: 8px 0 10px;
  font-size: 21px;
  line-height: 29.4px;
  font-weight: 400;
  width: 100%;
  max-width: none;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal !important;
  transition: transform 280ms ease;
}

.offer-step-card p {
  margin: 0;
  font-size: 16px;
  line-height: 25.6px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal !important;
  overflow-wrap: anywhere;
  transition: transform 280ms ease;
}

.offer-step-card p:not(.offer-kicker) {
  width: 100%;
  padding: 0;
}

.offer-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 280ms ease;
}

.offer-icon svg {
  width: 100%;
  height: 100%;
}

.offer-icon path {
  fill: currentColor;
  stroke: none;
}

.offer-kicker {
  margin-top: auto !important;
  font-size: 16px !important;
  line-height: 25.6px !important;
  font-style: normal;
}

.offer-step:hover .offer-step-card h3,
.offer-step:hover .offer-step-card p,
.offer-step:focus-within .offer-step-card h3,
.offer-step:focus-within .offer-step-card p {
  transform: translateY(-16px);
}

.offer-step:hover .offer-icon,
.offer-step:focus-within .offer-icon {
  transform: translateY(-16px) rotate(10deg);
}

.offer-steps-intro {
  margin: 0.35rem 0 1.95rem;
  font-size: 18px;
  line-height: 1.35;
  font-style: italic;
}

.offer-steps-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.04;
  font-style: italic;
  font-weight: 700;
}

.offer-step.tone-gray {
  background-image: conic-gradient(from 152deg, rgba(204, 211, 236, 0.3) 0%, rgba(204, 211, 236, 0.3) 0%, rgba(245, 193, 176, 0.3) 53.9474%, rgba(204, 211, 236, 0.3) 90.7621%);
  border-radius: 20px;
}

.offer-step.tone-gray .offer-step-card {
  background: transparent;
}

.offer-step.tone-pink {
  background-image: conic-gradient(from 152deg, rgba(204, 211, 236, 0.62) 0%, rgba(249, 197, 180, 0.62) 61.3932%, rgba(204, 211, 236, 0.62) 98.2833%);
  border-radius: 23.625px;
}

.offer-step.tone-pink .offer-step-card {
  background: transparent;
}

.offer-step.tone-yellow {
  background-image: conic-gradient(from 152deg, rgba(204, 211, 236, 0.3) 0%, rgba(204, 211, 236, 0.3) 0%, rgba(245, 193, 176, 0.3) 53.9474%, rgba(204, 211, 236, 0.3) 90.7621%);
  border-radius: 20px;
}

.offer-step.tone-yellow .offer-step-card {
  background: transparent;
}

@media (max-width: 980px) {
  .offer-page {
    padding-top: 1.5rem;
    max-width: 1180px;
  }
  .offer-title {
    font-size: 36px;
  }
  .offer-trigger {
    font-size: 18px;
  }
  .offer-steps {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    grid-auto-rows: auto;
  }
  .offer-step-card {
    width: min(100%, 560px);
    min-height: 0;
    padding: 28px 20px 20px;
    margin: 0 auto;
  }
  .offer-step-card h3 {
    font-size: 36px;
  }
}

.page-offer .site-header .brand {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.page-home .site-header,
.page-offer .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
}

.page-home .site-header .container,
.page-offer .site-header .container {
  width: min(100% - 2rem, 1244px);
}

.page-home .page-content {
  width: min(100% - 2rem, 1244px);
  margin-inline: auto;
}

.page-offer.scrolled-past-hero-logo .site-header .brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.clients-page {
  max-width: 1244px;
  margin: 0 auto;
  padding: 0.2rem 0 0.6rem;
}

.clients-top-logo img {
  width: 248px;
  height: auto;
  display: block;
}

.clients-title {
  margin: 2.35rem 0 0;
  text-align: center;
  font-size: 48px;
  line-height: 1.1;
  font-style: italic;
  font-weight: 400;
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 88px;
  row-gap: 149px;
  margin-top: 9.6rem;
}

.clients-item {
  min-width: 0;
}

.clients-logo-wrap {
  width: 100%;
  height: 260px;
  display: grid;
  place-items: center;
}

.clients-logo-wrap img {
  width: min(228px, 100%);
  height: min(233px, 100%);
  object-fit: contain;
  display: block;
}

.clients-item h3 {
  margin: 0.35rem 0 0.55rem;
  max-width: 322px;
  font-size: 22px;
  line-height: 28px;
  font-style: normal;
  font-weight: 400;
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
}

.clients-item p {
  margin: 0;
  max-width: 322px;
  font-size: 15px;
  line-height: 24px;
  font-style: normal;
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
}

.page-clients .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
}

.page-clients .site-header .container {
  width: min(100% - 2rem, 1244px);
}

.page-clients .site-header .brand {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.page-clients.scrolled-past-hero-logo .site-header .brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-clients .header-inner {
  justify-content: space-between;
  min-height: 76px;
}

.page-clients .nav-list {
  gap: 2rem;
}

.page-clients .nav-list a {
  font-size: 14px;
  font-style: italic;
  font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 21.84px;
}

@media (max-width: 980px) {
  .clients-page {
    max-width: 1180px;
    padding-top: 1.3rem;
  }

  .clients-top-logo img {
    width: 200px;
  }

  .clients-title {
    font-size: 38px;
    margin: 1.4rem 0 2rem;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .clients-logo-wrap {
    height: auto;
    min-height: 180px;
  }

  .clients-item h3 {
    font-size: 34px;
  }
}

.contact-page {
  max-width: 1244px;
  margin: 0 auto;
  padding: 0.2rem 0 0.6rem;
}

.contact-top-logo img {
  width: 248px;
  height: auto;
  display: block;
}

.contact-marquee-wrap {
  margin-top: 3.4rem;
  overflow: hidden;
}

.contact-marquee {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  font-size: 49px;
  line-height: 1;
  font-style: italic;
  font-family: "Times New Roman", "Georgia", serif;
  color: rgb(214, 170, 86);
  animation: contactMarqueeShiftFast 14s linear infinite;
}

.contact-marquee-group {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.contact-marquee .sep {
  display: inline-block;
  font-size: 0.45em;
  transform: translateY(-0.08em);
}

@keyframes contactMarqueeShiftFast {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.contact-card {
  width: 100%;
  max-width: 580px;
  margin: 3.17rem auto 0;
  background: var(--bg);
  border-radius: 16px;
  box-shadow: 0 0 25px 8px rgba(32, 33, 36, 0.15);
  padding: 24px;
  transform: translateX(-4px);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  display: inline-block;
  font-size: 14px;
  line-height: 19.6px;
  color: rgb(32, 33, 36);
  margin: 0 0 8px;
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
}

.contact-form input,
.contact-form textarea {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(57, 55, 52, 0.3);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  padding: 8px 2px 8px 0;
  outline: none;
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
  border-radius: 0;
}

.contact-form input {
  height: 40px;
  margin-bottom: 29px;
  width: 100%;
}

.contact-form textarea {
  min-height: 75px;
  resize: none;
  margin-bottom: 25px;
  margin-top: 0;
  width: 100%;
}

.contact-form button {
  align-self: flex-end;
  min-width: 252px;
  height: 50px;
  border: 2px solid rgb(237, 189, 92);
  border-radius: 100px;
  background: transparent;
  color: rgb(237, 189, 92);
  font-size: 20px;
  line-height: 1.3;
  font-family: "Wix Madefor Text", Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.contact-thanks {
  position: relative;
  width: 166px;
  height: 166px;
  margin: 4.4rem auto 0;
  display: grid;
  place-items: center;
  font-family: "Times New Roman", "Georgia", serif;
}

.contact-thanks svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: 50% 50%;
  animation: contactThanksPulse 2s ease-in-out infinite;
}

.contact-thanks span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  transition: color 180ms ease;
}

.contact-thanks:hover span {
  color: rgb(214, 170, 86);
}

@keyframes contactThanksPulse {
  0% { transform: scale(1); }
  12.5% { transform: scale(1.045); }
  25% { transform: scale(1); }
  37.5% { transform: scale(1.045); }
  50% { transform: scale(1); }
  100% { transform: scale(1); }
}

.page-contact .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
}

.page-home.scrolled-past-hero-logo .site-header,
.page-offer.scrolled-past-hero-logo .site-header,
.page-clients.scrolled-past-hero-logo .site-header,
.page-contact.scrolled-past-hero-logo .site-header {
  background: var(--bg);
}

.page-contact .site-header .container {
  width: min(100% - 2rem, 1244px);
}

.page-contact .site-header .brand {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.page-contact.scrolled-past-hero-logo .site-header .brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-contact .header-inner {
  justify-content: space-between;
  min-height: 76px;
}

.page-contact .nav-list {
  gap: 2rem;
}

.page-contact .nav-list a {
  font-size: 14px;
  font-style: italic;
  font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 21.84px;
}

@media (max-width: 980px) {
  .contact-top-logo img {
    width: 200px;
  }

  .contact-marquee {
    font-size: 30px;
    transform: translateX(-8%);
  }

  .contact-card {
    max-width: 100%;
    margin-top: 1.5rem;
    padding: 1.2rem;
  }

  .contact-form button {
    width: 100%;
    min-width: 0;
  }

  .contact-thanks {
    width: 88px;
    height: 88px;
    font-size: 28px;
  }
}

@media (max-width: 760px) {
  .page-offer .page-content {
    padding-top: 3rem;
  }

  .page-content {
    padding-top: 0.65rem;
  }

  .page-clients .header-inner,
  .page-contact .header-inner,
  .page-offer .header-inner,
  .page-home .header-inner {
    min-height: 68px;
  }

  .page-clients .nav-list,
  .page-contact .nav-list {
    gap: .55rem;
    flex-wrap: nowrap;
  }

  .page-clients .nav-list a,
  .page-contact .nav-list a {
    font-size: 11px;
    line-height: 17.16px;
    font-style: italic;
    font-family: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  }

  .page-home .page-content {
    width: min(100% - 2.8rem, 1244px);
    margin-inline: auto;
  }

  .offer-page,
  .clients-page,
  .contact-page {
    width: min(100% - 2.8rem, 1244px);
    margin-inline: auto;
    padding-top: 0.2rem;
  }

  .home-logo,
  .offer-top-logo,
  .clients-top-logo,
  .contact-top-logo {
    padding-top: 0.2rem;
    margin-top: 0;
  }

  .home-logo {
    margin-left: 11.2px;
    margin-top: -12.8px;
  }

  .home-logo img,
  .offer-top-logo img,
  .clients-top-logo img,
  .contact-top-logo img {
    width: 200px;
    height: auto;
    display: block;
  }

  .home-logo,
  .offer-top-logo,
  .clients-top-logo,
  .contact-top-logo {
    display: none !important;
  }
}
