:root {
  --page-width: 1905px;
  --content-offset: max(0px, calc((100vw - var(--page-width)) / 2));
  --gallery-loop-width: 1880px;
  --bg: #f3eee7;
  --text: #282826;
  --muted: #232322;
  --cta-bg: #b3b3b3;
  --cta-button: #847c91;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "GFS Didot", Georgia, serif;
}

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

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

a,
button,
label,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(40, 40, 38, 0.84);
  outline-offset: 4px;
}

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

.site-shell {
  width: 100%;
  margin: 0;
  background: var(--bg);
  overflow: hidden;
}

.hero {
  position: relative;
  height: 906px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto;
  height: 903px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-frame--mobile,
.hero-video--mobile {
  display: none;
}

.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 220ms ease;
  will-change: opacity;
}

.hero-media[data-video-started="true"] .hero-video.is-ready {
  opacity: 1;
}

.figma-home__hero[data-video-started="true"] .figma-home__hero-video.is-ready {
  opacity: 1;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
  opacity: 0 !important;
}

.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
}

.brand {
  position: absolute;
  top: 16px;
  left: calc(var(--content-offset) + 30px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-mark {
  width: 61px;
  height: 61px;
  object-fit: contain;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.nav-links {
  position: absolute;
  top: 37px;
  left: calc(var(--content-offset) + 1634px);
  right: auto;
  display: flex;
  align-items: flex-start;
  gap: 49px;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 22px;
  line-height: 13px;
}

.nav-links a {
  position: relative;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links .is-active::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 38px;
  height: 1px;
  background: rgba(198, 193, 186, 0.8);
  content: "";
  transform: translateX(-50%);
}

.social-links {
  position: absolute;
  top: 624px;
  left: calc(var(--content-offset) + 375px);
  right: auto;
  display: flex;
  align-items: center;
  gap: 19px;
}

.header-phone-link {
  position: absolute;
  top: 625px;
  left: calc(var(--content-offset) + 513px);
  right: auto;
  display: block;
  width: 50px;
  height: 48px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.header-phone-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-link {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.social-link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 413px;
  left: calc(var(--content-offset) + 162px);
  width: 434px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-shadow: none;
}

.hero-copy p {
  width: 434px;
  margin: 15px 0 24px 0;
  color: #fff;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 21px;
  line-height: 22px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-weight: 700;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.button--light {
  width: 176px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.74);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #232322;
  font-size: 16px;
  line-height: 19px;
  text-shadow: none;
}

@media (hover: hover) {
  .nav-links a:hover {
    opacity: 0.72;
  }

  .social-link:hover,
  .header-phone-link:hover {
    opacity: 0.78;
    transform: translateY(-1px);
  }

  .button:hover {
    border-color: rgba(0, 0, 0, 0.48);
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
  }

  .button--claim:hover {
    box-shadow: 3px 9px 10px rgba(0, 0, 0, 0.22);
  }
}

.button:active,
.social-link:active,
.header-phone-link:active {
  transform: translateY(0);
}

.seo-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 52px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(242, 238, 235, 0.08), rgba(242, 238, 235, 0.54)),
    rgba(242, 238, 235, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 -24px 42px rgba(242, 238, 235, 0.2);
  color: rgba(35, 35, 33, 0.86);
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.seo-strip::before,
.seo-strip::after {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 108px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.seo-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(242, 238, 235, 0.78), rgba(242, 238, 235, 0));
}

.seo-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(242, 238, 235, 0.78), rgba(242, 238, 235, 0));
}

.seo-marquee {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: seo-marquee 44s linear infinite;
}

.seo-marquee__group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 0 36px;
}

.seo-marquee__group span {
  flex: 0 0 auto;
}

.quality {
  position: relative;
  height: 1244px;
  overflow: hidden;
  background: #f3eee7;
  isolation: isolate;
}

.quality-art {
  position: absolute;
  top: 4px;
  left: calc(var(--content-offset) - 4px);
  z-index: 1;
  display: block;
  width: 1913px;
  height: 1181px;
  overflow: hidden;
}

.quality-art img {
  position: absolute;
  top: -0.01%;
  left: -4.86%;
  width: 109.72%;
  height: 100.03%;
  max-width: none;
  object-fit: fill;
  object-position: center center;
}

.quality-copy {
  position: absolute;
  z-index: 3;
  top: 331px;
  left: calc(var(--content-offset) + 148px);
  width: 1035px;
}

.quality-copy h2 {
  width: 960px;
  height: 174px;
  margin: 0 0 53px;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: 77px;
  font-weight: 500;
  line-height: 87px;
}

.quality-copy p {
  width: 837px;
  margin: 0;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: 33px;
  line-height: 62px;
}

.quality-copy--accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.section-line {
  position: absolute;
  z-index: 4;
  left: calc(var(--content-offset) - 4px);
  width: 1912px;
  height: 1px;
  background: #282826;
}

.section-line--top {
  top: 70px;
}

.section-line--bottom {
  top: 1185px;
  bottom: auto;
}

.gallery-section {
  position: relative;
  height: 322px;
  margin-top: 59px;
  overflow: hidden;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.25));
}

.gallery-track {
  display: flex;
  gap: 1px;
  width: 1879px;
  width: max-content;
  height: 322px;
  margin-left: calc(var(--content-offset) + 51px);
  animation: gallery-marquee-reverse 42s linear infinite;
  will-change: transform;
}

.gallery-track img {
  position: relative;
  top: 0;
  left: auto;
  flex: 0 0 187px;
  width: 187px;
  height: 322px;
  border: 5px solid #fff;
  object-fit: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.gallery-track img[data-marquee-clone] {
  display: block;
}

.gallery-track--mobile {
  display: none;
}

.gallery-track img:nth-child(n) {
  left: auto;
}

.result-claim {
  height: 151px;
  padding-top: 67px;
  background: #f3eee7;
  text-align: center;
}

.claim-kicker,
.claim-title {
  margin: 0;
  color: var(--text);
  font-weight: 400;
  text-shadow: none;
  white-space: nowrap;
}

.claim-kicker {
  display: flex;
  justify-content: center;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.18);
}

.claim-kicker-image {
  width: 914px;
  height: 50px;
  max-width: none;
  object-fit: contain;
}

.claim-title {
  margin-top: 9px;
  font-family: "Kristi", cursive;
  font-size: 58px;
  line-height: 56px;
  letter-spacing: 0;
  text-transform: none;
}

.button--claim {
  width: 224px;
  height: 56px;
  margin-top: 24px;
  border: 1px solid rgba(0, 0, 0, 0.74);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #232322;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 19px;
  text-shadow: none;
}

.cta {
  position: relative;
  height: 648px;
  padding: 0;
  overflow: hidden;
  background: #f3eee7;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.footer-offer {
  position: absolute;
  z-index: 1;
  top: 67px;
  left: calc(var(--content-offset) + 127px);
  width: 789px;
}

.footer-offer h2 {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 96px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

.footer-offer p {
  width: 557px;
  margin: 47px 0 0;
  color: #000;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 21px;
  line-height: 22px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.22);
}

.footer-offer .button--claim {
  margin-top: 25px;
  margin-left: 125px;
}

.footer-contacts {
  position: absolute;
  z-index: 1;
  top: 96px;
  left: calc(var(--content-offset) + 1443px);
  width: 430px;
}

.footer-contact {
  position: absolute;
  left: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #000;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.footer-contact:nth-child(1) {
  top: 0;
}

.footer-contact:nth-child(2) {
  top: 81px;
}

.footer-contact:nth-child(3) {
  top: 162px;
}

.footer-contact:nth-child(4) {
  top: 241px;
}

