:root {
  --primary-color: #6f00ff;
  --primary-color-deep: #5600c9;
  --bg-page: #ffffff;
  --bg-soft: #f7f7f7;
  --bg-muted: #f2f2f5;
  --border-color: #e6e6eb;
  --text-primary: #060609;
  --text-secondary: #5d5d68;
  --text-muted: #8f8f9b;
  --white-color: #ffffff;
  --font-family: "Inter Tight", sans-serif;
  --hero-size: clamp(2rem, 2.35vw + 0.95rem, 3.2rem);
  --heading-size: clamp(2rem, 2.6vw + 1rem, 3.25rem);
  --body-size: clamp(1rem, 0.45vw + 0.92rem, 1.08rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-primary);
  overflow-x: hidden;
}

body.page-loading,
body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background-color: var(--text-primary);
  color: var(--white-color);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
  z-index: 1200;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 4px;
}

.container,
.container-small {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.container-small {
  width: min(1100px, calc(100% - 2rem));
}

.page-loader {
  display: none;
}

.js .page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 7, 10, 0.98);
  z-index: 9999;
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.js .page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__logo {
  width: min(150px, 34vw);
  animation: pageLoaderPulse 1.6s ease-in-out infinite;
}

@keyframes pageLoaderPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.72;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.head-section {
  width: 100%;
  padding: 0.8rem 0 1rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 10;
}

.nav-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 10px 0;
  position: relative;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hamburger-menu {
  display: inline-flex;
  position: relative;
}

.socials,
.logo,
.menu-toggle {
  position: relative;
  z-index: 45;
}

.socials {
  display: flex;
  align-items: center;
}

.socials a img {
  width: 19px;
  margin-left: 1rem;
  display: inline-block;
}

.socials a:first-child img {
  margin-left: 0;
}

.logo a img {
  width: 130px;
  display: inline-block;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  --bar-offset: 6px;
}

.menu-toggle .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle .bar:first-child {
  transform: translateY(calc(var(--bar-offset) * -1));
}

.menu-toggle .bar:last-child {
  transform: translateY(var(--bar-offset));
}

.menu-toggle.is-active .bar:first-child {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle.is-active .bar:last-child {
  transform: translateY(0) rotate(-45deg);
}

.section-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 84px;
  width: 100vw;
  height: calc(100vh - 84px);
  max-height: calc(100vh - 84px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 9;
  padding: clamp(1.25rem, 3vh, 2.25rem) 5% 1.5rem;
  counter-reset: nav-item;
  display: grid;
  place-content: center;
  row-gap: clamp(8px, 1.3vh, 14px);
}

.section-menu[hidden] {
  display: none;
}

.section-menu a {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 16px);
  color: var(--text-primary);
  font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-menu a::before {
  counter-increment: nav-item;
  content: counter(nav-item, decimal-leading-zero);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6, 6, 9, 0.06);
  color: rgba(6, 6, 9, 0.75);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

main {
  display: block;
}

.hero-section {
  padding: 9.5rem 0 5rem;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% / 12 - 1px),
    rgba(6, 6, 9, 0.05) calc(100% / 12 - 1px),
    rgba(6, 6, 9, 0.05) calc(100% / 12)
  );
}

.hero-flex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2.25rem, 4vw, 4.75rem);
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-gradient-orb {
  width: min(100%, 25rem);
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
  max-width: 30rem;
  align-content: center;
}

