:root {
  --color-accent: #f77948;
  --color-accent-hover: rgba(247, 121, 72, 0.7);
  --color-cream: #fff4eb;
  --color-dark: #2b211d;
  --color-white: #ffffff;
  --color-placeholder: #d9d9d9;
  --bg: var(--color-cream);
  --text: var(--color-dark);
  --font-main: 'Futura PT', 'Trebuchet MS', system-ui, sans-serif;
  --radius-s: 1rem;
  --radius-m: 1.25rem;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Book.woff2") format("woff2"), url("../fonts/FuturaPT-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Medium.woff2") format("woff2"), url("../fonts/FuturaPT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
}

ul,
ol {
  list-style: none;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

address {
  font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 16px;
}
@media (min-width: 992px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 2560px) {
  html {
    font-size: 21.3333333333px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media (min-width: 500.02px) and (max-width: 991.98px) {
  html {
    font-size: calc(17.9850963297px + 0.5055448366vw);
  }
}
@media (max-width: 991.98px) and (orientation: landscape) and (max-height: 500px) {
  html {
    font-size: 2.2222222222vw;
  }
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
}

.text-h1 {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 7.5rem;
  line-height: 0.9166666667;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .text-h1 {
    font-size: 3rem;
  }
}

.text-h2 {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .text-h2 {
    font-size: 2.75rem;
  }
}

.text-h3 {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 2.875rem;
  line-height: 1.0434782609;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .text-h3 {
    font-size: 1.5rem;
  }
}

.text-h4 {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .text-h4 {
    font-size: 1rem;
  }
}

.sub-inherit * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

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

.no-scroll {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 3.75rem;
  padding: 1.0625rem 1.25rem;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-m);
  background-color: var(--color-accent);
  color: var(--color-cream);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .btn {
    font-size: 1rem;
  }
}
.btn:hover {
  background-color: var(--color-accent-hover);
  border-color: transparent;
}
.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
}
.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-cream);
}
.btn--small {
  height: 3rem;
  border-radius: var(--radius-s);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .btn {
    width: 100%;
    height: 3rem;
    border-radius: var(--radius-s);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .btn.btn--small {
    width: auto;
    height: 2rem;
    padding-inline: 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
  }
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}
.link svg {
  transition: transform 0.25s ease;
}
.link:hover svg {
  transform: translate(0.25em, -0.25em);
}
.link .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-underline-offset: 0.25rem;
  transition: opacity 0.2s ease;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.phone:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.phone .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.field {
  height: 3.75rem;
  border: 1px solid rgba(247, 121, 72, 0.2);
  border-radius: var(--radius-m);
  background-color: rgba(247, 121, 72, 0.05);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field:hover {
  border-color: rgba(247, 121, 72, 0.5);
}
.field:focus-within {
  border-color: rgba(247, 121, 72, 0.5);
  background-color: rgba(247, 121, 72, 0.1);
}
.field input {
  width: 100%;
  height: 100%;
  padding-inline: 1.5rem;
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.field input::-moz-placeholder {
  color: rgba(247, 121, 72, 0.5);
  opacity: 1;
}
.field input::placeholder {
  color: rgba(247, 121, 72, 0.5);
  opacity: 1;
}
.field input:focus {
  outline: none;
}

.icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: inherit;
}
.icon svg,
.icon img {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.icon--flip-x svg {
  transform: scaleX(-1);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-visible {
  transform: none;
  background-color: var(--color-cream);
  box-shadow: 0 0.25rem 2rem rgba(43, 33, 29, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 7rem;
  padding-inline: 3rem;
}
.header__logo {
  flex-shrink: 0;
  margin-right: auto;
  width: 13.0625rem;
  color: var(--color-accent);
  transition: opacity 0.2s ease;
}
.header__logo:hover {
  opacity: 0.85;
}
.header__logo-img {
  display: block;
  width: 100%;
  height: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  white-space: nowrap;
  transition: color 0.2s ease;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.header__menu a:hover {
  color: var(--color-accent);
}
.header__link-ext .icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.25s ease;
}
.header__link-ext:hover .icon {
  transform: rotate(45deg);
}
.header__btn {
  flex-shrink: 0;
}
.header__close, .header__nav-logo, .header__nav-phone, .header__nav-btn, .header__burger {
  display: none;
}
@media (max-width: 991.98px) {
  .header__inner {
    gap: 1rem;
    height: 4rem;
    padding-inline: 1rem;
  }
  .header__logo {
    width: 5.4375rem;
  }
  .header__phone {
    display: none;
  }
  .header__btn {
    width: auto;
    margin-left: auto;
  }
  .header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-dark);
  }
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.75rem;
    width: 100%;
    padding: 5rem 2.25rem 2.5rem;
    background-color: var(--color-cream);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }
  .header__nav.is-open {
    transform: none;
  }
  .header__nav-logo {
    display: block;
    width: 10.875rem;
    color: var(--color-accent);
  }
  .header__nav-logo svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.25rem;
  }
  .header__menu a {
    color: var(--color-accent);
    font-size: 1.5rem;
    line-height: 1;
  }
  .header__menu a:hover {
    opacity: 0.8;
  }
  .header__link-ext .icon {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 1;
    transform: none;
  }
  .header__close {
    display: inline-flex;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-dark);
  }
  .header__nav-phone {
    display: inline-flex;
    color: var(--color-dark);
    text-decoration: underline;
    text-underline-position: from-font;
    font-size: 1rem;
  }
  .header__nav-btn {
    display: inline-flex;
    width: 100%;
  }
}