.footer-contact img {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-contact span,
.footer-contact a {
  margin-top: 10px;
}

.footer-contact p {
  width: 334px;
  margin: -3px 0 0;
}

.cta-copy {
  position: absolute;
  top: 59px;
  left: calc(var(--content-offset) + 50px);
  width: 414px;
}

.cta-copy h2 {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: 39px;
  font-weight: 600;
  line-height: 37px;
  letter-spacing: 0;
}

.cta-center {
  position: absolute;
  top: 40px;
  left: calc(var(--content-offset) + 582px);
  width: 670px;
}

.cta-location,
.cta-message,
.cta-address p {
  margin: 0;
  color: #000;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 0;
}

.cta-message {
  margin-top: 0;
}

.cta-address {
  position: absolute;
  top: 22px;
  left: calc(var(--content-offset) + 1355px);
  width: 509px;
}

.cta-address p {
  font-weight: 500;
}

.cta-divider {
  position: absolute;
  top: 46px;
  width: 1px;
  height: 127px;
  background: rgba(40, 40, 38, 0.65);
}

.cta-divider--left {
  left: calc(var(--content-offset) + 523px);
}

.cta-divider--right {
  left: calc(var(--content-offset) + 1297px);
}

@media (max-width: 1600px) {
  .nav-links {
    left: auto;
    right: calc(var(--content-offset) + 70px);
  }
}

@media (min-width: 901px) and (max-width: 1600px) {
  .quality {
    overflow: hidden;
  }

  .product--collagen {
    left: clamp(42px, 4vw, 72px);
  }

  .product--yellow {
    left: clamp(150px, 14vw, 205px);
  }

  .product--red {
    left: auto;
    right: clamp(190px, 16vw, 250px);
    width: 164px;
  }

  .product--group {
    left: auto;
    right: 22px;
    width: clamp(260px, 22vw, 320px);
  }

  .quality-copy {
    left: clamp(430px, 31vw, 502px);
    width: clamp(500px, 40vw, 578px);
  }

  .section-line {
    left: 0;
    width: 100%;
  }

  .cta {
    display: grid;
    height: auto;
    min-height: 220px;
    grid-template-columns: minmax(250px, 0.72fr) minmax(350px, 1.12fr) minmax(300px, 0.88fr);
    column-gap: clamp(24px, 3vw, 54px);
    align-items: start;
    padding: 28px clamp(32px, 5vw, 78px);
  }

  .cta-copy,
  .cta-center,
  .cta-address {
    position: static;
    width: auto;
  }

  .cta-divider {
    display: none;
  }

  .cta-copy h2 {
    width: auto;
    max-width: 100%;
    font-size: clamp(32px, 2.6vw, 39px);
    line-height: 1.02;
  }

  .cta-location,
  .cta-message,
  .cta-address p {
    width: auto;
    max-width: 100%;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.32;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .cta {
    grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
    row-gap: 22px;
  }

  .cta-address {
    grid-column: 2;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .quality {
    height: 620px;
  }

  .product--collagen {
    top: 105px;
    left: 56px;
    width: 150px;
  }

  .product--yellow {
    top: 62px;
    left: 214px;
    width: 210px;
  }

  .product--red {
    top: 70px;
    right: 245px;
    width: 150px;
  }

  .product--group {
    top: 72px;
    right: 42px;
    width: 220px;
  }

  .quality-copy {
    top: 342px;
    left: 50%;
    width: min(620px, calc(100vw - 96px));
    transform: translateX(-50%);
  }

  .section-line {
    left: 0;
    width: 100%;
    transform: none;
  }

  .section-line--top {
    top: 0;
  }

  .section-line--bottom {
    bottom: 0;
  }
}

@media (min-width: 901px) {
  .quality {
    height: 1244px;
  }

  .quality-art {
    top: 4px;
    left: calc(var(--content-offset) - 4px);
    width: 1913px;
    height: 1181px;
  }

  .quality-copy {
    top: 331px;
    left: calc(var(--content-offset) + 148px);
    width: 1035px;
    transform: none;
  }

  .section-line {
    left: calc(var(--content-offset) - 4px);
    width: 1912px;
    transform: none;
  }

  .section-line--top {
    top: 70px;
  }

  .section-line--bottom {
    top: 1185px;
    bottom: auto;
  }

  .cta {
    display: block;
    height: 648px;
    min-height: 0;
    padding: 0;
  }
}

@media (min-width: 901px) {
  .hero-media {
    background-image: url("../media/posters/hero-desktop-start-poster.png");
  }
}

@media (max-width: 900px) {
  body {
    --bg: #faf8f4;
  }

  .site-shell {
    width: 100%;
  }

  .hero {
    height: 760px;
  }

  .hero-media {
    height: 760px;
    background-image: url("../media/posters/hero-mobile-poster.jpg");
    background-position: center top;
  }

  .hero-frame {
    top: 0;
    width: 100%;
    height: 760px;
    object-position: center top;
  }

  .hero-frame--desktop,
  .hero-video--desktop {
    display: none;
  }

  .hero-frame--mobile,
  .hero-video--mobile {
    display: block;
  }

  .site-header {
    height: 72px;
  }

  .brand {
    top: 2px;
    left: 8px;
    gap: 2px;
    min-height: 44px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    content: url("../img/figma/mobile-frame-38-225/logo-mark.png");
  }

  .brand-name {
    font-size: 14px;
    line-height: 14px;
  }

  .nav-links {
    top: 16px;
    left: auto;
    right: 102px;
    gap: 16px;
    font-size: 13px;
    line-height: 13px;
  }

  .nav-links a {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: flex-start;
  }

  .nav-links .is-active {
    display: none;
  }

  .nav-links a:first-child::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 28px;
    height: 1px;
    background: rgba(198, 193, 186, 0.8);
    content: "";
    transform: translateX(-50%);
  }

  .social-links {
    top: 9px;
    left: auto;
    right: 17px;
    display: flex;
    gap: 8px;
  }

  .header-phone-link {
    display: none;
  }

  .social-link,
  .social-link img {
    width: 44px;
    height: 44px;
  }

  .social-link img {
    padding: 8px;
  }

  .social-link--instagram img {
    content: url("../img/figma/mobile-frame-38-225/instagram.png");
  }

  .social-link:not(.social-link--instagram) img {
    content: url("../img/figma/mobile-frame-38-225/telegram.png");
  }

  .hero-copy {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-copy h1 {
    position: absolute;
    top: 57px;
    left: 50%;
    width: min(397px, calc(100% - 32px));
    color: #211a15;
    font-family: "Cormorant Unicase", "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 31px;
    text-align: center;
    text-shadow: none;
    transform: translateX(-50%);
  }

  .hero-copy p {
    position: absolute;
    top: 560px;
    left: 22px;
    width: min(260px, calc(100% - 160px));
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", "GFS Didot", Georgia, serif;
    font-size: 22px;
    line-height: 18px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .button--light {
    position: absolute;
    top: 581px;
    right: 10px;
    width: 117px;
    height: 44px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }

  .seo-strip {
    height: 34px;
    background: rgba(245, 242, 239, 0.72);
    box-shadow: none;
    color: #282826;
    font-family: "Kristi", cursive;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.36px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .seo-strip::before,
  .seo-strip::after {
    display: none;
  }

  .seo-marquee {
    align-items: center;
    animation-duration: 34s;
  }

  .seo-marquee__group {
    height: 34px;
    align-items: center;
    gap: 36px;
    padding: 0 18px;
  }

  .seo-marquee__group span {
    font-size: 15px;
    line-height: 16px;
  }

  .quality {
    min-height: 0;
    height: 854px;
    padding-bottom: 0;
  }

  .quality-art {
    top: -3px;
    left: 0;
    width: min(431px, calc(100% + 1px));
    height: 766px;
  }

  .quality-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .quality-copy {
    position: absolute;
    z-index: 3;
    top: 223px;
    left: 28px;
    width: 239px;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
    transform: none;
  }

  .quality-copy h2 {
    width: 239px;
    height: auto;
    margin: 0 0 25px;
    color: #211f1c;
    font-family: "Playfair Display", "GFS Didot", Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 25px;
  }

  .quality-copy p {
    width: 172px;
    margin: 0;
    color: #282826;
    font-family: "Playfair Display", "GFS Didot", Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .section-line {
    position: absolute;
    left: 0;
    width: 100%;
    margin: 0;
  }

  .section-line--top {
    display: none;
  }

  .section-line--bottom {
    top: 763px;
    bottom: auto;
  }

  .gallery-section {
    height: 322px;
    margin-top: 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .gallery-track--desktop {
    display: none;
  }

  .gallery-track {
    margin-left: 0;
  }

  .gallery-track--mobile {
    --gallery-loop-width: 1122px;
    position: absolute;
    top: 0;
    left: -290px;
    display: flex;
    width: max-content;
    height: 322px;
    animation: gallery-marquee 28s linear infinite;
  }

  .gallery-track--mobile img,
  .gallery-track--mobile img:nth-child(n) {
    flex: 0 0 187px;
    width: 187px;
    height: 322px;
  }

  .result-claim {
    position: relative;
    height: 138px;
    margin-top: 0;
    padding: 79px 18px 0;
  }

  .result-claim::before {
    position: absolute;
    top: 41px;
    left: 50%;
    width: calc(100% - 56px);
    height: 1px;
    background: #282826;
    content: "";
    transform: translateX(-50%);
  }

  .claim-kicker,
  .claim-title {
    color: #000;
    text-shadow: none;
    white-space: normal;
  }

  .claim-kicker {
    font-family: "GFS Didot", Georgia, serif;
    font-size: clamp(13px, 3.45vw, 15px);
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .claim-kicker-image {
    width: min(394px, calc(100vw - 36px));
    height: auto;
  }

  .claim-title {
    margin-top: 6px;
    font-family: "Kristi", cursive;
    font-size: 34px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: none;
  }

  .button--claim {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 44px;
    margin-top: 0;
    border-radius: 2px;
    font-family: "Montserrat Alternates", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

  .footer-offer .button--claim {
    position: absolute;
    top: 184px;
    left: var(--footer-mobile-left);
    margin: 0;
    z-index: 4;
    pointer-events: auto;
  }

  .cta {
    --footer-mobile-left: clamp(24px, 9.1vw, 39px);
    min-height: 0;
    height: 306px;
    padding: 0;
    overflow: hidden;
    background: #faf8f4;
  }

  .cta::before {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    width: 901px;
    height: 508px;
    background: url("../img/figma/mobile-frame-38-225/footer-bg.png") top center / 901px 508px no-repeat;
    content: "";
    transform: translateX(-50%);
  }

  .cta-bg {
    display: none;
  }

  .cta-copy,
  .cta-center,
  .cta-address,
  .footer-offer,
  .footer-contacts {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
  }

  .cta-divider {
    display: none;
  }

  .footer-offer h2 {
    position: absolute;
    top: 13px;
    left: var(--footer-mobile-left);
    width: min(321px, calc(100% - 48px));
    margin: 0;
    color: #282826;
    font-size: 23px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  }

  .footer-offer {
    z-index: 2;
    pointer-events: none;
  }

  .footer-offer p {
    position: absolute;
    top: 236px;
    left: var(--footer-mobile-left);
    width: min(333px, calc(100% - 48px));
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 22px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .cta-center {
    margin-top: 20px;
  }

  .footer-contacts {
    z-index: 3;
    margin-top: 0;
    pointer-events: none;
  }

  .footer-contact {
    position: absolute;
    gap: 0;
    width: 44px;
    height: 44px;
    margin-top: 0;
    font-size: 11px;
    line-height: 9px;
    pointer-events: auto;
  }

  .footer-contact:nth-child(1) {
    top: 184px;
    left: calc(var(--footer-mobile-left) + 139px);
  }

  .footer-contact:nth-child(2) {
    top: 184px;
    left: calc(var(--footer-mobile-left) + 199px);
  }

  .footer-contact:nth-child(3) {
    top: 184px;
    left: calc(var(--footer-mobile-left) + 259px);
  }

  .footer-contact:nth-child(4) {
    top: 124px;
    left: var(--footer-mobile-left);
    pointer-events: none;
  }

  .footer-contact img {
    flex-basis: 36px;
    width: 44px;
    height: 44px;
    padding: 4px;
  }

  .footer-contact:nth-child(1) img {
    content: url("../img/figma/mobile-frame-38-225/instagram.png");
  }

  .footer-contact:nth-child(2) img {
    content: url("../img/figma/mobile-frame-38-225/telegram.png");
  }

  .footer-contact:nth-child(3) img {
    content: url("../img/figma/mobile-frame-38-225/phone.png");
  }

  .footer-contact:nth-child(4) img {
    display: none;
  }

  .footer-contact span,
  .footer-contact a {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }

  .footer-contact p {
    width: min(231px, calc(100vw - 48px));
    margin: 0;
    color: #282826;
    font-size: 11px;
    line-height: 14px;
    text-shadow: none;
    pointer-events: none;
  }

  .cta-location,
  .cta-message,
  .cta-address p {
    width: auto;
    max-width: 100%;
    color: var(--text);
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
  }

  .cta-message {
    margin-top: 7px;
  }

  .cta-address {
    margin-top: 24px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .brand {
    left: 24px;
  }

  .nav-links {
    right: 128px;
  }

  .social-links {
    right: 24px;
  }

  .hero-copy {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-copy h1 {
    top: 72px;
    width: 560px;
    font-size: 32px;
    line-height: 36px;
  }

  .hero-copy p {
    left: 72px;
    bottom: 92px;
    width: 340px;
    font-size: 18px;
    line-height: 21px;
  }

  .button--light {
    right: 72px;
    bottom: 96px;
    width: 150px;
    height: 36px;
    font-size: 12px;
  }

  .gallery-track--mobile {
    left: -160px;
    margin-left: 0;
  }

  .quality {
    height: 854px;
  }

  .section-line {
    left: 56px;
    width: calc(100% - 112px);
  }

  .section-line--bottom {
    bottom: 0;
  }

  .cta {
    height: auto;
    min-height: 0;
    height: 306px;
  }
}

@media (max-width: 400px) {
  .button--light {
    top: 654px;
  }
}

/* Inner SEO pages */
.inner-page {
  background: var(--bg);
}

.inner-page .site-shell {
  min-height: 100vh;
  overflow: visible;
}

.inner-page .page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 92px;
  border-bottom: 1px solid rgba(40, 40, 38, 0.16);
  background: rgba(243, 238, 231, 0.84);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.inner-page .page-header .brand {
  top: 15px;
  left: clamp(24px, 4.2vw, 74px);
}

.inner-page .page-header .brand-mark {
  width: 58px;
  height: 58px;
}

.inner-page .page-header .brand-name {
  font-size: 27px;
  line-height: 27px;
}

.inner-page .page-header .nav-links {
  top: 39px;
  right: clamp(190px, 15vw, 300px);
  left: auto;
  gap: 36px;
  font-size: 20px;
  line-height: 13px;
}

.inner-page .page-header .social-links {
  top: 24px;
  right: clamp(24px, 4vw, 72px);
  left: auto;
  gap: 12px;
}

.inner-page .page-header .header-phone-link {
  top: 24px;
  right: clamp(110px, 10vw, 160px);
  left: auto;
  width: 44px;
  height: 44px;
}

.inner-page .page-header .social-link,
.inner-page .page-header .social-link img {
  width: 44px;
  height: 44px;
}

.inner-page .button--light,
.inner-page .button--claim {
  position: static;
  margin: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1fr);
  gap: clamp(46px, 6vw, 112px);
  align-items: center;
  min-height: 680px;
  padding: clamp(58px, 7vw, 118px) clamp(32px, 5.8vw, 112px);
  border-bottom: 1px solid rgba(40, 40, 38, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(243, 238, 231, 0)),
    var(--bg);
}

.page-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  border: 6px solid #fff;
  box-shadow: 0 24px 44px rgba(40, 40, 38, 0.18);
}

.page-hero__media img,
.service-card__image img,
.service-detail-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__copy {
  max-width: 900px;
}

.page-hero__copy h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(52px, 5.3vw, 94px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 1px;
}

.page-hero__copy p {
  max-width: 690px;
  margin: 34px 0 36px;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.32;
}

.service-intro {
  padding: 74px clamp(32px, 8vw, 154px) 28px;
}

.service-intro p {
  max-width: 1290px;
  margin: 0 auto;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(27px, 2.7vw, 46px);
  line-height: 1.22;
  text-align: center;
}

.services-grid-section {
  padding: 54px clamp(24px, 5vw, 96px) 110px;
}

.services-grid-section h2,
.related-services h2 {
  margin: 0 0 42px;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(42px, 4.3vw, 74px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.services-grid {
  display: grid;
  max-width: 1680px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 38px);
}

.service-card {
  display: flex;
  min-height: 790px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(40, 40, 38, 0.62);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 36px rgba(40, 40, 38, 0.12);
}

.service-card__image {
  display: block;
  height: 318px;
  overflow: hidden;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 33px 32px 34px;
}

.service-card h3 {
  min-height: 102px;
  margin: 0;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(32px, 2.6vw, 48px);
  font-weight: 600;
  line-height: 1.08;
}

.service-card__subtitle {
  min-height: 58px;
  margin: 15px 0 22px;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 23px;
  line-height: 1.12;
}

.service-card__body > p:not(.service-card__subtitle) {
  margin: 0;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: 24px;
  line-height: 1.34;
}

.service-card__facts {
  display: grid;
  gap: 14px;
  margin: auto 0 28px;
  padding-top: 30px;
  font-family: "Montserrat Alternates", Arial, sans-serif;
}

.service-card__facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(40, 40, 38, 0.35);
  padding-top: 14px;
}

.service-card__facts dt,
.service-card__facts dd {
  margin: 0;
}

.service-card__facts dt {
  color: rgba(40, 40, 38, 0.72);
  font-size: 15px;
  text-transform: uppercase;
}

.service-card__facts dd {
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.service-card .button--claim {
  width: 174px;
  height: 46px;
  font-size: 15px;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: center;
  padding: clamp(56px, 6vw, 96px) clamp(32px, 6vw, 112px) 78px;
}

.service-detail-hero__image {
  overflow: hidden;
  aspect-ratio: 1.12;
  border: 6px solid #fff;
  box-shadow: 0 24px 44px rgba(40, 40, 38, 0.18);
}

.service-detail-hero__copy h1 {
  max-width: 900px;
  margin: 18px 0 18px;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(52px, 5vw, 88px);
  font-weight: 500;
  line-height: 0.98;
}

.service-back-link {
  display: inline-block;
  border-bottom: 1px solid rgba(40, 40, 38, 0.48);
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.service-subtitle {
  max-width: 710px;
  margin: 0 0 30px;
  font-family: "GFS Didot", Georgia, serif;
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1.08;
}

.service-detail-hero__copy > p:not(.service-subtitle) {
  max-width: 760px;
  margin: 0 0 34px;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.3;
}

.service-detail-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 90px);
  padding: 64px clamp(32px, 6vw, 112px) 88px;
  border-top: 1px solid rgba(40, 40, 38, 0.72);
  border-bottom: 1px solid rgba(40, 40, 38, 0.72);
  background: rgba(255, 255, 255, 0.2);
}

.service-price-panel,
.service-copy-panel {
  background: rgba(243, 238, 231, 0.58);
}

.service-price-panel {
  border-right: 1px solid rgba(40, 40, 38, 0.42);
  padding-right: clamp(28px, 4vw, 68px);
}

.service-price-panel h2,
.service-copy-panel h2 {
  margin: 0 0 28px;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: clamp(30px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.service-price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "GFS Didot", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.1;
}

.service-price-table th,
.service-price-table td {
  border-bottom: 1px solid rgba(40, 40, 38, 0.22);
  padding: 15px 0;
  font-weight: 400;
  text-align: left;
}

.service-price-table td {
  text-align: right;
}

.service-price-panel p,
.service-copy-panel p {
  margin: 28px 0 0;
  font-family: "Playfair Display", "GFS Didot", Georgia, serif;
  font-size: clamp(23px, 1.9vw, 32px);
  line-height: 1.32;
}

.service-copy-panel h2:not(:first-child) {
  margin-top: 48px;
}

.related-services {
  padding: 70px clamp(24px, 6vw, 112px) 90px;
}

.related-services > div {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.related-services a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40, 40, 38, 0.72);
  padding: 12px 22px;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

@media (hover: hover) {
  .service-card__image:hover img {
    transform: scale(1.025);
  }

  .related-services a:hover {
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
  }
}

.service-card__image img {
  transition: transform 260ms ease;
}

@media (max-width: 1180px) {
  .inner-page .page-header .nav-links {
    right: 162px;
    gap: 22px;
    font-size: 18px;
  }

  .page-hero,
  .service-detail-hero,
  .service-detail-content {
    grid-template-columns: 1fr;
  }

  .page-hero__media,
  .service-detail-hero__image {
    max-height: 560px;
    aspect-ratio: 1.35;
  }

  .service-price-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(40, 40, 38, 0.42);
    padding-right: 0;
    padding-bottom: 46px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3,
  .service-card__subtitle {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .inner-page .page-header {
    height: 66px;
  }

  .inner-page .page-header .brand {
    top: 4px;
    left: 8px;
  }

  .inner-page .page-header .brand-mark {
    width: 38px;
    height: 38px;
  }

  .inner-page .page-header .brand-name {
    font-size: 13px;
    line-height: 13px;
  }

  .inner-page .page-header .nav-links {
    top: 17px;
    right: 82px;
    gap: 13px;
    font-size: 12px;
    line-height: 12px;
  }

  .inner-page .page-header .nav-links .is-active {
    display: inline;
  }

  .inner-page .page-header .nav-links a:nth-child(3) {
    display: none;
  }

  .inner-page .page-header .nav-links .is-active::after {
    bottom: -5px;
    width: 30px;
  }

  .inner-page .page-header .nav-links a:first-child::after {
    display: none;
  }

  .inner-page .page-header .social-links {
    top: 11px;
    right: 14px;
    gap: 7px;
  }

  .inner-page .page-header .social-link,
  .inner-page .page-header .social-link img {
    width: 26px;
    height: 26px;
  }

  .inner-page .page-header .header-phone-link {
    display: none;
  }

  .inner-page .button--light {
    width: 138px;
    height: 38px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .page-hero,
  .service-detail-hero {
    gap: 28px;
    min-height: 0;
    padding: 34px 18px 46px;
  }

  .page-hero__media,
  .service-detail-hero__image {
    max-height: none;
    aspect-ratio: 1.12;
    border-width: 4px;
  }

  .page-hero__copy h1,
  .service-detail-hero__copy h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 0.98;
  }

  .page-hero__copy p,
  .service-detail-hero__copy > p:not(.service-subtitle),
  .service-subtitle {
    font-size: 22px;
    line-height: 1.18;
  }

  .service-intro {
    padding: 46px 18px 16px;
  }

  .service-intro p {
    font-size: 25px;
    line-height: 1.18;
    text-align: left;
  }

  .services-grid-section {
    padding: 42px 12px 58px;
  }

  .services-grid-section h2,
  .related-services h2 {
    margin-bottom: 28px;
    font-size: 39px;
  }

  .service-card {
    box-shadow: 0 10px 22px rgba(40, 40, 38, 0.1);
  }

  .service-card__image {
    height: 238px;
  }

  .service-card__body {
    padding: 24px 20px 26px;
  }

  .service-card h3 {
    font-size: 27px;
  }

  .service-card__subtitle,
  .service-card__body > p:not(.service-card__subtitle) {
    font-size: 20px;
  }

  .service-card .button--claim {
    width: 142px;
    height: 40px;
    font-size: 13px;
  }

  .service-detail-content {
    gap: 34px;
    padding: 42px 18px 54px;
  }

  .service-price-panel h2,
  .service-copy-panel h2 {
    font-size: 29px;
  }

  .service-price-table {
    font-size: 27px;
  }

  .service-price-panel p,
  .service-copy-panel p {
    font-size: 22px;
  }

  .related-services {
    padding: 42px 18px 58px;
  }

  .related-services > div {
    display: grid;
    gap: 12px;
  }
}

.figma-services-page {
  margin: 0;
  min-width: 1905px;
  background: #f3eee7;
  color: #282826;
}

.figma-services-page * {
  box-sizing: border-box;
}

.figma-services-page a {
  color: inherit;
  text-decoration: none;
}

.figma-services-page img {
  display: block;
  max-width: none;
}

.figma-services {
  position: relative;
  width: 1905px;
  min-height: 3297.25px;
  margin: 0 auto;
  overflow: hidden;
  background: #f3eee7;
  color: #282826;
}

.figma-services__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 1905px;
  height: 92px;
  overflow: hidden;
  background: rgba(243, 238, 231, 0.84);
  border-bottom: 1px solid rgba(40, 40, 38, 0.16);
}

.figma-services__brand {
  position: absolute;
  top: 15px;
  left: 74px;
  width: 262px;
  height: 58px;
}

.figma-services__brand img {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.figma-services__brand span {
  position: absolute;
  top: 15.5px;
  left: 64px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.figma-services__nav {
  position: absolute;
  top: 39px;
  left: 1365.42px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  width: 277px;
  height: 13px;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 20px;
  line-height: 13px;
}

.figma-services__nav a {
  position: relative;
  display: block;
  height: 16px;
  white-space: nowrap;
}

.figma-services__nav .is-active::after {
  position: absolute;
  left: 10.75px;
  top: 19px;
  width: 38px;
  height: 1px;
  content: "";
  background: rgba(198, 193, 186, 0.8);
}

.figma-services__icons {
  position: absolute;
  top: 24px;
  left: 1701px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 170px;
  height: 50px;
}

.figma-services__icons a,
.figma-services__icons img {
  width: 50px;
  height: 50px;
}

.figma-services__hero {
  position: absolute;
  top: 92px;
  left: 0;
  width: 1905px;
  height: 1076.125px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.7), rgba(243, 238, 231, 0) 45%), #f3eee7;
  border-bottom: 1px solid rgba(40, 40, 38, 0.72);
}

.figma-services__hero-media {
  position: absolute;
  top: 118px;
  left: 111.36px;
  width: 688.094px;
  height: 839.125px;
  overflow: hidden;
  background: #ffffff;
  border: 6px solid #ffffff;
  box-shadow: 0 24px 44px rgba(40, 40, 38, 0.18);
}

.figma-services__hero-media img {
  position: absolute;
  top: -170px;
  left: -15.5px;
  width: 706.34px;
  height: 1255px;
  object-fit: fill;
}

.figma-services__hero-copy {
  position: absolute;
  top: 210px;
  left: 911px;
  width: 883px;
  height: 494px;
}

.figma-services__hero-copy h1 {
  position: absolute;
  top: 24.3px;
  left: -0.45px;
  width: 860px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 61px;
  font-weight: 500;
  line-height: 70.2px;
  letter-spacing: 1px;
}

.figma-services__hero-copy p {
  position: absolute;
  top: 220.66px;
  left: 0;
  width: 690px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 44.88px;
}

.figma-services__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #282826;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  background: #ffffff;
  border: 1px solid rgba(40, 40, 38, 0.42);
  border-radius: 0;
  box-shadow: 0 4px 4px rgba(40, 40, 38, 0.24);
}

.figma-services__button:focus-visible {
  outline: 2px solid rgba(40, 40, 38, 0.72);
  outline-offset: 4px;
}

.figma-services__button--hero {
  position: absolute;
  top: 404.66px;
  left: -0.45px;
  width: 176px;
  height: 44px;
  font-size: 16px;
  line-height: 13px;
}

.figma-services__intro {
  position: absolute;
  top: 1168.13px;
  left: 0;
  width: 1905px;
  height: 327px;
  overflow: hidden;
  background: #f3eee7;
}

.figma-services__intro p {
  position: absolute;
  top: 74px;
  left: 307.5px;
  width: 1290px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 56.12px;
  text-align: center;
}

.figma-services__list {
  position: absolute;
  top: 1495.13px;
  left: 0;
  width: 1905px;
  height: 1154.125px;
  overflow: hidden;
  background: #f3eee7;
}

.figma-services__list h2 {
  position: absolute;
  top: 54px;
  left: 96px;
  width: 1713px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 74px;
  font-weight: 500;
  line-height: 60px;
  text-align: center;
}

.figma-services__cards {
  position: absolute;
  top: 170px;
  left: 112.5px;
  width: 1680px;
  height: 874.125px;
}

.figma-service-card {
  position: absolute;
  top: 0;
  width: 534.66px;
  height: 874.125px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(40, 40, 38, 0.62);
  box-shadow: 0 18px 36px rgba(40, 40, 38, 0.12);
}

.figma-service-card:nth-child(1) {
  left: 0;
}

.figma-service-card:nth-child(2) {
  left: 572.66px;
}

.figma-service-card:nth-child(3) {
  left: 1145.33px;
}

.figma-service-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 532.66px;
  height: 318px;
  overflow: hidden;
}

.figma-service-card__image img {
  width: 532.66px;
  height: 318px;
  object-fit: cover;
}

.figma-service-card__content {
  position: absolute;
  top: 318px;
  left: 0;
  width: 532.66px;
  height: 554.125px;
}

.figma-service-card__content h3 {
  position: absolute;
  top: 33px;
  left: 32px;
  width: 482px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 37px;
  font-weight: 600;
  line-height: 51.84px;
}

.figma-service-card__subtitle {
  position: absolute;
  top: 152px;
  left: 32px;
  width: 469px;
  margin: 0;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 25.76px;
}

.figma-service-card__subtitle--single {
  width: 470px;
}

.figma-service-card__text {
  position: absolute;
  top: 232px;
  left: 32px;
  width: 469px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 32.16px;
}

.figma-service-card__facts {
  position: absolute;
  top: 329px;
  left: 32px;
  width: 468.66px;
  height: 116px;
  margin: 0;
  font-family: "Montserrat Alternates", Arial, sans-serif;
}

.figma-service-card__facts--lower {
  top: 328.13px;
}

.figma-service-card__facts div {
  position: absolute;
  left: 0;
  width: 468.66px;
  height: 37px;
  border-top: 1px solid rgba(40, 40, 38, 0.35);
}

.figma-service-card__facts div:nth-child(1) {
  top: 30px;
}

.figma-service-card__facts div:nth-child(2) {
  top: 81px;
}

.figma-service-card__facts dt,
.figma-service-card__facts dd {
  position: absolute;
  top: 13px;
  margin: 0;
}

.figma-service-card__facts dt {
  left: 0;
  font-size: 15px;
  font-weight: 400;
  color: rgba(40, 40, 38, 0.72);
  line-height: 15px;
  text-transform: uppercase;
}

.figma-service-card__facts dd {
  right: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-align: right;
}

.figma-services__button--details {
  position: absolute;
  top: 475px;
  left: 32px;
  width: 174px;
  height: 46px;
  font-size: 15px;
  line-height: 13px;
}

.figma-service-card:nth-child(2) .figma-services__button--details,
.figma-service-card:nth-child(3) .figma-services__button--details {
  top: 474.13px;
}

.figma-services__footer {
  position: absolute;
  top: 2649.25px;
  left: 0;
  width: 1905px;
  height: 648px;
  overflow: hidden;
  background: #f3eee7;
}

.figma-services__footer-bg {
  position: absolute;
  top: 0;
  left: -3px;
  width: 1909px;
  height: 1075px;
  object-fit: fill;
}

.figma-services__footer-offer {
  position: absolute;
  top: 67px;
  left: 134.5px;
  width: 789px;
  height: 435px;
}

.figma-services__footer-offer h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 789px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 63px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.figma-services__button--footer {
  position: absolute;
  top: 232px;
  left: 0;
  width: 224px;
  height: 56px;
  font-size: 20px;
  line-height: 16px;
}

.figma-services__footer-offer p {
  position: absolute;
  top: 335px;
  left: 0;
  width: 557px;
  margin: 0;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 22px;
}

.figma-services__footer-contacts {
  position: absolute;
  top: 96px;
  left: 1450.5px;
  width: 321px;
  height: 350px;
}

.figma-services__footer-contact {
  position: absolute;
  left: 0;
  display: block;
  width: 321px;
  min-height: 50px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.figma-services__footer-contact:nth-child(1) {
  top: 0;
}

.figma-services__footer-contact:nth-child(2) {
  top: 81px;
}

.figma-services__footer-contact:nth-child(3) {
  top: 162px;
}

.figma-services__footer-contact:nth-child(4) {
  top: 241px;
}

.figma-services__footer-contact img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.figma-services__footer-contact span {
  position: absolute;
  top: 11px;
  left: 60px;
  width: 261px;
}

.figma-services__footer-contact--address span {
  top: 0;
  line-height: 28px;
}

.home-page .nav-links {
  left: calc(var(--content-offset) + 1518px);
  gap: 42px;
}

.figma-detail-page {
  margin: 0;
  min-width: 1905px;
  background: #ffffff;
  color: #282826;
}

.figma-detail-page * {
  box-sizing: border-box;
}

.figma-detail-page a {
  color: inherit;
  text-decoration: none;
}

.figma-detail-page img {
  display: block;
  max-width: none;
}

.figma-detail {
  position: relative;
  width: 1905px;
  min-height: 2623px;
  margin: 0 auto;
  overflow: hidden;
  background: #f3eee7;
  color: #282826;
}

.figma-detail-page--hot .figma-detail {
  min-height: 2668px;
}

.figma-detail__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 1905px;
  height: 92px;
  overflow: hidden;
  background: rgba(243, 238, 231, 0.84);
  border-bottom: 1px solid rgba(40, 40, 38, 0.16);
}

.figma-detail__brand {
  position: absolute;
  top: 15px;
  left: 74px;
  width: 262px;
  height: 58px;
}

.figma-detail__brand img {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.figma-detail__brand span {
  position: absolute;
  top: 15.5px;
  left: 64px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 27px;
  white-space: nowrap;
}

.figma-detail__nav {
  position: absolute;
  top: 39px;
  left: 1365.42px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  width: 277px;
  height: 13px;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 20px;
  line-height: 13px;
}

.figma-detail__nav a {
  position: relative;
  display: block;
  height: 16px;
  white-space: nowrap;
}

.figma-detail__nav .is-active::after {
  position: absolute;
  left: 10.75px;
  top: 19px;
  width: 38px;
  height: 1px;
  content: "";
  background: rgba(198, 193, 186, 0.8);
}

.figma-detail__icons {
  position: absolute;
  top: 24px;
  left: 1701px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 170px;
  height: 50px;
}

.figma-detail__icons a,
.figma-detail__icons img {
  width: 50px;
  height: 50px;
}

.figma-detail__hero {
  position: absolute;
  top: 92px;
  left: 0;
  width: 1905px;
  height: 864.172px;
  overflow: hidden;
  background: #f3eee7;
}

.figma-detail__hero-media {
  position: absolute;
  top: 115.58px;
  left: 112px;
  width: 729.141px;
  height: 651.016px;
  overflow: hidden;
  background: transparent;
  border: 6px solid #ffffff;
  box-shadow: 0 24px 44px rgba(40, 40, 38, 0.18);
}

.figma-detail__hero-media img {
  width: 717.141px;
  height: 639.016px;
  object-fit: cover;
}

.figma-detail__hero-copy {
  position: absolute;
  top: 96px;
  left: 945.14px;
  width: 847.844px;
  height: 690.172px;
}

.figma-detail__crumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 57.969px;
  height: 20px;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  border-bottom: 1px solid rgba(40, 40, 38, 0.48);
}

.figma-detail__hero-copy h1 {
  position: absolute;
  top: 65px;
  left: -0.14px;
  width: 697px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 61px;
  font-weight: 500;
  line-height: 72.2px;
}

.figma-detail__hero-copy p {
  position: absolute;
  top: 309px;
  left: -0.14px;
  width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 44.2px;
}

.figma-detail__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #232322;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.74);
  border-radius: 2px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.figma-detail__button:focus-visible {
  outline: 2px solid rgba(40, 40, 38, 0.72);
  outline-offset: 4px;
}

.figma-detail__button--hero {
  position: absolute;
  top: 531px;
  left: -0.14px;
  width: 176px;
  height: 44px;
  font-size: 16px;
  line-height: 19px;
}

.figma-detail-page--total .figma-detail__hero-copy h1 {
  top: 74px;
  width: 848px;
  line-height: 72px;
}

.figma-detail-page--total .figma-detail__hero-subtitle {
  position: absolute;
  top: 215px;
  left: -0.14px;
  width: 828px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 45.36px;
}

.figma-detail-page--total .figma-detail__hero-text {
  position: absolute;
  top: 365px;
  left: -0.14px;
  width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 44.2px;
}

.figma-detail-page--total .figma-detail__button--hero {
  top: 551px;
}

.figma-detail-page--hot .figma-detail__hero {
  height: 825.016px;
}

.figma-detail-page--hot .figma-detail__hero-media {
  top: 115px;
}

.figma-detail-page--hot .figma-detail__hero-copy {
  top: 96.09px;
  height: 644.813px;
}

.figma-detail-page--hot .figma-detail__hero-copy h1 {
  top: 73.91px;
  width: 848px;
  line-height: 86.24px;
}

.figma-detail-page--hot .figma-detail__hero-subtitle {
  position: absolute;
  top: 235.91px;
  left: 0;
  width: 415px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 45.36px;
  white-space: nowrap;
}

.figma-detail__hero-subtitle-mobile {
  display: none;
}

.figma-detail-page--hot .figma-detail__hero-text {
  position: absolute;
  top: 325.91px;
  left: -0.14px;
  width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 44.2px;
}

.figma-detail-page--hot .figma-detail__button--hero {
  top: 531px;
  left: 0;
}

.figma-detail__content {
  position: absolute;
  top: 956.17px;
  left: 0;
  width: 1905px;
  height: 692.828px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(40, 40, 38, 0.72);
  border-bottom: 1px solid rgba(40, 40, 38, 0.72);
}

.figma-detail-page--hot .figma-detail__content {
  top: 956.02px;
}

.figma-detail__price {
  position: absolute;
  top: 64px;
  left: 112px;
  width: 632.563px;
  height: 538.828px;
  background: rgba(243, 238, 231, 0.58);
  border-right: 1px solid rgba(40, 40, 38, 0.42);
}

.figma-detail__price h2,
.figma-detail__copy h2 {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52.8px;
  white-space: nowrap;
}

.figma-detail__price-table {
  position: absolute;
  top: 81px;
  left: 0;
  width: 563.563px;
  height: 317.563px;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 48.4px;
}

.figma-detail__price-table div {
  position: absolute;
  left: 0;
  width: 563.563px;
  height: 79.391px;
  border-bottom: 1px solid rgba(40, 40, 38, 0.22);
}

.figma-detail__price-table div:nth-child(1) {
  top: 0;
  height: 78.891px;
}

.figma-detail__price-table div:nth-child(2) {
  top: 78.89px;
}

.figma-detail__price-table div:nth-child(3) {
  top: 158.28px;
}

.figma-detail__price-table div:nth-child(4) {
  top: 237.67px;
}

.figma-detail__price-table span,
.figma-detail__price-table strong {
  position: absolute;
  top: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.figma-detail__price-table div:not(:first-child) span,
.figma-detail__price-table div:not(:first-child) strong {
  top: 15.5px;
}

.figma-detail__price-table span {
  left: 0;
  font-size: 31px;
}

.figma-detail__price-table strong {
  right: 0;
  font-size: 34px;
  text-align: right;
}

.figma-detail__price-note,
.figma-detail__price-time {
  position: absolute;
  left: 0;
  width: 563.563px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 42.24px;
  white-space: nowrap;
}

.figma-detail__price-note {
  top: 426.56px;
}

.figma-detail__price-time {
  top: 497.56px;
}

.figma-detail__copy {
  position: absolute;
  top: 64px;
  left: 834.56px;
  width: 958.438px;
  height: 538.828px;
  background: rgba(243, 238, 231, 0.58);
}

.figma-detail__copy p {
  position: absolute;
  left: 0;
  width: 959px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 42.24px;
}

.figma-detail__copy-first {
  top: 81px;
}

.figma-detail__copy-second {
  top: 194px;
}

.figma-detail__copy-subtitle {
  top: 327px !important;
}

.figma-detail__copy-third {
  top: 408px;
}

.figma-detail-page--total .figma-detail__copy-first {
  top: 81px;
}

.figma-detail-page--total .figma-detail__copy-subtitle {
  top: 256px !important;
}

.figma-detail-page--total .figma-detail__copy-second {
  top: 337px;
}

.figma-detail-page--total .figma-detail__copy-third {
  top: 492px;
  white-space: nowrap;
}

.figma-detail-page--hot .figma-detail__copy-first {
  top: 81px;
}

.figma-detail-page--hot .figma-detail__copy-subtitle {
  top: 256px !important;
}

.figma-detail-page--hot .figma-detail__copy-second {
  top: 337px;
}

.figma-detail-page--hot .figma-detail__copy-third {
  top: 492px;
  white-space: nowrap;
}

.figma-detail__related {
  position: absolute;
  top: 1649px;
  left: 0;
  width: 1905px;
  height: 326px;
  overflow: hidden;
  background: #f3eee7;
}

.figma-detail__related h2 {
  position: absolute;
  top: 70px;
  left: 112px;
  width: 1681px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 74px;
  font-weight: 500;
  line-height: 74px;
  text-align: center;
}

.figma-detail__related div {
  position: absolute;
  top: 186px;
  left: 682.55px;
  width: 540.5px;
  height: 50px;
}

.figma-detail__related a {
  position: absolute;
  top: 0;
  height: 50px;
  font-family: "Montserrat Alternates", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid rgba(40, 40, 38, 0.72);
}

.figma-detail__related a:nth-child(1) {
  left: 0;
  width: 276px;
  padding: 15px 0 0 22px;
}

.figma-detail__related a:nth-child(2) {
  left: 293.51px;
  width: 247px;
  padding: 15px 0 0 22px;
}

.figma-detail-page--total .figma-detail__related div {
  left: 685.67px;
}

.figma-detail-page--total .figma-detail__related a:nth-child(1) {
  width: 270px;
}

.figma-detail-page--total .figma-detail__related a:nth-child(2) {
  left: 287.27px;
}

.figma-detail-page--hot .figma-detail__related {
  top: 1648.84px;
}

.figma-detail-page--hot .figma-detail__related div {
  left: 671.11px;
}

.figma-detail-page--hot .figma-detail__related a:nth-child(1) {
  width: 270px;
}

.figma-detail-page--hot .figma-detail__related a:nth-child(2) {
  left: 287.27px;
  width: 276px;
}

.figma-detail__footer {
  position: absolute;
  top: 1975px;
  left: 0;
  width: 1905px;
  height: 648px;
  overflow: hidden;
  background: #f3eee7;
}

.figma-detail-page--hot .figma-detail__footer {
  top: 1975px;
  height: 693px;
}

.figma-detail__footer-bg {
  position: absolute;
  top: 0;
  left: -4px;
  width: 1909px;
  height: 1075px;
  object-fit: fill;
}

.figma-detail-page--total .figma-detail__footer-bg {
  left: 0;
}

.figma-detail-page--hot .figma-detail__footer-bg {
  top: 42.16px;
  left: -4px;
}

.figma-detail__footer-offer {
  position: absolute;
  top: 67px;
  left: 134.5px;
  width: 789px;
  height: 435px;
}

.figma-detail__footer-offer h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 789px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 63px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.figma-detail-page--hot .figma-detail__footer-offer h2 {
  top: 39px;
}

.figma-detail__button--footer {
  position: absolute;
  top: 232px;
  left: 0;
  width: 224px;
  height: 56px;
  font-size: 19px;
  line-height: 19px;
}

.figma-detail-page--hot .figma-detail__button--footer {
  top: 271px;
}

.figma-detail__footer-offer p {
  position: absolute;
  top: 335px;
  left: 0;
  width: 557px;
  margin: 0;
  font-family: "GFS Didot", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 22px;
}

.figma-detail-page--hot .figma-detail__footer-offer p {
  top: 374px;
}

.figma-detail__footer-contacts {
  position: absolute;
  top: 96px;
  left: 1450.5px;
  width: 394px;
  height: 350px;
}

.figma-detail__footer-contact {
  position: absolute;
  left: 0;
  display: block;
  width: 394px;
  min-height: 50px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #000000;
}

.figma-detail__footer-contact:nth-child(1) {
  top: 0;
}

.figma-detail__footer-contact:nth-child(2) {
  top: 81px;
}

.figma-detail__footer-contact:nth-child(3) {
  top: 162px;
}

.figma-detail__footer-contact:nth-child(4) {
  top: 241px;
}

.figma-detail-page--hot .figma-detail__footer-contact:nth-child(1) {
  top: 39px;
}

.figma-detail-page--hot .figma-detail__footer-contact:nth-child(2) {
  top: 120px;
}

.figma-detail-page--hot .figma-detail__footer-contact:nth-child(3) {
  top: 201px;
}

.figma-detail-page--hot .figma-detail__footer-contact:nth-child(4) {
  top: 280px;
}

.figma-detail__footer-contact img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.figma-detail__footer-contact span {
  position: absolute;
  top: 10px;
  left: 60px;
  width: 334px;
}

.figma-detail__footer-contact--address span {
  top: -3px;
  line-height: 28px;
}

@media (max-width: 1600px) {
  .home-page .nav-links {
    left: auto;
    right: calc(var(--content-offset) + 70px);
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .home-page .nav-links {
    right: 92px;
    gap: 13px;
  }
}

@media (min-width: 901px) and (max-width: 1904px) {
  .figma-services-page,
  .figma-detail-page {
    min-width: 0;
    overflow-x: hidden;
  }

  .figma-services,
  .figma-detail {
    max-width: none;
    margin: 0;
    zoom: calc(100vw / 1905px);
  }
}

@media (max-width: 900px) {
  .figma-services-page,
  .figma-detail-page {
    min-width: 0;
    overflow-x: hidden;
  }

  .figma-services,
  .figma-detail {
    width: 430px;
    max-width: 100%;
    margin: 0 auto;
    background: #faf8f4;
    overflow: hidden;
  }

  .figma-services {
    min-height: 3707.313px;
  }

  .figma-detail,
  .figma-detail-page--hot .figma-detail {
    min-height: 2703.391px;
  }

  .figma-detail-page--hot .figma-detail {
    min-height: 2771.391px;
  }

  .figma-detail-page--total .figma-detail {
    min-height: 2758.375px;
  }

  .figma-services__header,
  .figma-detail__header {
    width: 430px;
    max-width: 100%;
    height: 66px;
  }

  .figma-services__brand,
  .figma-detail__brand {
    top: 4px;
    left: 8px;
    width: 136px;
    height: 38px;
  }

  .figma-services__brand img,
  .figma-detail__brand img {
    width: 38px;
    height: 38px;
  }

  .figma-services__brand img {
    content: url("../img/figma/services-mobile-frame-136-602/logo-mark.png");
  }

  .figma-detail__brand img {
    content: url("../img/figma/cold-mobile-frame-136-458/logo-mark.png");
  }

  .figma-detail-page--total .figma-detail__brand img {
    content: url("../img/figma/total-mobile-frame-136-314/logo-mark.png");
  }

  .figma-detail-page--hot .figma-detail__brand img {
    content: url("../img/figma/hot-mobile-frame-136-170/logo-mark.png");
  }

  .figma-services__brand span,
  .figma-detail__brand span {
    top: 12.5px;
    left: 40px;
    font-size: 13px;
    line-height: 13px;
  }

  .figma-services__nav,
  .figma-detail__nav {
    top: 18px;
    left: 238.53px;
    gap: 13px;
    width: 118px;
    height: 44px;
    font-size: 13px;
    line-height: 12px;
  }

  .figma-services__nav a,
  .figma-detail__nav a {
    display: flex;
    min-width: 44px;
    height: 44px;
    align-items: flex-start;
  }

  .figma-services__nav a:nth-child(3),
  .figma-detail__nav a:nth-child(3),
  .figma-services__nav .is-active::after,
  .figma-detail__nav .is-active::after {
    display: none;
  }

  .figma-services__icons,
  .figma-detail__icons {
    top: 11px;
    left: 351px;
    display: block;
    width: 65px;
    height: 28px;
  }

  .figma-services__icons a,
  .figma-services__icons img,
  .figma-detail__icons a,
  .figma-detail__icons img {
    position: absolute;
    width: 28px;
    height: 28px;
  }

  .figma-services__icons a:nth-child(1),
  .figma-detail__icons a:nth-child(1) {
    display: none;
  }

  .figma-services__icons a:nth-child(2),
  .figma-detail__icons a:nth-child(2) {
    left: 0;
    top: 0;
  }

  .figma-services__icons a:nth-child(3),
  .figma-detail__icons a:nth-child(3) {
    left: 41px;
    top: 0;
  }

  .figma-services__icons a:nth-child(2) img {
    content: url("../img/figma/services-mobile-frame-136-602/instagram.png");
  }

  .figma-services__icons a:nth-child(3) img {
    content: url("../img/figma/services-mobile-frame-136-602/telegram.png");
  }

  .figma-detail__icons a:nth-child(2) img {
    content: url("../img/figma/cold-mobile-frame-136-458/instagram.png");
  }

  .figma-detail__icons a:nth-child(3) img {
    content: url("../img/figma/cold-mobile-frame-136-458/telegram.png");
  }

  .figma-detail-page--total .figma-detail__icons a:nth-child(2) img {
    content: url("../img/figma/total-mobile-frame-136-314/instagram.png");
  }

  .figma-detail-page--total .figma-detail__icons a:nth-child(3) img {
    content: url("../img/figma/total-mobile-frame-136-314/telegram.png");
  }

  .figma-detail-page--hot .figma-detail__icons a:nth-child(2) img {
    content: url("../img/figma/hot-mobile-frame-136-170/instagram.png");
  }

  .figma-detail-page--hot .figma-detail__icons a:nth-child(3) img {
    content: url("../img/figma/hot-mobile-frame-136-170/telegram.png");
  }

  .figma-services__button,
  .figma-detail__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.74);
    border-radius: 2px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #232322;
    line-height: 1;
    text-align: center;
  }

  .figma-services__hero {
    top: 66px;
    width: 430px;
    height: 904.313px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(250, 248, 244, 0)), #faf8f4;
    border-bottom: 1px solid rgba(40, 40, 38, 0.72);
  }

  .figma-services__hero-media {
    top: 34px;
    left: 18px;
    width: 394px;
    height: 351.781px;
    border-width: 4px;
  }

  .figma-services__hero-media img {
    top: -153.7px;
    left: -4.08px;
    width: 399.28px;
    height: 709.03px;
    object-fit: fill;
    content: url("../img/figma/services-mobile-frame-136-602/hero.png");
  }

  .figma-services__hero-copy {
    top: 413.78px;
    left: 18px;
    width: 394px;
    height: 443.531px;
  }

  .figma-services__hero-copy h1 {
    top: 0.22px;
    left: 0;
    width: 394px;
    height: 232px;
    font-size: 38.3px;
    font-weight: 500;
    line-height: 46.354px;
    letter-spacing: 1px;
    text-align: center;
  }

  .figma-services__hero-copy p {
    top: 202px;
    left: 0;
    width: 394px;
    font-size: 22px;
    line-height: 25.96px;
    text-align: center;
  }

  .figma-services__button--hero {
    top: 357.22px;
    left: 128px;
    width: 138px;
    height: 44px;
    font-size: 12px;
    line-height: 1;
  }

  .figma-services__intro {
    top: 970.31px;
    width: 430px;
    height: 298px;
  }

  .figma-services__intro p {
    top: 46px;
    left: 18px;
    width: 394px;
    font-size: 25px;
    line-height: 29.5px;
    text-align: left;
  }

  .figma-services__list {
    top: 1268.31px;
    width: 430px;
    height: 2133px;
    border: 0;
  }

  .figma-services__list h2 {
    top: 42px;
    left: 12px;
    width: 406px;
    font-size: 39px;
    line-height: 39px;
    text-align: center;
  }

  .figma-services__cards {
    top: 109px;
    left: 12px;
    width: 406px;
    height: 1966px;
  }

  .figma-service-card {
    left: 0;
    width: 406px;
    overflow: hidden;
    border-color: rgba(40, 40, 38, 0.62);
    box-shadow: 0 10px 22px rgba(40, 40, 38, 0.1);
  }

  .figma-service-card:nth-child(1) {
    left: 0;
    top: 0;
    height: 667.328px;
  }

  .figma-service-card:nth-child(2) {
    left: 0;
    top: 687.33px;
    height: 640.531px;
  }

  .figma-service-card:nth-child(3) {
    left: 0;
    top: 1347.86px;
    height: 618.141px;
  }

  .figma-service-card__image,
  .figma-service-card__image img {
    width: 404px;
    height: 238px;
  }

  .figma-service-card:nth-child(1) .figma-service-card__image img {
    content: url("../img/figma/services-mobile-frame-136-602/cold-recovery.jpg");
  }

  .figma-service-card:nth-child(2) .figma-service-card__image img {
    content: url("../img/figma/services-mobile-frame-136-602/total-reconstruction.jpg");
  }

  .figma-service-card:nth-child(3) .figma-service-card__image img {
    content: url("../img/figma/services-mobile-frame-136-602/hot-reconstruction.jpg");
  }

  .figma-service-card__content {
    top: 238px;
    width: 404px;
  }

  .figma-service-card:nth-child(1) .figma-service-card__content {
    height: 427.328px;
  }

  .figma-service-card:nth-child(2) .figma-service-card__content {
    height: 400.531px;
  }

  .figma-service-card:nth-child(3) .figma-service-card__content {
    height: 378.141px;
  }

  .figma-service-card__content h3 {
    top: 24px;
    left: 20px;
    width: 364px;
    font-size: 27px;
    line-height: 29.16px;
    white-space: nowrap;
  }

  .figma-service-card__subtitle {
    top: 69px;
    left: 20px;
    width: 364px;
    font-size: 20px;
    line-height: 22.4px;
  }

  .figma-service-card__subtitle--single {
    width: 364px;
    white-space: nowrap;
  }

  .figma-service-card__text {
    left: 20px;
    width: 364px;
    font-size: 20px;
    line-height: 26.8px;
  }

  .figma-service-card:nth-child(1) .figma-service-card__text {
    top: 136px;
  }

  .figma-service-card:nth-child(2) .figma-service-card__text {
    top: 136px;
  }

  .figma-service-card:nth-child(3) .figma-service-card__text {
    top: 114px;
  }

  .figma-service-card__facts,
  .figma-service-card__facts--lower {
    left: 20px;
    width: 364px;
    height: 118px;
  }

  .figma-service-card:nth-child(1) .figma-service-card__facts {
    top: 217px;
  }

  .figma-service-card:nth-child(2) .figma-service-card__facts {
    top: 190px;
  }

  .figma-service-card:nth-child(3) .figma-service-card__facts {
    top: 168px;
  }

  .figma-service-card__facts div {
    width: 364px;
    height: 37px;
    border-top-color: rgba(40, 40, 38, 0.35);
  }

  .figma-service-card__facts dt,
  .figma-service-card__facts dd {
    top: 14px;
  }

  .figma-service-card__facts dt {
    font-size: 15px;
    font-weight: 400;
    color: rgba(40, 40, 38, 0.72);
  }

  .figma-service-card__facts dd {
    right: 0;
    font-size: 18px;
  }

  .figma-services__button--details,
  .figma-service-card:nth-child(2) .figma-services__button--details,
  .figma-service-card:nth-child(3) .figma-services__button--details {
    left: 20px;
    width: 142px;
    height: 44px;
    font-size: 13px;
    line-height: 1;
  }

  .figma-service-card:nth-child(1) .figma-services__button--details {
    top: 363px;
  }

  .figma-service-card:nth-child(2) .figma-services__button--details {
    top: 336px;
  }

  .figma-service-card:nth-child(3) .figma-services__button--details {
    top: 314px;
  }

  .figma-detail__hero,
  .figma-detail-page--hot .figma-detail__hero {
    top: 66px;
    width: 430px;
    height: 912.531px;
    background: #faf8f4;
  }

  .figma-detail-page--total .figma-detail__hero {
    height: 938.484px;
  }

  .figma-detail__hero-media,
  .figma-detail-page--hot .figma-detail__hero-media {
    top: 34px;
    left: 18px;
    width: 394px;
    height: 351.781px;
    border-width: 4px;
    box-shadow: 0 24px 44px rgba(40, 40, 38, 0.18);
  }

  .figma-detail__hero-media img {
    width: 386px;
    height: 343.781px;
    object-fit: cover;
    content: url("../img/figma/cold-mobile-frame-136-458/hero.jpg");
  }

  .figma-detail-page--total .figma-detail__hero-media img {
    content: url("../img/figma/total-mobile-frame-136-314/hero.jpg");
  }

  .figma-detail-page--hot .figma-detail__hero-media img {
    content: url("../img/figma/hot-mobile-frame-136-170/hero.jpg");
  }

  .figma-detail__hero-copy,
  .figma-detail-page--hot .figma-detail__hero-copy {
    top: 413.78px;
    left: 18px;
    width: 394px;
    height: 452.75px;
  }

  .figma-detail-page--total .figma-detail__hero-copy {
    top: 413.78px;
    height: 478.703px;
  }

  .figma-detail__crumb {
    top: 0;
    left: 0;
    width: 57.969px;
    height: 20px;
    font-size: 15px;
    line-height: normal;
  }

  .figma-detail__hero-copy h1,
  .figma-detail-page--total .figma-detail__hero-copy h1,
  .figma-detail-page--hot .figma-detail__hero-copy h1 {
    top: 38px;
    left: 0;
    width: 394px;
    font-size: 38.3px;
    font-weight: 500;
    line-height: 40.4px;
  }

  .figma-detail__hero-copy > p {
    left: 0;
    width: 394px;
    font-size: 22px;
    line-height: 25.96px;
    white-space: normal;
  }

  .figma-detail__hero-copy > p:not(.figma-detail__hero-subtitle):not(.figma-detail__hero-text) {
    top: 221px;
  }

  .figma-detail-page--total .figma-detail__hero-subtitle,
  .figma-detail-page--hot .figma-detail__hero-subtitle {
    top: 196px;
    left: 0;
    width: 394px;
    font-size: 22px;
    line-height: 25.96px;
    white-space: normal;
  }

  .figma-detail-page--hot .figma-detail__hero-subtitle {
    top: 160.22px;
    font-size: 13px;
    line-height: 25.96px;
    white-space: nowrap;
  }

  .figma-detail-page--hot .figma-detail__hero-subtitle-desktop {
    display: none;
  }

  .figma-detail-page--hot .figma-detail__hero-subtitle-mobile {
    display: inline;
  }

  .figma-detail-page--total .figma-detail__hero-text {
    top: 278px;
    left: 0;
    width: 394px;
    font-size: 22px;
    line-height: 25.96px;
  }

  .figma-detail-page--hot .figma-detail__hero-text {
    top: 223px;
    left: 0;
    width: 394px;
    font-size: 22px;
    line-height: 25.96px;
  }

  .figma-detail__button--hero,
  .figma-detail-page--hot .figma-detail__button--hero {
    top: 366.22px;
    left: 0;
    width: 138px;
    height: 44px;
    font-size: 12px;
    line-height: 1;
  }

  .figma-detail-page--total .figma-detail__button--hero,
  .figma-detail-page--hot .figma-detail__button--hero {
    top: 408px;
  }

  .figma-detail-page--total .figma-detail__button--hero {
    top: 442px;
  }

  .figma-detail__content,
  .figma-detail-page--hot .figma-detail__content {
    top: 978.53px;
    width: 430px;
    height: 1139.859px;
  }

  .figma-detail-page--total .figma-detail__content {
    top: 1004.48px;
    height: 1168.891px;
  }

  .figma-detail__price {
    top: 42px;
    left: 18px;
    width: 394px;
    height: 463.703px;
    border-right: 0;
    border-bottom: 1px solid rgba(40, 40, 38, 0.42);
  }

  .figma-detail__copy {
    top: 539.7px;
    left: 18px;
    width: 394px;
    height: 544.156px;
  }

  .figma-detail-page--total .figma-detail__copy {
    height: 573.188px;
  }

  .figma-detail__price h2,
  .figma-detail__copy h2 {
    top: 0;
    left: 0;
    width: 394px;
    font-size: 29px;
    line-height: 31.9px;
  }

  .figma-detail__price-table {
    top: 60px;
    left: 0;
    width: 394px;
    height: 242.75px;
    font-size: 27px;
    line-height: 29.7px;
  }

  .figma-detail__price-table div {
    width: 394px;
    height: 60.688px;
  }

  .figma-detail__price-table div:nth-child(1) {
    top: 0;
    height: 60.188px;
  }

  .figma-detail__price-table div:nth-child(2) {
    top: 60.19px;
  }

  .figma-detail__price-table div:nth-child(3) {
    top: 120.88px;
  }

  .figma-detail__price-table div:nth-child(4) {
    top: 181.56px;
  }

  .figma-detail__price-table span,
  .figma-detail__price-table strong,
  .figma-detail__price-table div:not(:first-child) span,
  .figma-detail__price-table div:not(:first-child) strong {
    top: 15px;
    font-size: 27px;
    line-height: 29.7px;
  }

  .figma-detail__price-note,
  .figma-detail__price-time {
    left: 0;
    width: 394px;
    font-size: 22px;
    line-height: 29.04px;
  }

  .figma-detail__price-note {
    top: 330.75px;
  }

  .figma-detail__price-time {
    top: 388.75px;
  }

  .figma-detail__copy p {
    left: 0;
    width: 394px;
    font-size: 22px;
    line-height: 29.04px;
    white-space: normal;
  }

  .figma-detail__copy-first,
  .figma-detail-page--total .figma-detail__copy-first,
  .figma-detail-page--hot .figma-detail__copy-first {
    top: 60px;
  }

  .figma-detail__copy-second {
    top: 205px;
  }

  .figma-detail__copy-subtitle {
    top: 370px !important;
  }

  .figma-detail__copy-third {
    top: 430px;
  }

  .figma-detail-page--total .figma-detail__copy-subtitle {
    top: 283px !important;
  }

  .figma-detail-page--total .figma-detail__copy-second {
    top: 343px;
  }

  .figma-detail-page--total .figma-detail__copy-third {
    top: 517px;
    white-space: normal;
  }

  .figma-detail-page--hot .figma-detail__copy-subtitle {
    top: 254px !important;
  }

  .figma-detail-page--hot .figma-detail__copy-second {
    top: 314px;
  }

  .figma-detail-page--hot .figma-detail__copy-third {
    top: 488px;
    white-space: normal;
  }

  .figma-detail__related,
  .figma-detail-page--hot .figma-detail__related {
    top: 2118.39px;
    width: 430px;
    height: 279px;
  }

  .figma-detail-page--hot .figma-detail__related {
    height: 319px;
  }

  .figma-detail-page--total .figma-detail__related {
    top: 2173.38px;
  }

  .figma-detail__related h2 {
    top: 42px;
    left: 18px;
    width: 394px;
    font-size: 39px;
    line-height: 39px;
    white-space: nowrap;
  }

  .figma-detail__related div,
  .figma-detail-page--total .figma-detail__related div,
  .figma-detail-page--hot .figma-detail__related div {
    top: 109px;
    left: 18px;
    width: 394px;
    height: 112px;
  }

  .figma-detail__related a,
  .figma-detail-page--total .figma-detail__related a,
  .figma-detail-page--hot .figma-detail__related a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0;
    font-size: 15px;
    line-height: normal;
  }

  .figma-detail__related a:nth-child(1),
  .figma-detail__related a:nth-child(2) {
    left: 59.23px;
    width: 276px;
  }

  .figma-detail__related a:nth-child(1) {
    top: 0;
  }

  .figma-detail__related a:nth-child(2) {
    top: 62px;
  }

  .figma-detail-page--total .figma-detail__related a:nth-child(1),
  .figma-detail-page--total .figma-detail__related a:nth-child(2) {
    left: 62.36px;
    width: 270px;
  }

  .figma-detail-page--hot .figma-detail__related a:nth-child(1),
  .figma-detail-page--hot .figma-detail__related a:nth-child(2) {
    left: 59.23px;
    width: 276px;
  }

  .figma-services__footer {
    top: 3401.31px;
  }

  .figma-detail__footer,
  .figma-detail-page--hot .figma-detail__footer {
    top: 2397.39px;
    height: 306px;
  }

  .figma-detail-page--hot .figma-detail__footer {
    top: 2437.39px;
    height: 334px;
  }

  .figma-detail-page--hot .figma-detail__footer-offer,
  .figma-detail-page--hot .figma-detail__footer-contacts {
    height: 334px;
  }

  .figma-detail-page--total .figma-detail__footer {
    top: 2452.38px;
  }

  .figma-services__footer,
  .figma-detail__footer {
    left: 0;
    width: 430px;
    height: 306px;
    background: #faf8f4;
    border-top: 0;
  }

  .figma-services__footer-bg,
  .figma-detail__footer-bg {
    display: none;
  }

  .figma-services__footer-offer,
  .figma-detail__footer-offer {
    top: 0;
    left: 0;
    width: 430px;
    height: 306px;
    z-index: 2;
    pointer-events: none;
  }

  .figma-services__footer-offer h2,
  .figma-detail__footer-offer h2 {
    top: 13px;
    left: 39px;
    width: 321px;
    font-size: 23px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 2px;
  }

  .figma-detail-page--hot .figma-detail__footer-offer h2 {
    top: 41px;
  }

  .figma-services__button--footer,
  .figma-detail__button--footer {
    top: 184px;
    left: 39px;
    width: 106px;
    height: 44px;
    font-size: 12px;
    line-height: 1;
    z-index: 4;
    pointer-events: auto;
  }

  .figma-detail-page--hot .figma-detail__button--footer {
    top: 211.61px;
  }

  .figma-services__footer-offer p,
  .figma-detail__footer-offer p {
    top: 236px;
    left: 39px;
    width: 333px;
    font-size: 15px;
    line-height: 22px;
    color: #000000;
  }

  .figma-detail-page--hot .figma-detail__footer-offer p {
    top: 264px;
  }

  .figma-services__footer-contacts,
  .figma-detail__footer-contacts {
    top: 0;
    left: 0;
    width: 430px;
    height: 306px;
    z-index: 3;
    pointer-events: none;
  }

  .figma-services__footer-contact,
  .figma-detail__footer-contact {
    min-height: 0;
    font-size: 11px;
    line-height: 14px;
    pointer-events: auto;
  }

  .figma-services__footer-contact:nth-child(1),
  .figma-detail__footer-contact:nth-child(1) {
    top: 184px;
    left: 178px;
    width: 44px;
    height: 44px;
  }

  .figma-detail-page--hot .figma-detail__footer-contact:nth-child(1) {
    top: 212px;
    left: 178px;
    width: 44px;
    height: 44px;
  }

  .figma-services__footer-contact:nth-child(2),
  .figma-detail__footer-contact:nth-child(2) {
    top: 184px;
    left: 238px;
    width: 44px;
    height: 44px;
  }

  .figma-detail-page--hot .figma-detail__footer-contact:nth-child(2) {
    top: 212px;
    left: 238px;
    width: 44px;
    height: 44px;
  }

  .figma-services__footer-contact:nth-child(3),
  .figma-detail__footer-contact:nth-child(3) {
    top: 184px;
    left: 298px;
    width: 44px;
    height: 44px;
  }

  .figma-detail-page--hot .figma-detail__footer-contact:nth-child(3) {
    top: 212px;
    left: 298px;
    width: 44px;
    height: 44px;
  }

  .figma-services__footer-contact:nth-child(4),
  .figma-detail__footer-contact:nth-child(4) {
    top: 124px;
    left: 39px;
    width: 333px;
    height: 28px;
    pointer-events: none;
  }

  .figma-detail-page--hot .figma-detail__footer-contact:nth-child(4) {
    top: 152px;
    left: 39px;
    width: 333px;
    height: 28px;
  }

  .figma-services__footer-contact img,
  .figma-detail__footer-contact img {
    width: 44px;
    height: 44px;
    padding: 4px;
  }

  .figma-services__footer-contact span,
  .figma-detail__footer-contact span {
    display: none;
  }

  .figma-services__footer-contact--address img,
  .figma-detail__footer-contact--address img {
    display: none;
  }

  .figma-services__footer-contact--address span,
  .figma-detail__footer-contact--address span {
    display: block;
    top: 0;
    left: 0;
    width: 333px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 11px;
    line-height: 14px;
    color: #282826;
    white-space: nowrap;
    pointer-events: none;
  }

  .figma-services__footer-contact:nth-child(1) img {
    content: url("../img/figma/services-mobile-frame-136-602/instagram.png");
  }

  .figma-services__footer-contact:nth-child(2) img {
    content: url("../img/figma/services-mobile-frame-136-602/telegram.png");
  }

  .figma-services__footer-contact:nth-child(3) img {
    content: url("../img/figma/services-mobile-frame-136-602/phone.png");
  }

  .figma-detail__footer-contact:nth-child(1) img {
    content: url("../img/figma/cold-mobile-frame-136-458/instagram.png");
  }

  .figma-detail__footer-contact:nth-child(2) img {
    content: url("../img/figma/cold-mobile-frame-136-458/telegram.png");
  }

  .figma-detail__footer-contact:nth-child(3) img {
    content: url("../img/figma/cold-mobile-frame-136-458/phone.png");
  }

  .figma-detail-page--total .figma-detail__footer-contact:nth-child(1) img {
    content: url("../img/figma/total-mobile-frame-136-314/instagram.png");
  }

  .figma-detail-page--total .figma-detail__footer-contact:nth-child(2) img {
    content: url("../img/figma/total-mobile-frame-136-314/telegram.png");
  }

  .figma-detail-page--total .figma-detail__footer-contact:nth-child(3) img {
    content: url("../img/figma/total-mobile-frame-136-314/phone.png");
  }

  .figma-detail-page--hot .figma-detail__footer-contact:nth-child(1) img {
    content: url("../img/figma/hot-mobile-frame-136-170/instagram.png");
  }

  .figma-detail-page--hot .figma-detail__footer-contact:nth-child(2) img {
    content: url("../img/figma/hot-mobile-frame-136-170/telegram.png");
  }

  .figma-detail-page--hot .figma-detail__footer-contact:nth-child(3) img {
    content: url("../img/figma/hot-mobile-frame-136-170/phone.png");
  }
}

@media (max-width: 429px) {
  .figma-services,
  .figma-detail {
    max-width: none;
    margin: 0;
    zoom: calc(100vw / 430px);
  }

  .figma-services__brand,
  .figma-detail__brand {
    height: 60px;
  }

  .figma-services__nav,
  .figma-detail__nav {
    height: 60px;
  }

  .figma-services__nav a,
  .figma-detail__nav a {
    height: 60px;
    min-width: 60px;
  }

  .figma-services__icons,
  .figma-detail__icons {
    top: 0;
    left: 325px;
    width: 105px;
    height: 60px;
  }

  .figma-services__icons a,
  .figma-detail__icons a {
    width: 60px;
    height: 60px;
  }

  .figma-services__icons a:nth-child(3),
  .figma-detail__icons a:nth-child(3) {
    left: 45px;
  }

  .figma-services__icons img,
  .figma-detail__icons img {
    top: 11px;
    left: 11px;
    width: 38px;
    height: 38px;
  }

  .figma-services__button--hero,
  .figma-detail__button--hero,
  .figma-services__button--details,
  .figma-services__button--footer,
  .figma-detail__button--footer,
  .figma-detail__related a,
  .figma-detail-page--total .figma-detail__related a,
  .figma-detail-page--hot .figma-detail__related a {
    height: 60px;
  }

  .figma-detail__related a:nth-child(2) {
    top: 72px;
  }

  .figma-services__footer-contact:nth-child(1),
  .figma-services__footer-contact:nth-child(2),
  .figma-services__footer-contact:nth-child(3),
  .figma-detail__footer-contact:nth-child(1),
  .figma-detail__footer-contact:nth-child(2),
  .figma-detail__footer-contact:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .figma-services__footer-contact img,
  .figma-detail__footer-contact img {
    width: 60px;
    height: 60px;
    padding: 11px;
  }
}

/* Visual calibration: calmer type scale and French Porcelain page background. */
:root {
  --bg: #f5f5f7;
}

body,
.site-shell,
.quality,
.result-claim,
.cta,
.figma-services-page,
.figma-services,
.figma-services__intro,
.figma-services__list,
.figma-services__footer,
.figma-detail-page,
.figma-detail,
.figma-detail__hero,
.figma-detail__related,
.figma-detail__footer {
  background: #f5f5f7;
}

.site-header,
.figma-services__header,
.figma-detail__header {
  background: rgba(245, 245, 247, 0.88);
}

.seo-strip {
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0.18), rgba(245, 245, 247, 0.68)),
    rgba(245, 245, 247, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 -24px 42px rgba(245, 245, 247, 0.28);
}

.seo-strip::before {
  background: linear-gradient(90deg, rgba(245, 245, 247, 0.84), rgba(245, 245, 247, 0));
}

.seo-strip::after {
  background: linear-gradient(270deg, rgba(245, 245, 247, 0.84), rgba(245, 245, 247, 0));
}

.cta-bg,
.figma-services__footer-bg,
.figma-detail__footer-bg {
  display: none;
}

.quality-copy h2 {
  font-size: 56px;
  line-height: 64px;
}

.quality-copy p {
  font-size: 24px;
  line-height: 40px;
}

.claim-kicker {
  font-size: 40px;
  line-height: 44px;
}

.footer-offer h2 {
  font-size: 48px;
  line-height: 64px;
}

.footer-offer p {
  font-size: 18px;
  line-height: 24px;
}

.figma-services__hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(245, 245, 247, 0) 45%), #f5f5f7;
}

.figma-services__hero-copy h1,
.figma-detail__hero-copy h1,
.figma-detail-page--total .figma-detail__hero-copy h1,
.figma-detail-page--hot .figma-detail__hero-copy h1 {
  font-size: 48px;
  line-height: 56px;
}

.figma-services__hero-copy p,
.figma-detail__hero-copy p,
.figma-detail-page--total .figma-detail__hero-subtitle,
.figma-detail-page--total .figma-detail__hero-text,
.figma-detail-page--hot .figma-detail__hero-subtitle,
.figma-detail-page--hot .figma-detail__hero-text {
  font-size: 24px;
  line-height: 34px;
}

.figma-services__intro p {
  font-size: 24px;
  line-height: 38px;
}

.figma-services__list h2,
.figma-detail__related h2 {
  font-size: 52px;
  line-height: 60px;
}

.figma-service-card__content h3 {
  font-size: 30px;
  line-height: 38px;
}

.figma-service-card__subtitle {
  font-size: 20px;
  line-height: 25px;
}

.figma-service-card__text {
  font-size: 17px;
  line-height: 28px;
}

.figma-detail__price,
.figma-detail__copy {
  background: rgba(245, 245, 247, 0.72);
}

.figma-detail__price h2,
.figma-detail__copy h2 {
  font-size: 36px;
  line-height: 44px;
}

.figma-detail__price-table span {
  font-size: 23px;
  line-height: 32px;
}

.figma-detail__price-table strong {
  font-size: 25px;
  line-height: 32px;
}

.figma-detail__price-note,
.figma-detail__price-time {
  font-size: 20px;
  line-height: 32px;
}

.figma-detail__copy p {
  font-size: 24px;
  line-height: 34px;
}

.figma-services__footer-offer h2,
.figma-detail__footer-offer h2 {
  font-size: 40px;
  line-height: 54px;
}

.figma-services__footer-offer p,
.figma-detail__footer-offer p,
.figma-services__footer-contact,
.figma-detail__footer-contact {
  font-size: 18px;
  line-height: 25px;
}

@media (max-width: 900px) {
  body,
  .site-shell,
  .quality,
  .result-claim,
  .cta,
  .figma-services,
  .figma-services__hero,
  .figma-services__intro,
  .figma-services__list,
  .figma-services__footer,
  .figma-detail,
  .figma-detail__hero,
  .figma-detail__related,
  .figma-detail__footer {
    background: #f5f5f7;
  }

  .cta {
    background-image: none;
  }

  .hero-copy h1 {
    top: 86px;
    font-size: 24px;
    line-height: 30px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 20px;
  }

  .quality-copy h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .quality-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .claim-kicker {
    font-size: 24px;
    line-height: 30px;
  }

  .footer-offer h2,
  .figma-services__footer-offer h2,
  .figma-detail__footer-offer h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-offer p,
  .figma-services__footer-offer p,
  .figma-detail__footer-offer p {
    font-size: 14px;
    line-height: 20px;
  }

  .figma-services__hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(245, 245, 247, 0)), #f5f5f7;
  }

  .figma-services__hero-copy h1,
  .figma-detail__hero-copy h1,
  .figma-detail-page--total .figma-detail__hero-copy h1,
  .figma-detail-page--hot .figma-detail__hero-copy h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .figma-services__hero-copy p,
  .figma-detail__hero-copy > p,
  .figma-detail-page--total .figma-detail__hero-subtitle,
  .figma-detail-page--total .figma-detail__hero-text,
  .figma-detail-page--hot .figma-detail__hero-subtitle,
  .figma-detail-page--hot .figma-detail__hero-text {
    font-size: 18px;
    line-height: 25px;
  }

  .figma-detail-page--hot .figma-detail__hero-subtitle {
    font-size: 13px;
    line-height: 20px;
  }

  .figma-services__intro p {
    font-size: 18px;
    line-height: 26px;
  }

  .figma-services__list h2,
  .figma-detail__related h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .figma-service-card__content h3 {
    font-size: 23px;
    line-height: 30px;
  }

  .figma-service-card__subtitle {
    font-size: 17px;
    line-height: 22px;
  }

  .figma-service-card__text {
    font-size: 16px;
    line-height: 24px;
  }

  .figma-detail__price h2,
  .figma-detail__copy h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .figma-detail__price-table span,
  .figma-detail__price-table strong,
  .figma-detail__price-table div:not(:first-child) span,
  .figma-detail__price-table div:not(:first-child) strong {
    font-size: 20px;
    line-height: 28px;
  }

  .figma-detail__price-note,
  .figma-detail__price-time,
  .figma-detail__copy p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    transition: none;
  }

  .seo-marquee,
  .gallery-track {
    animation: none;
  }
}

@keyframes seo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes gallery-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--gallery-loop-width)));
  }
}

