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

:root {
  --slate: #3D5A73;
  --charcoal: #1E2A32;
  --charcoal-deep: #111820;
  --burnt: #D4621A;
  --burnt-light: #E8784A;
  --white: #F4F6F8;
  --silver: #C8D0D8;
  --amber: #E8A020;
  --mid: #2A3A45;
  --text-muted: #8A9BAA;
  --radius: 4px;
  --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--charcoal-deep);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(17, 24, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 90, 115, 0.3);
  transition: background 0.3s;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0;
  line-height: 0;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  /* the logo's dark background blends into the nav — no extra styling needed */
}

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

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

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--burnt);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--burnt-light) !important; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.nav-phone:hover { color: var(--white); }
.nav-phone-icon { color: var(--burnt); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(200, 208, 216, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(244, 246, 248, 0.06);
}

/* SECTIONS */
.section { padding: 6rem 5%; }
.section-sm { padding: 4rem 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burnt);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--burnt);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* CARDS */
.card {
  background: var(--mid);
  border: 1px solid rgba(61, 90, 115, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(212, 98, 26, 0.5);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(212, 98, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--burnt);
  font-size: 1.4rem;
}

.card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid rgba(61, 90, 115, 0.25);
  margin: 0 5%;
}

/* STAT STRIP */
.stat-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(61, 90, 115, 0.25);
  border-bottom: 1px solid rgba(61, 90, 115, 0.25);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(61, 90, 115, 0.25);
}

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

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--burnt);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  background: var(--charcoal-deep);
  border-top: 1px solid rgba(61, 90, 115, 0.25);
  padding: 3rem 5% 2rem;
}

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

.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-brand span { color: var(--burnt); }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(61, 90, 115, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.badge-amber { background: rgba(232, 160, 32, 0.15); color: var(--amber); }
.badge-burnt { background: rgba(212, 98, 26, 0.15); color: var(--burnt-light); }
.badge-slate { background: rgba(61, 90, 115, 0.25); color: var(--silver); }

/* FADE IN ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(61,90,115,0.25); }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--charcoal-deep); padding: 2rem 5%; gap: 1.5rem; border-bottom: 1px solid rgba(61,90,115,0.3); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 4rem 5%; }
}