.section-label,
.footer-kicker,
.visit {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.hero-copy h1,
.footer-content-top h2 {
  font-size: var(--hero-size);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 13ch;
  text-wrap: balance;
}

.hero-copy > p,
.split-copy > p,
.footer-summary,
.address,
.number a,
.email a,
.hero-note p {
  font-size: var(--body-size);
  line-height: 1.7;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.hero-copy > p {
  max-width: 30rem;
  font-size: clamp(1.2rem, 0.95vw + 0.95rem, 1.55rem);
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 600;
}

.hero-copy-muted {
  color: #9a9a9f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-cta {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.8rem;
  border-radius: 3rem;
  background-color: var(--text-primary);
  color: var(--white-color);
  font-weight: 600;
  font-size: 1.2rem;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(assets/arrow-right.svg) no-repeat center;
  opacity: 0;
  transform: translateX(-8px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.hero-cta:hover {
  color: transparent;
}

.hero-cta:hover::after {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.focus-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
}

.focus-section-alt {
  background-color: var(--bg-soft);
}

.split-layout,
.footer-content-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.split-layout-reverse .split-image {
  order: 2;
}

.split-layout-reverse .split-copy {
  order: 1;
}

.split-image {
  height: clamp(24rem, 34vw, 29.5rem);
  background-color: var(--bg-muted);
  overflow: hidden;
  border-radius: 1.75rem;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.split-image-seo img {
  transform: scale(0.9);
  transform-origin: center;
}

.split-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.split-copy h2 {
  font-size: var(--heading-size);
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.split-copy ul {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.split-copy li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
}

.split-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background-color: var(--text-primary);
}

.section-result {
  color: var(--text-primary) !important;
  font-weight: 600;
}

.footer-section {
  background: #f5f5f5;
  padding: 7rem 5% 5rem;
  background-color: var(--bg-soft);
}

.footer-content {
  display: grid;
}

.footer-content-top {
  text-align: center;
  margin-bottom: 8rem;
}

.footer-content-top h2 {
  font-size: clamp(3.5rem, 7vw + 0.75rem, 6.23rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  max-width: none;
}

.footer-btn {
  width: fit-content;
  justify-self: center;
  text-align: center;
  font-size: 1.188rem;
}

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

.footer-content-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-content-bottom .content-left,
.footer-content-bottom .content-right,
.footer-content-bottom .address-contact,
.footer-content-bottom .contact,
.footer-content-bottom .socials {
  display: grid;
  gap: 0.9rem;
}

.footer-content-bottom .visit-us .visit {
  border: 2px solid var(--text-primary);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 5rem;
  padding: 0.7rem 1rem;
  width: fit-content;
  margin-bottom: 2rem;
}

.footer-content-bottom .city {
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  width: fit-content;
}

.footer-content-bottom .city::after {
  position: absolute;
  content: "";
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
}

.footer-content-bottom .address {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 2rem;
  width: 20ch;
}

.footer-content-bottom .number,
.footer-content-bottom .email {
  position: relative;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 2rem;
  width: fit-content;
}

.footer-content-bottom .number::after,
.footer-content-bottom .email::after {
  position: absolute;
  content: "";
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
}

.footer-content-bottom .number a,
.footer-content-bottom .email a {
  color: var(--text-primary);
}

.footer-content-bottom .content-right .socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-content-bottom .content-right .socials a img {
  width: 19px;
  display: inline-block;
}

.footer-courtesy {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.courtesy {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 1074px) {
  .hero-section {
    padding: 8.75rem 0 4.75rem;
  }

  .hero-flex {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: 2;
    width: min(100%, 34rem);
    justify-self: center;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    max-width: min(100%, 48rem);
    justify-self: center;
    justify-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-visual {
    min-height: auto;
    min-height: 22rem;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-copy > p {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    width: min(100%, 26rem);
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .focus-section,
  .footer-section {
    padding: 4.5rem 0;
  }

  .hero-section {
    padding: 8.75rem 0 4.5rem;
    background-image: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% / 8 - 1px),
      rgba(6, 6, 9, 0.05) calc(100% / 8 - 1px),
      rgba(6, 6, 9, 0.05) calc(100% / 8)
    );
  }

  .hero-flex,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-layout-reverse .split-image,
  .split-layout-reverse .split-copy {
    order: initial;
  }

  .hero-copy {
    text-align: center;
    justify-items: center;
    gap: 1.5rem;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-copy > p {
    max-width: 34rem;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-cta {
    width: min(100%, 24rem);
    justify-content: center;
  }

  .split-image {
    height: 360px;
  }

  .split-copy {
    gap: 0.9rem;
  }

  .footer-content-top {
    margin-bottom: 4rem;
  }

  .footer-content-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-section {
    width: min(100%, calc(100% - 1.5rem));
  }

  .socials {
    display: none;
  }

  .logo a img {
    width: 105px;
  }

  .section-menu {
    top: 74px;
    height: calc(100vh - 74px);
    max-height: calc(100vh - 74px);
    padding: clamp(1.25rem, 3vh, 2rem) 8% 1.5rem;
  }

  .section-menu a {
    width: min(100%, 360px);
    justify-content: flex-start;
    margin: 0 auto;
    font-size: clamp(42px, 7vw, 58px);
  }

  .section-menu a::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.68rem;
    flex: 0 0 1.75rem;
  }

  .hero-section {
    padding: 8.25rem 0 4.5rem;
  }

  .hero-gradient-orb {
    width: min(100%, 25rem);
  }

  .footer-section {
    padding-top: 4.5rem;
    padding-bottom: 2.25rem;
  }

  .footer-content-top h2 {
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 540px) {
  .head-section {
    padding: 0.7rem 0.85rem;
  }

  .container,
  .container-small,
  .nav-section {
    width: min(100%, calc(100% - 1.25rem));
  }

  .nav-section {
    padding: 10px 0;
  }

  .menu-toggle {
    width: 34px;
    height: 20px;
    --bar-offset: 5px;
  }

  .hero-section,
  .focus-section,
  .footer-section {
    padding: 7rem 0 3.5rem;
  }

  .hero-section {
    background-image: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% / 4 - 1px),
      rgba(6, 6, 9, 0.04) calc(100% / 4 - 1px),
      rgba(6, 6, 9, 0.04) calc(100% / 4)
    );
  }

  .hero-copy {
    gap: 1.25rem;
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 8vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-copy > p {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-cta {
    width: 100%;
    max-width: 22rem;
    justify-content: center;
    font-size: 1.05rem;
  }

  .hero-cta::after {
    display: none;
  }

  .hero-cta,
  .hero-cta:hover {
    color: var(--white-color);
    transition: none;
  }

  .split-image {
    height: 260px;
    border-radius: 1.25rem;
  }

  .split-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .split-copy li,
  .split-copy > p,
  .section-result {
    font-size: 0.98rem;
  }

  .footer-section {
    padding: 4rem 5% 2.25rem;
  }

  .footer-content-top h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    margin-bottom: 1.25rem;
  }

  .footer-btn {
    width: 100%;
    max-width: 320px;
    justify-self: center;
  }

  .footer-content-bottom .visit-us .visit {
    margin-bottom: 1.2rem;
  }

  .footer-content-bottom .city,
  .footer-content-bottom .address,
  .footer-content-bottom .number,
  .footer-content-bottom .email {
    margin-bottom: 1.25rem;
  }

  .footer-courtesy {
    text-align: center;
  }

  .section-menu {
    top: 66px;
    height: calc(100vh - 66px);
    max-height: calc(100vh - 66px);
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
    align-content: center;
    row-gap: 0.45rem;
  }

  .section-menu a {
    width: min(100%, 320px);
    gap: 0.75rem;
    font-size: clamp(34px, 9vw, 46px);
  }
}