@keyframes gallery-marquee-reverse {
  from {
    transform: translateX(calc(-1 * var(--gallery-loop-width)));
  }

  to {
    transform: translateX(0);
  }
}

/* Current Figma desktop direction cards */
.directions {
  position: relative;
  background: #fff;
  padding: 56px 0 70px;
}

.directions h2 {
  width: 1080px;
  margin: 0 auto 50px;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #000;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(4, 242px);
  justify-content: center;
  gap: 38px;
  width: 1080px;
  margin: 0 auto;
}

.direction-card {
  position: relative;
  display: block;
  width: 242px;
  height: 309px;
  overflow: hidden;
  border-radius: 10px;
  background: #f2f2f2;
  transform: translateY(0);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.direction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.direction-card span {
  position: absolute;
  left: 15px;
  top: 203px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 144px;
  padding: 0 30px;
  border-radius: 0 3px 3px 0;
  background: #f2f2f2;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 46px;
  white-space: nowrap;
}

.direction-card:nth-child(2) span {
  min-width: 201px;
}

.direction-card:nth-child(3) span {
  min-width: 154px;
}

.direction-card:nth-child(4) span {
  min-width: 147px;
}

@media (hover: hover) {
  .direction-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
    filter: contrast(1.03);
  }
}

/* Current Figma desktop SEO service pages */
.seo-detail-page {
  margin: 0;
  background: #fff;
  overflow-x: hidden;
}

