/* BlackOak — BLISS Homes listing */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --brand-blue: #2563FF;
  --brand-ink: #0B1320;
  --slate-900: #0B1320;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-300: #cbd5e1;
  --slate-200: #E5E7EB;
  --slate-100: #f1f5f9;
  --slate-50:  #F8FAFC;

  --bg: #f3f3f1;
  --card: #ffffff;
  --ink: #0B1320;
  --muted: #64748B;
  --line: #E5E7EB;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

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

.page {
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 28px 80px;
}

/* ============ DEV BANNER ============ */
.dev-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fff8e6;
  border: 1px solid #f5d56b;
  color: #6b4f00;
  font-size: 13px;
  letter-spacing: -0.005em;
}
.dev-banner__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f5b500;
  color: #3a2a00;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dev-banner__text { flex: 1; }
.dev-banner__text strong { color: #4a3500; font-weight: 600; }
.dev-banner__close {
  font-size: 11px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  color: #a07e1d;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(245,181,0,0.18);
}

/* ============ NOTICE ============ */
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff8e6;
  border: 1px solid #f5d56b;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.45;
  color: #6b4f00;
  margin: 0 0 28px;
}
.notice svg { flex: none; color: #b58400; margin-top: 2px; }
.notice strong { color: #3a2a00; font-weight: 600; }

/* ============ SEASON GRID ============ */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 0;
}
.season {
  padding: 24px 22px 26px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.season.is-on {
  background: #0B1320;
  border-color: transparent;
  color: #fff;
}
.season.is-on .season__tag { color: #7aa2ff; }
.season.is-on .season__when { color: rgba(255,255,255,0.65); }
.season.is-on::after {
  content: "Most popular";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7aa2ff;
}
.season__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.season__when {
  font-size: 13px;
  color: var(--slate-500);
  letter-spacing: -0.005em;
  min-height: 38px;
}
.season__rate {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.season.is-on .season__rate { color: #fff; }
.season__rate small {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--slate-500);
  margin-left: 4px;
  letter-spacing: 0;
}
.season.is-on .season__rate small { color: rgba(255,255,255,0.6); }

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.2;
  min-height: 680px;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  background: #2d3a4a;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out, transform 8s ease-out;
  transform: scale(1.04);
}
.hero__img.is-on {
  opacity: 1;
  transform: scale(1.0);
}

.hero__dots {
  position: absolute;
  z-index: 5;
  bottom: 100px;
  left: 36px;
  display: flex;
  gap: 8px;
}
.hero__dots span {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  transition: background .4s, width .4s;
  cursor: pointer;
}
.hero__dots span.is-on {
  background: #fff;
  width: 44px;
}

/* Subtle vignette for text legibility */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,19,32,0.18) 0%, rgba(11,19,32,0) 30%, rgba(11,19,32,0) 60%, rgba(11,19,32,0.5) 100%),
    linear-gradient(90deg, rgba(11,19,32,0.25) 0%, rgba(11,19,32,0) 40%);
  z-index: 1;
  pointer-events: none;
}

.hero__nav {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.22);
}

.nav-pill a {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.01em;
  transition: background .2s;
}
.nav-pill a:hover { background: rgba(255,255,255,0.16); }
.nav-pill a.is-active { background: rgba(255,255,255,0.22); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
}
.brand-mark .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0B1320;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero__big {
  position: absolute;
  top: 92px;
  left: 28px;
  right: 28px;
  z-index: 3;
  pointer-events: none;
}
.hero__big h1 {
  margin: 0;
  font-size: clamp(120px, 16.5vw, 280px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.hero__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero__sub::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.25);
  display: inline-block;
}

.hero__tag {
  position: absolute;
  left: 36px;
  bottom: 36px;
  z-index: 3;
  max-width: 460px;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.hero__theme {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 6px;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero__theme button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hero__theme button.is-on {
  background: #fff;
  color: #0B1320;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.hero__cta svg { width: 16px; height: 16px; }

/* ============ INFO PANEL ============ */
.info {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 0;
  margin-top: 14px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.info__plan {
  background: #efece5;
  color: #0B1320;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 28px;
}
.info__plan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.info__plan-label {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,19,32,0.55);
  z-index: 2;
}
.info__plan-meta {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(11,19,32,0.55);
  z-index: 2;
}
.info__plan-actions {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  gap: 8px;
  z-index: 2;
}
.info__plan-actions button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11,19,32,0.18);
  background: rgba(255,255,255,0.55);
  color: #0B1320;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(8px);
}
.info__plan-actions button:hover { background: rgba(255,255,255,0.9); }

.info__stats {
  background: #ffffff;
  padding: 38px 44px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 28px 36px;
  align-content: start;
}

.stat__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--slate-500);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.stat__label svg { width: 20px; height: 20px; opacity: 0.9; }
.stat__value {
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat__value small {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 1px;
}

.type-selector {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
  gap: 24px;
}

.lease-terms {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.lease-terms__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lease-terms__item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lease-terms__item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.lease-terms__sep {
  width: 1px;
  height: 24px;
  background: var(--slate-200);
}

.type-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.type-card__text {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  text-align: right;
}
.type-card__thumbs {
  display: inline-flex;
}
.type-card__thumbs > div {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--slate-200);
}
.type-card__thumbs > div + div { margin-left: -14px; }

/* ============ SECTION GENERAL ============ */
section.block {
  margin-top: 88px;
}
.block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 40px;
}
.block__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 14px;
}
.block__title {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 14ch;
  text-wrap: balance;
}
.block__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate-700);
  max-width: 46ch;
  text-wrap: pretty;
}

