:root {
  --ink: #3d3838;
  --muted: #6d6868;
  --line: #ddd3d3;
  --line-soft: rgba(221, 211, 211, 0.34);
  --divider-soft: rgba(221, 211, 211, 0.5);
  --accent: #749791;
  --paper: #ffffff;
  --soft: #f4f2f2;
  --dark: #3d3838;
  --gutter: 48px;
  font-family: "TikTok Sans", Arial, Helvetica, sans-serif;
}

.feedback-modal[hidden],
.lightbox-modal[hidden] {
  display: none;
}

.feedback-modal,
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.feedback-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 56, 56, 0.55);
}

.feedback-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(420px, calc(100vw - 32px));
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(61, 56, 56, 0.28);
}

.feedback-dialog h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 38px;
}

.feedback-dialog input[type="text"],
.feedback-dialog input[type="tel"] {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: var(--soft);
  color: var(--ink);
}

.feedback-dialog input[type="text"]:focus,
.feedback-dialog input[type="tel"]:focus,
.lead-form input[type="text"]:focus,
.lead-form input[type="tel"]:focus {
  background: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(116, 151, 145, 0.55);
}

.feedback-dialog .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 15px;
}

.feedback-dialog .checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.feedback-close,
.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  position: fixed;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(61, 56, 56, 0.52);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform-origin: center;
}

.lightbox-prev {
  left: max(24px, calc((100vw - min(1120px, calc(100vw - 48px))) / 2 - 74px));
}

.lightbox-prev::before {
  transform: rotate(-135deg);
}

.lightbox-next {
  right: max(24px, calc((100vw - min(1120px, calc(100vw - 48px))) / 2 - 74px));
}

.lightbox-next::before {
  transform: rotate(45deg);
}

.feedback-close:hover,
.feedback-close:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  color: #fff;
  background: var(--accent);
}

.lightbox-modal img {
  position: relative;
  z-index: 2;
  display: block;
  max-width: min(1120px, calc(100vw - 48px));
  max-height: calc(100vh - 72px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.is-sent .submit,
.submit.is-sent {
  background: #5d7f79;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "TikTok Sans", Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

button,
a.btn {
  -webkit-tap-highlight-color: transparent;
}

a,
button,
input {
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(116, 151, 145, 0.65);
  outline-offset: 3px;
}

a.btn:active,
.btn:active,
.data-table button:active {
  transform: translateY(1px);
}

.site-header,
.hero,
.section,
.cta,
.footer {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 8px var(--gutter);
  background: #fff;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 175px;
  height: 50px;
  line-height: 1;
}

.brand strong {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.brand span {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.brand:hover strong,
.brand:focus-visible strong,
.main-nav a:hover,
.main-nav a:focus-visible,
.location-group a:hover,
.location-group a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: #5f817b;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  line-height: 21px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 10px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible,
.data-table button:hover,
.data-table button:focus-visible {
  box-shadow: 0 8px 18px rgba(61, 56, 56, 0.12);
}

.main-nav .btn-primary {
  width: 169px;
}

.phone-widget {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.phone-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  background: #fff;
  cursor: pointer;
}

.phone-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.phone-toggle:hover,
.phone-toggle:focus-visible,
.phone-toggle[aria-expanded="true"] {
  color: #fff;
  background: var(--accent);
}

.phone-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid rgba(116, 151, 145, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(61, 56, 56, 0.16);
}

.phone-popover a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.data-table button:hover,
.data-table button:focus-visible {
  color: #fff;
  background: #5f817b;
  border-color: #5f817b;
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(116, 151, 145, 0.08);
}

.btn-outline {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--dark);
  background: #fff;
  border-color: #fff;
}

.hero {
  position: relative;
  height: 566px;
  overflow: hidden;
  background: #fff;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 754px;
  height: 538px;
  object-fit: cover;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 665px;
  padding: 48px 0 0 var(--gutter);
}

.hero h1 {
  width: 698px;
  margin: 0;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0;
}

.nowrap {
  white-space: nowrap;
}

.hero-copy p {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.hero-copy small {
  display: block;
  margin-top: 16px;
  font-size: 16px;
}

.metrics {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.metrics article,
.info-card {
  min-height: 105px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(61, 56, 56, 0.035);
}

.metrics b,
.info-card b {
  display: block;
  color: var(--accent);
  font-size: 24px;
  line-height: 28px;
}

.metrics span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 21px;
}

.section {
  padding: 48px var(--gutter);
}

h2 {
  margin: 0 0 32px;
  font-size: 40px;
  line-height: 48px;
}

.formats { min-height: 338px; }

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  min-height: 162px;
}

.info-card h3 {
  margin: 8px 0 8px;
  font-size: 20px;
  line-height: 28px;
}

.info-card p {
  margin: 0;
  font-size: 16px;
  line-height: 21px;
}

.retail-announcement {
  padding-top: 24px;
  padding-bottom: 24px;
}

.retail-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(61, 56, 56, 0.045);
}

.retail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 0 42px 42px;
}

.retail-copy span {
  color: var(--accent);
  font-size: 16px;
  font-weight: 800;
  line-height: 21px;
}

.retail-copy h2 {
  margin: 10px 0 14px;
}

.retail-copy p {
  margin: 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 25px;
}

.retail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.retail-points b {
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--accent);
  font-size: 16px;
  line-height: 20px;
}

.retail-copy .btn {
  width: fit-content;
}

.retail-media {
  position: relative;
  display: block;
  min-height: 380px;
  overflow: hidden;
  background: var(--soft);
}

.retail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  pointer-events: none;
}