.seo-detail-page a:focus-visible,
.seo-detail-page button:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.72);
  outline-offset: 4px;
}

.seo-detail {
  position: relative;
  width: 1905px;
  height: 3628px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  color: #000;
  font-family: "Playfair Display", Georgia, serif;
  transform: scale(var(--seo-scale, 1));
  transform-origin: top left;
}

.seo-header {
  position: absolute;
  left: 0;
  top: 41px;
  z-index: 5;
  width: 1905px;
  height: 85px;
}

.seo-brand {
  position: absolute;
  left: 402px;
  top: 0;
  width: 111px;
  height: 85px;
}

.seo-brand img {
  position: absolute;
  left: 24px;
  top: 0;
  width: 61px;
  height: 61px;
  object-fit: contain;
}

.seo-brand span {
  position: absolute;
  left: 0;
  top: 55px;
  width: 111px;
  color: #282826;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  white-space: nowrap;
}

.seo-nav {
  position: absolute;
  left: 1047px;
  top: 32px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.seo-nav a:first-child::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-3px) rotate(45deg);
}

.seo-header-icons {
  position: absolute;
  left: 1360px;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 19px;
}

.seo-header-icons a,
.seo-header-icons img {
  display: block;
  width: 24px;
  height: 24px;
}

.seo-header-icons img {
  object-fit: contain;
}

