:root {
  --bg: #060a08;
  --bg-soft: #0d1612;
  --surface: rgba(12, 22, 18, 0.82);
  --surface-2: rgba(19, 34, 27, 0.9);
  --line: rgba(216, 193, 117, 0.18);
  --text: #f5efdf;
  --muted: #d5cfbf;
  --green: #5eff9b;
  --green-soft: rgba(94, 255, 155, 0.18);
  --gold: #d8c175;
  --gold-soft: rgba(216, 193, 117, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(94, 255, 155, 0.12), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(216, 193, 117, 0.08), transparent 20%),
    linear-gradient(180deg, #030504 0%, #06100b 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { overflow: clip; }
.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

h1 { font-size: clamp(46px, 7vw, 86px); }
h2 { font-size: clamp(34px, 4.8vw, 56px); max-width: 12ch; }
h3 { font-size: 30px; }
p { margin: 0 0 18px; color: var(--muted); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(3, 5, 4, 0.82), rgba(3, 5, 4, 0.42));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 60px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #f0ead9;
  opacity: 0.92;
  font-weight: 500;
}
.nav-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}
.nav-button,
.btn-primary {
  background: linear-gradient(180deg, rgba(79, 168, 108, 0.2), rgba(40, 94, 60, 0.34));
  border: 1px solid rgba(94, 255, 155, 0.34);
  box-shadow: inset 0 0 0 1px rgba(216, 193, 117, 0.1), 0 0 0 1px rgba(94, 255, 155, 0.06), 0 8px 25px rgba(0, 0, 0, 0.28);
}
.btn-primary:hover,
.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(216, 193, 117, 0.16), 0 10px 30px rgba(0, 0, 0, 0.34), 0 0 20px rgba(94, 255, 155, 0.08);
}
.btn-secondary {
  background: rgba(10, 16, 13, 0.5);
  border: 1px solid rgba(216, 193, 117, 0.28);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg,
.hero-vignette {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background:
    linear-gradient(rgba(4, 7, 5, 0.42), rgba(4, 7, 5, 0.72)),
    url('../images/hero-main.jpg') center center / cover no-repeat;
  transform: scale(1.02);
}
.hero-vignette {
  background:
    radial-gradient(circle at 30% 25%, rgba(94, 255, 155, 0.16), transparent 28%),
    radial-gradient(circle at 70% 50%, rgba(216, 193, 117, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.48));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 80px;
}
.hero-copy {
  max-width: 830px;
}
.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-text {
  max-width: 700px;
  font-size: 21px;
  color: #f0e8d4;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.section {
  position: relative;
  padding: 110px 0;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section-concept::before,
.section-gallery::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.feature-list {
  padding-left: 18px;
  margin: 28px 0 0;
}
.feature-list li {
  margin-bottom: 10px;
  color: var(--muted);
}
.capacity-box,
.info-card,
.cta-box,
.space-card,
.card-visual {
  background: linear-gradient(180deg, rgba(17, 27, 22, 0.84), rgba(8, 14, 11, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.capacity-box {
  display: inline-block;
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 18px;
  color: var(--text);
  font-size: 20px;
}
.card-visual {
  border-radius: var(--radius);
  overflow: hidden;
}
.card-visual img { aspect-ratio: 1 / 1.08; object-fit: cover; }

.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 26px;
}
.space-card {
  border-radius: 26px;
  overflow: hidden;
}
.space-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.space-card-body { padding: 24px; }
.space-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tag {
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(18, 19, 16, 0.65);
  border: 1px solid rgba(216, 193, 117, 0.24);
  color: #f3e5bb;
  font-weight: 600;
}

.gallery-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.info-card {
  border-radius: 24px;
  padding: 28px;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-card li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}
.info-card li:last-child { border-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(216, 193, 117, 0.14);
  box-shadow: var(--shadow);
}

.cta-box {
  border-radius: 28px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 42px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(2, 4, 3, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-logo { height: 58px; margin-bottom: 16px; }
.site-footer p, .site-footer a { color: #d7d0bd; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 1080px) {
  .split-grid,
  .gallery-head,
  .space-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(8, 12, 10, 0.96);
    border: 1px solid rgba(216, 193, 117, 0.14);
  }
  .main-nav.is-open { display: flex; }
  .split-grid,
  .gallery-head,
  .space-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 84px 0; }
  .hero-content { padding-top: 130px; }
  h1 { font-size: 46px; }
  h2 { max-width: none; }
}
