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

@font-face {
  font-family: "Alumni Sans";
  src: url("/assets/fonts/alumni-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

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

@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

:root {
  --evergreen: #314b5e;
  --evergreen-dark: #1c2c3a;
  --cobalt: #4f7185;
  --cobalt-dark: #38586a;
  --sun: #a95a40;
  --sun-dark: #8c4733;
  --sun-on-dark: #e6a28a;
  --chalk: #f5f1eb;
  --white: #fffdfa;
  --ink: #1b2730;
  --muted: #56636c;
  --line: rgba(27, 39, 48, 0.16);
  --sand-soft: #e9ded2;
  --container: 1320px;
  --header-height: 78px;
  --radius-sm: 12px;
  --radius: 16px;
  --display: "Alumni Sans", "Arial Narrow", sans-serif;
  --body: "Onest", Arial, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--sun);
}

::selection {
  color: var(--white);
  background: var(--cobalt);
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 0.94;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
}

h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 0.95;
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(80px, 9vw, 136px);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--evergreen-dark);
  background: var(--sun);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--sun {
  color: var(--sun);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  column-gap: 64px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading__copy {
  max-width: 420px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 18px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 20px 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--primary {
  color: var(--white);
  background: var(--cobalt);
}

.button--primary:hover {
  background: var(--cobalt-dark);
}

.button--sun {
  color: var(--white);
  background: var(--sun);
}

.button--sun:hover {
  background: var(--sun-dark);
}

.button--outline {
  border-color: rgba(27, 39, 48, 0.32);
  color: var(--evergreen);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--evergreen);
  background: rgba(49, 75, 94, 0.07);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: transparent;
}

.button--outline-light:hover,
.button--light {
  color: var(--evergreen-dark);
  background: var(--white);
}

.button--light:hover {
  background: var(--sand-soft);
}

.button--header {
  min-height: 44px;
  padding: 10px 14px 10px 18px;
  color: var(--white);
  background: var(--evergreen);
}

.button--header svg {
  width: 18px;
  height: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--evergreen);
  font-size: 14px;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(49, 75, 94, 0.34);
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--cobalt);
  text-decoration-color: currentColor;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--chalk);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 36px;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.wordmark__logo {
  display: block;
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-nav__links,
.site-nav__contact {
  display: flex;
  align-items: center;
}

.site-nav__links {
  gap: clamp(16px, 2vw, 32px);
}

.site-nav__links > a {
  position: relative;
  padding-block: 10px;
  font-size: 13px;
  font-weight: 500;
}

.site-nav__links > a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav__links > a:hover::after,
.site-nav__links > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__contact {
  flex: 0 0 auto;
  gap: 18px;
}

.site-nav__phone {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--evergreen-dark);
  background: transparent;
}

.home-hero {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  padding-bottom: 124px;
  color: var(--ink);
  background: var(--chalk);
}

.home-hero__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 44, 58, 0.02), rgba(28, 44, 58, 0.16));
  content: "";
  pointer-events: none;
}

.home-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.photo-note {
  position: absolute;
  z-index: 1;
  bottom: 64px;
  left: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(28, 44, 58, 0.82);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-note span {
  padding: 7px 10px;
  color: var(--white);
  background: var(--sun);
}

.photo-note strong {
  font-size: 10px;
  font-weight: 500;
}

.home-hero__copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(32px, 4.6vw, 76px) 148px;
  overflow: hidden;
}

.home-hero__copy::after {
  display: none;
}

.home-hero__copy h1 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(3.7rem, 5.25vw, 6rem);
  line-height: 0.92;
}

.home-hero__copy > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.hero-phone svg,
.estate-phone svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(27, 39, 48, 0.28);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.hero-phone span,
.estate-phone span {
  display: flex;
  flex-direction: column;
}

.hero-phone small,
.estate-phone small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__booking {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 32px;
  left: 0;
}

.booking-panel {
  isolation: isolate;
  display: grid;
  min-height: 112px;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: stretch;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(28, 44, 58, 0.16);
  overflow: hidden;
}

.booking-panel__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.booking-panel__heading div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.booking-panel__heading strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.booking-panel__heading div > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.booking-panel__step {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sun);
  font-size: 11px;
  font-weight: 600;
}

.booking-panel__widget {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 112px;
  padding: 10px 14px;
}

.booking-panel__widget > div {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
}

.booking-panel__widget iframe {
  display: block;
  width: 100% !important;
}

.booking-panel__fallback {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cobalt);
  font-size: 14px;
  font-weight: 600;
}

.booking-panel__fallback svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
}

.booking-panel.is-loaded .booking-panel__fallback {
  display: none;
}

.offers-section {
  background: var(--chalk);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.offer-card {
  min-width: 0;
}

.offer-card--lead {
  margin-top: -22px;
}

.offer-carousel {
  position: relative;
  display: block;
  height: clamp(280px, 29vw, 430px);
  border-radius: var(--radius);
  overflow: hidden;
}

.offer-carousel__viewport,
.offer-carousel__track {
  height: 100%;
}

.offer-carousel__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.offer-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.offer-carousel__track {
  display: flex;
}

.offer-card__image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.offer-card__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.offer-card__image:hover img {
  transform: scale(1.025);
}

.offer-card__index {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sun);
  font-size: 11px;
  font-weight: 600;
}