/* ============ SPECS GRID ============ */
.specs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.spec {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.spec--lg { grid-column: span 6; min-height: 280px; }
.spec--md { grid-column: span 4; }
.spec--sm { grid-column: span 4; }
.spec--dark {
  background: #0B1320;
  color: #fff;
  border-color: transparent;
}
.spec--dark .spec__h { color: #fff; }
.spec--dark .spec__body { color: rgba(255,255,255,0.7); }
.spec--dark .spec__icon { background: rgba(255,255,255,0.08); color: #fff; }
.spec--brand {
  background: #2563FF;
  color: #fff;
  border-color: transparent;
}
.spec--brand .spec__h { color: #fff; }
.spec--brand .spec__body { color: rgba(255,255,255,0.85); }
.spec--brand .spec__icon { background: rgba(255,255,255,0.18); color: #fff; }

.spec__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--slate-50);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}
.spec__icon svg { width: 22px; height: 22px; }

.spec__h {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.spec__body {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--slate-700);
  margin: 0;
  text-wrap: pretty;
}
.spec__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.spec__list li {
  color: var(--slate-700);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.spec__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
  transform: translateY(-3px);
  opacity: 0.55;
}
.spec--dark .spec__list li,
.spec--brand .spec__list li { color: rgba(255,255,255,0.78); }

/* ============ AMENITIES BAR ============ */
.amenities {
  margin-top: 88px;
  background: #0B1320;
  border-radius: var(--r-lg);
  padding: 72px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.amenities__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.amenities__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.amenities__list li {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.amenities__list h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.amenities__list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.amenities__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.amenities__visual image-slot {
  width: 100%; height: 100%;
  --slot-bg: rgba(255,255,255,0.04);
  --slot-fg: rgba(255,255,255,0.45);
}

.amenities__title {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 24px;
  max-width: 16ch;
}

/* ============ ROOMS ============ */
.rooms {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.rooms__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--slate-100);
  min-height: 480px;
}
.rooms__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rooms__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.rooms__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 16px;
}
.rooms__list li:first-child { border-top: 1px solid var(--slate-200); }
.rooms__name {
  color: var(--slate-700);
  letter-spacing: -0.01em;
}
.rooms__size {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rooms__list li.is-emph .rooms__name,
.rooms__list li.is-emph .rooms__size {
  color: var(--brand-blue);
}
.rooms__list li.is-total {
  padding-top: 22px;
  border-bottom: 0;
}
.rooms__list li.is-total .rooms__name { font-weight: 600; color: var(--ink); font-size: 17px; }
.rooms__list li.is-total .rooms__size { font-size: 24px; letter-spacing: -0.02em; }

/* ============ TERMS GRID ============ */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
}
.term {
  padding: 24px 22px;
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.term:nth-child(5n) { border-right: 0; }
.term:nth-last-child(-n+5) { border-bottom: 0; }
.term__k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.term__v {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.term__v span {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-500);
  letter-spacing: -0.01em;
  margin-left: 4px;
}
.term__sub {
  font-size: 13px;
  line-height: 1.4;
  color: var(--slate-500);
  margin-top: auto;
}

/* ============ GALLERY (kept for backward compat) ============ */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gallery > div {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--slate-100);
}
.gallery > div:nth-child(1) { grid-row: span 2; }
.gallery image-slot { width: 100%; height: 100%; display: block; --slot-bg: var(--slate-100); --slot-fg: var(--slate-500); }

/* ============ BOOKING ============ */
.booking {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
}
.booking__left {
  padding: 56px 56px 48px;
  background: #fff;
}
.booking__right {
  padding: 56px 56px 48px;
  background: var(--slate-50);
  border-left: 1px solid var(--slate-200);
}
.booking__h {
  font-size: clamp(34px, 3.4vw, 52px);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.02;
  margin: 0 0 16px;
}
.booking__sub {
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 38ch;
}
.booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37,99,255,0.15);
}
.field--full { grid-column: 1 / -1; }
.btn-primary {
  margin-top: 18px;
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  border: 0;
  background: var(--brand-ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #1a2334; }

.timeline {
  margin: 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--slate-200);
}
.timeline li:last-child { border-bottom: 1px solid var(--slate-200); }
.timeline .when {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.timeline .what {
  font-size: 16px;
  line-height: 1.45;
  color: var(--slate-700);
}
.timeline .what strong { color: var(--ink); font-weight: 600; }

.contact-box {
  margin-top: 28px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-box__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563FF, #0B1320);
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-box__name {
  font-weight: 600;
  font-size: 15px;
}
.contact-box__role {
  font-size: 13px;
  color: var(--slate-500);
}
.contact-box__cta {
  margin-left: auto;
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 500;
}

/* ============ FOOTER ============ */
footer.foot {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid var(--slate-200);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot__brand .brand-mark { color: var(--ink); }
.foot__brand .dot { background: var(--ink); }
.foot p.foot__note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate-500);
  max-width: 38ch;
}
.foot h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 14px;
}
.foot ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--slate-700);
}
.foot__legal {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate-500);
}

/* Big property name watermark on amenities */
.watermark {
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-size: 220px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