.seo-hero {
  position: absolute;
  inset: 0;
}

.seo-eyebrow {
  position: absolute;
  left: 412.5px;
  top: 218px;
  width: 520px;
  margin: 0;
  color: #333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 23px;
  text-transform: uppercase;
}

.seo-hero h1 {
  position: absolute;
  left: 412.5px;
  top: 286px;
  width: 560px;
  margin: 0;
  color: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
  text-align: right;
}

.seo-detail--cold .seo-hero h1 {
  top: 311px;
}

.seo-detail--total .seo-hero h1 {
  top: 326px;
}

.seo-lead {
  position: absolute;
  left: 412.5px;
  top: 540px;
  width: 560px;
  margin: 0;
  color: #545454;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: right;
}

.seo-detail--cold .seo-lead {
  top: 517px;
}

.seo-detail--total .seo-lead {
  top: 532px;
}

.seo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.seo-button--hero {
  position: absolute;
  left: 412.5px;
  top: 675px;
  width: 190px;
  height: 47px;
  border-radius: 3px;
}

.seo-facts {
  position: absolute;
  left: 412.5px;
  top: 765px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #333;
}

.seo-facts span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-height: 36px;
  padding: 2px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  background: #f7f7f7;
  text-align: center;
}

.seo-facts span:nth-child(2) {
  width: 156px;
}

.seo-hero-image {
  position: absolute;
  left: 1018px;
  top: 211px;
  width: 526px;
  height: 650px;
  margin: 0;
  overflow: hidden;
}

.seo-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-detail--hot .seo-hero-image img {
  object-position: 50% 22%;
}

.seo-detail--cold .seo-hero-image img {
  object-position: 50% 16%;
}

.seo-detail--total .seo-hero-image img {
  object-position: 50% 3%;
}

.seo-gives::before,
.seo-suitable::before,
.seo-price::before {
  position: absolute;
  left: 0;
  width: 1905px;
  height: 1px;
  background: #bcb9b9;
  content: "";
}

.seo-gives::before {
  top: 960px;
}

