@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --black: #0a0a0a;
  --deep: #0f1419;
  --coal: #1a1f26;
  --steel: #2a3240;
  --mist: #8a9bb0;
  --silver: #c8d4e0;
  --white: #f0f4f8;
  --ice: #a8d8f0;
  --frost: #d4eef8;
  --cold: #5bafd6;
  --warm: #e8b86d;
  --ember: #c4773a;
  --accent: #4fc3f7;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--silver);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--cold); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 60%, rgba(91,175,214,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(196,119,58,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0f1419 100%);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cold);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  color: var(--cold);
}

.hero-sub {
  max-width: 540px;
  font-size: 1.05rem;
  color: var(--mist);
  position: relative;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  position: relative;
}

.btn-primary {
  background: var(--cold);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--frost); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--silver);
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--cold); color: var(--cold); }

/* SECTIONS */
section { padding: 6rem 4rem; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cold);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

p { margin-bottom: 1.2rem; color: var(--mist); }
p:last-child { margin-bottom: 0; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 4rem;
}

.service-card {
  background: var(--deep);
  padding: 2.5rem;
  text-decoration: none;
  transition: background 0.2s;
  display: block;
}

.service-card:hover { background: var(--coal); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.6;
  margin: 0;
}

.service-card .arrow {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cold);
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* IMAGE BLOCK */
.img-block {
  position: relative;
}

.img-block img {
  width: 100%;
  display: block;
  filter: brightness(0.85) contrast(1.1);
}

.img-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,175,214,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 5rem;
}

.stat {
  background: var(--deep);
  padding: 3rem 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--cold);
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

/* DARK BAND */
.dark-band {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* QUOTE */
.pull-quote {
  border-left: 3px solid var(--cold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(91,175,214,0.05);
}

.pull-quote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--silver);
}

/* BODY TEXT CONTENT */
.content-body {
  max-width: 760px;
}

.content-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.content-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content-body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--mist);
  font-size: 0.95rem;
}

.content-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cold);
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 10rem 4rem 5rem;
  background:
    radial-gradient(ellipse 70% 50% at 20% 70%, rgba(91,175,214,0.07) 0%, transparent 60%),
    var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-hero .lead {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--mist);
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem;
}

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

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--steel);
  margin: 0;
}

.footer-bottom a {
  color: var(--cold);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  section { padding: 4rem 2rem; }
  .hero { padding: 7rem 2rem 3rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: 7rem 2rem 3rem; }
}