@keyframes morph-marker-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 1.25rem rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.morph {
  position: fixed;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
  will-change: top, left, width, height, transform;
}
.morph img,
.morph video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.morph__pin {
  position: absolute;
  top: 7.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
}
.morph__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 3rem;
  padding-inline: 1.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-m);
  color: var(--color-accent);
  white-space: nowrap;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.morph__label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-inline: 0.375rem solid transparent;
  border-top: 0.375rem solid var(--color-white);
}
.morph__pin.is-pulsing .morph__marker {
  animation: morph-marker-pulse 2.4s ease-out infinite;
}
.morph__marker {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.morph__marker::before {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--color-white);
  border-radius: 50%;
}

.pre-cine .address {
  visibility: hidden;
}

.pre-cine .hero__corner,
.pre-cine .hero__eyebrow,
.pre-cine .hero__logo,
.pre-cine .hero__credit,
.pre-cine .hero__photo {
  visibility: hidden;
}

body.cinematic .hero {
  position: relative;
  z-index: 10;
}
body.cinematic .hero__wrapper {
  min-height: 100vh;
}
body.cinematic .hero__photo {
  visibility: hidden;
}
body.cinematic .address {
  display: none;
}
body.cinematic .header {
  transform: none;
  opacity: 0;
  background-color: var(--color-cream);
  box-shadow: none;
  transition: none;
}