.retail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.retail-media:hover img,
.retail-media:focus-visible img {
  transform: scale(1.025);
}

.premises {
  height: 880px;
}

.premises-top {
  display: grid;
  grid-template-columns: 701px 611px;
  gap: 32px;
  align-items: start;
}

.premises h2 {
  max-width: 701px;
  margin-bottom: 16px;
}

.strong {
  font-weight: 800;
}

.premises .strong {
  max-width: 470px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 21px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 21px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.premises-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.overview-gallery {
  padding-top: 60px;
}

.overview-gallery .section-head {
  margin-bottom: 24px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 148px;
  gap: 16px;
  align-items: stretch;
}

.overview-tile {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 12px 34px rgba(42, 37, 38, 0.12);
  cursor: zoom-in;
}

.overview-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

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

.overview-wide {
  grid-column: 1 / span 7;
  grid-row: 1 / span 4;
}

.overview-tall {
  grid-column: 8 / span 5;
  grid-row: 1 / span 2;
}

.overview-grid .overview-tile:nth-child(3) {
  grid-column: 8 / span 3;
  grid-row: 3 / span 2;
}

.overview-grid .overview-tile:nth-child(4) {
  grid-column: 11 / span 2;
  grid-row: 3 / span 2;
}

.media-card {
  position: relative;
  height: 400px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
}

.media-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 6px;
}

.media-slider .media-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.media-slider .media-card.is-active {
  opacity: 1;
  pointer-events: auto;
}

.media-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.media-zoom:hover img,
.media-zoom:focus-visible img {
  transform: scale(1.025);
}

.media-card figcaption {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 8px 16px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
  background: rgba(61, 56, 56, 0.45);
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform-origin: center;
}

.slider-prev::before {
  transform: rotate(-135deg);
}

.slider-next::before {
  transform: rotate(45deg);
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: rgba(61, 56, 56, 0.72);
  border-color: #fff;
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button:hover,
.slider-dots button:focus-visible {
  background: #fff;
  opacity: 0.9;
}

.slider-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}

.table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 16px;
}

.data-table th,
.data-table td {
  height: 56px;
  padding: 0 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.data-table th {
  font-weight: 800;
}

.data-table button {
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: #fff;
  font-weight: 800;
}

.benefits {
  height: 516px;
}

.benefits .card-grid {
  grid-template-rows: repeat(2, 162px);
}

.location {
  height: 738px;
}

.location-grid {
  display: grid;
  grid-template-columns: 468px 1fr;
  gap: 24px;
}

.location-copy {
  display: grid;
  gap: 32px;
  padding-top: 24px;
}

.location-group {
  position: relative;
  padding-left: 0;
}

.location-group p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 21px;
}

.location-group a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
}

.address-link {
  color: inherit;
  text-decoration: none;
}

.address-link:hover,
.address-link:focus-visible {
  color: var(--accent);
}

