:root {
  --navy: #082748;
  --navy-dark: #04182d;
  --navy-soft: #0d3359;
  --silver: #c9d5e2;
  --silver-light: #eef4fb;
  --muted: #aebccc;
  --line: rgba(201, 213, 226, .22);
  --glass: rgba(255, 255, 255, .055);
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: var(--silver-light);
  background:
    radial-gradient(circle at 15% 5%, rgba(201, 213, 226, .16), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 45%, #061f3b);
  min-height: 100vh;
}

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

.construction-banner {
  width: 100%;
  padding: 11px 18px;
  text-align: center;
  background: linear-gradient(90deg, rgba(238,244,251,.14), rgba(238,244,251,.24), rgba(238,244,251,.14));
  border-bottom: 1px solid var(--line);
  color: var(--silver-light);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

p { color: var(--muted); line-height: 1.75; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 5;
}

.brand img {
  display: block;
  width: 220px;
  max-width: 45vw;
  border-radius: 2px;
}

.nav { display: flex; gap: 10px; align-items: center; }
.nav a {
  color: var(--muted);
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav a:hover, .nav a.active { border-color: var(--line); color: var(--silver-light); background: var(--glass); }

.hero, .contact-hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 80px 20px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before, .contact-hero::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(238,244,251,.18), transparent 65%);
  filter: blur(8px);
}
.hero-content, .contact-hero > div {
  width: min(980px, 100%);
  text-align: center;
  position: relative;
}
.eyebrow, .section-label {
  margin: 0 0 18px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
}
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 {
  font-size: clamp(46px, 8vw, 94px);
  line-height: .98;
  letter-spacing: -.045em;
  max-width: 980px;
  margin: 0 auto 28px;
}
h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -.03em; }
h3 { font-size: 26px; }
.lead { font-size: clamp(18px, 2vw, 23px); max-width: 760px; margin: 0 auto; }

.hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--silver-light), #aebed0);
  color: var(--navy-dark);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.button.ghost { background: transparent; color: var(--silver-light); border: 1px solid var(--line); box-shadow: none; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 96px 0; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: start; border-top: 1px solid var(--line); }
.text-card, .service-card, .signature-inner, .contact-card, .contact-note {
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.text-card p:first-child { margin-top: 0; }
.text-card p:last-child { margin-bottom: 0; }

.section-heading { max-width: 700px; margin-bottom: 38px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card p { margin-bottom: 0; }

.signature { padding-top: 36px; padding-bottom: 120px; }
.signature-inner { text-align: center; padding: 58px; }
.signature-inner p:not(.section-label) { max-width: 780px; margin: 22px auto 34px; font-size: 18px; }

.contact-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; padding-top: 0; }
.contact-card h2 a { word-break: break-word; }
.contact-note { align-self: center; }

.footer {
  border-top: 1px solid var(--line);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer p { margin: 0; }
.footer a { color: var(--silver-light); }

.reveal { animation: rise .7s ease both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 920px) {
  .split, .contact-section { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero, .contact-hero { min-height: 62vh; padding-top: 52px; }
}
@media (max-width: 620px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; justify-content: space-between; }
  .nav a { flex: 1; text-align: center; padding-inline: 10px; }
  .brand img { width: 190px; max-width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .signature-inner, .text-card, .service-card, .contact-card, .contact-note { padding: 26px; border-radius: 22px; }
}