.offer-carousel__controls {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.offer-carousel__button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(28, 44, 58, 0.86);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offer-carousel__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.offer-carousel__button:hover {
  color: var(--evergreen-dark);
  background: var(--white);
  transform: translateY(-2px);
}

.offer-carousel__counter {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 20px;
  min-width: 62px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(28, 44, 58, 0.86);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.offer-card__body {
  padding: 26px 2px 0;
}

.offer-card__body h3 {
  min-height: 2em;
  margin-bottom: 16px;
  font-family: var(--body);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.offer-card__body h3 a:hover {
  color: var(--cobalt);
}

.offer-card__facts {
  display: grid;
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
}

.offer-card__facts > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.offer-card__facts dt {
  color: var(--muted);
}

.offer-card__facts dd {
  margin: 0;
  font-weight: 500;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 56px;
}

.apartment-catalog {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.apartment-catalog .offer-grid {
  row-gap: 72px;
}

.benefits {
  color: var(--white);
  background: var(--evergreen-dark);
}

.benefits .shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.5fr);
  gap: clamp(48px, 8vw, 120px);
}

.benefits h2 {
  max-width: 470px;
}

.benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits__list li {
  display: grid;
  grid-template-columns: 50px minmax(180px, 0.8fr) minmax(220px, 1.3fr);
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits__list span {
  color: var(--sun-on-dark);
  font-size: 11px;
  font-weight: 600;
}

.benefits__list strong {
  font-family: var(--display);
  font-size: 29px;
  line-height: 0.95;
}

.benefits__list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 240px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-tile {
  height: 100%;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-preview {
  position: relative;
  background: var(--sand-soft);
  overflow: hidden;
}

.services-preview::after {
  display: none;
}

.services-preview__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: end;
}

.services-preview__copy h2 {
  max-width: 520px;
}

.services-preview__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 32px;
}

.route-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.route-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.route-list span {
  padding-top: 4px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 600;
}

.route-list strong {
  display: block;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
}

.route-list p {
  max-width: 530px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.route-list--compact li {
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 21px 0;
}

.editorial-paths {
  background: var(--chalk);
}

.editorial-paths .shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.editorial-path {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(36px, 5vw, 72px);
  border-radius: var(--radius);
  overflow: hidden;
}

.editorial-path h2 {
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6vw, 6rem);
}

.editorial-path p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 32px;
}

.editorial-path--management {
  color: var(--white);
  background: var(--evergreen-dark);
}

.editorial-path--management p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-path--estate {
  color: var(--evergreen-dark);
  background: var(--white);
}

.contact-bar {
  color: var(--white);
  background: var(--evergreen-dark);
}

.contact-bar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
}

.contact-bar h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.contact-bar p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-bar__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero {
  position: relative;
  min-height: 540px;
  color: var(--white);
  overflow: hidden;
}

.page-hero--green {
  background: var(--evergreen-dark);
}

.page-hero--blue {
  background: var(--evergreen);
}

.page-hero--yellow,
.page-hero--sand {
  color: var(--evergreen-dark);
  background: var(--sand-soft);
}

.page-hero__grid {
  position: relative;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding-block: 86px;
}

.page-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 30px;
  font-size: clamp(4.2rem, 7.4vw, 7.4rem);
  line-height: 0.92;
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.page-hero__phone {
  padding-block: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 600;
}

.page-hero--yellow .page-hero__copy > p:not(.eyebrow),
.page-hero--sand .page-hero__copy > p:not(.eyebrow) {
  color: rgba(27, 39, 48, 0.72);
}

.page-hero__aside {
  display: inline-flex;
  margin-top: 34px;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.page-hero__aside span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero__aside a {
  font-weight: 600;
}

.page-hero__marker {
  display: flex;
  width: min(100%, 300px);
  justify-self: end;
  flex-direction: column;
  align-self: end;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.54);
}

.page-hero__marker span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.page-hero__marker strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.page-hero--sand .page-hero__marker,
.page-hero--yellow .page-hero__marker {
  border-color: rgba(27, 39, 48, 0.22);
  color: rgba(27, 39, 48, 0.52);
}

.page-hero--image .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.page-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  margin: 0;
  overflow: hidden;
}

.page-hero__media::after {
  display: none;
}

.page-hero--blue .page-hero__media::after {
  display: none;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-search {
  background: var(--sand-soft);
}

.catalog-search .booking-panel {
  box-shadow: none;
}

.rental-search-hero {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--sand-soft);
}

.rental-search-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.rental-search-hero__copy h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(4.2rem, 6.8vw, 7rem);
}

.rental-search-hero__copy > p {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.rental-search-hero .booking-panel {
  grid-template-columns: 1fr;
  box-shadow: none;
}

.rental-search-hero .booking-panel__heading {
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.locations-section {
  background: var(--white);
}

.locations-section__grid,
.next-paths__grid,
.request-brief__grid,
.faq-section__grid,
.estate-scenarios__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 9vw, 136px);
  align-items: start;
}