.icon-dot,
.icon-car,
.icon-bus {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  color: var(--accent);
  background-color: var(--accent);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-dot {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 25s8-7.2 8-14a8 8 0 1 0-16 0c0 6.8 8 14 8 14Z' fill='%23749791'/%3E%3Ccircle cx='14' cy='11' r='3.2' fill='white'/%3E%3C/svg%3E");
  background-color: transparent;
}

.icon-car {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 13.5 9.2 8h13.6l2.2 5.5M6 14h20v9H6v-9Z' stroke='%23749791' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='10' cy='23' r='2.2' fill='%23749791'/%3E%3Ccircle cx='22' cy='23' r='2.2' fill='%23749791'/%3E%3C/svg%3E");
  background-color: transparent;
}

.icon-bus {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='5' width='18' height='20' rx='3' stroke='%23749791' stroke-width='2.6'/%3E%3Cpath d='M10 11h12M10 17h12' stroke='%23749791' stroke-width='2.6' stroke-linecap='round'/%3E%3Ccircle cx='11' cy='25' r='2' fill='%23749791'/%3E%3Ccircle cx='21' cy='25' r='2' fill='%23749791'/%3E%3C/svg%3E");
  background-color: transparent;
}

.map {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: right center;
  border-radius: 0;
}

.specs {
  min-height: 624px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.spec-grid dl {
  margin: 0;
}

.spec-grid div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
}

.spec-grid dt,
.spec-grid dd {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
}

.spec-grid dd {
  font-weight: 700;
  line-height: 21px;
}

.dormitory {
  display: grid;
  grid-template-columns: 1fr 672px;
  gap: 48px;
  min-height: 424px;
  align-items: center;
}

.dormitory h2 {
  margin-bottom: 16px;
}

.dormitory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dormitory img {
  width: 100%;
  height: 328px;
  object-fit: cover;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 376px;
  gap: 48px;
  align-items: center;
  min-height: 560px;
  padding: 48px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(61, 56, 56, 0.9), rgba(61, 56, 56, 0.72)),
    url("assets/client-presentation-clean-photos/03-warehouse-interior-clean.png") center/cover;
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 24px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  background: var(--soft);
  color: var(--ink);
}

.lead-form label {
  display: flex;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
}

.progress {
  height: 409px;
}

.timeline {
  position: relative;
  display: block;
  height: 233px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(61, 56, 56, 0.045);
}

.timeline article {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 290px;
  height: 100%;
  padding: 22px 16px 24px;
  border-right: 0;
  background: #fff;
}

.timeline article:nth-child(1) { left: 0; }
.timeline article:nth-child(2) { left: 348px; }
.timeline article:nth-child(3) { left: 696px; }
.timeline article:nth-child(4) { left: 1044px; }

.timeline article::before,
.timeline article::after {
  content: "";
  position: absolute;
  right: -34px;
  z-index: 2;
  width: 1px;
  height: 50%;
  background: var(--divider-soft);
  box-shadow: none;
  pointer-events: none;
}

.timeline article::before {
  top: 0;
  transform: rotate(-7deg);
  transform-origin: bottom center;
}

.timeline article::after {
  bottom: 0;
  transform: rotate(7deg);
  transform-origin: top center;
}

.timeline article:last-child::before,
.timeline article:last-child::after {
  display: none;
}

.timeline b {
  color: var(--accent);
  font-size: 24px;
  line-height: 29px;
}

.timeline h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 24px;
}

