:root {
  --bg: #f0fdfb;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --text: #111318;
  --muted: #4a6b63;
  --line: rgba(17, 19, 24, 0.08);
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(100, 200, 180, 0.15), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(150, 220, 200, 0.20), transparent 25%),
    linear-gradient(180deg, #f7fdfb 0%, #f0fdfb 100%);
  line-height: 1.5;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.construction-banner {
  background: rgba(255, 255, 255, 0.72);
  color: #5e6573;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 40;
  border-bottom: 1px solid rgba(17, 19, 24, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 19, 24, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(210,224,247,0.95));
  border: 1px solid rgba(17,19,24,0.06);
  box-shadow: 0 10px 24px rgba(64, 88, 128, 0.12);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(255,255,255,0.66);
  color: var(--text);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.button {
  color: #fff;
  background: linear-gradient(180deg, #141821 0%, #0b0d11 100%);
  box-shadow: 0 18px 38px rgba(14, 17, 22, 0.18);
}

.button-secondary {
  background: rgba(255,255,255,0.72);
  border-color: rgba(17, 19, 24, 0.08);
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.glass {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.64);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-copy,
.hero-visual,
.section-card,
.metric,
.info-card,
.contact-card,
.cta,
.timeline-item,
.service-card,
.quote,
.footer-panel {
  padding: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(100, 200, 180, 0.08);
  border: 1px solid rgba(100, 200, 180, 0.18);
  font-size: 13px;
  color: #4a8b7f;
  font-weight: 600;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

h1 {
  margin-top: 22px;
  font-size: clamp(36px, 6vw, 64px);
  color: #0f1419;
  line-height: 1.25;
}

h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
  color: #1a2332;
  line-height: 1.3;
}

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin-bottom: 12px;
  color: #2a3040;
  line-height: 1.35;
}

p.lead {
  font-size: clamp(16px, 2vw, 22px);
  color: #3d4556;
  max-width: 18ch;
  margin: 22px 0 28px;
  line-height: 1.6;
}

p, li {
  font-size: 16px;
  color: #3d4556;
  line-height: 1.65;
}

.muted { color: var(--muted); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-visual {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  gap: 20px;
}

.visual-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.kpi-grid,
.metrics,
.cards-3,
.cards-2,
.footer-grid,
.contact-grid,
.service-grid,
.timeline,
.story-grid {
  display: grid;
  gap: 22px;
}

.kpi-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metric strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.metric span {
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.timeline { grid-template-columns: repeat(5, 1fr); }
.contact-grid { grid-template-columns: 1fr 1fr; }
.story-grid { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1.2fr 0.8fr; }

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(226,233,244,0.88));
  border: 1px solid rgba(17,19,24,0.06);
  margin-bottom: 20px;
  font-size: 24px;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

ul.clean li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

ul.clean li:last-child { border-bottom: 0; }

.quote {
  position: relative;
  overflow: hidden;
}

.quote::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166,191,255,0.24), transparent 60%);
}

.cta {
  margin-top: 20px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.contact-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(17,19,24,0.06);
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.site-footer {
  padding: 28px 0 48px;
}

.footer-panel {
  border-radius: 30px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.page-hero {
  padding: 42px 0 18px;
}

.page-hero .glass {
  padding: 38px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,19,24,0.05);
  color: #31384a;
  font-size: 14px;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.visual-stack img {
  border-radius: 24px;
  border: 1px solid rgba(17,19,24,0.06);
  box-shadow: 0 18px 38px rgba(42, 63, 94, 0.1);
}

.investment-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.investment-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.investment-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(226,233,244,0.88));
  border: 1px solid rgba(17,19,24,0.06);
  font-size: 28px;
  line-height: 1;
}

.investment-card h3 {
  margin: 0;
  font-size: 18px;
}

.investment-card p {
  margin: 0;
  font-size: 15px;
  color: #2a3040;
}

.timeline-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17, 19, 24, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 8px;
}

.timeline-arrow {
  font-size: 24px;
  color: var(--muted);
  text-align: center;
  opacity: 0.5;
}

.investment-insight {
  padding: 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: var(--radius-xl);
}

.investment-insight p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #2a3040;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .story-grid,
  .footer-grid,
  .cards-3,
  .service-grid,
  .timeline,
  .kpi-grid,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .investment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-arrow {
    display: none;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .hero-copy,
  .hero-visual,
  .section-card,
  .metric,
  .info-card,
  .contact-card,
  .cta,
  .timeline-item,
  .service-card,
  .quote,
  .footer-panel,
  .page-hero .glass,
  .investment-card {
    padding: 20px;
  }

  .site-header {
    padding: 12px 0;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .brand {
    margin-bottom: 8px;
  }

  .brand img {
    height: 52px !important;
    width: auto !important;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
  }

  h1 { font-size: clamp(28px, 6vw, 42px); }
  h2 { font-size: clamp(24px, 3.5vw, 34px); }
  h3 { font-size: clamp(16px, 2.2vw, 22px); }

  p, li { font-size: 15px; }
  p.lead { font-size: clamp(16px, 1.8vw, 18px); }

  .investment-card h3 { font-size: 16px; }
  .investment-card p { font-size: 14px; }

  .metric strong { font-size: 22px; }
  .metric span { font-size: 14px; }

  .eyebrow { font-size: 12px; }
  .note { font-size: 13px; }
}