.locations-section__intro,
.faq-section__intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.locations-section__intro p,
.faq-section__intro p,
.request-brief__grid > div > p,
.estate-scenarios__grid > div > p,
.section-lead {
  max-width: 540px;
  color: var(--muted);
  font-size: 16px;
}

.location-list {
  border-top: 1px solid var(--line);
}

.location-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(220px, 1fr);
  gap: 12px 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.location-list h3,
.location-list p,
.location-list span {
  margin: 0;
}

.location-list h3 {
  grid-row: span 3;
  font-size: 34px;
}

.location-list p {
  font-weight: 600;
}

.location-list span {
  color: var(--muted);
  font-size: 14px;
}

.location-list .text-link {
  justify-self: start;
  margin-top: 5px;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 22px;
  height: 2px;
  background: var(--cobalt);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  max-width: 680px;
  padding: 0 54px 26px 0;
  color: var(--muted);
}

.next-paths {
  background: var(--sand-soft);
}

.next-paths nav {
  border-top: 1px solid var(--line);
}

.next-paths nav a {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1fr) 24px;
  gap: 24px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.next-paths nav a > span {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.next-paths nav a > small {
  color: var(--muted);
  font-size: 13px;
}

.next-paths nav svg {
  width: 22px;
  fill: none;
  stroke: var(--cobalt);
  transition: transform 180ms ease;
}

.next-paths nav a:hover svg {
  transform: translateX(4px);
}

.request-brief {
  background: var(--white);
}

.request-message {
  padding: clamp(28px, 4vw, 48px);
  border-left: 4px solid var(--sun);
  background: var(--chalk);
}

.request-message p {
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.75;
}

.request-message strong {
  color: var(--cobalt-dark);
}

.steps-section {
  background: var(--chalk);
}

.steps-section__grid,
.estate-process__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 10vw, 150px);
}

.long-term-intro {
  background: var(--white);
}

.long-term-intro__grid,
.long-term-brief__grid,
.long-term-note__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: start;
}

.long-term-intro__copy p,
.long-term-brief__grid > div > p,
.long-term-note p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.long-term-brief {
  background: var(--chalk);
}

.long-term-facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.long-term-facts > div {
  min-height: 156px;
  padding: 26px 24px 30px 0;
  border-bottom: 1px solid var(--line);
}

.long-term-facts > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.long-term-facts > div:nth-child(even) {
  padding-left: 24px;
}

.long-term-facts dt {
  margin-bottom: 12px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.long-term-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
}

.long-term-note {
  background: var(--sand-soft);
}

.long-term-note__inner {
  align-items: end;
}

.long-term-note h2,
.long-term-note p {
  margin-bottom: 0;
}

.booking-section {
  background: var(--white);
}

.booking-section__grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.booking-section__intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.booking-section__intro h2 {
  font-size: clamp(3.4rem, 5vw, 5rem);
}

.booking-section__intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.booking-frame-wrap {
  position: relative;
  min-width: 0;
  min-height: 660px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
  overflow: hidden;
}

#booking_iframe {
  position: relative;
  z-index: 2;
  min-height: 660px;
}

.booking-frame-placeholder {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  min-height: 660px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
}

.booking-frame-wrap.is-loaded .booking-frame-placeholder {
  display: none;
}

.booking-frame-wrap.is-fallback .booking-frame-placeholder {
  z-index: 3;
  gap: 8px;
  background: var(--chalk);
}

.booking-frame-placeholder__line {
  position: relative;
  width: 170px;
  height: 3px;
  margin-bottom: 26px;
  background: rgba(79, 113, 133, 0.14);
  overflow: hidden;
}

.booking-frame-placeholder__line::after {
  position: absolute;
  inset: 0;
  background: var(--cobalt);
  content: "";
  transform: translateX(-100%);
  animation: loading-line 1.4s ease-in-out infinite;
}

.booking-frame-placeholder strong {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 30px;
}

.booking-frame-placeholder p {
  color: var(--muted);
  font-size: 13px;
}

.service-index {
  background: var(--white);
}

.service-index__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(64px, 10vw, 150px);
}