.timeline p,
.timeline span {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.timeline span {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 160px 244px;
  gap: 28px;
  min-height: 127px;
  padding: 24px 48px;
  color: #fff;
  background: var(--dark);
}

.footer .brand strong {
  color: var(--accent);
}

.footer div {
  display: grid;
  gap: 8px;
  align-content: start;
  font-size: 16px;
}

@media (max-width: 1180px) {
  :root { --gutter: 32px; }

  body {
    overflow-x: hidden;
  }

  .main-nav {
    gap: 14px;
    font-size: 14px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-bottom: 32px;
  }

  .hero-media {
    position: relative;
    right: auto;
    order: 2;
    width: 100%;
    height: 420px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    order: 1;
    width: auto;
    padding: 32px var(--gutter);
  }

  .hero h1 {
    width: auto;
  }

  .metrics {
    position: static;
    order: 3;
    padding: 0 var(--gutter);
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
  }

  .metrics article {
    min-height: 76px;
    padding: 12px 14px;
  }

  .metrics b {
    font-size: 20px;
    line-height: 24px;
  }

  .metrics span {
    margin-top: 4px;
    font-size: 13px;
    line-height: 17px;
  }

  .premises,
  .benefits,
  .location,
  .progress {
    height: auto;
    min-height: 0;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .premises-top,
  .location-grid,
  .spec-grid,
  .dormitory,
  .cta {
    grid-template-columns: 1fr;
  }

  .retail-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .retail-copy {
    padding: 32px;
  }

  .retail-media {
    min-height: 360px;
  }

  .media-card,
  .map {
    height: auto;
    min-height: 360px;
  }

  .dormitory img {
    height: auto;
  }

  .map {
    height: 420px;
  }

  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .overview-wide,
  .overview-tall,
  .overview-grid .overview-tile:nth-child(3),
  .overview-grid .overview-tile:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .overview-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; }

  .site-header {
    height: auto;
    min-height: 66px;
    padding: 12px var(--gutter);
    gap: 12px;
  }

  .brand {
    width: 150px;
  }

  .brand span {
    display: block;
    font-size: 12px;
    line-height: 12px;
  }

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

  .main-nav a {
    display: none;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav .btn {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .phone-toggle {
    width: 36px;
    height: 36px;
  }

  .phone-toggle svg {
    width: 18px;
    height: 18px;
  }

  .phone-popover {
    right: 0;
    min-width: 174px;
    padding: 10px 12px;
  }

  .phone-popover a {
    font-size: 14px;
    line-height: 18px;
  }

  .hero {
    padding-bottom: 18px;
  }

  .hero-copy {
    padding: 18px var(--gutter) 16px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 31px;
  }

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

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 164px;
    min-height: 36px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-copy small {
    font-size: 12px;
    line-height: 17px;
  }

  .hero-media {
    height: 210px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .metrics article,
  .info-card {
    min-height: auto;
    padding: 14px;
  }

  .metrics b,
  .info-card b,
  .timeline b {
    font-size: 20px;
    line-height: 24px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 33px;
  }

  .card-grid.three,
  .timeline {
    grid-template-columns: 1fr;
  }

  .card-grid {
    gap: 12px;
  }

  .retail-announcement {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .retail-copy {
    padding: 24px;
  }

  .retail-copy h2 {
    margin-bottom: 10px;
  }

  .retail-copy p {
    font-size: 15px;
    line-height: 21px;
  }

  .retail-points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0;
  }

  .retail-points b {
    min-height: auto;
    font-size: 14px;
    line-height: 18px;
  }

  .retail-copy .btn {
    width: 100%;
  }

  .retail-media {
    min-height: 240px;
  }

  .premises-top,
  .location-grid,
  .spec-grid,
  .dormitory,
  .cta {
    gap: 22px;
  }

  .media-card {
    min-height: 220px;
  }

  .media-card img {
    min-height: 220px;
  }

  .table-wrap {
    margin-top: 28px;
    overflow: visible;
    padding-bottom: 0;
  }

  .data-table {
    min-width: 0;
    font-size: 13px;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table thead {
    display: none;
  }

  .data-table tbody {
    display: grid;
    gap: 12px;
  }

  .data-table tr {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(61, 56, 56, 0.05);
  }

  .data-table th,
  .data-table td {
    height: auto;
    min-height: 32px;
    padding: 8px 0;
    white-space: normal;
  }

  .data-table td {
    display: grid;
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .data-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 800;
  }

  .data-table td:last-child {
    border-bottom: 0;
  }

  .data-table button {
    width: 100%;
    min-height: 34px;
  }

  .benefits .card-grid {
    grid-template-rows: none;
  }

  .location-copy {
    gap: 20px;
    padding-top: 0;
  }

  .location-group p,
  .check-list li,
  .info-card p,
  .metrics span {
    font-size: 14px;
    line-height: 19px;
  }

  .metrics article {
    padding: 10px 12px;
  }

  .metrics b {
    font-size: 18px;
    line-height: 22px;
  }

  .metrics span {
    margin-top: 2px;
    font-size: 12px;
    line-height: 16px;
  }

  .map {
    height: 260px;
    object-position: 38% center;
  }

  .overview-gallery {
    padding-top: 36px;
  }

  .overview-gallery .section-head {
    margin-bottom: 16px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
    gap: 12px;
  }

  .overview-wide,
  .overview-tall,
  .overview-grid .overview-tile:nth-child(3),
  .overview-grid .overview-tile:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .spec-grid {
    gap: 0;
  }

  .spec-grid div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .spec-grid dt,
  .spec-grid dd {
    min-height: 0;
    font-size: 14px;
    line-height: 19px;
  }

  .dormitory img {
    max-height: 210px;
    object-fit: contain;
  }

  .cta {
    padding: 32px var(--gutter);
  }

  .cta h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-actions .btn {
    width: auto;
    min-width: 142px;
    height: 36px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .lead-form {
    padding: 16px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .timeline {
    display: grid;
    overflow: visible;
    box-shadow: 0 6px 18px rgba(61, 56, 56, 0.05);
  }

  .timeline article {
    position: relative;
    left: auto !important;
    top: auto;
    width: auto;
    height: auto;
    min-height: auto;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article::after {
    display: none;
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

.footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px var(--gutter);
  }
}
