@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/ibm-plex-sans-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/ibm-plex-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #101417;
  --ink-2: #1d2529;
  --ink-soft: #5d6667;
  --paper: #f7f3eb;
  --paper-2: #ede6d9;
  --surface: #ffffff;
  --stone: #d9d0c1;
  --copper: #b7874c;
  --copper-2: #d6aa6a;
  --sea: #0d6b7b;
  --line: rgba(16, 20, 23, 0.12);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 60px rgba(16, 20, 23, 0.16);
  --container: min(1180px, calc(100vw - 40px));
  --header-h: 76px;
  --font: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-menu-open,
body.is-lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: 46px;
}

h2 {
  max-width: 820px;
  font-size: 34px;
}

h3 {
  font-size: 21px;
}

:focus-visible {
  outline: 2px solid var(--copper-2);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: var(--header-h);
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: rgba(16, 20, 23, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-weight: 700;
  color: var(--copper-2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.desktop-nav a,
.phone-link,
.site-footer a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--copper-2);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.phone-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #15100b;
  background: var(--copper-2);
  border-color: rgba(214, 170, 106, 0.36);
}

.button--primary:hover {
  background: #e8bd7d;
}

.button--light {
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.button--light:hover,
.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.button--outline-dark {
  border-color: rgba(16, 20, 23, 0.26);
}

.button--outline-dark:hover {
  border-color: rgba(16, 20, 23, 0.48);
  background: rgba(16, 20, 23, 0.04);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 92svh;
  padding: 104px max(20px, calc((100vw - 1180px) / 2)) 16px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 20, 23, 0.92) 0%, rgba(16, 20, 23, 0.72) 42%, rgba(16, 20, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 20, 23, 0.82) 0%, rgba(16, 20, 23, 0) 32%);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  max-width: 800px;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 20px;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-2);
}

.hero h1 {
  color: #fff;
}

.hero__lead {
  max-width: 650px;
  margin-top: 20px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__facts {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 20, 23, 0.46);
  backdrop-filter: blur(16px);
}

.hero__facts div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts span,
.metric span,
.terms-list span,
.engineering__grid span,
.price-panel span,
.location-list span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.hero__facts strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.05;
  color: #fff;
}

.section {
  padding: 98px max(20px, calc((100vw - 1180px) / 2));
}

.intro {
  padding-top: 42px;
}

.section__head {
  margin-bottom: 38px;
}

.section__head p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
}

.section__head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.intro__copy {
  display: grid;
  gap: 18px;
  max-width: 520px;
  font-size: 20px;
  color: var(--ink-2);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric {
  min-height: 146px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.46);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric span,
.terms-list span,
.engineering__grid span,
.price-panel span,
.location-list span {
  color: var(--ink-soft);
}

.metric strong {
  display: block;
  margin-top: 20px;
  font-size: 32px;
  line-height: 1;
}

.photo-gallery {
  padding: 88px max(20px, calc((100vw - 1180px) / 2)) 96px;
  color: #fff;
  background: #101417;
}

.photo-gallery__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.photo-gallery__head h2 {
  max-width: 780px;
  color: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 238px;
  gap: 12px;
}

.photo-tile {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #1a2023;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: none;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 23, 0) 42%, rgba(16, 20, 23, 0.76) 100%);
  opacity: 0.9;
  transition: opacity 180ms ease;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.045);
}

.photo-tile:hover::after,
.photo-tile:focus-visible::after {
  opacity: 1;
}

.photo-tile:focus-visible {
  outline: 2px solid var(--copper-2);
  outline-offset: 3px;
}

.photo-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-tile--wide {
  grid-column: span 2;
}

.photo-tile--tall {
  grid-row: span 2;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 22px;
  background: rgba(8, 10, 12, 0.94);
}

.lightbox__close {
  justify-self: end;
  min-height: 44px;
  padding: 0 18px;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  cursor: pointer;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid var(--copper-2);
  outline-offset: 3px;
}

.lightbox img {
  align-self: center;
  justify-self: center;
  max-width: min(1280px, 100%);
  max-height: calc(100svh - 132px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.lightbox p {
  justify-self: center;
  max-width: min(760px, 100%);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.section--dark {
  color: #fff;
  background: #15191b;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .section__head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.tenant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.tenant {
  min-height: 270px;
  padding: 26px;
  background: #15191b;
}

.tenant span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--copper-2);
  font-weight: 700;
}

.tenant p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.terms__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 18px;
}

.price-panel {
  padding: 42px;
  color: #fff;
  background: var(--sea);
}

.price-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.price-panel strong {
  display: block;
  margin-top: 16px;
  font-size: 56px;
  line-height: 1;
}

.price-panel p {
  max-width: 620px;
  margin-top: 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.terms-list {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.terms-list div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.48);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-list strong {
  display: block;
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.12;
}

.section--muted {
  background: var(--paper-2);
}

.plan-tabs {
  display: grid;
  gap: 18px;
}

.plan-tabs__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-tabs__buttons button {
  min-width: 104px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(16, 20, 23, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.plan-tabs__buttons button:hover,
.plan-tabs__buttons button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.plan-tabs__panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 20, 23, 0.1);
}

.plan-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px 34px 22px;
  color: #172442;
  background: #fff;
}

.plan-heading__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: #172442;
}