@media (max-width: 991.98px) {
  body.cinematic .intro {
    padding-top: 5.25rem;
  }
  .morph__pin {
    top: 6.25rem;
  }
}
.hero {
  position: relative;
  background-color: var(--color-cream);
  overflow: hidden;
}
.hero__wrapper {
  position: relative;
  min-height: 61.25rem;
}
.hero__corner {
  position: absolute;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  color: var(--color-accent);
}
.hero__corner--tl {
  top: 2rem;
  left: 2rem;
}
.hero__corner--tr {
  top: 2rem;
  right: 2rem;
}
.hero__corner--bl {
  bottom: 2rem;
  left: 2rem;
}
.hero__corner--br {
  bottom: 2rem;
  right: 2rem;
}
.hero__inner {
  position: absolute;
  top: 13.0625rem;
  left: 50%;
  width: 75rem;
  height: 34.25rem;
  transform: translateX(-50%);
}
.hero__eyebrow {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 2.875rem;
  line-height: 5rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero__logo {
  position: absolute;
  top: 0.8125rem;
  left: 50%;
  width: 75rem;
  color: var(--color-accent);
  transform: translateX(-50%);
}
.hero__logo-img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__media {
  position: absolute;
  top: 19.25rem;
  left: 0;
  width: 75rem;
}
.hero__photo {
  width: 100%;
  height: 15rem;
}
.hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__credit {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__scroll {
  position: absolute;
  bottom: 5.6875rem;
  left: 50%;
  color: var(--color-accent);
  transform: translateX(-50%);
}
.hero__scroll .icon {
  width: 2.5rem;
  height: 2.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll .icon {
    animation: hero-scroll-bob 1.8s ease-in-out infinite;
  }
}
.hero__scroll:hover .icon {
  animation-duration: 1.1s;
}
@media (max-width: 991.98px) {
  .hero__wrapper {
    min-height: 52.75rem;
  }
  .hero__corner {
    width: 1.25rem;
    height: 1.25rem;
  }
  .hero__corner--tl {
    top: 1.25rem;
    left: 1.25rem;
  }
  .hero__corner--tr {
    top: 1.25rem;
    right: 1.25rem;
  }
  .hero__corner--bl {
    bottom: 1.25rem;
    left: 1.25rem;
  }
  .hero__corner--br {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .hero__inner {
    top: 14.5625rem;
    width: 21.875rem;
    height: 21.375rem;
  }
  .hero__eyebrow {
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .hero__logo {
    top: 0;
    width: 21.875rem;
  }
  .hero__media {
    top: 6.375rem;
    width: 21.875rem;
  }
  .hero__credit {
    top: calc(100% + 1.25rem);
    font-size: 0.75rem;
  }
  .hero__scroll {
    bottom: 2.5rem;
  }
  .hero__scroll .icon {
    width: 2rem;
    height: 2rem;
  }
}

@keyframes hero-scroll-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}
.address__wrapper {
  position: relative;
  height: 56.25rem;
  overflow: hidden;
}
.address__bg {
  position: absolute;
  inset: 0;
}
.address__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.address__pin {
  position: absolute;
  top: 7.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.address__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 3rem;
  padding-inline: 1.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-m);
  color: var(--color-accent);
  white-space: nowrap;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.address__label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-inline: 0.375rem solid transparent;
  border-top: 0.375rem solid var(--color-white);
}
.address__marker {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.address__marker::before {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--color-white);
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .address__wrapper {
    height: 48.75rem;
  }
  .address__pin {
    top: 6.25rem;
  }
}

@keyframes intro-marker-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.intro {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-block: 7.5rem;
}
.intro__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 6.25rem;
  width: 100%;
}
.intro__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50rem;
  min-height: 56.25rem;
  background-color: var(--color-accent);
}
.intro__caption {
  position: absolute;
  z-index: 2;
  top: 4.625rem;
  right: 5.25rem;
  max-width: 15.625rem;
  color: var(--color-white);
  text-align: right;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.intro__marker {
  position: absolute;
  z-index: 2;
  top: 8.375rem;
  right: 5.25rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: intro-marker-pulse 2.4s ease-out infinite;
}
.intro__marker::before {
  content: "";
  width: 1.166875rem;
  height: 1.166875rem;
  background-color: var(--color-white);
  border-radius: 50%;
}
.intro__image {
  flex-shrink: 0;
  width: 37.5rem;
  height: 37.5rem;
  clip-path: polygon(0% 0%, 100% 0%, 100% 25.13%, 94.75% 25.13%, 94.75% 75.13%, 100% 75.13%, 100% 100%, 0% 100%, 0% 75%, 5.49% 75%, 5.49% 25%, 0% 25%);
}
.intro__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 7.5rem;
}
.intro__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.intro__title {
  color: var(--color-accent);
}
.intro__text {
  max-width: 45.3125rem;
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .intro__text {
    font-size: 1rem;
  }
}
.intro__actions {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .intro {
    display: block;
    min-height: 0;
    padding-block: 2.5rem 3.75rem;
  }
  .intro__wrapper {
    flex-direction: column;
    gap: 2.25rem;
    padding-inline: 1rem;
  }
  .intro__visual {
    flex: none;
    width: 100%;
    min-height: 27.125rem;
    align-items: flex-end;
    padding-bottom: 2.25rem;
  }
  .intro__caption {
    top: 2.25rem;
    right: 1rem;
    max-width: 12.875rem;
  }
  .intro__marker {
    top: 6.375rem;
    right: 1.625rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .intro__marker::before {
    width: 0.875rem;
    height: 0.875rem;
  }
  .intro__image {
    width: 17.875rem;
    height: 17.875rem;
  }
  .intro__content {
    flex: none;
    width: 100%;
    gap: 2rem;
    padding-top: 0;
  }
  .intro__head {
    gap: 1.25rem;
  }
  .intro__actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.map__wrapper {
  position: relative;
  height: 56.25rem;
  border-block: 1px solid var(--color-accent);
  overflow: hidden;
}
.map__bg {
  position: absolute;
  inset: 0;
}
.map__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.map__square {
  position: absolute;
  top: 17.6875rem;
  left: 19rem;
  width: 4rem;
  height: 4rem;
}
.map__square img {
  width: 100%;
  height: 100%;
}
.map__pin {
  position: absolute;
  top: 13rem;
  left: calc(50% + 19.125rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.map__bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 31.25rem;
  padding: 0.75rem 2rem 1rem;
  background-color: var(--color-white);
  border-radius: var(--radius-m);
  text-align: center;
}
.map__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-inline: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--color-white);
}
.map__quote {
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.map__link {
  display: inline-block;
  color: rgba(247, 121, 72, 0.5);
  text-decoration: underline;
  text-underline-position: from-font;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.map__link:hover {
  color: var(--color-accent);
}
.map__sign {
  width: 8.125rem;
  height: 8.125rem;
}
.map__sign img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .map__wrapper {
    height: 18.625rem;
    border-block: none;
  }
  .map__bg {
    top: 1.125rem;
  }
  .map__bg img {
    -o-object-position: center;
       object-position: center;
  }
  .map__square {
    top: 6.0625rem;
    left: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .map__pin {
    top: 0;
    left: auto;
    right: 0.5rem;
    align-items: center;
    gap: 1.25rem;
    transform: none;
  }
  .map__bubble {
    width: 16.0625rem;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
  }
  .map__quote {
    font-size: 1rem;
  }
  .map__link {
    font-size: 0.875rem;
  }
  .map__sign {
    width: 3rem;
    height: 3rem;
  }
}

.genplan__wrapper {
  display: flex;
  align-items: center;
  gap: 7.5rem;
  padding-block: 7.5rem;
  padding-left: 8.75rem;
}
.genplan__content {
  flex-shrink: 0;
  width: 43rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
.genplan__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.genplan__title {
  color: var(--color-accent);
}
.genplan__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .genplan__text {
    font-size: 1rem;
  }
}
.genplan__media {
  display: flex;
  gap: 1.25rem;
}
.genplan__card {
  flex-shrink: 0;
  width: 28.75rem;
  height: 45rem;
  overflow: hidden;
}
.genplan__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .genplan__wrapper {
    flex-direction: column;
    gap: 2.25rem;
    padding: 3.75rem 1rem;
  }
  .genplan__content {
    width: 100%;
    gap: 1.5rem;
  }
  .genplan__head {
    gap: 1rem;
  }
  .genplan__text {
    gap: 1rem;
  }
  .genplan__media {
    gap: 0.5rem;
    width: 100%;
  }
  .genplan__card {
    flex: 1 1 0;
    width: auto;
    height: 17.0625rem;
  }
}

.stats__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8.75rem;
}
.stats__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50rem;
  min-height: 56.25rem;
  background-color: var(--color-accent);
}
.stats__visual-img {
  flex-shrink: 0;
  width: 37.5rem;
  height: 37.5rem;
  clip-path: polygon(0% 0%, 82.64% 0%, 82.64% 25%, 100% 25%, 100% 100%, 0% 100%);
}
.stats__visual-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stats__body {
  flex: 1;
  display: grid;
  grid-template-columns: 18.125rem 1fr;
  -moz-column-gap: 11.25rem;
       column-gap: 11.25rem;
  row-gap: 6.875rem;
  align-items: start;
  padding-top: 7.1875rem;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stats__label {
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .stats__label {
    font-size: 1rem;
  }
}
.stats__value {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stats__number {
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 7.5rem;
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.stats__unit {
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .stats__unit {
    font-size: 1.25rem;
  }
}
.stats__desc {
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .stats__desc {
    font-size: 1rem;
  }
}
.stats__btn {
  align-self: flex-start;
}
.stats__circle {
  width: 20rem;
  height: 20rem;
}
.stats__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mask: url("../img/flower-mask.svg") no-repeat center/100% 100%;
  -webkit-mask: url("../img/flower-mask.svg") no-repeat center/100% 100%;
}
@media (max-width: 991.98px) {
  .stats__wrapper {
    flex-direction: column;
    gap: 2.5rem;
    padding-inline: 1rem;
  }
  .stats__visual {
    flex: none;
    width: 100%;
    min-height: 22.375rem;
  }
  .stats__visual-img {
    width: 17.875rem;
    height: 17.875rem;
  }
  .stats__body {
    grid-template-columns: 1fr;
    justify-items: center;
    align-self: center;
    row-gap: 3.75rem;
    padding-top: 0;
  }
  .stats__item {
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    width: 100%;
    max-width: 15rem;
  }
  .stats__label {
    font-size: 0.875rem;
  }
  .stats__value {
    gap: 0.375rem;
  }
  .stats__number {
    font-size: 5rem;
  }
  .stats__btn {
    align-self: stretch;
  }
  .stats__circle {
    margin-block: -1.5rem;
    width: 15rem;
    height: 15rem;
  }
}

.quality {
  padding-top: 6.25rem;
}
.quality__divider {
  display: block;
  height: 1px;
  background-color: var(--color-accent);
}
.quality__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-inline: 8.75rem;
}
@media (max-width: 991.98px) {
  .quality__wrapper {
    padding-inline: 1rem;
  }
}
.quality__wrapper {
  padding-block: 6.25rem 8.75rem;
}
.quality__title {
  max-width: 96.25rem;
  color: var(--color-accent);
}
.quality__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.75rem;
}
.quality__item {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-right: 1.875rem;
}
.quality__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-accent);
}
.quality__text {
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .quality__text {
    font-size: 1rem;
  }
}
.quality__text {
  max-width: 20rem;
}
.quality__cta {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.quality__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.quality__phone:hover {
  opacity: 0.7;
}
.quality__phone-icon {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 991.98px) {
  .quality {
    padding-top: 3.75rem;
  }
  .quality__wrapper {
    gap: 2.25rem;
    padding-block: 3.75rem 3.75rem;
  }
  .quality__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    row-gap: 2rem;
  }
  .quality__item {
    flex: none;
    gap: 0.5rem;
    padding-right: 0;
  }
  .quality__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .quality__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .quality__phone {
    justify-content: center;
    font-size: 1rem;
  }
  .quality__phone-icon {
    width: 2rem;
    height: 2rem;
  }
}

