@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Nunito+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #263442;
  --muted: #746f68;
  --sea: #2f6f8f;
  --deep-sea: #1f4059;
  --olive: #9a7a5e;
  --clay: #bf7658;
  --sun: #d9a84e;
  --paper: #fff8ed;
  --white: #ffffff;
  --shell: #f2e5d2;
  --aqua: #edf4f6;
  --line: #ded0bd;
  --shadow: 0 22px 54px rgba(54, 48, 42, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 44px));
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(189, 113, 83, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #fffdf8 44%, #f7f1e8);
  background-size: 72px 72px, auto;
}

body.has-lightbox {
  overflow: hidden;
}

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

.icon {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  color: currentColor;
  vertical-align: -0.16em;
}

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 690px;
  font-size: clamp(2.75rem, 5.4vw, 5.55rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.85rem);
}

h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(223, 213, 199, 0.7);
  backdrop-filter: blur(18px);
}

.header-top {
  border-bottom: 1px solid rgba(223, 213, 199, 0.64);
  background: rgba(244, 234, 219, 0.68);
  color: #746e66;
  font-size: 0.82rem;
  font-weight: 700;
}

.header-top__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-top a {
  color: var(--deep-sea);
}

.nav-shell {
  position: relative;
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(191, 118, 88, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(242, 229, 210, 0.9));
  color: var(--deep-sea);
  box-shadow: 0 12px 28px rgba(54, 48, 42, 0.12);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
}

.brand-mark__arch,
.brand-mark__roof,
.brand-mark__door,
.brand-mark__wave {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-mark__wave {
  stroke: var(--clay);
  stroke-width: 2.6;
}

.brand-mark__sun {
  fill: var(--sun);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.15;
}

.brand small,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  padding: 12px 11px;
  color: #35465a;
  font-size: 0.95rem;
  font-weight: 850;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clay);
  transition: transform 220ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link--lang {
  color: var(--clay);
}

.button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--deep-sea);
  border-radius: 999px;
  background: var(--deep-sea);
  color: white;
  font-weight: 900;
  box-shadow: 0 13px 26px rgba(31, 64, 89, 0.2);
  cursor: pointer;
}

.button:hover {
  background: #17344c;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: none;
}

.button--full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 46px;
  flex: 0 0 46px;
  margin-left: auto;
  padding: 0;
  gap: 4px;
  flex-direction: column;
  background: var(--white);
  color: var(--deep-sea);
  box-shadow: none;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep-sea);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--deep-sea);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-slide-fade 14s ease-in-out infinite;
}

.hero__slide--2 {
  animation-delay: -7s;
}

.hero__slide .hero__image {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  animation: hero-ken-burns-minimal 14s ease-in-out infinite;
}

.hero__slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 31, 44, 0.46) 0%, rgba(14, 31, 44, 0.24) 36%, rgba(14, 31, 44, 0.08) 64%, transparent 100%),
    linear-gradient(0deg, rgba(14, 31, 44, 0.24) 0%, transparent 48%);
}

.hero__slide--1 .hero__image {
  object-position: center center;
}

.hero__slide--2 .hero__image {
  object-position: center center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 45, 60, 0.34) 0%, rgba(24, 45, 60, 0.16) 38%, rgba(24, 45, 60, 0.03) 70%, transparent 100%),
    linear-gradient(0deg, rgba(24, 45, 60, 0.12) 0%, transparent 52%);
}

