@charset "UTF-8";
:root {
  --brand: #fb1114;
  --brand-dark: #d70d10;
  --graphite: #403b3d;
  --pine: #0c2c24;
  --ink: #2b2829;
  --mist: #f5f5f5;
  --cloud: #f9f9f9;
  --muted: #b6b6b6;
  --hairline: #dee3eb;
  --white-soft: #f3f3f3;
  --field-label: #757385;
  --field-text: #0d0b1a;
  --surface-glass: rgb(255 255 255 / 10%);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-grotesque: "Bricolage Grotesque", var(--font-sans);
  --font-form: "Archivo", var(--font-sans);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 24px;
  --radius-pill: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

:target {
  scroll-margin-top: 120px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--graphite);
  background: #fff;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.375rem, 4.5vw, 3.875rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--graphite);
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.14px;
  text-transform: uppercase;
}

.text-muted {
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  z-index: 60;
  top: 8px;
  left: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-size: 0.875rem;
  transform: translateY(-200%);
  transition: transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.skip-link:focus-visible {
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  height: 51px;
  padding-inline: 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--solid {
  background: var(--brand);
  color: #fff;
}
.btn--solid:hover {
  background: var(--brand-dark);
}
.btn--ghost {
  border: 1px solid #fff;
  background: var(--surface-glass);
  backdrop-filter: blur(5px);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn--block {
  width: 100%;
}
.btn--submit {
  width: 208px;
  min-width: 0;
  height: 56px;
  border-radius: 55px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-form);
  font-size: 1rem;
  font-weight: 400;
}
.btn--submit:hover {
  background: var(--brand-dark);
}

.link-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.link-arrow:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.link-arrow img {
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.link-arrow:hover img {
  transform: rotate(45deg) translate(3px, 3px);
}

.carousel-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.carousel-nav__btn {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(171, 171, 171, 0.25);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(5px);
  transition: background-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.carousel-nav__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.carousel-nav__btn:hover:not(:disabled) {
  background: rgba(152, 152, 152, 0.18);
}
.carousel-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.carousel-nav__btn--next {
  border-color: #ababab;
  background: rgba(152, 152, 152, 0.1);
}
.carousel-nav__btn--prev img {
  transform: rotate(180deg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #fafafa;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
.badge--launch {
  gap: 10px;
  border: 1px solid #fff;
  border-radius: var(--radius-lg);
  background: var(--surface-glass);
  backdrop-filter: blur(5px);
  color: #fff;
  font-weight: 400;
}

.specs {
  display: flex;
  align-items: center;
  gap: 24px;
}
.specs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.specs__value {
  font-family: var(--font-grotesque);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.1px;
  white-space: nowrap;
}
.specs__rule {
  width: 1px;
  height: 56px;
  background: rgba(64, 59, 61, 0.15);
}
.specs__area {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.1px;
  white-space: nowrap;
}
.specs--wide {
  gap: 42px;
}
.specs--compact {
  gap: 11px;
}
.specs--light {
  color: #fff;
}
.specs--light .specs__rule {
  background: rgba(255, 255, 255, 0.3);
}

.seal {
  position: relative;
  width: 345px;
  height: 345px;
}
.seal__ring {
  width: 100%;
  height: 100%;
  animation: seal-spin 48s linear infinite;
}
.seal__text {
  fill: #fff;
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}
.seal__mark {
  position: absolute;
  top: 141px;
  left: 136px;
  display: flex;
  width: 73px;
  height: 64px;
}

@keyframes seal-spin {
  to {
    transform: rotate(1turn);
  }
}
@media (prefers-reduced-motion: reduce) {
  .seal__ring {
    animation: none;
  }
}
.post-card {
  display: flex;
  width: 100%;
  max-width: 416px;
  height: 378px;
  flex: 0 0 auto;
  flex-direction: column;
  overflow: hidden;
  border: 0.7px solid var(--hairline);
  border-radius: var(--radius-md);
  background: #fff;
  transition: box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.post-card:hover, .post-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(251, 17, 20, 0.28);
  box-shadow: 0 22px 48px rgba(64, 59, 61, 0.14);
}
.post-card__media {
  position: relative;
  height: 192px;
  flex-shrink: 0;
  overflow: hidden;
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.post-card__media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.post-card:hover .post-card__media img, .post-card:focus-within .post-card__media img {
  transform: scale(1.08);
}
.post-card:hover .post-card__media::after, .post-card:focus-within .post-card__media::after {
  transform: scaleX(1);
}
.post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
}
.post-card__category {
  flex: 1;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.post-card__tag {
  flex-shrink: 0;
  padding: 3px 6px;
  border-radius: var(--radius-sm);
  background: #f8f8f8;
  font-size: 0.75rem;
  letter-spacing: -0.48px;
}
.post-card__title {
  max-width: 300px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.48px;
}
.post-card__title a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .post-card,
  .post-card__media img,
  .post-card__media::after {
    transition: none;
  }
  .post-card:hover,
  .post-card:focus-within {
    transform: none;
  }
  .post-card:hover .post-card__media img,
  .post-card:focus-within .post-card__media img {
    transform: none;
  }
}
.form {
  display: flex;
  width: 100%;
  max-width: 556px;
  flex-direction: column;
  gap: 30px;
}
.form__label {
  display: block;
  margin-bottom: 7px;
  color: var(--field-label);
  font-family: var(--font-form);
  font-size: 0.875rem;
  line-height: 1.5;
}
.form__control {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--cloud);
  color: var(--field-text);
  font-family: var(--font-form);
  font-size: 0.875rem;
  transition: border-color 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.form__control::placeholder {
  color: var(--field-label);
}
.form__control:focus {
  border-color: rgba(215, 215, 215, 0.8);
  background: #fff;
  outline: none;
}
.form__control--textarea {
  height: 99px;
  padding-top: 16px;
  resize: vertical;
}
.form__control[aria-invalid=true] {
  border-color: var(--brand);
  background: #fff;
}
.form__error:empty, .form__status:empty {
  display: none;
}
.form__error {
  display: block;
  margin-top: 6px;
  color: var(--brand);
  font-family: var(--font-form);
  font-size: 0.75rem;
}
.form__status {
  color: var(--graphite);
  font-family: var(--font-form);
  font-size: 0.875rem;
}
.form__status[data-state=success] {
  color: #1c8a4b;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 30px;
}
.highlights__item {
  display: flex;
  align-items: center;
  gap: 32px;
}
.highlights__title {
  color: var(--field-text);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}
.highlights__text {
  color: var(--graphite);
  font-family: var(--font-form);
  font-size: 0.875rem;
  line-height: 1.5;
}

.iso-icon {
  position: relative;
  width: 40px;
  height: 42px;
  flex-shrink: 0;
}
.iso-icon span {
  position: absolute;
  left: 0;
  display: flex;
  width: 39px;
  height: 23px;
  align-items: center;
  justify-content: center;
}
.iso-icon span::before {
  content: "";
  width: 17.7px;
  height: 27.8px;
  border: 2px solid currentcolor;
  transform: rotate(-30deg) skewX(30deg) scaleY(0.87);
}
.iso-icon span:first-child {
  top: 0;
  color: var(--brand);
}
.iso-icon span:last-child {
  top: 10px;
  color: var(--graphite);
}

.site-header {
  position: absolute;
  z-index: 20;
  inset-inline: 0;
  top: 24px;
}
@media (min-width: 768px) {
  .site-header {
    top: 47px;
  }
}
.site-header__inner {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .site-header__inner {
    padding-inline: 73px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: flex-end;
  gap: 11px;
}
.site-header__logo:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.site-header__logo img:first-child {
  width: 42px;
}
@media (min-width: 768px) {
  .site-header__logo img:first-child {
    width: 57px;
  }
}
.site-header__logo img:last-child {
  width: 150px;
}
@media (min-width: 768px) {
  .site-header__logo img:last-child {
    width: 201px;
  }
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1280px) {
  .site-header__actions {
    gap: 58px;
  }
}
.site-header__cta {
  display: none;
}
@media (min-width: 768px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.menu-toggle {
  display: flex;
  width: 40px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.menu-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 40, 41, 0.96);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.site-nav__link {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  transition: color 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-nav__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.site-nav__link:hover {
  color: var(--brand);
}
.site-nav__close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
.site-nav__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.site-footer {
  position: relative;
  background: var(--ink);
  color: #fff;
}
.site-footer__edge {
  position: absolute;
  top: -125px;
  left: 0;
  width: 100%;
  height: 126px;
  transform: rotate(180deg);
  pointer-events: none;
}
.site-footer__inner {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .site-footer__inner {
    padding-inline: 73px;
  }
}
.site-footer__inner {
  padding-top: 72px;
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding-top: 100px;
  }
}
.site-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .site-footer__grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 64px;
  }
}
.site-footer__title {
  max-width: 758px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -1.04px;
}
.site-footer__title strong {
  font-weight: 600;
}
.site-footer__cta {
  margin-top: 24px;
}
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  opacity: 0.5;
}
.site-footer__contacts a,
.site-footer__contacts p {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 331px;
  color: var(--white-soft);
  font-size: 0.875rem;
  line-height: 1.3;
}
.site-footer__contacts a {
  align-items: center;
}
.site-footer__contacts a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.site-footer__contacts img {
  flex-shrink: 0;
}
.site-footer__side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .site-footer__side {
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .site-footer__links {
    align-items: flex-end;
  }
}
.site-footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.1px;
  transition: color 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-footer__links a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.site-footer__links a:hover {
  color: #fff;
}
.site-footer__social {
  display: flex;
  gap: 24px;
}
.site-footer__social a {
  transition: opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.site-footer__social a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.site-footer__social a:hover {
  opacity: 0.7;
}

.subfooter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .subfooter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.subfooter__credit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-grotesque);
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.1px;
}
.subfooter__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.subfooter__legal a {
  font-family: var(--font-grotesque);
  font-size: 0.875rem;
  letter-spacing: -0.1px;
  transition: opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.subfooter__legal a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.subfooter__legal a:hover {
  opacity: 0.7;
}

.whatsapp-fab {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 2px solid #22cc60;
  border-radius: var(--radius-pill);
  background: #25d366;
  filter: drop-shadow(1px 1px 2.5px rgba(37, 37, 37, 0.5));
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.whatsapp-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.whatsapp-fab:hover {
  transform: scale(1.06);
}
@media (min-width: 1024px) {
  .whatsapp-fab {
    width: 89px;
    height: 89px;
  }
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--graphite);
  color: #fff;
}
@media (min-width: 1024px) {
  .hero {
    height: 700px;
    min-height: 0;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/noise-texture.png") top left/134px 134px repeat;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}
.hero__slides {
  position: relative;
  min-height: inherit;
  height: 100%;
}
.hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__dots {
    bottom: 82px;
    left: 81px;
  }
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.6s cubic-bezier(0.32, 0.72, 0, 1), background-color 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.hero-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero-dot.is-active {
  width: 44px;
  background: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s 0.8s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide__photo, .hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.2);
  opacity: 0.55;
  mix-blend-mode: soft-light;
}
.hero-slide.is-active .hero-slide__photo {
  animation: hero-pan 16s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-slide__inner {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .hero-slide__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .hero-slide__inner {
    padding-inline: 73px;
  }
}
.hero-slide__inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}
@media (min-width: 1024px) {
  .hero-slide__inner {
    padding-top: 203px;
  }
}
.hero-slide__eyebrow {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 2.88px;
}
@media (min-width: 768px) {
  .hero-slide__eyebrow {
    font-size: 1.5rem;
  }
}
.hero-slide__title {
  max-width: 570px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.375rem, 4.8vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
}
.hero-slide__cta {
  margin-top: 42px;
}
.hero-slide__specs {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: none;
  padding: 47px 90px 47px 96px;
  border-start-start-radius: 16px;
  background: #fff;
  color: var(--graphite);
}
@media (min-width: 1024px) {
  .hero-slide__specs {
    display: block;
  }
}
.hero-slide__lines {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}
@media (min-width: 1024px) {
  .hero-slide__lines {
    display: block;
  }
}

@keyframes hero-pan {
  from {
    transform: scale(1.16);
  }
  to {
    transform: scale(1.3) translate3d(-1.5%, -1%, 0);
  }
}
/* --------------------------------------------------------------------------- */
/* Slide institucional                                                         */
/* --------------------------------------------------------------------------- */
.hero-slide--brand {
  background: var(--pine);
}
.hero-slide--brand .hero-slide__inner--brand {
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: 116px;
  padding-bottom: 84px;
}
@media (min-width: 1024px) {
  .hero-slide--brand .hero-slide__inner--brand {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-brand {
    flex-direction: row;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .hero-brand__copy {
    padding-inline-start: 72px;
  }
}
.hero-brand__tags {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.8125rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero-brand__title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
}
.hero-brand__title strong {
  display: block;
  font-weight: 700;
}
.hero-brand__lead {
  max-width: 340px;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.hero-brand__circle {
  flex: none;
  align-self: flex-end;
  width: 190px;
  height: 190px;
  overflow: hidden;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .hero-brand__circle {
    align-self: auto;
    width: 336px;
    height: 336px;
    margin-inline-end: 107px;
  }
}
.hero-brand__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}
.hero-tag__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-slide__photo {
    animation: none;
  }
  .hero-slide {
    transition-duration: 0.01ms;
  }
}
.properties {
  padding-top: 64px;
}
@media (min-width: 1024px) {
  .properties {
    padding-top: 90px;
  }
}
.properties__head {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .properties__head {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .properties__head {
    padding-inline: 73px;
  }
}
.properties__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 768px) {
  .properties__head {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}
.properties__track {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .properties__track {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .properties__track {
    padding-inline: 73px;
  }
}
.properties__track {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 40px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.properties__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .properties__track {
    gap: 0;
    margin-top: 80px;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}
.properties__rule {
  display: none;
}
@media (min-width: 1024px) {
  .properties__rule {
    position: relative;
    display: block;
    width: 121px;
    height: 608px;
    flex-shrink: 0;
    transition: width 0.6s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .properties__rule::before {
    content: "";
    position: absolute;
    inset-block: 0;
    left: 60px;
    width: 1px;
    background: #dedede;
    transition: opacity 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  }
}

.property {
  position: relative;
  display: flex;
  width: 280px;
  height: 420px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: width 0.6s cubic-bezier(0.32, 0.72, 0, 1), height 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
@media (min-width: 1024px) {
  .property {
    width: 107px;
    height: 608px;
    overflow: hidden;
    scroll-snap-align: none;
  }
}
.property__label {
  position: relative;
  display: none;
  width: 107px;
  height: 200px;
  padding: 0;
  text-align: left;
}
.property__label:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
@media (min-width: 1024px) {
  .property__label {
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    display: block;
    width: 107px;
    height: 100%;
    background: #fff;
    opacity: 1;
    transition: opacity 0.18s cubic-bezier(0.32, 0.72, 0, 1);
  }
}
.property__label .badge--launch {
  gap: 4px;
  border-color: var(--brand);
  border-radius: 8px;
  background: var(--brand);
  backdrop-filter: none;
  font-weight: 500;
}
.property__label .property__label-inner {
  position: absolute;
  top: calc(100% - 38px);
  left: 0;
  width: max-content;
  transform-origin: 0 0;
  transform: rotate(-90deg);
}
.property__label-inner {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  white-space: nowrap;
}
.property__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .property__name {
    font-size: 2.625rem;
  }
}
.property__district {
  display: block;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--muted);
}
.property__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-start-start-radius: var(--radius-lg);
  border-start-end-radius: var(--radius-lg);
  background: rgba(64, 59, 61, 0.05);
}
@media (min-width: 1024px) {
  .property__media {
    inset: 0 auto 0 0;
    width: 514px;
  }
}
.property__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property__scrim {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(52, 52, 52, 0) 33%, #040404 100%);
  mix-blend-mode: multiply;
  opacity: 0.7;
  pointer-events: none;
}
.property__noise::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/noise-texture.png") top left/134px 134px repeat;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}
.property__link {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  padding: 12px;
  border: 0.683px solid #fff;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  backdrop-filter: blur(8.6px);
  transition: background-color 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.property__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.property__link:hover {
  background: rgba(255, 255, 255, 0.25);
}
@media (min-width: 1024px) {
  .property__link {
    top: 38px;
    right: 30px;
    padding: 17px;
  }
}
.property__info {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .property__info {
    top: 38px;
    left: 33px;
  }
}
.property__area {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.1px;
  color: #fff;
}
@media (min-width: 1024px) {
  .property__area {
    font-size: 2rem;
  }
}
.property__specs {
  position: absolute;
  bottom: 96px;
  left: 24px;
}
@media (min-width: 1024px) {
  .property__specs {
    top: 505px;
    right: 30px;
    bottom: auto;
    left: auto;
  }
}
.property__media-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
}
@media (min-width: 1024px) {
  .property__media-label {
    top: 571px;
    bottom: auto;
    left: 33px;
    width: 0;
    height: 0;
  }
  .property__media-label .property__label-inner {
    position: absolute;
    top: 0;
    left: 0;
    gap: 0;
    transform-origin: 0 0;
    transform: rotate(-90deg);
  }
}
.property__media-label .property__district {
  color: #fff;
}
@media (min-width: 1024px) {
  .property.is-active {
    width: 514px;
  }
  .property.is-active .property__label {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s 0.2s;
  }
}

@media (min-width: 1024px) {
  .property.is-active + .properties__rule,
  .properties__rule:has(+ .property.is-active) {
    width: 60px;
  }
  .property.is-active + .properties__rule::before,
  .properties__rule:has(+ .property.is-active)::before {
    opacity: 0;
  }
}
.brand {
  position: relative;
  overflow: clip;
  background: var(--graphite);
  color: #fff;
}
.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1632px 1422px at 1020px 1296px, rgb(40, 40, 40) 0%, rgba(20, 20, 20, 0.5) 50%, rgba(0, 0, 0, 0) 100%) no-repeat;
  pointer-events: none;
}
.brand__glass {
  position: absolute;
  z-index: 3;
  inset-inline: 0;
  top: 621px;
  display: none;
  height: 198px;
}
@media (min-width: 1024px) {
  .brand__glass {
    display: block;
  }
}
.brand__glass {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 2px, rgba(59, 59, 59, 0.4) 15px, rgba(255, 255, 255, 0) 31px);
  backdrop-filter: blur(50px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.brand__inner {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .brand__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .brand__inner {
    padding-inline: 73px;
  }
}
.brand__inner {
  position: relative;
  z-index: 2;
  padding-top: 96px;
}
@media (min-width: 1024px) {
  .brand__inner {
    padding-top: 173px;
  }
}
.brand__stage {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 96px;
}
@media (min-width: 1024px) {
  .brand__stage {
    padding-top: 184px;
    padding-bottom: 127px;
  }
}
.brand__stage-inner {
  position: relative;
}
.brand__stage-content {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .brand__stage-content {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .brand__stage-content {
    padding-inline: 73px;
  }
}
.brand__stage-content {
  position: relative;
}
.brand__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.brand__copy {
  max-width: 569px;
}
.brand__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.875rem);
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand__lead {
  max-width: 480px;
  margin-top: 16px;
  font-size: 1.25rem;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .brand__lead {
    font-size: 1.5rem;
    line-height: 34px;
  }
}
.brand__cta {
  margin-top: 44px;
}
.brand__building {
  display: none;
  width: 759px;
  max-width: none;
  margin: -104px -100px 0 0;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .brand__building {
    display: block;
  }
}
@media (min-width: 1280px) {
  .brand__building {
    margin-right: -157px;
  }
}
.brand__bottom {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 1024px) {
  .brand__bottom {
    gap: 60px;
  }
}
.brand__pillars {
  display: none;
  width: 201px;
  flex-direction: column;
  align-items: flex-end;
  gap: 42px;
  flex-shrink: 0;
  padding-top: 167px;
}
@media (min-width: 1024px) {
  .brand__pillars {
    display: flex;
  }
}
.brand__pillar-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 52px;
}
.brand__stats {
  display: grid;
  width: 100%;
  max-width: 806px;
  margin-left: auto;
  gap: 2px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .brand__stats {
    grid-template-columns: 1fr 1fr;
  }
}
.brand__seal {
  position: absolute;
  top: -135px;
  left: calc(50% - 10px);
  display: none;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .brand__seal {
    display: block;
  }
}

/* --------------------------------------------------------------------------- */
/* Palco preso: o scroll acende um pilar e um número por vez                    */
/* --------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .js .brand__stage {
    height: 200vh;
  }
}

@media (min-width: 1024px) {
  .js .brand__stage-inner {
    position: sticky;
    top: 0;
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding-top: 135px;
  }
  .js .brand__stage-inner::before {
    content: "";
    position: absolute;
    inset: -20% 0;
    background: radial-gradient(90% 80% at 72% 60%, rgb(40, 40, 40) 0%, rgba(20, 20, 20, 0.45) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
  }
}

.js .brand__stage-content {
  width: 100%;
}

.brand__stage.is-stepping .stat {
  opacity: 0.14;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.brand__stage.is-stepping .stat.is-lit {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .brand__stage {
    height: auto;
  }
  .js .brand__stage-inner {
    position: static;
    min-height: 0;
  }
}
.pillar {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.24px;
  opacity: 0.4;
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pillar.is-lit {
  opacity: 0.7;
}
.pillar--current {
  font-weight: 700;
  opacity: 1;
}

.stat-spacer {
  display: none;
}
@media (min-width: 640px) {
  .stat-spacer {
    display: block;
  }
}

.stat {
  padding: 32px 32px 32px;
  background: rgba(68, 68, 68, 0.2);
}
@media (min-width: 1280px) {
  .stat {
    height: 268px;
    padding: 45px 61px 0;
  }
}
.stat--tl {
  border-start-start-radius: var(--radius-lg);
}
.stat--tr {
  border-start-end-radius: var(--radius-lg);
}
.stat--br {
  border-end-end-radius: 244px;
}
.stat__label {
  color: #fff;
}
.stat__number {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--brand);
  font-size: clamp(3.25rem, 5.5vw, 4.8125rem);
}
.stat__prefix {
  font-weight: 200;
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.375rem);
}
.stat--iso .stat__number,
.stat--iso .stat__prefix {
  font-size: clamp(2.5rem, 3.6vw, 3.125rem);
}
.stat__rule {
  width: 224px;
  max-width: 100%;
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--brand) 0%, #2c2c2c 100%);
}
.stat__text {
  max-width: 320px;
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.18px;
}

.section-divider {
  height: 8px;
  background: url("../assets/images/divider-gradient.png") center/cover no-repeat;
}

.contact {
  position: relative;
  overflow-x: clip;
  background: #fff;
  --ornament-top: -104px;
  --ornament-left: -621px;
  --ornament-w: 1222px;
  --ornament-h: 883px;
  --broker-top: 86px;
  --broker-left: 40px;
  --broker-w: 455px;
  --bust-h: 310px;
  --art-scale: 0.38;
}
@media (min-width: 768px) {
  .contact {
    min-height: 520px;
    --art-scale: 0.62;
  }
}
@media (min-width: 1024px) {
  .contact {
    min-height: 720px;
    --art-scale: 0.82;
  }
}
@media (min-width: 1280px) {
  .contact {
    min-height: 857px;
    --art-scale: 1;
  }
}
.contact__art {
  position: relative;
  z-index: 1;
  height: 340px;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 768px) {
  .contact__art {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(52vw, 760px);
    height: auto;
    overflow: visible;
  }
}
@media (min-width: 1280px) {
  .contact__art {
    left: max(0px, (100% - 1360px) / 2);
    width: 760px;
  }
}
.contact__shift {
  position: absolute;
  inset: 0;
  transform-origin: top left;
  transform: scale(var(--art-scale));
}
.contact__ornament {
  position: absolute;
  top: var(--ornament-top);
  left: var(--ornament-left);
  width: var(--ornament-w);
  height: var(--ornament-h);
  max-width: none;
}
.contact__fold {
  position: absolute;
  top: var(--ornament-top);
  left: var(--ornament-left);
  width: var(--ornament-w);
  height: var(--ornament-h);
  max-width: none;
  overflow: visible;
  pointer-events: none;
}
.contact__bust {
  position: absolute;
  top: var(--broker-top);
  left: var(--broker-left);
  width: var(--broker-w);
  height: var(--bust-h);
  overflow: hidden;
}
.contact__broker {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--broker-w);
  max-width: none;
  height: auto;
}
.contact__inner {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .contact__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .contact__inner {
    padding-inline: 73px;
  }
}
.contact__inner {
  position: relative;
  z-index: 2;
}
.contact__body {
  padding-top: 32px;
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  .contact__body {
    padding-top: 72px;
    padding-left: 300px;
  }
}
@media (min-width: 1024px) {
  .contact__body {
    padding-top: 96px;
    padding-bottom: 80px;
    padding-left: 420px;
  }
}
@media (min-width: 1280px) {
  .contact__body {
    padding-top: 114px;
    padding-bottom: 0;
    padding-left: 646px;
  }
}
.contact__title {
  max-width: 524px;
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 3.8vw, 3.125rem);
  font-weight: 400;
  line-height: 1.25;
}
.contact__form {
  margin-top: 21px;
}

/* --------------------------------------------------------------------------- */
/* Entrada no scroll: o vermelho desenha, a corretora sobe em seguida           */
/* --------------------------------------------------------------------------- */
.js .contact__ornament {
  clip-path: inset(0 70% 0 0);
  opacity: 0.35;
  transform: translate3d(-48px, 12px, 0) scale(0.96);
  transition: clip-path 1.1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js .contact__fold,
.js .contact__bust {
  opacity: 0;
  transform: translate3d(-36px, 48px, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s;
}

.contact.is-inview .contact__ornament {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: none;
}
.contact.is-inview .contact__fold,
.contact.is-inview .contact__bust {
  opacity: 1;
  transform: none;
}
.contact.is-inview .contact__shift {
  transform: translate3d(0, var(--broker-y, 0px), 0) scale(var(--art-scale));
}

.js .contact__title,
.js .contact .form > div,
.js .contact .btn--submit,
.js .contact .highlights__item {
  opacity: 0;
}

.js .contact.is-inview .contact__title,
.js .contact.is-inview .form > div,
.js .contact.is-inview .btn--submit,
.js .contact.is-inview .highlights__item {
  animation: contact-rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.js .contact.is-inview .contact__title {
  animation-delay: 0.12s;
}

.js .contact.is-inview .form > div:nth-child(1) {
  animation-delay: 0.22s;
}

.js .contact.is-inview .form > div:nth-child(2) {
  animation-delay: 0.32s;
}

.js .contact.is-inview .form > div:nth-child(3) {
  animation-delay: 0.42s;
}

.js .contact.is-inview .btn--submit {
  animation-delay: 0.52s;
}

.js .contact.is-inview .highlights__item:nth-child(1) {
  animation-delay: 0.62s;
}

.js .contact.is-inview .highlights__item:nth-child(2) {
  animation-delay: 0.72s;
}

@keyframes contact-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.contact.is-settled .contact__ornament,
.contact.is-settled .contact__fold,
.contact.is-settled .contact__bust,
.contact.is-settled .contact__shift {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .contact__ornament,
  .js .contact__fold,
  .js .contact__bust,
  .js .contact__title,
  .js .contact .form > div,
  .js .contact .btn--submit,
  .js .contact .highlights__item {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
.posts {
  overflow-x: clip;
  padding: 40px 0 120px;
  background: var(--mist);
}
@media (min-width: 1024px) {
  .posts {
    padding: 51px 0 212px;
  }
}
.posts__head {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .posts__head {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .posts__head {
    padding-inline: 73px;
  }
}
.posts__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 768px) {
  .posts__head {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}
.posts__row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 48px;
  padding-left: 24px;
}
@media (min-width: 768px) {
  .posts__row {
    padding-left: 40px;
  }
}
@media (min-width: 1024px) {
  .posts__row {
    margin-top: 93px;
  }
}
@media (min-width: 1280px) {
  .posts__row {
    padding-left: max(73px, (100% - 1360px) / 2 + 73px);
  }
}
.posts__nav {
  display: none;
  flex-shrink: 0;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .posts__nav {
    display: flex;
  }
}
.posts__track {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  padding-right: 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.posts__track::-webkit-scrollbar {
  display: none;
}
.posts__track > * {
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .posts__track {
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  .posts__track {
    padding-bottom: 0;
    padding-right: 0;
  }
}