.gallery__wrapper {
  padding-inline: 3rem;
}
@media (max-width: 991.98px) {
  .gallery__wrapper {
    padding-inline: 1rem;
  }
}
.gallery__wrapper {
  padding-bottom: 8.75rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 47.5rem;
  gap: 0.75rem;
}
.gallery__item {
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item--round {
  border-radius: 19.84375rem;
}
@media (max-width: 991.98px) {
  .gallery__wrapper {
    padding-bottom: 3.75rem;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.5rem;
  }
  .gallery__item {
    height: 28.3125rem;
  }
  .gallery__item--wide {
    grid-column: span 1;
    height: 14rem;
  }
  .gallery__item--round {
    border-radius: 11.1875rem;
  }
}

.social__wrapper {
  display: flex;
}
.social__media {
  flex: 0 0 66.25rem;
  height: 17.5rem;
}
.social__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.social__panel {
  display: flex;
  flex: 1;
  align-items: center;
  padding-inline: 6.1875rem;
  background-color: var(--color-accent);
}
.social__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.social__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.social__title {
  color: var(--color-white);
}
.social__text {
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .social__text {
    font-size: 1rem;
  }
}
.social__links {
  display: flex;
  gap: 3rem;
}
.social__link {
  width: 3rem;
  height: 3rem;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}
.social__link .icon {
  width: 100%;
  height: 100%;
}
.social__link:hover {
  opacity: 0.55;
}
@media (max-width: 991.98px) {
  .social__wrapper {
    flex-direction: column;
  }
  .social__media {
    flex: none;
    width: 100%;
    height: 6.4375rem;
  }
  .social__panel {
    padding: 2.25rem 1rem;
  }
  .social__content {
    gap: 1.5rem;
  }
  .social__title h2 {
    font-size: 1.25rem;
  }
  .social__text {
    font-size: 0.875rem;
  }
  .social__links {
    gap: 1.5rem;
  }
  .social__link {
    width: 2rem;
    height: 2rem;
  }
}

.footer__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3rem;
  padding-inline: 8.75rem;
}
@media (max-width: 991.98px) {
  .footer__inner {
    padding-inline: 1rem;
  }
}
.footer__contacts {
  display: flex;
  gap: 5rem;
}
.footer__group {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.footer__label {
  color: rgba(247, 121, 72, 0.5);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.footer__value {
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.footer__value--link {
  transition: color 0.2s ease;
}
.footer__value--link:hover {
  color: var(--color-accent);
}
.footer__sign {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.75rem;
  height: 3.75rem;
  transform: translate(-50%, -50%);
}
.footer__sign img {
  width: 100%;
  height: 100%;
}
.footer__actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.footer__phone {
  color: var(--color-dark);
  white-space: nowrap;
  transition: color 0.2s ease;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.footer__phone:hover {
  color: var(--color-accent);
}
.footer__up {
  display: block;
  width: 3rem;
  height: 3rem;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.footer__up:hover {
  transform: translateY(-0.25rem);
}
.footer__up-icon {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 991.98px) {
  .footer__inner {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: start;
    row-gap: 1.5rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    padding-block: 2.25rem 2rem;
  }
  .footer__contacts, .footer__actions {
    display: contents;
  }
  .footer__sign {
    position: static;
    grid-column: 1/-1;
    grid-row: 1;
    justify-self: center;
    transform: none;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
  }
  .footer__group:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }
  .footer__group:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer__label {
    font-size: 0.75rem;
  }
  .footer__value {
    font-size: 0.875rem;
  }
  .footer__btn {
    grid-column: 1;
    grid-row: 3;
    width: auto;
    justify-self: start;
  }
  .footer__phone {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
    font-size: 0.875rem;
  }
  .footer__up {
    grid-column: 1/-1;
    grid-row: 4;
    justify-self: center;
    width: 2rem;
    height: 2rem;
    margin-top: 0.75rem;
  }
  .footer__up-icon {
    width: 2rem;
    height: 2rem;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(43, 33, 29, 0.5);
}
.modal--full {
  padding: 0;
}

.contact {
  position: relative;
  width: 37.5rem;
  max-width: 100%;
  height: 37.5rem;
  max-height: 100%;
  overflow: hidden;
  background-color: var(--color-cream);
  border-radius: var(--radius-m);
}
.contact__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-dark);
  transition: opacity 0.2s ease;
}
.contact__close:hover {
  opacity: 0.6;
}
.contact__view {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
}
.contact__view[hidden] {
  display: none;
}
.contact__title {
  color: var(--color-accent);
}
.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.contact__message {
  max-width: 26.25rem;
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .contact__message {
    font-size: 1rem;
  }
}
.contact__message {
  line-height: 1.4;
}
.contact__media {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 29.375rem;
  height: 18.75rem;
  pointer-events: none;
}
.contact__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}
@media (max-width: 991.98px) {
  .contact {
    width: 22.375rem;
    height: 27.5rem;
  }
  .contact__close {
    top: 0.75rem;
    right: 0.75rem;
  }
  .contact__view {
    gap: 1.5rem;
    padding: 2.25rem 1.5rem;
  }
  .contact__media {
    width: 17.5rem;
    height: 11.875rem;
  }
}

.infra {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.infra__bg {
  position: absolute;
  inset: 0;
}
.infra__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.infra__close {
  position: absolute;
  bottom: 1.5rem;
  left: calc(50% - 16.875rem);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-white);
  transition: color 0.2s ease;
}
.infra__close:hover {
  color: var(--color-accent);
}
.infra__close .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.infra__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  width: 31.25rem;
  height: 56.6875rem;
  padding: 5rem 2.5rem 2.5rem;
  background-color: var(--color-cream);
}
.infra__title {
  color: var(--color-accent);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.infra__list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.infra__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.infra__item p {
  color: var(--color-dark);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 991.98px) {
  .infra__item p {
    font-size: 1rem;
  }
}
.infra__icon {
  color: var(--color-accent);
}
.infra__icon--heart {
  width: 2.1875rem;
  height: 2rem;
}
.infra__icon--tree {
  width: 1.75rem;
  height: 2.4375rem;
}
.infra__back {
  position: relative;
  align-self: flex-end;
  width: 18.75rem;
  height: 12.5rem;
  margin-top: auto;
  margin-right: -2.5rem;
  margin-bottom: -2.5rem;
  border-top-left-radius: var(--radius-m);
  overflow: hidden;
  color: var(--color-white);
}
.infra__back-img {
  position: absolute;
  inset: 0;
}
.infra__back-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.infra__back-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(43, 33, 29, 0.4);
}
.infra__back-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: underline;
  text-underline-position: from-font;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .infra__bg {
    height: 13.6875rem;
  }
  .infra__close {
    top: 0.75rem;
    bottom: auto;
    left: 0.75rem;
    width: 2rem;
    height: 2rem;
  }
  .infra__close .icon {
    width: 1rem;
    height: 1rem;
  }
  .infra__panel {
    top: 13.6875rem;
    bottom: 0;
    width: 100%;
    height: auto;
    gap: 2.25rem;
    padding: 1.5rem 1rem;
  }
  .infra__title {
    font-size: 1.5rem;
  }
  .infra__list {
    gap: 2.25rem;
  }
  .infra__icon--heart {
    width: 1.625rem;
    height: 1.5rem;
  }
  .infra__icon--tree {
    width: 1.125rem;
    height: 1.5rem;
  }
  .infra__back {
    width: 12.5rem;
    height: 8.3125rem;
    margin-right: -1rem;
    margin-bottom: -1.5rem;
  }
}