:root {
  --ink: #101214;
  --ink-2: #191c1f;
  --paper: #f1eee7;
  --paper-2: #e7e1d6;
  --white: #ffffff;
  --sand: #c3a77a;
  --sand-light: #d8c7aa;
  --maroon: #7a263c;
  --muted: #77766f;
  --line: rgba(16, 18, 20, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --night: #081221;
  --night-2: #0b1730;
  --night-surface: linear-gradient(135deg, #081221 0%, #0b1730 48%, #10244a 100%);
  --sans: "Inter", "Noto Sans", Arial, sans-serif;
  --header: 108px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--sand);
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.hero-copy .eyebrow,
.unit-copy .eyebrow,
.cta .eyebrow { color: var(--sand-light); }
.hero-copy .eyebrow { margin: 18px 0 8px; }
.cta h2 { margin: 14px 0 18px; }
.split h2 { margin: 12px 0 16px; }

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
}

h1 { font-size: clamp(3.1rem, 7vw, 5.6rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.04em; }

.lead { color: #3f4142; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; }
.cta .lead { color: rgba(255,255,255,.78); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sand-light);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  min-height: 55px;
  gap: 26px;
  padding: 17px 20px 17px 22px;
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(15,17,19,.08);
  backdrop-filter: blur(12px);
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.btn:hover { background: var(--white); color: var(--ink); }
.btn-ghost { background: transparent; }
.btn-line,
.btn-dark {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}
.btn-line:hover,
.btn-dark:hover { background: var(--ink); color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(9,12,16,.58), rgba(9,12,16,.08));
  transition: 0.35s ease;
}

.site-header.is-solid {
  height: 84px;
  background: rgba(16, 18, 20, 0.94);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.header-inner {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  width: 104px;
  height: 80px;
  padding: 4px 6px;
  flex: 0 0 auto;
}
.logo img { width: 100%; height: 100%; object-fit: contain; }
.site-header.is-solid .logo { width: 92px; height: 70px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.nav a { opacity: 0.83; transition: 0.25s ease; color: #fff; }
.nav a:hover { opacity: 1; color: var(--sand-light); }
.nav a.is-active { color: var(--sand-light); opacity: 1; }

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  place-items: center;
  cursor: pointer;
  color: #fff;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #081221;
  color: #fff;
  padding: 28px;
  flex-direction: column;
  gap: 22px;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-nav.open { display: flex; }
.mobile-nav a:hover { color: var(--sand-light); }
.mobile-nav .close-menu {
  align-self: flex-end;
  color: #fff;
  border-color: rgba(255,255,255,.35);
  min-width: 140px;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  place-items: end start;
  color: #fff;
  background: #081221;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,18,33,.28) 0%, rgba(8,18,33,.18) 40%, rgba(8,18,33,.78) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}
.hero-copy > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.4vw, 19px); }
.hero-copy h1 { margin: 10px 0 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.stats {
  background: var(--night-surface);
  color: #fff;
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.stats span {
  display: block;
  color: var(--sand-light);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stats strong { font-size: 1.35rem; font-weight: 500; letter-spacing: -0.03em; }

.section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head h2 { margin: 14px 0 16px; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pillar {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--line);
  min-height: 210px;
}
.pillar-no {
  color: var(--sand);
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split img { width: 100%; height: 520px; object-fit: cover; }

.checklist { padding: 0; margin: 22px 0 0; list-style: none; }
.checklist li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--sand);
  position: absolute;
  left: 0;
  top: 22px;
}

.units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.unit {
  background: var(--night-surface);
  color: #fff;
  overflow: hidden;
}
.unit img { width: 100%; height: 280px; object-fit: cover; }
.unit-copy { padding: 26px; }
.unit-copy h3 { font-size: 2rem; margin: 8px 0 10px; }
.unit-copy p { color: rgba(255,255,255,.72); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 11px 16px;
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.filter.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery button {
  padding: 0;
  border: 0;
  background: var(--night);
  cursor: zoom-in;
  overflow: hidden;
}
.gallery img { width: 100%; height: 230px; object-fit: cover; transition: transform .45s ease; }
.gallery button:hover img { transform: scale(1.05); }

.interior-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 12px;
}
.interior-grid .main { width: 100%; height: 520px; object-fit: cover; }
.interior-grid .stack { display: grid; gap: 12px; }
.interior-grid .stack img { width: 100%; height: 254px; object-fit: cover; }

.cta {
  background: var(--night-surface);
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.cta a { color: var(--sand-light); }

.form { display: grid; gap: 12px; }
.form input,
.form select,
.form textarea {
  width: 100%;
  background: rgba(8, 18, 33, 0.45);
  border: 1px solid var(--line-light);
  color: #fff;
  padding: 16px 16px;
  border-radius: 0;
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(255,255,255,.45); }
.form textarea { min-height: 120px; resize: vertical; }
.form-ok { display: none; color: var(--sand-light); }

.site-footer {
  background: #06101d;
  color: rgba(255,255,255,.62);
  padding: 26px 0;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--sand-light); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 18, 33, .94);
  place-items: center;
  padding: 32px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.sister { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 640px; }
.sister a {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.sister img { width: 100%; height: 220px; object-fit: cover; }
.sister div { padding: 22px 24px 26px; }
.sister span {
  color: var(--sand);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 650;
}
.sister strong { display: block; font-size: 1.8rem; font-weight: 500; letter-spacing: -0.045em; margin: 8px 0 10px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
  .stats-grid,
  .pillars,
  .split,
  .units,
  .gallery,
  .interior-grid,
  .cta-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .split img,
  .interior-grid .main,
  .interior-grid .stack img { height: 280px; }
  .gallery img { height: 200px; }
  .site-header,
  .site-header.is-solid { height: 82px; }
  .logo,
  .site-header.is-solid .logo { width: 82px; height: 66px; }
}
