/* ─── Fonts ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --yellow: #f5c518;
  --yellow-dim: #c99e0a;
  --red: #e0503a;
  --dark: #0e0e0e;
  --dark-2: #181818;
  --dark-3: #242424;
  --mid: #3a3a3a;
  --border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --off-white: #f5f4f1;
  --text-muted: #9a9a9a;
  --body-bg: #f5f4f1;
  --body-text: #1a1a1a;
  --max: 1140px;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin: 0; }

body {
  font-family: "Inter", sans-serif;
  background: var(--body-bg);
  color: var(--body-text);
  line-height: 1.6;
}

/* ─── Util ───────────────────────────────────────────── */
.container {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 600;
}

.btn-call {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-call:hover {
  background: #ffd43b;
  transform: translateY(-1px);
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 6px 22px rgba(245, 197, 24, 0.35);
}

.btn-primary:hover {
  background: #ffd43b;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 197, 24, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(224, 80, 58, 0.35);
}

.btn-red:hover {
  background: #c8432d;
  transform: translateY(-2px);
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1600&auto=format&fit=crop&q=60");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.35);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-desc {
  color: #b0b0b0;
  font-size: 1.05rem;
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 1.35rem 0;
  border-right: 1px solid var(--border);
  text-align: center;
}

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

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── Section Basics ─────────────────────────────────── */
.section {
  padding: 5rem 0;
}

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

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

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

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

.section-header {
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-dark .eyebrow,
.section-mid .eyebrow {
  color: var(--yellow);
}

h2.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.section-sub {
  color: #555;
  font-size: 1rem;
  margin-top: 0.55rem;
  max-width: 60ch;
}

.section-dark .section-sub,
.section-mid .section-sub {
  color: #9a9a9a;
}

/* ─── Service Cards ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8e6e2;
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: #d0ccc5;
}

.section-dark .service-card,
.section-mid .service-card {
  background: var(--dark-3);
  border-color: var(--border);
}

.section-dark .service-card:hover,
.section-mid .service-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 197, 24, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--yellow);
}

.service-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2px;
}

.service-card p {
  font-size: 0.93rem;
  color: #565656;
  line-height: 1.65;
}

.section-dark .service-card p,
.section-mid .service-card p {
  color: #8c8c8c;
}

.service-list {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-list li {
  font-size: 0.87rem;
  color: #6a6a6a;
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.8rem;
}

.section-dark .service-list li,
.section-mid .service-list li {
  color: #808080;
}

/* ─── Feature Strip (Why Us) ─────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.feature-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  flex-shrink: 0;
  width: 2.2rem;
}

.feature-item h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.feature-item p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.65;
}

/* ─── Photo Split ─────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}

.split-img {
  overflow: hidden;
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── Photo Grid ─────────────────────────────────────── */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-tile {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.photo-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-tile:hover img {
  transform: scale(1.04);
}

.photo-tile-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  padding: 1rem 0.9rem 0.75rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ─── CTA Band ────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 3rem 0;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.cta-band p {
  color: rgba(255,255,255,0.78);
  margin-top: 0.3rem;
  font-size: 0.97rem;
}

.btn-cta {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
}

/* ─── Page Hero (inner pages) ────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #999;
  font-size: 1rem;
  max-width: 60ch;
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

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

.footer-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 30ch;
}

.footer-phone {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
}

.footer-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li a {
  font-size: 0.9rem;
  color: #5a5a5a;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  color: #404040;
  font-size: 0.83rem;
}

/* ─── Mobile ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-img {
    display: none;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

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

  .feature-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-img {
    height: 300px;
  }

  .photo-row {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .photo-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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