@keyframes hero-slide-fade {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hero-ken-burns-minimal {
  0% {
    transform: scale(1.005) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.025) translate3d(-0.25%, -0.2%, 0);
  }

  100% {
    transform: scale(1.01) translate3d(0.2%, 0.15%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide .hero__image {
    animation: none;
  }

  .hero__slide--1 {
    opacity: 1;
  }
}

.hero__inner {
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: clamp(68px, 10vw, 116px) 0;
}

.hero__content {
  max-width: 720px;
  padding-left: clamp(0px, 4vw, 48px);
}

.hero h1,
.hero p,
.hero .kicker {
  color: white;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero p {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 600;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .kicker {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

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

.section {
  padding: clamp(74px, 10vw, 124px) 0;
}

.stay-notes {
  position: relative;
  z-index: 3;
  margin-top: -58px;
}

.stay-notes__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(223, 213, 199, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
}

.stay-notes h2 {
  font-size: clamp(1.9rem, 3vw, 3.05rem);
}

.stay-notes__inner > * {
  min-width: 0;
}

.stay-notes p {
  max-width: 440px;
  overflow-wrap: break-word;
}

.stay-notes ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stay-notes li {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 14px;
  border: 1px solid rgba(47, 111, 143, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, rgba(237, 244, 246, 0.82));
}

.stay-notes li > .icon {
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 10px;
  color: var(--sea);
  opacity: 0.82;
}

.stay-notes li span {
  color: var(--clay);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.stay-notes li strong {
  color: var(--deep-sea);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.section--tint {
  background:
    linear-gradient(135deg, rgba(232, 185, 95, 0.14), transparent 42%),
    var(--aqua);
}

.section--postcard {
  background:
    linear-gradient(180deg, transparent, rgba(244, 234, 219, 0.58));
}

.section--gallery {
  padding-top: 18px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.home-postcard {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
}

.home-postcard__copy {
  max-width: 560px;
}

.home-postcard__copy p {
  margin-top: 18px;
  font-size: 1.08rem;
}

.home-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.75fr);
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 16px;
  min-height: 590px;
}

.mosaic-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--shell);
  box-shadow: 0 16px 38px rgba(54, 48, 42, 0.12);
}

.mosaic-tile--large {
  grid-row: 1 / span 2;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.94fr);
}

.split p {
  margin-top: 18px;
  font-size: 1.08rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.media-frame--wide {
  aspect-ratio: 16 / 11;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(47, 111, 143, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep-sea);
  font-weight: 850;
}

.feature-list .icon,
.suite-row__features .icon,
.mini-specs .icon {
  color: var(--clay);
}

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

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

.card {
  overflow: hidden;
  border: 1px solid rgba(223, 213, 199, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(54, 48, 42, 0.08);
}

.apartment-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.card-image {
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--shell);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms ease;
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-bottom: 12px;
}

.card-body p {
  margin-bottom: 16px;
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.mini-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--deep-sea);
  font-size: 0.88rem;
  font-weight: 900;
}

.text-link {
  color: var(--deep-sea);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--sun);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.suite-list {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}

.suite-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px) 0;
  border-top: 1px solid rgba(47, 111, 143, 0.18);
}

.suite-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.suite-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.suite-row:nth-child(even) .suite-row__media {
  order: 2;
}

.suite-row:nth-child(even) .suite-row__content {
  order: 1;
}

.suite-row__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.suite-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.suite-row:hover .suite-row__media img {
  transform: scale(1.035);
}

.suite-row__content {
  max-width: 600px;
}

.suite-row__content p {
  margin-top: 16px;
  font-size: 1.02rem;
}

.suite-row__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 20px;
}

.suite-row__specs span {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px 13px;
  border: 1px solid rgba(47, 111, 143, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--deep-sea);
  font-weight: 950;
}

.suite-row__specs .icon {
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 2px;
  color: var(--clay);
}

.suite-row__specs small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.suite-row__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 22px;
}

.suite-row__features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(232, 185, 95, 0.18);
  color: var(--deep-sea);
  font-size: 0.86rem;
  font-weight: 900;
}

.destination-band {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: stretch;
  overflow: hidden;
  background: var(--deep-sea);
}

.destination-band__media {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.destination-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 64, 89, 0.84), rgba(31, 64, 89, 0.45) 48%, rgba(31, 64, 89, 0.18)),
    linear-gradient(0deg, rgba(31, 64, 89, 0.55), transparent 44%);
}

.destination-band__content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: var(--container);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(72px, 10vw, 128px) 0;
}

.destination-band__content h2,
.destination-band__content p,
.destination-band__content .kicker {
  max-width: 650px;
  color: white;
}

.destination-band__content p {
  margin-top: 18px;
  font-size: 1.1rem;
}

.destination-band__content .text-link {
  margin-top: 12px;
  color: white;
}

.comfort-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.comfort-copy {
  max-width: 760px;
}

.apartment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 5vw, 66px);
  align-items: start;
}

.detail-block {
  margin-top: 30px;
}

.detail-block h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.info-panel,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(54, 48, 42, 0.1);
}

.info-panel--large {
  padding: clamp(30px, 5vw, 50px);
}

.info-panel h3,
.contact-card h3 {
  margin-bottom: 18px;
}

.info-panel dl {
  margin: 22px 0;
}

.info-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.info-panel dt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.info-panel dt .icon {
  color: var(--clay);
}

.info-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

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

