:root {
  --black: #14161a;
  --charcoal: #1f2226;
  --gray-dark: #3a3f46;
  --gray: #6b7178;
  --gray-light: #e7e8ea;
  --off-white: #f6f6f4;
  --yellow: #f5b800;
  --yellow-dark: #d69f00;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

p { color: var(--gray-dark); }

.eyebrow {
  display: inline-block;
  color: var(--yellow-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Header */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--yellow);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-badge {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

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

.logo small {
  display: block;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}

nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover,
nav a.active {
  background: var(--yellow);
  color: var(--black);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 60%, var(--gray-dark) 100%);
  color: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  opacity: 0.08;
  transform: rotate(20deg);
}

.hero .container {
  position: relative;
  max-width: 720px;
}

.hero p.lead {
  color: var(--gray-light);
  font-size: 1.15rem;
  margin: 20px 0 32px;
  max-width: 560px;
}

.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  padding: 16px 32px;
  border: 2px solid var(--yellow);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: transparent;
  color: var(--yellow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page header (non-home pages) */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 70px 0;
  border-bottom: 4px solid var(--yellow);
}

.page-header p {
  color: var(--gray-light);
  margin-top: 12px;
  max-width: 600px;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark p {
  color: var(--gray-light);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

/* Grid cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--yellow);
  padding: 32px 28px;
}

.card .icon {
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats .stat strong {
  display: block;
  font-size: 2.4rem;
  color: var(--yellow);
  font-weight: 800;
}

.stats .stat span {
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

/* CTA band */
.cta-band {
  background: var(--yellow);
  color: var(--black);
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band .btn {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cta-band .btn:hover {
  background: transparent;
  color: var(--black);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info .item {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
}

.contact-info .item h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 6px;
}

.contact-info .item p,
.contact-info .item a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.3);
}

/* Footer */
footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 50px 0 24px;
}

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

footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 8px;
}

footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav { position: fixed; top: 84px; left: 0; right: 0; background: var(--black); flex-direction: column; display: none; border-top: 1px solid var(--gray-dark); }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 12px 24px 24px; }
  .header-cta .phone-link { display: none; }
  .nav-toggle { display: block; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0; }
  section { padding: 56px 0; }
  .logo { gap: 8px; font-size: 1rem; }
  .logo-badge { width: 38px; height: 38px; }
  .logo small { font-size: 0.52rem; }
}

@media (max-width: 400px) {
  .logo-text small { display: none; }
}