.seo-gives h2,
.seo-suitable h2,
.seo-price h2,
.seo-faq h2 {
  margin: 0;
  color: #211f1c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 54px;
}

.seo-section-copy {
  position: absolute;
  left: 1073.5px;
  top: 1081px;
  width: 430px;
}

.seo-section-copy p {
  margin: 49px 0 0;
  color: #545454;
  font-size: 15px;
  line-height: 24px;
}

.seo-card-grid {
  position: absolute;
  left: 413px;
  top: 1035px;
  display: grid;
  grid-template-columns: repeat(2, 266px);
  gap: 32px 30px;
}

.seo-info-card {
  width: 266px;
  height: 200px;
  padding: 23px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  background: #fff;
}

.seo-info-card span,
.seo-mini-cards span {
  display: block;
  color: #b8a07e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
}

.seo-info-card h3 {
  margin: 18px 0 0;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
}

.seo-info-card p {
  margin: 17px 0 0;
  color: #545454;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  line-height: 22px;
}

.seo-suitable::before {
  left: 412.5px;
  top: 1560px;
  width: 1080px;
  background: rgba(0, 0, 0, 0.18);
}

.seo-suitable h2 {
  position: absolute;
  left: 412.5px;
  top: 1630px;
  width: 420px;
}

.seo-mini-cards {
  position: absolute;
  left: 815px;
  top: 1620px;
  display: grid;
  grid-template-columns: repeat(3, 196px);
  gap: 32px;
}

.seo-mini-cards article {
  width: 196px;
  height: 168px;
  padding: 21px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  background: #fff;
}

.seo-mini-cards span {
  font-size: 30px;
  line-height: 36px;
}

