:root {
  --navy: #08223f;
  --navy-2: #03172c;
  --gold: #c8912c;
  --gold-2: #e1ae4a;
  --teal: #0e6076;
  --ink: #0d1525;
  --muted: #5f6b7a;
  --line: #e7ebf0;
  --bg: #ffffff;
  --soft: #f5f7fa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 236px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 38px; font-size: 15px; font-weight: 500; color: #233044; }
.nav-links a:hover { color: var(--gold); }
.nav-button {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 40%, rgba(14,96,118,.16), transparent 34%),
    linear-gradient(110deg, #fff 0%, #fff 45%, #f2f7fb 45%, #fff 100%);
}
.hero-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -.045em;
  max-width: 720px;
  color: var(--navy-2);
  margin-bottom: 26px;
}
.hero-text {
  max-width: 610px;
  color: #44505f;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 3px;
}
.primary, .gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; box-shadow: 0 14px 28px rgba(200,145,44,.22); }
.secondary { border: 1px solid var(--gold); color: var(--gold); background: #fff; }

.hero-art { min-height: 440px; position: relative; }
.glass-card {
  position: relative;
  height: 460px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.28)),
    linear-gradient(135deg, rgba(8,34,63,.95), rgba(14,96,118,.86));
  box-shadow: 0 30px 80px rgba(8,34,63,.24);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,.18) 48% 50%, transparent 50% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.13) 0 1px, transparent 1px 78px);
  transform: skewX(-12deg) scale(1.2);
}
.logo-panel {
  position: absolute;
  left: 55px;
  bottom: 64px;
  width: 310px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
}
.mini-card { position: absolute; border-radius: 20px; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.28); }
.mini-card.one { width: 150px; height: 100px; right: 48px; top: 58px; }
.mini-card.two { width: 120px; height: 80px; right: 130px; bottom: 46px; }

.section { padding: 82px 0; }
.centered { text-align: center; max-width: 680px; margin: 0 auto; }
h2 { font-size: clamp(34px, 4vw, 46px); line-height: 1.08; letter-spacing: -.035em; color: var(--navy-2); margin-bottom: 18px; }
.services { background: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 46px; }
.service-card { text-align: center; padding: 42px 30px; border: 1px solid var(--line); background: #fff; min-height: 270px; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(8,34,63,.09); }
.icon { width: 68px; height: 68px; margin: 0 auto 24px; border-radius: 999px; display: grid; place-items: center; background: var(--navy); color: var(--gold-2); font-size: 30px; font-weight: 800; }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 14px; }
.service-card p { color: var(--muted); line-height: 1.75; margin-bottom: 0; }

.about-band { background: linear-gradient(135deg, #021a31, #062d53); color: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about-band h2 { color: #fff; }
.about-copy p:not(.eyebrow) { color: rgba(255,255,255,.82); line-height: 1.85; font-size: 17px; max-width: 520px; }
.office-card {
  min-height: 340px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.06)),
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.2), transparent 22%),
    linear-gradient(140deg, #e9edf1 0 32%, #2e3135 32% 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.office-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 92px;
  background: linear-gradient(90deg, rgba(0,0,0,.25), rgba(255,255,255,.06));
}
.wall-logo {
  position: absolute;
  right: 42px;
  top: 88px;
  width: 280px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 35px rgba(0,0,0,.28);
}

.proof { background: var(--soft); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 38px; }
.proof-grid div { background: #fff; border: 1px solid var(--line); padding: 34px; border-radius: 20px; text-align: center; }
.proof-grid strong { display: block; color: var(--navy); font-size: 34px; margin-bottom: 10px; }
.proof-grid span { color: var(--muted); }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: center; }
.contact p { color: var(--muted); line-height: 1.8; font-size: 17px; }
.contact-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 20px 50px rgba(8,34,63,.08); }
.contact-card .label { color: var(--gold); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .14em; margin: 18px 0 6px; }
.contact-card .label:first-child { margin-top: 0; }
.contact-card a { display: block; font-size: 22px; font-weight: 700; color: var(--navy); }
.contact-card span { color: var(--muted); }

.site-footer { background: #07172a; color: rgba(255,255,255,.72); padding: 30px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; }
.footer-wrap p { margin: 0; }

@media (max-width: 900px) {
  .nav-wrap { height: auto; padding: 18px 0; }
  .brand img { width: 190px; }
  .nav-links, .nav-button { display: none; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 54px 0; }
  .hero-art { min-height: auto; }
  .glass-card { height: 360px; }
  .card-grid, .proof-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 32px, 1180px); }
  h1 { font-size: 40px; }
  .button { width: 100%; }
  .logo-panel, .wall-logo { width: 240px; left: 50%; right: auto; transform: translateX(-50%); }
  .logo-panel { bottom: 70px; }
}
