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

:root {
  --navy: #0c1829;
  --navy-light: #12223d;
  --gold: #b8966c;
  --gold-light: #d4b896;
  --gold-dark: #97764d;
  --cream: #f8f5f0;
  --cream-dark: #ede8e0;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --text-muted: #999999;
  --border: #e0dcd5;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --section-pad: 6rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
  background: rgba(12, 24, 41, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
}

.lang-picker {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem;
}

.lang-active {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--gold);
  padding: 0.3rem 0.6rem;
}

.lang-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0.6rem;
  transition: color 0.2s;
}

.lang-link:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/img/aerial_1.webp') center/cover no-repeat;
  background-color: #1a3a2a;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 24, 41, 0.82) 0%,
    rgba(12, 24, 41, 0.6) 50%,
    rgba(12, 24, 41, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 108, 0.4);
  padding: 0.5rem 1.2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.15rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

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

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-lg {
  padding: 1.15rem 3rem;
  font-size: 0.9rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow--light { color: var(--gold-light); }
.section-eyebrow--gold { color: var(--gold); }

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-dark .section-intro { color: rgba(255,255,255,0.7); }

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.overview-text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.overview-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fact-icon {
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 2rem;
  text-align: center;
  padding-top: 0.1rem;
}

.fact strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.fact span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.buildings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.building-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.building-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.building-built {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.building-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.building-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.placeholder-img {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  padding: 2rem;
  line-height: 1.6;
}

.placeholder-img--dark {
  color: rgba(255,255,255,0.35);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.location-map {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 380px;
  overflow: hidden;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.point-icon {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 2rem;
  text-align: center;
  padding-top: 0.1rem;
}

.location-point h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.location-point p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.scenarios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.scenario-card {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.scenario-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.scenario-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.scenario-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.scenario-body { padding: 0; }

.scenario-img {
  background: var(--cream-dark);
  min-height: 200px;
  overflow: hidden;
}

.scenario-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scenario-program {
  padding: 2rem;
}

.scenario-program h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.scenario-program ul {
  list-style: none;
  padding: 0;
}

.scenario-program li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream);
  font-size: 0.9rem;
  color: var(--text-light);
}

.scenario-program li:last-child { border-bottom: none; }
.scenario-program li strong { color: var(--text); }

.scenario-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.scenario-stat {
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.scenario-stat:last-child { border-right: none; }

.scenario-stat span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.scenario-stat strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.uses-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.uses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.use-tag {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--cream);
  transition: all 0.2s;
}

.use-tag:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-bottom: 3rem;
}

.highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.highlight-check {
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 1.5rem;
  font-weight: 700;
  padding-top: 0.1rem;
}

.highlight strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.highlight p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.legal-banner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-left: 6px solid var(--gold);
}

.legal-icon {
  font-size: 2rem;
  color: var(--gold);
  min-width: 2.5rem;
}

.legal-banner h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.legal-banner p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.investors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.investor-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s;
}

.investor-card:hover {
  border-color: var(--gold);
}

.investor-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.investor-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.section-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-content > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.site-footer {
  background: #070e1a;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-widgets {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 90;
}

.widget {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.widget:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.widget svg {
  width: 20px;
  height: 20px;
}

.widget-whatsapp { background: #25D366; }
.widget-viber { background: #7360F2; }
.widget-call { background: var(--gold); }

.contact-widgets {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-widgets.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cta-widgets {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-widget:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-widget svg {
  width: 20px;
  height: 20px;
}

.cta-widget-whatsapp { background: #25D366; }
.cta-widget-viber { background: #7360F2; }
.cta-widget-call { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); }

@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .buildings-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .scenarios { grid-template-columns: 1fr; }
  .investors-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 24, 41, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    backdrop-filter: blur(10px);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .lang-picker {
    position: absolute;
    top: 1rem;
    right: 4.5rem;
  }

  .nav-toggle { display: flex; }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-value { font-size: 2rem; }

  .highlights-grid { grid-template-columns: 1fr; }
  .investors-grid { grid-template-columns: 1fr; }
  .scenario-numbers { grid-template-columns: 1fr; }
  .scenario-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .scenario-stat:last-child { border-bottom: none; }

  .cta-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; text-align: center; max-width: 400px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 1rem 1.25rem; }
  .hero-content { padding-top: 6rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