.service-index__sticky {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.service-index__sticky h2 {
  font-size: clamp(3.6rem, 5.8vw, 5.8rem);
}

.service-index__sticky > p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 30px;
  color: var(--muted);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 28px;
  gap: 26px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list > li > span {
  padding-top: 7px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 600;
}

.service-list h3 {
  margin-bottom: 10px;
  font-size: 34px;
}

.service-list p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-list svg {
  width: 24px;
  margin-top: 4px;
  fill: none;
  stroke: var(--evergreen);
  stroke-width: 1.5;
}

.service-groups {
  border-top: 1px solid var(--line);
}

.service-groups > section {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-groups h3 {
  margin: 0;
  font-size: 34px;
}

.service-groups ul,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-groups li,
.plain-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(27, 39, 48, 0.1);
}

.service-groups li:last-child,
.plain-list li:last-child {
  border-bottom: 0;
}

.service-groups li::before,
.plain-list li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.service-groups__note {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.plain-list {
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
}

.destination-band {
  color: var(--white);
  background: var(--evergreen-dark);
}

.destination-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.destination-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.destination-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.destination-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.destination-list span {
  color: var(--sun-on-dark);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.destination-list strong {
  font-family: var(--display);
  font-size: 34px;
}

.management-story {
  background: var(--chalk);
}

.management-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 76px;
}

.management-story__lead {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 19px;
}

.management-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.management-grid li {
  min-height: 290px;
  grid-column: span 4;
  padding: 28px 28px 36px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.management-grid li:nth-child(3) {
  border-right: 0;
}

.management-grid li:nth-child(4),
.management-grid li:nth-child(5) {
  grid-column: span 6;
}

.management-grid li:nth-child(5) {
  padding-left: 28px;
  border-right: 0;
}

.management-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 600;
}

.management-grid h3 {
  margin-bottom: 14px;
  font-size: 34px;
}

.management-grid p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.management-note {
  background: var(--white);
}

.management-note__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.management-note figure {
  height: 550px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.management-note img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.management-note p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
}

.estate-process {
  background: var(--white);
}

.estate-scenarios {
  background: var(--sand-soft);
}

.scenario-list {
  border-top: 1px solid var(--line);
}

.scenario-list article {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.scenario-list h3,
.scenario-list p {
  margin: 0;
}

.scenario-list h3 {
  font-size: 34px;
}

.scenario-list p {
  color: var(--muted);
}

.estate-process__copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

.estate-contact {
  color: var(--white);
  background: var(--evergreen-dark);
}

.estate-contact__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
}

.estate-contact h2 {
  margin-bottom: 14px;
}

.estate-contact p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.estate-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 600;
  white-space: nowrap;
}

.estate-contact .estate-phone small {
  color: rgba(255, 255, 255, 0.72);
}

.estate-contact .estate-phone svg {
  border-color: rgba(255, 255, 255, 0.42);
}

.contacts-section {
  background: var(--chalk);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
}

.contact-card {
  min-width: 0;
  min-height: 400px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card--primary {
  color: var(--white);
  background: var(--evergreen-dark);
}

.contact-card--max {
  grid-column: 1 / -1;
  min-height: 300px;
  color: var(--evergreen-dark);
  background: var(--sand-soft);
}

.contact-card h2 {
  font-size: clamp(3.5rem, 5.8vw, 5.8rem);
}

.contact-card__phone {
  display: inline-block;
  margin: 18px 0 34px;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-card__address {
  display: flex;
  max-width: 480px;
  gap: 14px;
  font-size: 18px;
}

.contact-card__address svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cobalt);
  stroke-width: 1.5;
}

.contact-card__note {
  max-width: 460px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.contact-card--primary .contact-card__note {
  color: rgba(255, 255, 255, 0.7);
}

.contact-next {
  background: var(--white);
}

.contact-next__grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.contact-next__grid > div:last-child p {
  margin-bottom: 30px;
  color: var(--muted);
}

.legal {
  background: var(--white);
}

.legal__grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 80px;
  justify-content: center;
}

.legal aside {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
  color: var(--muted);
  font-size: 13px;
}

.legal aside a {
  color: var(--cobalt);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal__content h2 {
  margin: 60px 0 18px;
  font-family: var(--body);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content p {
  color: #4b5962;
}

.legal__content a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  color: var(--white);
  background: var(--evergreen-dark);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  padding-block: 86px 72px;
}

.wordmark--footer .wordmark__logo {
  width: 200px;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.site-footer__column,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__column h2 {
  margin-bottom: 14px;
  color: var(--sun-on-dark);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.site-footer__column a:hover,
.site-footer__contact a:hover {
  color: var(--sun-on-dark);
}

.site-footer__contact p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.site-footer__phone {
  font-size: 21px;
  font-weight: 600;
}

.messenger-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.messenger-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 12px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.site-footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-line {
  50%,
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero__copy > * {
    animation: hero-rise 620ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .home-hero__copy > :nth-child(2) {
    animation-delay: 70ms;
  }

  .home-hero__copy > :nth-child(3) {
    animation-delay: 140ms;
  }

  .home-hero__copy > :nth-child(4) {
    animation-delay: 210ms;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: 1100px;
  }

  .site-header__inner {
    gap: 22px;
  }

  .site-nav__links {
    gap: 12px;
  }

  .site-nav__links > a {
    font-size: 12px;
  }

  .site-nav__phone {
    display: none;
  }

  .home-hero {
    grid-template-columns: minmax(0, 53%) minmax(0, 47%);
  }

  .home-hero__copy h1 {
    font-size: clamp(3.5rem, 5.4vw, 5.25rem);
  }

  .booking-panel {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .booking-panel__heading {
    padding: 20px;
  }

  .offer-carousel {
    height: 330px;
  }
}

@media (min-width: 1021px) and (max-height: 820px) {
  .home-hero__copy {
    padding: 34px clamp(28px, 4vw, 58px) 126px;
  }

  .home-hero__copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3.2rem, 4.4vw, 4.2rem);
  }

  .home-hero__copy > p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-actions {
    gap: 18px;
  }
}

@media (min-width: 1021px) and (max-height: 650px) {
  .home-hero {
    min-height: 520px;
  }

  .home-hero__copy {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 12px;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 12px;
    font-weight: 600;
  }

  .menu-toggle__lines {
    position: relative;
    display: block;
    width: 26px;
    height: 18px;
  }

  .menu-toggle__lines i {
    position: absolute;
    right: 0;
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease;
  }

  .menu-toggle__lines i:first-child {
    top: 5px;
  }

  .menu-toggle__lines i:last-child {
    top: 12px;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    padding: 46px 24px 28px;
    color: var(--white);
    background: var(--evergreen-dark);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
  }

  .site-nav.is-open {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav__links,
  .site-nav__contact {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links {
    gap: 0;
  }

  .site-nav__links > a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--display);
    font-size: clamp(2.1rem, 6.4vw, 3.2rem);
    line-height: 1;
  }

  .site-nav__links > a::after {
    display: none;
  }

  .site-nav__contact {
    gap: 14px;
    margin-top: 32px;
  }

  .site-nav__phone {
    display: block;
    color: rgba(255, 255, 255, 0.72);
  }

  .site-nav .button--header {
    color: var(--white);
    background: var(--sun);
  }

  .home-hero {
    display: grid;
    height: auto;
    min-height: calc(100svh - var(--header-height));
    grid-template-columns: 1fr;
    grid-template-rows: minmax(min-content, 1fr) auto;
    padding-bottom: 0;
    color: var(--white);
    background: var(--evergreen-dark);
  }

  .home-hero__media {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }

  .home-hero__media::after {
    background: linear-gradient(180deg, rgba(28, 44, 58, 0.08) 0%, rgba(28, 44, 58, 0.68) 58%, rgba(28, 44, 58, 0.94) 100%);
  }

  .home-hero__media > img {
    object-position: 72% 50%;
  }

  .home-hero__copy {
    z-index: 2;
    grid-row: 1;
    align-self: end;
    min-height: auto;
    justify-content: flex-end;
    padding: 48px 24px 32px;
    color: var(--white);
    overflow: visible;
  }

  .home-hero__copy h1 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(3.8rem, 9vw, 6.3rem);
  }

  .home-hero__copy > p:not(.eyebrow),
  .home-hero .hero-phone,
  .home-hero .hero-phone small {
    color: rgba(255, 255, 255, 0.82);
  }

  .home-hero .hero-phone svg {
    border-color: rgba(255, 255, 255, 0.42);
  }

  .home-hero .photo-note {
    top: 24px;
    bottom: auto;
  }

  .home-hero__booking {
    position: relative;
    z-index: 4;
    grid-row: 2;
    bottom: auto;
    padding-bottom: 20px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-panel__heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits .shell,
  .services-preview__grid,
  .steps-section__grid,
  .locations-section__grid,
  .next-paths__grid,
  .request-brief__grid,
  .faq-section__grid,
  .estate-scenarios__grid,
  .long-term-intro__grid,
  .long-term-brief__grid,
  .long-term-note__inner,
  .service-index__grid,
  .management-story__grid,
  .estate-process__grid {
    grid-template-columns: 1fr;
  }

  .benefits__intro h2 {
    max-width: 650px;
  }

  .services-preview__grid,
  .steps-section__grid,
  .locations-section__grid,
  .next-paths__grid,
  .request-brief__grid,
  .faq-section__grid,
  .estate-scenarios__grid,
  .long-term-intro__grid,
  .long-term-brief__grid,
  .long-term-note__inner,
  .service-index__grid,
  .management-story__grid,
  .estate-process__grid {
    gap: 52px;
  }

  .service-index__sticky,
  .booking-section__intro,
  .locations-section__intro,
  .faq-section__intro {
    position: static;
  }

  .rental-search-hero__grid {
    grid-template-columns: 1fr;
  }

  .rental-search-hero__copy {
    max-width: 760px;
  }

  .management-story__grid {
    margin-bottom: 54px;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, var(--container));
  }

  .section-pad {
    padding-block: 76px;
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 42px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading__copy {
    margin-bottom: 0;
    font-size: 15px;
  }

  .wordmark__logo {
    width: 132px;
  }

  .wordmark--footer .wordmark__logo {
    width: 180px;
  }

  .home-hero__media {
    height: 100%;
    min-height: 0;
  }

  .photo-note {
    bottom: 20px;
    left: 16px;
  }

  .photo-note strong {
    display: none;
  }

  .home-hero__copy {
    padding: 24px 16px 18px;
  }

  .home-hero__copy h1 {
    max-width: 590px;
    margin-bottom: 0;
    font-size: clamp(2.75rem, 11.5vw, 3.7rem);
    line-height: 0.9;
  }

  .home-hero__copy > p:not(.eyebrow) {
    display: none;
  }

  .home-hero .hero-actions,
  .home-hero .photo-note,
  .home-hero .booking-panel__heading {
    display: none;
  }

  .home-hero__booking {
    width: min(100% - 24px, var(--container));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .home-hero .booking-panel,
  .home-hero .booking-panel__widget {
    min-height: 260px;
  }

  .page-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero__actions .button {
    width: 100%;
  }

  .page-hero__phone {
    align-self: flex-start;
  }

  .rental-search-hero {
    padding-block: 62px;
  }

  .rental-search-hero__grid {
    gap: 42px;
  }

  .rental-search-hero__copy h1 {
    font-size: clamp(3.55rem, 14.5vw, 5.2rem);
  }

  .rental-search-hero__copy > p {
    font-size: 16px;
  }

  .booking-panel__heading {
    padding: 20px;
  }

  .booking-panel__widget {
    min-height: 260px;
    padding: 10px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .offer-card--lead {
    margin-top: 0;
  }

  .offer-carousel {
    height: min(76vw, 390px);
  }

  .offer-card__body h3 {
    min-height: 0;
    font-size: 21px;
  }

  .section-action {
    justify-content: stretch;
    margin-top: 44px;
  }

  .section-action .button {
    width: 100%;
  }

  .apartment-catalog .offer-grid {
    row-gap: 56px;
  }

  .benefits .shell {
    gap: 34px;
  }

  .benefits__list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
  }

  .benefits__list p {
    grid-column: 2;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

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

  .editorial-paths .shell {
    grid-template-columns: 1fr;
  }

  .editorial-path {
    min-height: 460px;
    padding: 36px 24px;
  }

  .editorial-path h2 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .contact-bar__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-bar__actions .button {
    width: 100%;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero__grid,
  .page-hero--image .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 68px;
  }

  .page-hero h1 {
    font-size: clamp(3.55rem, 14.5vw, 5.2rem);
  }

  .page-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .page-hero__marker {
    width: 180px;
    justify-self: start;
    align-self: end;
  }

  .page-hero__marker strong {
    font-size: 3.1rem;
  }

  .page-hero--image {
    padding-bottom: 0;
  }

  .page-hero--image .page-hero__grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding-block: 68px 0;
  }

  .page-hero--image .page-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    flex: 0 0 auto;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .page-hero__media::after {
    display: none;
  }

  .booking-section__grid {
    grid-template-columns: 1fr;
  }

  .booking-frame-wrap,
  #booking_iframe,
  .booking-frame-placeholder {
    min-height: 620px;
  }

  .booking-frame-placeholder {
    padding: 32px 20px;
  }

  .route-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .location-list article,
  .next-paths nav a,
  .service-groups > section,
  .scenario-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .location-list h3 {
    grid-row: auto;
  }

  .next-paths nav a {
    position: relative;
    padding-right: 34px;
  }

  .next-paths nav a svg {
    position: absolute;
    top: 31px;
    right: 2px;
  }

  .request-message {
    padding: 28px 22px;
  }

  .service-groups > section,
  .scenario-list article {
    padding-block: 26px;
  }

  .long-term-facts {
    grid-template-columns: 1fr;
  }

  .long-term-facts > div,
  .long-term-facts > div:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .service-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .service-list li > svg {
    display: none;
  }

  .destination-band__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .management-grid li,
  .management-grid li:nth-child(4),
  .management-grid li:nth-child(5) {
    min-height: 0;
    grid-column: auto;
    padding: 26px 0;
    border-right: 0;
  }

  .management-grid li:nth-child(5) {
    padding-left: 0;
  }

  .management-grid span {
    margin-bottom: 34px;
  }

  .management-note__grid {
    grid-template-columns: 1fr;
  }

  .management-note figure {
    height: 380px;
  }

  .estate-contact__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .estate-phone {
    font-size: 22px;
  }

  .contacts-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card,
  .contact-card--max {
    min-height: 340px;
    grid-column: auto;
    padding: 34px 24px;
  }

  .contact-card__actions .button {
    flex: 1 1 140px;
  }

  .contact-card h2 {
    font-size: clamp(2.75rem, 11vw, 3.5rem);
  }

  .contact-next__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal aside {
    position: static;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    padding-block: 52px 38px;
  }

  .site-footer__brand,
  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer__column,
  .site-footer__contact {
    gap: 7px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .menu-toggle__label {
    display: none;
  }

  .gallery-grid {
    grid-auto-rows: 150px;
  }

  .booking-panel__heading div > span {
    max-width: 220px;
  }
}

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

  .home-hero__copy > *,
  .booking-frame-placeholder__line::after {
    animation: none !important;
  }

  .skip-link,
  .button,
  .offer-card__image img,
  .offer-carousel__viewport,
  .offer-carousel__button,
  .site-nav__links > a::after,
  .menu-toggle__lines i,
  .site-nav {
    transition: none !important;
  }
}

/* Booking recovery and the apartment-selection path. */
[hidden] { display: none !important; }

.booking-panel__widget > #_bn_widget_adaptive {
  position: absolute;
  inset: 10px 14px;
  width: auto;
  opacity: 0;
  pointer-events: none;
}
/* Bnovo inserts a wrapper. Without an explicit width this flex child
   shrink-wraps the iframe to its intrinsic 300px, crushing horizontal fields. */
#_bn_widget_adaptive > div {
  width: 100%;
  min-width: 0;
}
.booking-panel[data-bnovo-state="ready"] #_bn_widget_adaptive {
  position: relative;
  inset: auto;
  width: 100%;
  opacity: 1;
  pointer-events: auto;
}
.booking-panel[data-bnovo-state="ready"] [data-search-fallback] { display: none; }
.booking-panel__widget > .booking-search-fallback { display: block; min-height: 0; }
.booking-search-fallback { padding: 5px 0; }
.booking-search-fallback form {
  display: grid;
  grid-template-columns: 1fr 1fr .7fr auto;
  align-items: end;
  gap: 12px;
}
.booking-search-fallback label, .catalog-filters label {
  display: grid;
  min-width: 0;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}
.booking-search-fallback input, .booking-search-fallback select,
.catalog-filters select {
  display: block;
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 10px;
  border: 1px solid #a7b2b9;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
}
.booking-search-fallback .button { min-height: 48px; padding: 10px 16px; font-size: 13px; }
.booking-search-note { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
.booking-panel { overflow: visible; }
.booking-panel__widget { border-radius: var(--radius); background: var(--white); }

.offer-card__amenities { color: var(--muted); font-size: 12px; }
.offer-card__actions { display: flex; gap: 12px 24px; flex-wrap: wrap; }
.offer-card__actions .text-link { min-height: 44px; font-size: 13px; }
.offer-card__facts { margin-bottom: 14px; }
.location-catalog-link { display: block; margin-bottom: 12px; text-decoration: underline; text-underline-offset: 4px; }
.location-catalog-link:hover { color: var(--sun); }
.home-hero ~ .section-pad { padding-block: clamp(56px, 6vw, 88px); }
.home-hero ~ .section-pad .section-heading { margin-bottom: 36px; }
.home-hero ~ .section-pad .offer-card--lead { margin-top: 0; }

.catalog-filters {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 22px 0;
  margin: -12px 0 36px;
  border-block: 1px solid var(--line);
}
.catalog-filters label { flex: 1 1 220px; max-width: 320px; }
.filter-reset {
  min-height: 48px;
  padding: 8px 0;
  border: 0;
  color: var(--cobalt-dark);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.filter-reset:hover { color: var(--sun); }
.catalog-count { margin: 0 0 12px auto; color: var(--muted); font-size: 13px; }
.catalog-empty { padding-block: 48px; max-width: 620px; }
.apartment-catalog .offer-grid { row-gap: 48px; }
.apartment-catalog .offer-carousel { height: clamp(240px, 23vw, 320px); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; font-size: 13px; color: var(--muted); }
.breadcrumbs a:hover { text-decoration: underline; }
.apartment-detail { padding-top: 36px; }
.apartment-detail__heading { max-width: 1000px; margin-bottom: 32px; }
.apartment-detail h1 { margin: 0 0 18px; font-size: clamp(3rem, 5.3vw, 5.5rem); line-height: .96; }
.apartment-detail__heading .text-link { font-size: 14px; }
.apartment-detail__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.apartment-photos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; scroll-margin-top: 100px; }
.apartment-photo { position: relative; display: block; min-width: 0; overflow: hidden; border-radius: var(--radius-sm); }
.apartment-photo--main { grid-column: 1 / -1; }
.apartment-photo img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 180ms ease; }
.apartment-photo--main img { aspect-ratio: 3 / 2; }
.apartment-photo:hover img { transform: scale(1.025); }
.apartment-photo span { position: absolute; bottom: 12px; left: 12px; padding: 5px 9px; border-radius: 8px; background: var(--evergreen-dark); color: var(--white); font-size: 11px; }
.apartment-photo:not(.apartment-photo--main) span { width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; }
.apartment-summary { position: sticky; top: calc(var(--header-height) + 24px); }
.apartment-summary h2 { font-family: var(--body); font-size: 21px; letter-spacing: -.02em; line-height: 1.3; margin-bottom: 16px; }
.apartment-summary > p { color: var(--muted); font-size: 15px; }
.apartment-summary .button { width: 100%; }
.apartment-summary__note { font-size: 12px !important; margin-block: 10px 18px; }
.apartment-facts { margin-block: 24px; }
.apartment-facts > div { display: grid; grid-template-columns: 128px 1fr; gap: 12px; padding-block: 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
.apartment-facts dt { color: var(--muted); }
.apartment-facts dd { margin: 0; }
.apartment-amenities { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.apartment-amenities h2 { font-size: clamp(2.7rem, 4vw, 4rem); }
.apartment-amenities ul { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin: 0; padding: 0; list-style: none; }
.apartment-amenities li { padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 15px; }

body.photo-viewer-open { overflow: hidden; }
.photo-viewer { width: min(1200px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 20px; border: 0; border-radius: var(--radius); color: var(--white); background: var(--evergreen-dark); }
.photo-viewer::backdrop { background: rgba(10, 19, 25, .9); }
.photo-viewer__toolbar, .photo-viewer__controls { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.photo-viewer__toolbar { margin-bottom: 12px; font-size: 14px; }
.photo-viewer button { min-width: 44px; min-height: 44px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.5); border-radius: var(--radius-sm); background: transparent; color: var(--white); cursor: pointer; }
.photo-viewer button:hover { background: var(--cobalt-dark); }
.photo-viewer svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.photo-viewer figure { margin: 0; }
.photo-viewer figure img { width: 100%; height: min(65svh, 780px); object-fit: contain; touch-action: pan-y; }
.photo-viewer figcaption { margin: 12px 0; font-size: 13px; }
.photo-viewer__controls { justify-content: center; }

.booking-intro { padding: 40px 0 24px; }
.booking-intro h1 { margin: 24px 0 16px; font-size: clamp(3rem, 5vw, 5rem); }
.booking-intro p { color: var(--muted); }
.booking-section { padding-top: 32px; }
.booking-section__intro h2 { font-size: clamp(2.5rem, 3.5vw, 3.5rem); }
.booking-selection { margin-block: 24px; }
.booking-selection img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius-sm); }
.booking-selection strong { display: block; margin: 12px 0 8px; font-size: 16px; }
.booking-selection .text-link { font-size: 13px; }
.booking-frame-wrap { min-height: 360px; }
.booking-frame-wrap #booking_iframe { min-height: 0; }
.booking-frame-wrap:not([data-bnovo-state="ready"]) #booking_iframe { height: 0; overflow: hidden; opacity: 0; }
.booking-frame-wrap .booking-frame-placeholder { position: relative; min-height: 360px; padding: 40px 24px; background: var(--chalk); }
.booking-frame-wrap[data-bnovo-state="ready"] .booking-frame-placeholder { display: none; }
.booking-frame-wrap[data-bnovo-state="fallback"] .booking-frame-placeholder__line { display: none; }
.booking-recovery-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.booking-recovery-actions .button { font-size: 13px; }
.booking-section__intro a[href^="tel:"] { white-space: nowrap; text-decoration: underline; }

@media (max-width: 1020px) {
  .booking-search-fallback form { grid-template-columns: 1fr 1fr; }
  .booking-search-fallback .button { align-self: end; }
  .booking-panel__widget > #_bn_widget_adaptive { inset: 10px; }
  .apartment-detail__grid { gap: 28px; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .apartment-summary { position: static; }
  .apartment-facts > div { grid-template-columns: 100px 1fr; font-size: 13px; }
  .booking-section__grid { grid-template-columns: 1fr; }
  .booking-selection { display: grid; grid-template-columns: 100px 1fr; gap: 6px 16px; align-items: start; max-width: 650px; }
  .booking-selection img { height: 86px; grid-row: span 2; }
  .booking-selection strong { margin: 0; }
}
@media (max-width: 760px) {
  .home-hero ~ .section-pad { padding-block: 52px; }
  .home-hero ~ .section-pad .locations-section__grid,
  .home-hero ~ .section-pad .steps-section__grid,
  .home-hero ~ .section-pad .faq-section__grid,
  .home-hero ~ .section-pad .next-paths__grid { gap: 24px; }
  .home-hero ~ .section-pad h2 { font-size: clamp(2.8rem, 11vw, 3.5rem); }
  .booking-search-fallback { padding: 10px 4px; }
  .booking-search-fallback form { gap: 12px 10px; }
  .booking-search-fallback .button { font-size: 12px; padding: 10px; }
  .booking-search-note { margin-top: 12px; font-size: 11px; line-height: 1.4; }
  .offer-card__body { padding-top: 18px; }
  .offer-grid { gap: 40px; }
  .offer-card__facts > div { padding-block: 8px; font-size: 13px; }
  .apartment-catalog .offer-carousel { height: min(68vw, 310px); }
  .catalog-filters { gap: 12px 16px; margin-bottom: 28px; }
  .catalog-filters label { flex-basis: calc(50% - 8px); max-width: none; }
  .catalog-count { margin-bottom: 14px; }
  .catalog-filters select { font-size: 14px; }
  .apartment-detail { padding-top: 24px; padding-bottom: 48px; }
  .apartment-detail h1 { font-size: clamp(2.7rem, 11vw, 3.7rem); }
  .apartment-detail__grid, .apartment-amenities { grid-template-columns: 1fr; }
  .apartment-photos { gap: 8px; }
  .apartment-facts > div { grid-template-columns: 112px 1fr; font-size: 14px; }
  .apartment-amenities { margin-top: 36px; padding-top: 28px; gap: 12px; }
  .apartment-amenities li { font-size: 14px; }
  .photo-viewer { padding: 12px; width: calc(100% - 16px); }
  .photo-viewer figure img { height: 58svh; }
  .booking-intro { padding-block: 24px; }
  .booking-section__grid { gap: 24px; }
  .booking-frame-wrap .booking-frame-placeholder { padding: 28px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .apartment-photo img { transition: none; }
}

/* A short landscape viewport cannot fit a stacked title and vertical search. */
@media (min-width: 520px) and (max-width: 1020px) and (max-height: 600px) and (orientation: landscape) {
  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
  }

  .home-hero__copy {
    align-self: center;
    grid-column: 1;
    padding: 24px 20px;
  }

  .home-hero__copy h1 {
    margin-bottom: 0;
    font-size: clamp(2.75rem, 5.5vw, 3.8rem);
  }

  .home-hero__copy > p:not(.eyebrow),
  .home-hero .hero-actions,
  .home-hero .photo-note,
  .home-hero .booking-panel__heading {
    display: none;
  }

  .home-hero__booking {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    margin: 0;
    padding: 12px 16px 12px 0;
  }
}
