:root {
  --bg: #f7f3ed;
  --surface: #ffffff;
  --surface-soft: #f2ece4;
  --text: #1f1b17;
  --muted: #6e665d;
  --line: rgba(43, 33, 22, 0.12);
  --accent: #647457;
  --dark: #1f1b17;
  --shadow: 0 18px 40px rgba(24, 18, 12, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

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

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

.site-header {
  width: 100%;
  margin-inline: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  background: #f8f3ed;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

.site-footer,
.hero-home__content {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.page-main {
  width: 100%;
  margin-inline: 0;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header--overlay {
  color: var(--text);
  background: #f8f3ed;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
}

.brand-stars {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: #d7b465;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
}

.site-nav a {
  font-size: 0.98rem;
}

.site-nav .is-active {
  color: var(--text);
  font-weight: 600;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-switcher a {
  color: var(--muted);
}

.lang-switcher a.is-active {
  color: var(--text);
  font-weight: 700;
}

.lang-switcher span {
  color: rgba(110, 102, 93, 0.45);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--dark);
  cursor: pointer;
}

.nav-toggle__lines {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 12px;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after,
.nav-toggle__lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    top 160ms ease;
}

.nav-toggle__lines::before {
  top: 0;
}

.nav-toggle__lines span {
  top: 5px;
}

.nav-toggle__lines::after {
  top: 10px;
}

.site-header.is-nav-open .nav-toggle__lines::before {
  top: 5px;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__lines span {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle__lines::after {
  top: 5px;
  transform: rotate(-45deg);
}


.hero-home {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.hero-home__media,
.hero-home__overlay {
  position: absolute;
  inset: 0;
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home__overlay {
  background: linear-gradient(90deg, rgba(17, 14, 12, 0.58) 0%, rgba(17, 14, 12, 0.28) 46%, rgba(17, 14, 12, 0.22) 100%);
}

.hero-home__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 220px 0 80px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

.hero-home h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.94;
}

.hero-home__lead,
.body-copy,
.reserve-copy,
.feature-card__body p,
.amenity-card p,
.detail-box p,
.detail-box li,
.location-layout p,
.two-column-callout p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.02rem;
}

.hero-home__lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
}

.hero-home__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
}

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

.button--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

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

.button--ghost,
.button--ghost-dark {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--dark);
}

.page-main {
  padding-top: 93px;
}

.page-hero {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  padding: 40px 0 32px;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.section {
  padding: 88px 0;
}

.section > .section-head,
.section > .split-grid {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.section--soft {
  background: var(--surface-soft);
  padding: 72px 48px;
  border-radius: 28px;
  margin: 0 0 24px;
}

.section--reserve {
  padding: 96px 0 104px;
}

.reserve-panel {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  padding: 34px 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reserve-panel__copy h2 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
}

.reserve-panel__action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.amenity-card,
.detail-box,
.rating-box,
.map-frame,
.contact-layout > .detail-box {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card {
  overflow: hidden;
  border-radius: 24px;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.feature-card__body {
  padding: 26px;
}

.feature-card__subtitle {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.mini-label {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 600;
}

.feature-card__body h3,
.two-column-callout h2,
.location-layout h2,
.contact-layout h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.feature-card__body h3 span {
  font-size: 0.54em;
  color: var(--muted);
  font-weight: 500;
}

.inline-meta,
.detail-box ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.two-column-callout,
.contact-layout {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 24px;
  align-items: center;
}

.location-layout {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 50%);
  gap: 24px;
  align-items: center;
}

.rating-box {
  min-height: 280px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rating-box__value {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.rating-box__label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.05rem;
}

.reserve-copy {
  max-width: 720px;
  margin: 18px 0 0;
}

.apartment-showcase {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  padding: 34px 0 84px;
}

.apartment-showcase--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.apartment-showcase--reverse .apartment-showcase__media {
  order: 2;
}

.apartment-showcase--reverse .apartment-showcase__copy {
  order: 1;
}

.apartment-showcase__copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 22px;
}

.stat-list span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.detail-box {
  padding: 22px;
  border-radius: 20px;
}

.detail-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.detail-box h3 + p,
.detail-box p + h3 {
  margin-top: 30px;
}

.detail-box p {
  margin: 0;
}

.detail-box p + p {
  margin-top: 0;
}

.slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.slider__viewport {
  position: relative;
  aspect-ratio: 1024 / 681;
}

.slider__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.slider__image.is-active {
  opacity: 1;
}

.slider__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.slider__controls button,
.slider__dots button {
  border: 0;
  cursor: pointer;
}

.slider__controls button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 1.4rem;
}

.slider__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px 0 2px;
}

.slider__dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(31, 27, 23, 0.2);
}

.slider__dots button.is-active {
  background: var(--dark);
}

.apartment-summary {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 0;
}

.apartment-summary__inner {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.apartment-summary--dark {
  background: #111111;
  color: white;
}

.apartment-summary--alt {
  background: #ffffff;
}

.apartment-summary--dark .body-copy,
.apartment-summary--dark .summary-list,
.apartment-summary--dark .mini-label {
  color: rgba(255, 255, 255, 0.8);
}

.apartment-summary--dark .stat-list span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.apartment-summary__copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

.apartment-summary__copy .body-copy {
  max-width: 60ch;
}

.summary-list {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.details-section {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.details-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.details-section__head h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
}

.details-section__intro {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.7;
}

.details-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.details-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 18px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: var(--text);
  line-height: 1.45;
}

.details-highlight__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.details-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.details-card--wide {
  grid-column: 1 / -1;
}

.details-card__title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.details-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.details-card__eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.details-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.details-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.9;
}

.details-list--two-column {
  columns: 2;
  column-gap: 28px;
}

.details-card li {
  position: relative;
  padding-left: 18px;
  break-inside: avoid;
}

.details-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.booking-gallery {
  display: grid;
  gap: 14px;
}

.booking-gallery__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.booking-gallery__main img,
.booking-gallery__stack img,
.booking-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.booking-gallery img[data-gallery-trigger] {
  cursor: pointer;
}

.booking-gallery__trigger,
.booking-gallery__more {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
}

.booking-gallery__trigger img,
.booking-gallery__more img {
  display: block;
}

.booking-gallery__main > .booking-gallery__trigger {
  aspect-ratio: 1024 / 681;
}

.booking-gallery__stack > .booking-gallery__trigger,
.booking-gallery__thumbs > .booking-gallery__trigger,
.booking-gallery__thumbs > .booking-gallery__more {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
}

.booking-gallery__trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 160ms ease;
}

.booking-gallery__trigger-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.68);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.booking-gallery__trigger:hover::after,
.booking-gallery__trigger:focus-visible::after,
.booking-gallery__trigger:hover .booking-gallery__trigger-badge,
.booking-gallery__trigger:focus-visible .booking-gallery__trigger-badge {
  opacity: 1;
}

.booking-gallery__trigger:hover .booking-gallery__trigger-badge,
.booking-gallery__trigger:focus-visible .booking-gallery__trigger-badge {
  transform: translateY(0);
}

.booking-gallery__main img {
  aspect-ratio: 1024 / 681;
}

.booking-gallery__stack {
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.booking-gallery__stack img,
.booking-gallery__thumbs img {
  aspect-ratio: 4 / 3;
}

.booking-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.booking-gallery__more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  text-align: center;
}

.booking-gallery__more-overlay strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.booking-gallery__more-overlay span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__dialog {
  width: min(1200px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(10px);
}

.gallery-modal__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-modal__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.gallery-modal__close,
.gallery-modal__nav {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gallery-modal__viewer {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  align-items: center;
}

.gallery-modal__frame {
  min-height: min(72vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.gallery-modal__frame img {
  width: 100%;
  height: 100%;
  max-height: min(72vh, 780px);
  object-fit: contain;
}

.gallery-modal__caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.gallery-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 10px;
}

.gallery-modal__thumb {
  padding: 0;
  border: 0;
  background: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-modal__thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

.gallery-modal__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.amenities-grid {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 12px 0 96px;
}

.amenity-card {
  padding: 28px;
  border-radius: 22px;
}

.amenity-card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.nearby-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.nearby-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.nearby-list strong {
  font-size: 1.05rem;
}

.nearby-list span {
  color: var(--muted);
}

.map-frame {
  padding: 10px;
  border-radius: 28px;
  overflow: hidden;
}

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

.contact-layout {
  padding: 18px 0 96px;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 34px 0 28px;
  background: #000;
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 28px;
  padding: 0 0 22px;
}

.footer-grid h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.footer-grid h4 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.footer-grid p,
.footer-grid li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-grid p {
  margin: 0;
}

.footer-grid p + p {
  margin-top: 0;
}

.footer-grid a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 20px 24px;
  }

  .brand {
    font-size: 1.9rem;
  }

  .site-header__right {
    gap: 16px;
  }

  .site-nav {
    gap: 16px;
  }

  .page-hero,
  .two-column-callout,
  .contact-layout,
  .location-layout,
  .apartment-showcase,
  .amenities-grid,
  .details-section,
  .footer-grid,
  .footer-bottom,
  .hero-home__content,
  .apartment-summary__inner,
  .reserve-panel,
  .section > .section-head,
  .section > .split-grid {
    width: min(100%, calc(100% - 48px));
  }

  .split-grid,
  .two-column-callout,
  .location-layout,
  .contact-layout,
  .apartment-showcase,
  .apartment-showcase--reverse,
  .apartment-summary__inner,
  .reserve-panel,
  .amenities-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .apartment-showcase--reverse .apartment-showcase__media,
  .apartment-showcase--reverse .apartment-showcase__copy {
    order: initial;
  }

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

  .booking-gallery__top,
  .booking-gallery__stack {
    grid-template-columns: 1fr;
  }

  .booking-gallery__stack {
    grid-template-rows: none;
  }

  .booking-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .details-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .details-section__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (min-width: 750px) and (max-width: 1100px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .site-header__right {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }

  .site-nav {
    flex: 1 1 auto;
    gap: 12px 18px;
  }

  .lang-switcher {
    flex: 0 0 auto;
    padding-top: 2px;
  }

  .page-main {
    padding-top: 126px;
  }

  .hero-home__content {
    min-height: 100svh;
    padding: 188px 0 72px;
  }

  .hero-home h1 {
    max-width: 8ch;
    font-size: clamp(3.9rem, 9vw, 6rem);
  }

  .hero-home__lead {
    max-width: 52ch;
  }

  .section,
  .section--reserve {
    padding: 72px 0;
  }

  .section--soft {
    padding: 48px 32px;
  }

  .feature-card__body,
  .amenity-card,
  .detail-box,
  .details-card {
    padding: 24px;
  }

  .apartment-summary {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 64px 0;
    overflow: hidden;
  }

  .apartment-summary__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .apartment-summary__media,
  .apartment-summary__copy {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
  }

  .booking-gallery {
    gap: 12px;
  }

  .booking-gallery__top {
    grid-template-columns: minmax(0, 1.28fr) minmax(250px, 0.92fr);
    gap: 12px;
  }

  .booking-gallery__stack {
    min-width: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
  }

  .booking-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .booking-gallery__main img,
  .booking-gallery__main > .booking-gallery__trigger {
    aspect-ratio: 1.18 / 1;
  }

  .booking-gallery__stack > .booking-gallery__trigger,
  .booking-gallery__thumbs > .booking-gallery__trigger,
  .booking-gallery__thumbs > .booking-gallery__more,
  .booking-gallery__stack img,
  .booking-gallery__thumbs img {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1 / 1;
  }

  .apartment-summary__copy .body-copy {
    max-width: none;
  }

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

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

  .location-layout,
  .two-column-callout,
  .contact-layout {
    gap: 22px;
  }

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

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 749px) {
  body {
    overflow-x: hidden;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-footer,
  .hero-home__content {
    width: 100%;
  }

  .page-hero,
  .two-column-callout,
  .contact-layout,
  .location-layout,
  .apartment-showcase,
  .amenities-grid,
  .details-section,
  .footer-grid,
  .footer-bottom,
  .reserve-panel,
  .section > .section-head,
  .section > .split-grid {
    width: min(100%, calc(100% - 28px));
  }

  .details-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-modal {
    padding: 0;
    align-items: stretch;
  }

  .gallery-modal__dialog {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
    gap: 12px;
    padding: 12px 12px 16px;
    border-radius: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: none;
  }

  .gallery-modal__topbar {
    position: sticky;
    top: 0;
    z-index: 2;
    padding-bottom: 4px;
    background: rgba(10, 10, 10, 0.96);
  }

  .gallery-modal__title {
    font-size: 0.95rem;
    max-width: calc(100% - 56px);
  }

  .gallery-modal__viewer {
    position: relative;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-modal__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.88);
    color: #fff;
    font-size: 1.4rem;
  }

  .gallery-modal__viewer [data-gallery-prev] {
    left: 10px;
  }

  .gallery-modal__viewer [data-gallery-next] {
    right: 10px;
  }

  .gallery-modal__frame {
    position: relative;
    min-height: calc(100svh - 210px);
    max-height: calc(100svh - 210px);
    border-radius: 18px;
  }

  .gallery-modal__thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .gallery-modal__thumb {
    flex: 0 0 84px;
    scroll-snap-align: start;
  }

  .gallery-modal__caption {
    font-size: 0.88rem;
  }

  .details-list--two-column {
    columns: 1;
  }

  .apartment-summary__inner {
    width: min(100%, calc(100% - 28px));
  }

  .site-header {
    width: 100%;
    padding: 20px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    font-size: 1.8rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__right {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 10px 0 2px;
  }

  .site-header.is-nav-open .site-header__right {
    display: flex;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .lang-switcher {
    align-self: flex-start;
    padding-top: 6px;
  }

  .hero-home__content {
    min-height: 100svh;
    padding: 156px 0 52px;
  }

  .hero-home h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .button,
  .hero-home__actions,
  .contact-actions {
    width: 100%;
  }

  .hero-home__actions,
  .contact-actions {
    flex-direction: column;
  }

  .section,
  .section--reserve {
    padding: 64px 0;
  }

  .section--soft {
    padding: 34px 22px;
  }

  .page-hero {
    padding: 28px 0 24px;
  }

  .page-hero h1,
  .section-head h2,
  .two-column-callout h2,
  .location-layout h2,
  .contact-layout h2,
  .apartment-summary__copy h2,
  .details-section__head h2,
  .reserve-panel__copy h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .feature-card__body,
  .amenity-card,
  .detail-box,
  .details-card {
    padding: 22px;
  }

  .apartment-summary {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 52px 0;
    overflow: hidden;
  }

  .apartment-summary__inner {
    gap: 24px;
  }

  .apartment-summary__media,
  .booking-gallery,
  .booking-gallery__top,
  .booking-gallery__stack,
  .booking-gallery__thumbs,
  .booking-gallery__trigger,
  .booking-gallery__more {
    min-width: 0;
  }

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

  .booking-gallery__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .booking-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .booking-gallery {
    gap: 10px;
  }

  .booking-gallery__top,
  .booking-gallery__stack {
    gap: 10px;
  }

  .booking-gallery__trigger-badge {
    opacity: 1;
    transform: translateY(0);
    left: 10px;
    bottom: 10px;
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .booking-gallery__more-overlay strong {
    font-size: 1.2rem;
  }

  .booking-gallery__more-overlay span {
    font-size: 0.72rem;
  }

  .reserve-panel {
    padding: 20px 0;
  }

  .nearby-list article {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