.gallery-item {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--shell);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.cta-section {
  padding-top: clamp(42px, 6vw, 78px);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 185, 95, 0.22), transparent 45%),
    var(--deep-sea);
  color: white;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .kicker {
  color: white;
}

.cta-panel h2 {
  max-width: 620px;
}

.cta-panel p {
  max-width: 680px;
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  align-items: stretch;
}

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

.plain-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.plain-list a {
  color: var(--deep-sea);
}

.bed-list {
  max-width: 620px;
}

.bed-list li {
  color: var(--ink);
}

.map-wrap {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 16 / 7;
  background: var(--shell);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  padding: clamp(92px, 12vw, 150px) 0 clamp(56px, 8vw, 90px);
  background:
    linear-gradient(135deg, rgba(232, 185, 95, 0.24), transparent 44%),
    linear-gradient(180deg, var(--aqua), var(--paper));
}

.page-hero--small {
  min-height: 330px;
  display: flex;
  align-items: end;
}

.prose {
  max-width: 780px;
}

.prose p {
  font-size: 1.08rem;
}

.muted {
  color: var(--muted);
}

.site-footer {
  background: #1f2f3f;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 34px;
  padding: 60px 0 38px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: white;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 1.02rem;
}

.site-footer p,
.site-footer span,
.site-footer small,
.footer-list a,
.footer-list li {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .brand-mark {
  border-color: rgba(255, 248, 237, 0.3);
  background: rgba(255, 248, 237, 0.96);
  color: var(--deep-sea);
}

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

.footer-list li + li {
  margin-top: 10px;
}

.footer-list a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom__left {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(21, 35, 49, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-link,
  .button--small {
    width: 100%;
    justify-content: center;
  }

  .nav-link::after {
    display: none;
  }

  .split,
  .split--reverse,
  .apartment-layout,
  .contact-grid,
  .home-postcard,
  .comfort-layout {
    grid-template-columns: 1fr;
  }

  .stay-notes__inner {
    grid-template-columns: 1fr;
  }

  .stay-notes ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-mosaic {
    min-height: 500px;
  }

  .suite-row,
  .suite-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .suite-row:nth-child(even) .suite-row__media,
  .suite-row:nth-child(even) .suite-row__content {
    order: initial;
  }

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

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

@media (max-width: 640px) {
  :root {
    --container: min(1160px, calc(100vw - 28px));
  }

  .header-top {
    display: none;
  }

  .header-inner {
    position: relative;
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    padding-right: 58px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand-mark svg {
    width: 31px;
    height: 31px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 610px;
  }

  .hero__inner {
    align-items: flex-end;
    padding: 52px 0;
  }

  .hero__content {
    padding-left: 0;
  }

  h1 {
    max-width: min(100%, 12ch);
    font-size: 2.25rem;
    overflow-wrap: break-word;
  }

  h2 {
    max-width: 100%;
    font-size: 1.95rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h3 {
    overflow-wrap: break-word;
  }

  .section-head {
    width: calc(100vw - 28px);
    max-width: 26rem;
  }

  .apartment-layout > article,
  .suite-row__content {
    width: calc(100vw - 28px);
    max-width: 26rem;
  }

  .section-head p,
  .apartment-layout article p,
  .suite-row__content p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero .kicker {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .hero-actions,
  .contact-actions,
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-section {
    padding-top: 52px;
  }

  .button {
    width: 100%;
  }

  .menu-button {
    position: fixed;
    top: 13px;
    right: clamp(14px, calc(100vw - 416px), 84px);
    z-index: 40;
    display: inline-flex !important;
    background: var(--deep-sea);
    color: white;
  }

  .card-grid--apartments,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stay-notes {
    margin-top: -34px;
  }

  .stay-notes__inner {
    padding: 20px;
  }

  .stay-notes p {
    max-width: 31ch;
  }

  .stay-notes ul,
  .suite-row__specs {
    grid-template-columns: 1fr;
  }

  .stay-notes li {
    min-height: auto;
    gap: 10px;
  }

  .home-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 160px;
    min-height: 0;
  }

  .mosaic-tile--large {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .suite-row__media {
    aspect-ratio: 4 / 3;
  }

  .destination-band {
    min-height: 520px;
  }

  .section {
    padding: 62px 0;
  }

  .media-frame,
  .media-frame--wide {
    aspect-ratio: 4 / 3;
  }

  .map-wrap {
    aspect-ratio: 4 / 3;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
