:root {
  --bg: #05070a;
  --bg-2: #091018;
  --card: rgba(13, 20, 30, .82);
  --card-2: rgba(20, 30, 43, .9);
  --text: #edf6f7;
  --muted: #9badb5;
  --line: rgba(255, 255, 255, .12);
  --gold: #d8b46a;
  --gold-soft: rgba(216, 180, 106, .15);
  --cyan: #00ffff;
  --cyan-soft: rgba(0, 255, 255, .12);
  --shadow: 0 30px 90px rgba(0, 0, 0, .35);
  --font: "Segoe UI", Arial, sans-serif;
  --font-tech: "Courier New", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 255, 255, .11), transparent 28%),
    radial-gradient(circle at bottom right, rgba(216, 180, 106, .14), transparent 32%),
    linear-gradient(135deg, #020305, #08121b 48%, #030507);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 78%);
}

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

button {
  font: inherit;
}

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

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.narrow {
  width: min(920px, 90%);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(3, 5, 7, .64);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(16px);
  transition: .25s ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(3, 5, 7, .94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .36);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: var(--font-tech);
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 800;
}

.brand-sub {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 4px;
  margin-top: 7px;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.nav-cta {
  color: #111 !important;
  background: var(--gold);
  padding: 10px 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: .25s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 130px 0 84px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent 28%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-tech);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

.hero h1,
.section-head h2,
.cta-box h2 {
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 84px);
  margin-bottom: 22px;
}

.hero h1 span,
.section-head h2 span {
  color: var(--gold);
  text-shadow: 0 0 32px rgba(216, 180, 106, .22);
}

.hero p,
.section-head p,
.cta-box p {
  color: var(--muted);
  font-size: 17px;
}

.hero p {
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  max-width: 660px;
}

.hero-stats div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  font-weight: 800;
  letter-spacing: .4px;
  transition: .25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(216, 180, 106, .34);
}

.btn-ghost {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .17);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-soft);
  transform: translateY(-2px);
}

/* Visual */

.visual-card {
  min-height: 610px;
  position: relative;
  border: 1px solid rgba(216, 180, 106, .38);
  background:
    linear-gradient(145deg, rgba(216, 180, 106, .08), rgba(0, 255, 255, .04)),
    rgba(12, 18, 27, .8);
  box-shadow: var(--shadow), inset 0 0 70px rgba(216, 180, 106, .08);
  overflow: hidden;
}

.visual-placeholder {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, .38);
  font-family: var(--font-tech);
  letter-spacing: 2px;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 50% 22%, rgba(216, 180, 106, .22), transparent 34%),
    linear-gradient(180deg, #101923, #070b10);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 30px;
}

.visual-placeholder::before {
  content: "";
  width: 68%;
  height: 76%;
  position: absolute;
  bottom: 0;
  border: 1px solid rgba(216, 180, 106, .22);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, .05),
      rgba(255, 255, 255, .05) 2px,
      transparent 2px,
      transparent 42px
    );
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  opacity: .8;
}

.visual-placeholder span {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, .36);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.visual-img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  left: -24px;
  bottom: 68px;
  width: 250px;
  padding: 20px;
  background: rgba(3, 5, 7, .84);
  border: 1px solid rgba(0, 255, 255, .26);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .38);
  z-index: 3;
}

.floating-badge small {
  color: var(--cyan);
  font-family: var(--font-tech);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.floating-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}

/* Sections */

.section {
  padding: 100px 0;
  position: relative;
}

.section-soft {
  background: rgba(255, 255, 255, .018);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.section-head {
  max-width: 770px;
  margin-bottom: 46px;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 54px);
  margin-bottom: 16px;
}

/* Cards */

.metric-card,
.project-info,
.feature-card,
.plan-card,
.location-row,
.faq-item,
.cta-box {
  background: var(--card);
  border: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-card {
  padding: 28px;
  min-height: 160px;
  transition: .25s;
}

.metric-card:hover,
.feature-card:hover,
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 180, 106, .52);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
}

