:root {
  --bg: #0f1214;
  --bg-alt: #171c20;
  --surface: #1e252b;
  --text: #e8ebe9;
  --text-muted: #9aa3a8;
  --accent: #f5c400;
  --accent-blue: #1a4fd6;
  --accent-warm: #e85d2c;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(15, 18, 20, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 45%, var(--accent-blue) 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 0.85rem;
}

.brand-text strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  filter: brightness(1.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.nav-mobile:not([hidden]) {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 18, 20, 0.35) 0%, rgba(15, 18, 20, 0.55) 45%, rgba(15, 18, 20, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 18, 20, 0.75) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border-radius: 4px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 14ch;
  margin: 0 0 1.25rem;
}

.hero-lead {
  max-width: 52ch;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 1.1rem;
}

.hero-lead strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
}

/* Stats */
.stats {
  border-block: 1px solid var(--border);
  background: var(--bg-alt);
}

.stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, 100%);
  margin-inline: auto;
}

.stats-grid li {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stats-grid li:last-child {
  border-right: none;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-tag {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  max-width: 22ch;
}

.section-intro {
  max-width: 60ch;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-copy p {
  color: var(--text-muted);
}

.split-copy p strong {
  color: var(--text);
}

.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.split-media figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--surface);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.location-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.location-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.location-card p {
  margin: 0;
  color: var(--text-muted);
}

.location-card.highlight {
  border-color: rgba(245, 196, 0, 0.35);
  background: linear-gradient(160deg, rgba(245, 196, 0, 0.08), var(--surface));
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.link-arrow::after {
  content: " →";
}

/* Option tabs */
.option-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.option-tab {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.option-tab:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.option-tab.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.option-panel {
  animation: fadeIn 0.45s var(--ease);
}

.option-panel[hidden] {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.option-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.option-header h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
}

.option-header p {
  margin: 0;
  max-width: 55ch;
  color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-grid .gallery-featured {
  grid-column: 1 / -1;
}

.gallery-grid .gallery-featured img {
  height: min(52vh, 480px);
}

/* Video */
.video-block {
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.video-block h4 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.video-block > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.video-block video {
  display: block;
  width: 100%;
  max-height: 70vh;
  border-radius: 10px;
  background: #000;
}

/* Floor plan */
.planta-block {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.planta-block h4 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.planta-block > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.planta-viewer {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.planta-viewer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.planta-fallback {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.benefit {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.benefit-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.benefit h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  padding-bottom: 6rem;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(26, 79, 214, 0.2), transparent 50%),
    linear-gradient(225deg, rgba(245, 196, 0, 0.12), transparent 45%),
    var(--surface);
  border: 1px solid var(--border);
}

.cta-box h2 {
  max-width: none;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-inner a {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid li:nth-child(2) {
    border-right: none;
  }

  .stats-grid li {
    border-bottom: 1px solid var(--border);
  }

  .split,
  .location-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 200px;
  }

  .gallery-grid .gallery-featured img {
    height: min(40vh, 320px);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    max-width: none;
  }

  .option-header {
    flex-direction: column;
  }
}