.plan-heading__icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background:
    linear-gradient(#fff 0 0) 0 0 / 9px 9px no-repeat,
    linear-gradient(#fff 0 0) 13px 0 / 9px 9px no-repeat,
    linear-gradient(#fff 0 0) 0 13px / 9px 9px no-repeat,
    linear-gradient(#fff 0 0) 13px 13px / 9px 9px no-repeat;
  border-radius: 2px;
}

.plan-heading h3 {
  color: #172442;
  font-size: 34px;
  line-height: 1.08;
}

.plan-image {
  padding: 0 34px 24px;
  overflow: hidden;
  background: #fff;
}

.plan-tabs__panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.plan-image--portrait img {
  width: min(100%, 760px);
  margin: 0 auto;
}

.plan-tabs__panel figcaption {
  padding: 18px 20px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.engineering__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.engineering__grid div {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.engineering__grid strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.25;
}

.location {
  background: #fff;
}

.location__grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 22px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.location-list div {
  min-height: 140px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-list strong {
  display: block;
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1;
  color: var(--sea);
}

.map-frame {
  min-height: 444px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 444px;
  border: 0;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 76px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--ink);
}

.contact-band h2 {
  color: #fff;
}

.contact-band p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 360px;
}

.contact-actions > .button,
.messengers {
  width: min(100%, 360px);
}

.contact-actions > .button,
.messenger-link {
  min-height: 56px;
}

.messengers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.messenger-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.messenger-link--max {
  background: linear-gradient(135deg, #7757ff 0%, #347aff 48%, #13c9ff 100%);
  border-color: rgba(154, 198, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.messenger-link--telegram {
  background: #229ed9;
  border-color: rgba(150, 220, 255, 0.42);
}

.messenger-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: #fff;
}

.messenger-icon--max {
  width: 46px;
  height: 36px;
  flex-basis: 46px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.messenger-icon--telegram {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 22px max(20px, calc((100vw - 1180px) / 2));
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
  background: #0d1012;
}

.sticky-call {
  position: fixed;
  z-index: 28;
  right: 18px;
  bottom: 18px;
  display: none;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #15100b;
  font-weight: 700;
  background: var(--copper-2);
  box-shadow: var(--shadow);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 46px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .phone-link,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    gap: 1px;
    padding: 0 20px 20px;
    background: rgba(16, 20, 23, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(16, 20, 23, 0.94), rgba(16, 20, 23, 0.56)),
      linear-gradient(0deg, rgba(16, 20, 23, 0.9) 0%, rgba(16, 20, 23, 0.24) 58%);
  }

  .hero__content {
    align-self: flex-start;
    padding-bottom: 26px;
  }

  .hero__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__facts div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero__facts div:nth-child(2n) {
    border-right: 0;
  }

  .intro__grid,
  .terms__grid,
  .location__grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .section__head--split {
    display: grid;
    gap: 18px;
  }

  .tenant-grid,
  .engineering__grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-gallery__head {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .contact-actions {
    min-width: 0;
    width: 100%;
    justify-items: center;
  }

  .contact-actions > .button,
  .messengers {
    width: min(360px, 100%);
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 32px);
  }

  body {
    padding-bottom: 78px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .site-header {
    min-height: var(--header-h);
    padding: 12px 16px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 88px 16px 14px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

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

  .hero__facts div {
    min-height: 84px;
    padding: 14px;
  }

  .hero__facts strong {
    font-size: 20px;
  }

  .section {
    padding: 68px 16px;
  }

  .intro {
    padding-top: 28px;
  }

  .intro__grid {
    gap: 32px;
  }

  .intro__copy {
    font-size: 18px;
  }

  .metric-grid,
  .tenant-grid,
  .engineering__grid,
  .location-list {
    grid-template-columns: 1fr;
  }

  .metric,
  .tenant,
  .engineering__grid div,
  .location-list div {
    min-height: auto;
  }

  .photo-gallery {
    padding: 64px 16px 68px;
  }

  .photo-gallery__head {
    gap: 16px;
    margin-bottom: 22px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
    gap: 8px;
  }

  .photo-tile--large,
  .photo-tile--wide,
  .photo-tile--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-tile:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-tile span {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 13px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .lightbox__nav--prev {
    left: 12px;
  }

  .lightbox__nav--next {
    right: 12px;
  }

  .lightbox img {
    max-height: calc(100svh - 128px);
  }

  .tenant span {
    margin-bottom: 34px;
  }

  .price-panel {
    padding: 28px;
  }

  .price-panel strong {
    font-size: 38px;
  }

  .plan-tabs__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .plan-tabs__buttons button {
    min-width: 0;
  }

  .plan-tabs__panel figcaption {
    font-size: 14px;
  }

  .plan-heading {
    gap: 12px;
    padding: 22px 16px 14px;
  }

  .plan-heading__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .plan-heading__icon::before {
    width: 18px;
    height: 18px;
    background:
      linear-gradient(#fff 0 0) 0 0 / 7px 7px no-repeat,
      linear-gradient(#fff 0 0) 11px 0 / 7px 7px no-repeat,
      linear-gradient(#fff 0 0) 0 11px / 7px 7px no-repeat,
      linear-gradient(#fff 0 0) 11px 11px / 7px 7px no-repeat;
  }

  .plan-heading h3 {
    font-size: 24px;
  }

  .plan-image {
    padding: 0 16px 16px;
  }

  .plan-image img,
  .plan-image--portrait img {
    width: 100%;
    max-width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .contact-band {
    padding: 64px 16px;
  }

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

  .site-footer {
    display: grid;
    padding: 24px 16px;
  }

  .sticky-call {
    display: inline-flex;
    left: 16px;
    right: 16px;
    bottom: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .sticky-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