.metric-card strong {
  display: block;
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 14px;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features */

.split-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 56px;
  align-items: start;
}

.project-info {
  padding: 34px;
  position: sticky;
  top: 100px;
}

.project-info h2 {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 14px;
}

.project-info p {
  color: var(--muted);
  margin-bottom: 22px;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 13px;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
}

.info-list strong {
  color: var(--text);
  text-align: right;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 28px;
  transition: .25s;
}

.feature-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 180, 106, .5);
  color: var(--gold);
  font-family: var(--font-tech);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 18px;
}

.gallery-item {
  min-height: 320px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(216, 180, 106, .12), rgba(0, 255, 255, .04)),
    #0c121b;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  color: rgba(255, 255, 255, .34);
  transition: .25s;
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 658px;
}

.gallery-item::before {
  content: attr(data-label);
  white-space: pre-line;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-tech);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 22px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, .16);
}

.gallery-item:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Plans */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-card {
  padding: 30px;
  transition: .25s;
}

.plan-card.featured {
  border-color: rgba(216, 180, 106, .54);
  background: linear-gradient(180deg, rgba(216, 180, 106, .12), rgba(13, 20, 30, .86));
}

.plan-card small {
  display: block;
  color: var(--gold);
  font-family: var(--font-tech);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.plan-card h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  margin-bottom: 26px;
}

.plan-card li::before {
  content: ">";
  color: var(--cyan);
  font-family: var(--font-tech);
  margin-right: 10px;
}

/* Location */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.map-card {
  min-height: 430px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(0, 255, 255, .12), transparent 35%),
    linear-gradient(135deg, #101923, #070a0f);
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.map-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(0, 0, 0, .45);
  box-shadow: 0 0 45px rgba(216, 180, 106, .28);
  font-family: var(--font-tech);
}

.location-list {
  display: grid;
  gap: 14px;
}

.location-row {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.location-row span {
  color: var(--muted);
}

.location-row strong {
  color: var(--gold);
  white-space: nowrap;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-question {
  width: 100%;
  padding: 22px;
  background: transparent;
  color: var(--text);
  border: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  font-weight: 800;
}

.faq-question span {
  color: var(--gold);
  font-family: var(--font-tech);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
  color: var(--muted);
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding: 0 22px 22px;
}

/* CTA */

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

.cta-box {
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(216, 180, 106, .16), rgba(0, 255, 255, .08)),
    rgba(12, 18, 27, .9);
  border-color: rgba(216, 180, 106, .35);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
}

/* Footer */

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .28);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner strong {
  color: var(--gold);
  font-family: var(--font-tech);
  letter-spacing: 2px;
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
  }

  .hero-grid,
  .split-grid,
  .location-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 500px;
  }

  .project-info {
    position: relative;
    top: 0;
  }

  .metrics-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item.large {
    grid-column: span 2;
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding: 0 4%;
  }

  .brand-main {
    font-size: 17px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 5%;
    background: rgba(3, 5, 7, .97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .site-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    text-align: center;
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero p,
  .section-head p,
  .cta-box p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .visual-card {
    min-height: 420px;
  }

  .visual-placeholder {
    inset: 10px;
    font-size: 12px;
  }

  .floating-badge {
    left: 14px;
    right: 14px;
    bottom: 18px;
    width: auto;
  }

  .section {
    padding: 72px 0;
  }

  .metrics-grid,
  .feature-grid,
  .plans-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: auto;
    min-height: 330px;
  }

  .gallery-item {
    min-height: 260px;
  }

  .project-info,
  .feature-card,
  .plan-card,
  .metric-card,
  .cta-box {
    padding: 24px;
  }

  .info-list li {
    flex-direction: column;
    gap: 4px;
  }

  .info-list strong {
    text-align: left;
  }

  .map-card {
    min-height: 320px;
  }

  .location-row {
    padding: 18px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .section-head h2 {
    font-size: 29px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .eyebrow::before {
    width: 26px;
  }
}