.seo-mini-cards p {
  margin: 24px 0 0;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.seo-price::before {
  top: 1863px;
}

.seo-price-table {
  position: absolute;
  left: 413px;
  top: 1938px;
  width: 508px;
  height: 330px;
  padding: 29px 31px 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  background: #fff;
}

.seo-price-table div {
  display: grid;
  grid-template-columns: 1fr 176px;
  align-items: center;
  height: 58px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.seo-price-table div:first-child {
  height: 38px;
  border-top: 0;
}

.seo-price-table span {
  color: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 28px;
}

.seo-price-table strong {
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.seo-price-table div:first-child span,
.seo-price-table div:first-child strong {
  color: #333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  line-height: 18px;
  text-transform: uppercase;
}

.seo-price-copy {
  position: absolute;
  left: 1073.5px;
  top: 1955px;
  width: 560px;
}

.seo-detail--cold .seo-price-copy {
  left: 1067px;
  width: 477px;
}

.seo-price-copy p {
  width: 500px;
  margin: 61px 0 0;
  color: #545454;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  line-height: 24px;
}

.seo-detail--cold .seo-price-copy p {
  width: 477px;
}

.seo-faq h2 {
  position: absolute;
  left: 412.5px;
  top: 2337px;
  width: 560px;
}

.seo-faq dl {
  position: absolute;
  left: 412.5px;
  top: 2437px;
  width: 1080px;
  margin: 0;
}

.seo-faq div {
  display: grid;
  grid-template-columns: 420px 590px;
  column-gap: 67.5px;
  min-height: 120px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.seo-faq dt {
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.seo-faq dd {
  margin: 0;
  color: #545454;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  line-height: 22px;
}

.seo-image-cta {
  position: absolute;
  left: 0;
  top: 2877px;
  width: 1905px;
  height: 513px;
  overflow: hidden;
}

.seo-image-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.seo-image-cta p {
  position: absolute;
  left: 653px;
  top: 214px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 19.6px;
  line-height: 84px;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-footer {
  position: absolute;
  left: 0;
  top: 3390px;
  width: 1905px;
  height: 238px;
  background: #2d2d2d;
  color: #fff;
}

.seo-footer-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 1905px;
  height: 158px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-footer-top a {
  position: absolute;
  left: 838px;
  top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 228px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12.8px;
  font-weight: 500;
  letter-spacing: 2.56px;
  line-height: 19px;
  text-transform: uppercase;
}

.seo-footer-bottom {
  position: absolute;
  left: 0;
  top: 158px;
  width: 1905px;
  height: 80px;
}

.seo-footer-bottom > p {
  position: absolute;
  left: 48px;
  top: 31px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11.2px;
  letter-spacing: 0.56px;
  line-height: 17px;
}

.figma-home__footer-bottom > p a,
.seo-footer-bottom > p a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 180ms ease, border-color 180ms ease;
}

.figma-home__footer-bottom > p a:hover,
.figma-home__footer-bottom > p a:focus-visible,
.seo-footer-bottom > p a:hover,
.seo-footer-bottom > p a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
  outline: none;
}

.seo-footer-icons {
  position: absolute;
  left: 898px;
  top: 29px;
  display: flex;
  gap: 19px;
}

.seo-footer-icons a,
.seo-footer-icons img {
  width: 24px;
  height: 24px;
}

.seo-footer-bottom nav {
  position: absolute;
  right: 48px;
  top: 28px;
  display: flex;
  gap: 44px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 1.25px;
  line-height: 16px;
  text-transform: uppercase;
}

.seo-menu-toggle,
.seo-mobile-menu,
.seo-process,
.seo-care,
.mobile-footer-cta {
  display: none;
}

.seo-detail__canvas {
  display: contents;
}

@media (max-width: 900px) {
  .directions {
    padding: 36px 0 44px;
  }

  .directions h2,
  .directions-grid {
    width: min(100% - 40px, 520px);
  }

  .directions-grid {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .direction-card {
    flex: 0 0 242px;
    scroll-snap-align: start;
  }
}

/* Current Figma home/contact desktop */
html {
  scroll-behavior: smooth;
}

.figma-home-page,
.figma-contact-page {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
}

.figma-home-page {
  position: relative;
}

.figma-scroll-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.figma-home-page *,
.figma-home-page *::before,
.figma-home-page *::after,
.figma-contact-page *,
.figma-contact-page *::before,
.figma-contact-page *::after {
  box-sizing: border-box;
}

.figma-home-page a,
.figma-contact-page a {
  color: inherit;
  text-decoration: none;
}

.figma-home-page img,
.figma-contact-page img {
  display: block;
}

.figma-home,
.figma-contact {
  position: relative;
  width: 1905px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  color: #000;
  zoom: var(--figma-scale, 1);
}

.figma-home {
  height: 5022px;
}

.figma-home__canvas,
.figma-contact__canvas {
  display: contents;
}

.figma-contact {
  height: 2227px;
}

.figma-home__header {
  position: absolute;
  z-index: 20;
  left: 0;
  top: -1.61px;
  width: 1905px;
  height: 85px;
}

.figma-home__brand {
  position: absolute;
  left: 402px;
  top: 0;
  width: 111px;
  height: 85px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.figma-home__brand img {
  position: absolute;
  left: 24.5px;
  top: 0;
  width: 61px;
  height: 61px;
  object-fit: contain;
}

.figma-home__brand span {
  position: absolute;
  left: 0;
  top: 55px;
  width: 111px;
  color: #282826;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  white-space: nowrap;
}

.figma-home__nav {
  position: absolute;
  left: 1047px;
  top: 32px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.figma-home__nav-services::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-3px) rotate(45deg);
}

.figma-home__icons {
  position: absolute;
  left: 1360px;
  top: 29.61px;
  display: flex;
  align-items: center;
  gap: 19px;
}

.figma-home__icons a,
.figma-home__icons img {
  width: 24px;
  height: 24px;
}

.figma-home__icons img {
  object-fit: contain;
}

.figma-home__menu-toggle,
.figma-home__mobile-menu,
.figma-home__direction-controls,
.figma-home__hero-image--mobile {
  display: none;
}

.figma-home__hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 1905px;
  height: 1094px;
  overflow: hidden;
}

.figma-home__hero-image,
.figma-home__hero-video {
  position: absolute;
  left: -1398.46px;
  top: -194.36px;
  width: 3536.82px;
  height: 1411px;
  max-width: none;
  object-fit: fill;
}

.figma-home__hero-image {
  z-index: 0;
}

.figma-home__hero-video {
  z-index: 1;
}

.figma-home__hero-video.hero-video--desktop {
  opacity: 1;
}

.figma-home__hero-copy > * {
  z-index: 4;
}

.figma-home__hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.figma-home__hero-copy a,
.figma-home__hero-copy button {
  pointer-events: auto;
}

.figma-home__hero-copy h1 {
  position: absolute;
  left: 842px;
  top: 600.61px;
  width: 1017px;
  margin: 0;
  color: #282826;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 53px;
  text-align: right;
}

.figma-home__hero-copy p {
  position: absolute;
  right: 135px;
  top: 776.61px;
  width: 760px;
  margin: 0;
  color: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 22px;
  text-align: right;
}

.figma-home-page .figma-home__button,
.figma-contact-page .figma-home__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 3px;
  background: #000;
  color: #fff;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.figma-home__button:focus-visible,
.figma-contact input:focus-visible,
.figma-contact textarea:focus-visible,
.figma-contact button:focus-visible,
.figma-home__slider-dots button:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.72);
  outline-offset: 4px;
}

.figma-home__button--hero {
  position: absolute;
  left: 1467px;
  top: 839.61px;
  width: 302px;
  height: 44px;
  font-family: "Manrope", "Albert Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
}

.figma-home__strip {
  position: absolute;
  left: 0;
  top: 1094px;
  width: 1905px;
  height: 85px;
  overflow: hidden;
  border-top: 1px solid #bcb9b9;
  background: #fff;
}

.figma-home__marquee {
  position: absolute;
  left: 0;
  top: 31px;
  display: flex;
  width: max-content;
  animation: figma-home-marquee 34s linear infinite;
}

.figma-home__marquee-group {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  white-space: nowrap;
}

.figma-home__marquee-group span {
  position: relative;
  flex: 0 0 auto;
}

.figma-home__marquee-group span::after {
  position: absolute;
  right: -42px;
  top: 0;
  color: #333;
  content: "✧";
}

.figma-home__directions {
  position: absolute;
  left: 0;
  top: 1179px;
  width: 1905px;
  height: 539px;
  background: #fff;
}

.figma-home__directions h2 {
  position: absolute;
  left: 413px;
  top: 93px;
  margin: 0;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.figma-home__direction-grid {
  position: absolute;
  left: 412.5px;
  top: 159px;
  display: grid;
  grid-template-columns: repeat(4, 242px);
  gap: 38px;
}

.figma-home__direction-card {
  position: relative;
  display: block;
  width: 242px;
  height: 309px;
  overflow: hidden;
  border-radius: 10px;
  background: #f2f2f2;
  transform: translateY(0);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.figma-home__direction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figma-home__direction-card span {
  position: absolute;
  left: 15px;
  top: 202.79px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 144px;
  padding: 0 30px;
  border-radius: 0 3px 3px 0;
  background: #f2f2f2;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 46px;
  white-space: nowrap;
}

.figma-home__direction-card:nth-child(2) span {
  min-width: 201px;
}

.figma-home__direction-card:nth-child(3) span {
  min-width: 154px;
}

.figma-home__direction-card:nth-child(4) span {
  min-width: 147px;
}

.figma-home__potential {
  position: absolute;
  left: 0;
  top: 1717.64px;
  width: 1905px;
  height: 869.45px;
  background: #fff;
}

.figma-home__potential-image {
  position: absolute;
  left: 413px;
  top: 40px;
  width: 526px;
  height: 789px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  filter: grayscale(100%);
}

.figma-home__potential-copy {
  position: absolute;
  left: 966px;
  top: 195px;
  width: 506px;
}

.figma-home__potential-copy h2 {
  margin: 0;
  color: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 72.8px;
}

.figma-home__potential-copy p {
  width: 506px;
  margin: 7px 0 0;
  color: #545454;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
}

.figma-home__button--small {
  position: absolute;
  left: 160px;
  top: 364px;
  width: 186px;
  height: 47px;
}

.figma-home__consult {
  position: absolute;
  left: 0;
  top: 2589.28px;
  width: 1905px;
  height: 510px;
  overflow: hidden;
  background: #fff;
}

.figma-home__consult h2 {
  position: absolute;
  left: 433px;
  top: 91px;
  width: 1038px;
  margin: 0;
  color: #545454;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 58.8px;
  text-align: center;
}

.figma-home__consult p {
  position: absolute;
  left: 502.5px;
  top: 222px;
  width: 900px;
  margin: 0;
  color: #000;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: center;
}

.figma-home__button--consult {
  position: absolute;
  left: 868px;
  top: 302px;
  width: 172px;
  height: 47px;
}

.figma-home__works {
  position: absolute;
  left: 0;
  top: 3106.61px;
  width: 1905px;
  height: 1822px;
  overflow: hidden;
  background: #fff;
}

.figma-home__works-copy {
  position: absolute;
  left: 447px;
  top: 304px;
  width: 506px;
  text-align: right;
}

.figma-home__works-copy h2 {
  margin: 0;
  color: #211f1c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 73px;
}

.figma-home__works-copy p {
  width: 506px;
  margin: 42px 0 0;
  color: #282826;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.figma-home__slider {
  position: absolute;
  left: 1020px;
  top: 137px;
  width: 526px;
  height: 842px;
}

.figma-home__slides {
  position: absolute;
  left: 0;
  top: 0;
  width: 526px;
  height: 789px;
  overflow: hidden;
  touch-action: pan-y;
}

.figma-home__slides img {
  position: absolute;
  max-width: none;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.figma-home__slides img.is-active {
  z-index: 1;
  opacity: 0.9;
}

.figma-home__slides img:nth-child(1) {
  left: -33.84%;
  top: -34.77%;
  width: 187.45%;
  height: 166.62%;
}

.figma-home__slides img:nth-child(2) {
  left: -4.56%;
  top: -4.1%;
  width: 138.4%;
  height: 123.02%;
}

.figma-home__slides img:nth-child(3) {
  left: -15.04%;
  top: -15.97%;
  width: 133.32%;
  height: 118.5%;
}

.figma-home__slides img:nth-child(4) {
  left: -34.03%;
  top: -28.9%;
  width: 190.49%;
  height: 169.33%;
}

.figma-home__slides img:nth-child(5) {
  left: 0;
  top: -28.67%;
  width: 106.84%;
  height: 154.42%;
}

.figma-home__slides img:nth-child(6) {
  left: -32.53%;
  top: -12.17%;
  width: 142.44%;
  height: 126.62%;
}

.figma-home__slider-dots {
  position: absolute;
  left: 177px;
  top: 820px;
  display: flex;
  gap: 8px;
}

.figma-home__slider-dots button {
  position: relative;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.figma-home__slider-dots button::before {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #000;
  content: "";
}

.figma-home__slider-dots button.is-active {
  background: rgba(0, 0, 0, 0.16);
}

.figma-home__image-cta {
  position: absolute;
  left: 0;
  top: 4268.53px;
  width: 1905px;
  height: 513.14px;
  overflow: hidden;
}

.figma-home__image-cta img {
  width: 1905px;
  height: 513px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.figma-home__image-cta p {
  position: absolute;
  left: 653px;
  top: 214.56px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 19.6px;
  line-height: 84px;
  text-transform: uppercase;
  white-space: nowrap;
}

.figma-home__footer {
  position: absolute;
  left: 0;
  top: 4781.67px;
  width: 1905px;
  height: 238.19px;
  background: #2d2d2d;
  color: #fff;
}

.figma-home__footer-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 1905px;
  height: 158.19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.figma-home__footer-top a {
  position: absolute;
  left: 838.42px;
  top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 228.16px;
  height: 45.19px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12.8px;
  font-weight: 500;
  letter-spacing: 2.56px;
  line-height: 19.2px;
  text-transform: uppercase;
}

.figma-home__footer-bottom {
  position: absolute;
  left: 0;
  top: 158.19px;
  width: 1905px;
  height: 80px;
}

.figma-home__footer-bottom > p {
  position: absolute;
  left: 48px;
  top: 31.59px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11.2px;
  font-weight: 400;
  letter-spacing: 0.56px;
  line-height: 16.8px;
  white-space: nowrap;
}

.figma-home__footer-icons {
  position: absolute;
  left: 898px;
  top: 29.14px;
  display: flex;
  gap: 19px;
}

.figma-home__footer-icons a,
.figma-home__footer-icons img {
  width: 24px;
  height: 24px;
}

.figma-home__footer-icons img {
  object-fit: contain;
}

.figma-home__footer-bottom nav {
  position: absolute;
  right: 48px;
  top: 28px;
  display: flex;
  gap: 44px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 1.248px;
  line-height: 15.6px;
  text-transform: uppercase;
}

.figma-contact__intro {
  position: absolute;
  left: 0;
  top: 211.39px;
  width: 1905px;
  height: 263px;
  background: #fff;
}

.figma-contact__intro h1 {
  position: absolute;
  left: 24px;
  top: 56px;
  width: 1857px;
  margin: 0;
  color: #000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 13.2px;
  line-height: 52.8px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.figma-contact__intro div {
  position: absolute;
  left: 922.5px;
  top: 129px;
  width: 60px;
  height: 1px;
  background: #333;
}

.figma-contact__intro p {
  position: absolute;
  left: 602.5px;
  top: 154px;
  width: 700px;
  margin: 0;
  color: #333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  line-height: 22.8px;
  text-align: center;
  text-transform: uppercase;
}

.figma-contact__form-section {
  position: absolute;
  left: 0;
  top: 474.39px;
  width: 1905px;
  height: 1001px;
  background: #fff;
}

.figma-contact__form {
  position: absolute;
  left: 568.5px;
  top: 32px;
  width: 770px;
  height: 850px;
}

.figma-contact__form label,
.figma-contact__form span,
.figma-contact__form input,
.figma-contact__form textarea,
.figma-contact__form button {
  display: block;
}

.figma-contact__form label {
  position: absolute;
  left: 12px;
  width: 746px;
}

.figma-contact__form label:nth-child(1) {
  top: 0;
  height: 124px;
}

.figma-contact__form label:nth-child(2) {
  top: 146px;
  height: 140px;
}

.figma-contact__form label:nth-child(3) {
  top: 308px;
  height: 330px;
}

.figma-contact__form span {
  color: #333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.96px;
  line-height: 18px;
  text-transform: uppercase;
}

.figma-contact__form button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.figma-contact__form label:nth-child(2) span,
.figma-contact__form label:nth-child(3) span {
  margin-top: 16px;
}

.figma-contact__form input,
.figma-contact__form textarea {
  width: 746px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #000;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
}

.figma-contact__form input[aria-invalid="true"],
.figma-contact__form textarea[aria-invalid="true"],
.figma-contact__consent input[aria-invalid="true"] {
  border-color: #9f2f2f;
  background: #fff7f7;
}

.figma-contact__form input {
  height: 46.39px;
  margin-top: 29px;
  padding: 0 14px;
}

.figma-contact__form label:nth-child(2) input {
  margin-top: 29px;
}

.figma-contact__form textarea {
  height: 229.91px;
  margin-top: 29px;
  padding: 12px 14px;
  resize: vertical;
}

.figma-contact__field-error {
  position: absolute;
  left: 0;
  top: 100px;
  margin: 0;
  color: #9f2f2f;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;
  text-transform: none;
}

.figma-contact__form label:nth-child(2) .figma-contact__field-error {
  top: 116px;
}

.figma-contact__field-error[hidden] {
  display: none;
}

.figma-contact__field-error--message {
  top: 302px;
}

.figma-contact__field-error--consent {
  left: 30px;
  top: 31px;
}

.figma-contact__consent {
  position: absolute;
  left: 12px;
  top: 654px;
  width: 746px;
  min-height: 46px;
  cursor: pointer;
}

.figma-contact__consent input {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.42);
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}

.figma-contact__consent input:checked {
  background: #000;
  border-color: #000;
}

.figma-contact__consent input:checked::after {
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.figma-contact__consent span {
  position: absolute;
  left: 30px;
  top: 0;
  width: 716px;
  pointer-events: none;
  color: #333;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: none;
}

.figma-contact__honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.figma-contact__form button {
  position: absolute;
  left: 12px;
  top: 724px;
  width: 746px;
  height: 47.97px;
  border: 0;
  background: #b8a07e;
  color: #000;
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.96px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
}

.figma-contact__notice {
  position: absolute;
  left: 12px;
  top: 790px;
  width: 746px;
  min-height: 42px;
  margin: 0;
  padding: 13px 18px 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.96px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
}

.figma-contact__notice[hidden] {
  display: none;
}

.figma-contact__notice[data-state="success"] {
  border-color: rgba(184, 160, 126, 0.75);
  background: rgba(184, 160, 126, 0.12);
}

.figma-contact__notice[data-state="error"] {
  border-color: rgba(159, 47, 47, 0.42);
  background: #fff7f7;
  color: #9f2f2f;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 32px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(560px, calc(100vw - 64px));
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  color: #282826;
  font-family: "Albert Sans", Arial, sans-serif;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.cookie-banner button {
  width: 118px;
  height: 38px;
  border: 1px solid #000;
  border-radius: 3px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.figma-contact__image-cta {
  top: 1473.53px;
}

.figma-contact__footer {
  top: 1986.67px;
}

@media (hover: hover) {
  .figma-home__button:hover,
  .figma-home__footer-top a:hover,
  .figma-contact__form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }

  .figma-home__direction-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
    filter: contrast(1.03);
  }

}

@media (min-width: 901px) and (max-width: 1904px) {
  .figma-home,
  .figma-contact {
    width: 100vw;
    margin: 0;
    zoom: 1;
  }

  .figma-home__header,
  .figma-home__hero,
  .figma-home__strip,
  .figma-home__directions,
  .figma-home__potential,
  .figma-home__consult,
  .figma-home__works,
  .figma-home__image-cta,
  .figma-home__footer,
  .figma-home__footer-top,
  .figma-home__footer-bottom,
  .figma-contact__intro,
  .figma-contact__form-section {
    width: 100vw;
  }

  .figma-home__brand {
    left: max(24px, calc(50vw - 550px));
  }

  .figma-home__nav {
    right: max(196px, calc(50vw - 346px));
    left: auto;
  }

  .figma-home__icons {
    right: max(32px, calc(50vw - 560px));
    left: auto;
  }

  .figma-home__hero-copy h1 {
    right: clamp(32px, calc(50vw - 906px), 46px);
    left: auto;
    width: min(1017px, calc(100vw - 96px));
    font-size: clamp(44px, 2.73vw, 52px);
    line-height: clamp(50px, 2.78vw, 53px);
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.52);
  }

  .figma-home__hero-copy p {
    right: clamp(32px, calc(50vw - 817px), 135px);
    left: auto;
    width: min(760px, calc(100vw - 96px));
    text-shadow: 0 1px 14px rgba(255, 255, 255, 0.58);
  }

  .figma-home__button--hero {
    right: clamp(32px, calc(50vw - 817px), 136px);
    left: auto;
  }

  .figma-home__directions h2,
  .figma-home__potential-image,
  .figma-home__works-copy {
    left: max(48px, calc(50vw - 540px));
  }

  .figma-home__direction-grid {
    left: 50%;
    transform: translateX(-50%);
  }

  .figma-home__potential-copy {
    left: min(calc(100vw - 554px), calc(50vw + 13.5px));
  }

  .figma-home__consult h2 {
    left: 50%;
    width: min(1038px, calc(100vw - 96px));
    transform: translateX(-50%);
  }

  .figma-home__consult p {
    left: 50%;
    width: min(900px, calc(100vw - 96px));
    transform: translateX(-50%);
  }

  .figma-home__button--consult {
    left: 50%;
    transform: translateX(-50%);
  }

  .figma-home__slider {
    left: min(calc(100vw - 574px), calc(50vw + 67.5px));
  }

  .figma-home__image-cta img {
    width: 100vw;
  }

  .figma-home__image-cta p {
    left: 50%;
    transform: translateX(-50%);
  }

  .figma-home__footer-top a,
  .figma-home__footer-icons {
    left: 50%;
    transform: translateX(-50%);
  }

  .figma-contact__intro h1 {
    left: 0;
    width: 100vw;
    font-size: clamp(36px, 2.31vw, 44px);
    letter-spacing: clamp(8px, 0.69vw, 13.2px);
  }

  .figma-contact__intro div {
    left: 50%;
    transform: translateX(-50%);
  }

  .figma-contact__intro p {
    left: 50%;
    width: min(700px, calc(100vw - 96px));
    transform: translateX(-50%);
  }

  .figma-contact__form {
    left: 50%;
    width: min(770px, calc(100vw - 96px));
    transform: translateX(-50%);
  }

  .figma-contact__form label,
  .figma-contact__form input,
  .figma-contact__form textarea,
  .figma-contact__form button,
  .figma-contact__notice {
    width: calc(100% - 24px);
  }

  .figma-contact__form .figma-contact__consent input {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
  }

  .figma-contact__form .figma-contact__consent span {
    width: calc(100% - 30px);
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .figma-home__hero-copy::before {
    position: absolute;
    right: -180px;
    top: 338px;
    z-index: 2;
    width: min(680px, 72vw);
    height: 460px;
    background: radial-gradient(
      ellipse at 62% 54%,
      rgba(255, 255, 255, 0.74) 0%,
      rgba(255, 255, 255, 0.42) 45%,
      rgba(255, 255, 255, 0) 76%
    );
    content: "";
    filter: blur(18px);
    pointer-events: none;
  }

  .figma-home__hero-copy h1 {
    right: 32px;
    top: 432px;
    width: min(496px, calc(100vw - 64px));
    font-size: 34px;
    line-height: 40px;
  }

  .figma-home__hero-copy p {
    right: 32px;
    top: 610px;
    width: min(520px, calc(100vw - 64px));
  }

  .figma-home__button--hero {
    right: 32px;
    top: 684px;
  }

  .figma-home__direction-grid {
    left: 48px;
    width: calc(100vw - 96px);
    overflow-x: auto;
    transform: none;
  }

  .figma-home__potential-image {
    left: 48px;
    width: 430px;
    height: 646px;
  }

  .figma-home__potential-copy {
    left: 526px;
    width: min(430px, calc(100vw - 574px));
  }

  .figma-home__potential-copy h2 {
    font-size: 44px;
    line-height: 58px;
  }

  .figma-home__potential-copy p {
    width: 100%;
  }

  .figma-home__works-copy {
    left: 48px;
    width: 430px;
  }

  .figma-home__works-copy h2 {
    font-size: 44px;
    line-height: 58px;
  }

  .figma-home__works-copy p {
    width: 100%;
  }

  .figma-home__slider {
    left: calc(100vw - 574px);
  }
}

@media (min-width: 1121px) and (max-width: 1500px) {
  .figma-home__hero-copy h1 {
    right: 48px;
    width: 760px;
    font-size: 48px;
    line-height: 52px;
  }

  .figma-home__hero-copy p,
  .figma-home__button--hero {
    right: 48px;
  }
}

@media (hover: hover) and (min-width: 901px) and (max-width: 1904px) {
  .figma-home__button--consult:hover,
  .figma-home__footer-top a:hover {
    transform: translateX(-50%) translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .figma-home__marquee {
    animation: none;
  }

  .figma-home__slides img,
  .figma-home__direction-card,
  .figma-home__button {
    transition: none;
  }
}

@keyframes figma-home-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .figma-home-page {
    min-width: 0;
    overflow-x: clip;
    background: #fff;
  }

  .figma-home {
    width: 100%;
    max-width: 100vw;
    height: var(--figma-visual-height, 3949px);
    margin: 0;
    overflow: hidden;
    background: #fff;
    zoom: 1;
  }

  .figma-home__canvas {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 430px;
    height: 3949px;
    transform: scale(var(--figma-scale, 1));
    transform-origin: left top;
  }

  .figma-home__header {
    left: 0;
    top: 0.39px;
    z-index: 30;
    width: 430px;
    height: 92px;
  }

  .figma-home__brand {
    left: 160px;
    top: 4.61px;
    z-index: 34;
    width: 110px;
    height: 83px;
  }

  .figma-home__brand img {
    left: 25px;
    top: 8.61px;
    width: 61px;
    height: 61px;
  }

  .figma-home__brand span {
    left: -93.5px;
    top: 26px;
    width: 103px;
    color: #282826;
    font-size: 14px;
    line-height: 27px;
  }

  .mobile-menu-open .figma-home__brand span {
    left: -145px;
  }

  .figma-home__nav,
  .figma-home__icons {
    display: none;
  }

  .figma-home__menu-toggle {
    position: absolute;
    left: 354.81px;
    top: 21.61px;
    z-index: 34;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51.19px;
    height: 44.78px;
    padding: 0;
    border: 1px solid #000;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
  }

  .figma-home__menu-toggle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .figma-home__mobile-menu:not([hidden]) {
    position: absolute;
    left: 0;
    top: -0.39px;
    z-index: 32;
    display: block;
    width: 430px;
    height: 376px;
    padding: 76.78px 24px 0;
    background: #fff;
  }

  .figma-home__mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 382px;
    height: 41.2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #333;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13.6px;
    font-weight: 500;
    letter-spacing: 2.04px;
    line-height: 20.4px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .figma-home__mobile-menu a[aria-current="page"] {
    background: rgba(0, 0, 0, 0.06);
    color: #000;
  }

  .figma-home__mobile-menu a:nth-child(5) {
    height: 40.2px;
    border-bottom: 0;
  }

  .figma-home__mobile-menu .figma-home__mobile-menu-booking {
    height: 36.8px;
    margin-top: 24.8px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 10.4px;
    letter-spacing: 1.25px;
    line-height: 15.6px;
  }

  .figma-home__menu-toggle:focus-visible,
  .figma-home__mobile-menu a:focus-visible,
  .figma-home__direction-controls button:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.74);
    outline-offset: 3px;
  }

  .figma-home__hero {
    left: 0;
    top: 0;
    width: 430px;
    height: var(--mobile-hero-height, 547px);
  }

  .figma-home__hero-image,
  .figma-home__hero-video {
    left: 0;
    top: 0;
    width: 430px;
    height: var(--mobile-hero-height, 547px);
    object-fit: cover;
    object-position: center center;
  }

  .figma-home__hero-image--desktop,
  .figma-home__hero-video.hero-video--desktop {
    display: none;
  }

  .figma-home__hero-image--mobile,
  .figma-home__hero-video--mobile {
    display: block;
  }

  .figma-home__hero-copy {
    display: none;
  }

  .figma-home__strip {
    left: 0;
    top: var(--mobile-hero-height, 547px);
    width: 430px;
    height: 70.19px;
    border-top: 1px solid #bcb9b9;
    border-bottom: 1px solid #bcb9b9;
    background: #fff;
  }

  .figma-home__marquee {
    top: 23.25px;
    animation-duration: 31s;
  }

  .figma-home__marquee-group {
    gap: 52px;
    padding-right: 52px;
    font-size: 14px;
    line-height: 22.4px;
  }

  .figma-home__marquee-group span::after {
    right: -32px;
  }

  .figma-home__directions {
    left: 0;
    top: calc(var(--mobile-hero-height, 547px) + 71.61px);
    width: 430px;
    height: 408px;
    overflow: hidden;
    background: #fff;
  }

  .figma-home__directions h2 {
    left: 15px;
    top: 33.18px;
    width: 114px;
    font-size: 16px;
    line-height: 22.4px;
  }

  .figma-home__direction-controls {
    position: absolute;
    left: 362px;
    top: 33.18px;
    display: flex;
    gap: 5px;
    width: 53px;
    height: 24px;
  }

  .figma-home__direction-controls button {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
  }

  .figma-home__direction-controls button:last-child {
    border-color: #000;
  }

  .figma-home__direction-controls button::before {
    position: absolute;
    top: 6px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    content: "";
  }

  .figma-home__direction-controls button:first-child::before {
    left: 7px;
    transform: rotate(-45deg);
  }

  .figma-home__direction-controls button:last-child::before {
    right: 7px;
    transform: rotate(135deg);
  }

  .figma-home__direction-grid {
    left: 15px;
    top: 87px;
    display: flex;
    width: 400px;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scroll-snap-type: x mandatory;
    transform: none;
    scrollbar-width: none;
  }

  .figma-home__direction-grid::-webkit-scrollbar {
    display: none;
  }

  .figma-home__direction-card {
    flex: 0 0 190px;
    width: 190px;
    height: 243px;
    scroll-snap-align: start;
  }

  .figma-home__direction-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 195px;
    height: 245px;
    max-width: none;
    object-fit: fill;
  }

  .figma-home__direction-card:nth-child(2) img {
    left: -14px;
    top: -0.1px;
    width: 205px;
    height: 256px;
  }

  .figma-home__direction-card:nth-child(3) img {
    left: -13px;
    top: -0.1px;
    width: 227px;
    height: 284px;
  }

  .figma-home__direction-card:nth-child(4) img {
    left: -12px;
    top: 0;
    width: 215px;
    height: 269px;
  }

  .figma-home__direction-card span,
  .figma-home__direction-card:nth-child(2) span,
  .figma-home__direction-card:nth-child(3) span {
    left: 0;
    top: 183px;
    width: 169px;
    min-width: 0;
    height: 40px;
    padding: 0;
    border-radius: 0 3px 3px 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
    white-space: normal;
  }

  .figma-home__direction-card:nth-child(4) span {
    left: 0;
    top: 183px;
    width: 166px;
    min-width: 0;
    height: 40px;
    padding: 0;
    font-size: 15px;
    line-height: 40px;
  }

  .figma-home__potential {
    left: 0;
    top: calc(var(--mobile-hero-height, 547px) + 528.16px);
    width: 430px;
    height: 922.3px;
    background: #fff;
  }

  .figma-home__potential::before {
    position: absolute;
    left: 0;
    top: -48.55px;
    width: 430px;
    height: 1px;
    background: #bcb9b9;
    content: "";
  }

  .figma-home__potential-image {
    left: 16px;
    top: 30.45px;
    width: 400px;
    height: 600px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
  }

  .figma-home__potential-copy {
    left: 29px;
    top: 672.45px;
    width: 372px;
    text-align: center;
  }

  .figma-home__potential-copy h2 {
    width: 348px;
    margin: 0 0 0 12px;
    font-size: 24px;
    line-height: 33.6px;
    text-align: center;
  }

  .figma-home__potential-copy p {
    width: 372px;
    margin: 13px 0 0;
    font-size: 14px;
    line-height: 22.4px;
    text-align: center;
  }

  .figma-home__button--small {
    left: 95.97px;
    top: 193px;
    width: 180.06px;
    height: 38.8px;
    font-size: 14px;
    line-height: 17px;
  }

  .figma-home__works {
    left: 0;
    top: calc(var(--mobile-hero-height, 547px) + 1467.61px);
    width: 430px;
    height: 1079.97px;
    background: #fff;
  }

  .figma-home__slider {
    left: 16px;
    top: 0;
    width: 400px;
    height: 640px;
  }

  .figma-home__slides {
    width: 400px;
    height: 600px;
  }

  .figma-home__slider-dots {
    left: 113px;
    top: 617px;
    gap: 8px;
  }

  .figma-home__works-copy {
    left: 30px;
    top: 692.9px;
    width: 372px;
    text-align: center;
  }

  .figma-home__works-copy h2 {
    width: 348px;
    margin: 0 0 0 12px;
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    text-align: center;
  }

  .figma-home__works-copy p {
    width: 372px;
    margin: 28px 0 0;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .figma-home__image-cta {
    left: 0;
    top: calc(var(--mobile-hero-height, 547px) + 2547.58px);
    z-index: 2;
    width: 430px;
    height: 512.59px;
  }

  .figma-home__image-cta img {
    width: 430px;
    height: 513px;
    object-fit: cover;
    object-position: center;
  }

  .figma-home__image-cta p {
    display: none;
  }

  .figma-home__consult {
    left: 0;
    top: calc(var(--mobile-hero-height, 547px) + 2682px);
    z-index: 6;
    width: 429px;
    height: 379px;
    background: transparent;
  }

  .figma-home__consult h2 {
    left: 37px;
    top: 37px;
    width: 357px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30.8px;
    text-align: center;
    transform: none;
  }

  .figma-home__consult p {
    left: 35.5px;
    top: 126px;
    width: 357px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 14px;
    line-height: 19.6px;
    text-align: center;
    transform: none;
  }

  .figma-home__button--consult {
    left: 137px;
    top: 269px;
    width: 154px;
    height: 39px;
    border-color: #fff;
    background: #000;
    transform: none;
  }

  .figma-home__footer {
    left: 0;
    top: calc(var(--mobile-hero-height, 547px) + 3060.17px);
    z-index: 4;
    width: 430px;
    height: 341.38px;
    background: #2d2d2d;
  }

  .figma-home__footer-top {
    width: 430px;
    height: 158.19px;
  }

  .figma-home__footer-top a {
    left: 100.92px;
    top: 56px;
    width: 228.16px;
    height: 45.19px;
    font-size: 12.8px;
    letter-spacing: 2.56px;
    line-height: 19.2px;
    transform: none;
  }

  .figma-home__footer-bottom {
    top: 158.19px;
    width: 430px;
    height: 183.19px;
  }

  .figma-home__footer-bottom > p {
    left: 35px;
    top: 27.64px;
    width: 361px;
    font-size: 11.2px;
    letter-spacing: 0.56px;
    line-height: 16.8px;
    text-align: center;
    white-space: normal;
  }

  .figma-home__footer-icons {
    left: 160px;
    top: 58.64px;
    gap: 19px;
    transform: none;
  }

  .figma-home__footer-bottom nav {
    left: 24px;
    right: auto;
    top: 100.8px;
    justify-content: center;
    width: 382px;
    gap: 10px;
    font-size: 10.4px;
    letter-spacing: 1.25px;
    line-height: 15.6px;
  }
}

@media (max-width: 900px) {
  .figma-home__brand span {
    left: -145px;
  }

  .mobile-menu-open .figma-home__brand span {
    left: -145px;
  }

  .mobile-footer-cta {
    position: absolute;
    z-index: 3;
    display: block;
    left: 35.5px;
    top: 64.12px;
    width: 357px;
    height: 218px;
    color: #fff;
    text-align: center;
  }

  .mobile-footer-cta h2 {
    position: absolute;
    left: 1px;
    top: 57.75px;
    width: 357px;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30.8px;
    text-align: center;
  }

  .mobile-footer-cta a {
    position: absolute;
    left: 100.99px;
    top: 175.98px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 154px;
    height: 39px;
    border: 1px solid #fff;
    border-radius: 3px;
    background: #000;
    color: #fff;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
  }

  .mobile-footer-cta a::after {
    width: 9.33px;
    height: 9.33px;
    margin-left: 12px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .figma-home__consult {
    top: calc(var(--mobile-hero-height, 547px) + 2547.58px);
    height: 395px;
  }

  .figma-home__consult h2 {
    left: 36.5px;
    top: 121.88px;
    width: 357px;
  }

  .figma-home__consult p {
    display: none;
  }

  .figma-home__button--consult {
    left: 137px;
    top: 240px;
  }

  .figma-home__button--consult::after {
    width: 9.33px;
    height: 9.33px;
    margin-left: 12px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .figma-contact-page,
  .seo-detail-page {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
    background: #fff;
  }

  .figma-contact {
    width: 100%;
    max-width: 100vw;
    height: var(--figma-visual-height, 1861px);
    margin: 0;
    overflow: hidden;
    background: #fff;
    color: #282826;
    zoom: 1;
  }

  .figma-contact__canvas {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 430px;
    height: 1861px;
    transform: scale(var(--figma-scale, 1));
    transform-origin: left top;
  }

  .figma-contact__header {
    left: 0;
    top: 0;
    width: 430px;
    height: 92px;
  }

  .figma-contact__intro {
    left: 0;
    top: 0;
    width: 430px;
    height: 225px;
    background: #fff;
  }

  .figma-contact__intro h1 {
    left: 24px;
    top: 117px;
    width: 382px;
    height: 41px;
    color: #282826;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 38px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    text-transform: none;
    white-space: nowrap;
  }

  .figma-contact__intro div {
    left: 185px;
    top: 174px;
    width: 60px;
    height: 1px;
    background: #282826;
    transform: none;
  }

  .figma-contact__intro p {
    left: 42px;
    top: 185px;
    width: 346px;
    color: #545454;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    line-height: 20px;
    text-align: center;
    text-transform: none;
    transform: none;
  }

  .figma-contact__form-section {
    left: 0;
    top: 0;
    width: 430px;
    height: 833px;
    background: transparent;
  }

  .figma-contact__form {
    left: 0;
    top: 0;
    width: 430px;
    height: 1070px;
    transform: none;
  }

  .figma-contact__form label {
    left: 24px;
    width: 382px;
    height: 108px;
  }

  .figma-contact__form label:nth-child(1) {
    top: 309px;
  }

  .figma-contact__form label:nth-child(2) {
    top: 449px;
    height: 108px;
  }

  .figma-contact__form label:nth-child(3) {
    top: 589px;
    height: 250px;
  }

  .figma-contact__field-error {
    top: 84px;
    font-size: 12px;
    line-height: 18px;
  }

  .figma-contact__form label:nth-child(2) .figma-contact__field-error {
    top: 84px;
  }

  .figma-contact__field-error--message {
    top: 220px;
  }

  .figma-contact__consent {
    left: 24px;
    top: 850px;
    width: 382px;
    min-height: 46px;
  }

  .figma-contact__consent input {
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
  }

  .figma-contact__consent span {
    left: 30px;
    top: 0;
    width: 352px;
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    text-transform: none;
  }

  .figma-contact__field-error--consent {
    left: 30px;
    top: 36px;
  }

  .figma-contact__form span,
  .figma-contact__form label:nth-child(2) span,
  .figma-contact__form label:nth-child(3) span {
    margin: 0;
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.9px;
    line-height: 18px;
    text-transform: none;
  }

  .figma-contact__form input,
  .figma-contact__form textarea {
    width: 382px;
    margin-top: 16px;
    border: 1px solid #d1d1d1;
    border-radius: 2px;
    background: #fff;
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 16px;
  }

  .figma-contact__form input,
  .figma-contact__form label:nth-child(2) input {
    height: 46px;
    margin-top: 16px;
    padding: 0 12px;
  }

  .figma-contact__form textarea {
    height: 180px;
    padding: 12px;
  }

  .figma-contact__form .figma-contact__consent input {
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
  }

  .figma-contact__form button {
    left: 24px;
    top: 930px;
    width: 382px;
    height: 48px;
    border: 1px solid #000;
    border-radius: 3px;
    background: #fff;
    color: #000;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 17px;
    text-transform: none;
  }

  .figma-contact__notice {
    left: 24px;
    top: 990px;
    width: 382px;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 18px;
    text-transform: none;
  }

  .figma-contact__image-cta {
    left: 0;
    top: 1125px;
    width: 430px;
    height: 394px;
    overflow: hidden;
  }

  .figma-contact__image-cta img {
    position: absolute;
    left: -387.5px;
    top: -150.8px;
    width: 1635.5px;
    height: 545.2px;
    max-width: none;
    object-fit: cover;
    filter: grayscale(100%);
  }

  .figma-contact__image-cta p {
    display: none;
  }

  .figma-contact__footer {
    left: 0;
    top: 1519.17px;
    width: 430px;
    height: 341.38px;
  }

  .figma-contact__footer .figma-home__footer-icons img {
    filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.78));
  }

  .figma-contact__footer .figma-home__footer-icons a:nth-child(1) img {
    content: url("../img/figma/current-mobile-pages/telegram.png");
  }

  .figma-contact__footer .figma-home__footer-icons a:nth-child(2) img {
    content: url("../img/figma/current-mobile-pages/instagram.png");
  }

  .figma-contact__footer .figma-home__footer-icons a:nth-child(3) img {
    content: url("../img/figma/current-mobile-pages/phone.png");
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 16px;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .contact-input-focused .cookie-banner {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .cookie-banner button {
    width: 100%;
    height: 42px;
  }

  .seo-detail {
    width: 100%;
    max-width: 100vw;
    height: var(--figma-visual-height, 4239px);
    margin: 0;
    overflow: hidden;
    background: #fff;
    color: #282826;
    font-family: "Playfair Display", Georgia, serif;
    transform: none;
    zoom: 1;
  }

  .seo-detail__canvas {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 430px;
    height: 4239px;
    transform: scale(var(--figma-scale, 1));
    transform-origin: left top;
  }

  .seo-header {
    left: 0;
    top: 0;
    z-index: 20;
    width: 430px;
    height: 92px;
  }

  .seo-brand {
    left: 160px;
    top: 4.61px;
    z-index: 24;
    width: 110px;
    height: 83px;
  }

  .seo-brand img {
    left: 25px;
    top: 8.61px;
    width: 61px;
    height: 61px;
  }

  .seo-brand span {
    left: -145px;
    top: 26px;
    width: 103px;
    color: #282826;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 27px;
    text-align: center;
    white-space: nowrap;
  }

  .seo-nav,
  .seo-header-icons {
    display: none;
  }

  .seo-menu-toggle {
    position: absolute;
    left: 354.81px;
    top: 21.61px;
    z-index: 24;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51.19px;
    height: 44.78px;
    padding: 0;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
  }

  .seo-menu-toggle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .seo-mobile-menu:not([hidden]) {
    position: absolute;
    left: 0;
    top: -0.39px;
    z-index: 22;
    display: block;
    width: 430px;
    height: 376px;
    padding: 76.78px 24px 0;
    background: #fff;
  }

  .seo-mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 382px;
    height: 41.2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #333;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13.6px;
    font-weight: 500;
    letter-spacing: 2.04px;
    line-height: 20.4px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .seo-mobile-menu a:nth-child(5) {
    height: 40.2px;
    border-bottom: 0;
  }

  .seo-mobile-menu .seo-mobile-menu-booking {
    height: 36.8px;
    margin-top: 24.8px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 10.4px;
    letter-spacing: 1.25px;
    line-height: 15.6px;
  }

  .seo-eyebrow {
    left: 24px;
    top: 127px;
    width: 197px;
    color: #545454;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 18px;
    text-transform: none;
  }

  .seo-hero h1,
  .seo-detail--cold .seo-hero h1,
  .seo-detail--total .seo-hero h1 {
    left: 24px;
    top: 176px;
    width: 382px;
    color: #282826;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 38px;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  .seo-lead,
  .seo-detail--cold .seo-lead,
  .seo-detail--total .seo-lead {
    left: 24px;
    top: 344px;
    width: 382px;
    color: #545454;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }

  .seo-button--hero {
    left: 24px;
    top: 448px;
    width: 166px;
    height: 42px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 17px;
  }

  .seo-facts {
    left: 24px;
    top: 522px;
    display: flex;
    gap: 10px;
    width: 374px;
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
  }

  .seo-facts span,
  .seo-facts span:nth-child(2) {
    width: 118px;
    min-height: 38px;
    padding: 0 6px;
    border: 1px solid #bcb9b9;
    border-radius: 5px;
    background: #fff;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 14px;
    text-align: center;
  }

  .seo-hero-image {
    left: 24px;
    top: 596px;
    width: 382px;
    height: 486px;
    border-radius: 4px;
  }

  .seo-hero-image img {
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
  }

  .seo-detail--hot .seo-hero-image img {
    content: url("../img/figma/current-mobile-pages/service-hot.png");
  }

  .seo-detail--cold .seo-hero-image img {
    content: url("../img/figma/current-mobile-pages/service-cold.png");
  }

  .seo-detail--total .seo-hero-image img {
    content: url("../img/figma/current-mobile-pages/service-total.png");
  }

  .seo-gives::before {
    left: 0;
    top: 1128px;
    width: 430px;
    background: #bcb9b9;
  }

  .seo-section-copy {
    left: 24px;
    top: 1160px;
    width: 382px;
    text-align: center;
  }

  .seo-gives h2,
  .seo-suitable h2,
  .seo-price h2,
  .seo-faq h2,
  .seo-process h2,
  .seo-care h2 {
    color: #282826;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  .seo-section-copy h2 {
    text-align: center;
  }

  .seo-section-copy p {
    display: none;
  }

  .seo-card-grid {
    left: 24px;
    top: 1220px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 382px;
  }

  .seo-info-card {
    position: relative;
    width: 382px;
    height: 92px;
    padding: 0;
    border: 1px solid #bcb9b9;
    border-radius: 4px;
    background: #fff;
  }

  .seo-info-card span {
    position: absolute;
    left: 19px;
    top: 17px;
    color: #545454;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 16px;
  }

  .seo-info-card h3 {
    position: absolute;
    left: 66px;
    top: 10px;
    margin: 0;
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    white-space: nowrap;
  }

  .seo-info-card p {
    position: absolute;
    left: 66px;
    top: 37px;
    width: 292px;
    margin: 0;
    color: #545454;
    font-size: 13px;
    line-height: 19px;
  }

  .seo-suitable::before {
    left: 0;
    top: 1686px;
    width: 430px;
    background: #bcb9b9;
  }

  .seo-suitable h2 {
    left: 24px;
    top: 1718px;
    width: 382px;
    text-align: center;
  }

  .seo-mini-cards {
    left: 24px;
    top: 1782px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 382px;
  }

  .seo-mini-cards article {
    position: relative;
    width: 382px;
    height: 52px;
    padding: 0;
    border: 1px solid #bcb9b9;
    border-radius: 3px;
    background: #fff;
  }

  .seo-mini-cards span {
    display: none;
  }

  .seo-mini-cards p {
    position: absolute;
    left: 18px;
    top: 14px;
    width: 346px;
    margin: 0;
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
  }

  .seo-process {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 430px;
  }

  .seo-process::before,
  .seo-care::before {
    position: absolute;
    left: 0;
    width: 430px;
    height: 1px;
    background: #bcb9b9;
    content: "";
  }

  .seo-process::before {
    top: 2018px;
  }

  .seo-process h2 {
    position: absolute;
    left: 24px;
    top: 2050px;
    width: 382px;
    margin: 0;
    text-align: center;
  }

  .seo-process ul {
    position: absolute;
    left: 69px;
    top: 2112px;
    width: 306px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .seo-process li {
    position: relative;
    margin: 0 0 13px;
    color: #282826;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
  }

  .seo-process li::before {
    position: absolute;
    left: -26px;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #282826;
    content: "";
  }

  .seo-price::before {
    left: 0;
    top: 2311px;
    width: 430px;
    background: #bcb9b9;
  }

  .seo-price-copy,
  .seo-detail--cold .seo-price-copy {
    left: 24px;
    top: 2343px;
    width: 382px;
  }

  .seo-price-copy h2 {
    margin: 0;
    text-align: center;
  }

  .seo-price-table {
    left: 24px;
    top: 2401px;
    width: 382px;
    height: 188px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .seo-price-table div:first-child {
    display: none;
  }

  .seo-price-table div {
    display: flex;
    align-items: center;
    height: 49px;
    border-top: 0;
    border-bottom: 1px solid #bcb9b9;
  }

  .seo-price-table span,
  .seo-price-table strong {
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 20px;
  }

  .seo-price-table span::after {
    content: " — ";
  }

  .seo-price-copy p,
  .seo-detail--cold .seo-price-copy p {
    position: absolute;
    left: 0;
    top: 288px;
    width: 382px;
    margin: 0;
    color: #545454;
    font-size: 14px;
    line-height: 22px;
  }

  .seo-care {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 430px;
  }

  .seo-care::before {
    top: 2771px;
  }

  .seo-care h2 {
    position: absolute;
    left: 24px;
    top: 2803px;
    width: 382px;
    margin: 0;
    text-align: center;
  }

  .seo-care p {
    position: absolute;
    left: 24px;
    top: 2890px;
    width: 382px;
    margin: 0;
    color: #545454;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
  }

  .seo-faq h2 {
    left: 24px;
    top: 3073px;
    width: 382px;
    text-align: center;
  }

  .seo-faq dl {
    left: 24px;
    top: 3131px;
    width: 382px;
  }

  .seo-faq div {
    display: block;
    min-height: 112px;
    padding: 0;
    border-top: 0;
  }

  .seo-faq dt {
    color: #282826;
    font-family: "Albert Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
  }

  .seo-faq dd {
    margin: 10px 0 0;
    color: #545454;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 14px;
    line-height: 22px;
  }

  .seo-image-cta {
    left: 0;
    top: 3503px;
    width: 430px;
    height: 394px;
    overflow: hidden;
  }

  .seo-image-cta img {
    position: absolute;
    left: -387.5px;
    top: -150.8px;
    width: 1635.5px;
    height: 545.2px;
    max-width: none;
    object-fit: cover;
    filter: grayscale(100%);
  }

  .seo-image-cta p {
    display: none;
  }

  .seo-footer {
    left: 0;
    top: 3897.17px;
    width: 430px;
    height: 341.38px;
    background: #2d2d2d;
  }

  .seo-footer-top {
    width: 430px;
    height: 158.19px;
  }

  .seo-footer-top a {
    left: 100.92px;
    top: 56px;
    width: 228.16px;
    height: 45.19px;
    font-size: 12.8px;
    letter-spacing: 2.56px;
    line-height: 19.2px;
  }

  .seo-footer-bottom {
    top: 158.19px;
    width: 430px;
    height: 183.19px;
  }

  .seo-footer-bottom > p {
    left: 35px;
    top: 27.64px;
    width: 361px;
    font-size: 11.2px;
    letter-spacing: 0.56px;
    line-height: 16.8px;
    text-align: center;
    white-space: normal;
  }

  .seo-footer-icons {
    left: 160px;
    top: 58.64px;
    gap: 19px;
  }

  .seo-footer-icons img {
    filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.78));
  }

  .seo-footer-icons a:nth-child(1) img {
    content: url("../img/figma/current-mobile-pages/telegram.png");
  }

  .seo-footer-icons a:nth-child(2) img {
    content: url("../img/figma/current-mobile-pages/instagram.png");
  }

  .seo-footer-icons a:nth-child(3) img {
    content: url("../img/figma/current-mobile-pages/phone.png");
  }

  .seo-footer-bottom nav {
    left: 24px;
    right: auto;
    top: 100.8px;
    justify-content: center;
    width: 382px;
    gap: 10px;
    font-size: 10.4px;
    letter-spacing: 1.25px;
    line-height: 15.6px;
  }
}

@media (max-width: 900px) {
  .figma-home .figma-home__hero-image--desktop,
  .figma-home .figma-home__hero-video.hero-video--desktop {
    display: none !important;
  }

  .figma-home .figma-home__hero-image--mobile {
    z-index: 0;
    display: block !important;
  }
}
