/* ============================================================
   Fire Line Services — Main Stylesheet
   Author: Titan AI / Matt Vincent Walker
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --red: #CC1A1A;
  --red-bright: #E02020;
  --red-dark: #991010;
  --black: #0A0A0A;
  --black-mid: #141414;
  --black-light: #1E1E1E;
  --gray-dark: #2A2A2A;
  --gray-mid: #555;
  --gray-light: #999;
  --white: #F5F4F2;
  --white-pure: #FFFFFF;
  --border: rgba(255,255,255,0.08);
  --border-red: rgba(204,26,26,0.4);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.logo-mark svg { width: 24px; height: 24px; fill: white; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--white-pure);
}

.logo-text .bottom {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-pure) !important;
  background: var(--red);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s !important;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.nav-cta:hover { background: var(--red-bright) !important; color: var(--white-pure) !important; }

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

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

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  width: 80%;
  text-align: center;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu a.mobile-cta {
  color: var(--red);
  margin-top: 24px;
  border: 2px solid var(--red);
  padding: 16px 48px;
  width: auto;
  font-size: 32px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,10,0.88) 20%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.25) 100%),
    linear-gradient(160deg, rgba(26,0,0,0.5) 0%, rgba(10,10,10,0.3) 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(204,26,26,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,26,26,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(135deg, rgba(204,26,26,0.08) 0%, transparent 60%);
}

.hero-line {
  position: absolute;
  left: 0;
  top: 72px;
  z-index: 2;
  width: 4px;
  height: 0;
  background: var(--red);
  animation: lineGrow 1.2s ease-out 0.3s forwards;
}

@keyframes lineGrow {
  to { height: 100%; }
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.5s forwards;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white-pure);
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.7s forwards;
  max-width: 800px;
}

.hero-headline span { color: var(--red); }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 500px;
  margin-top: 28px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.9s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 1.1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-pure);
  background: var(--red);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 93% 100%, 0 100%);
}

.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--white); border-color: var(--gray-mid); }

.hero-stats {
  position: absolute;
  right: 48px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 3;
  opacity: 0;
  animation: fadeLeft 0.9s ease-out 1.3s forwards;
}

.stat-item { text-align: right; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--white-pure);
  display: block;
}

.stat-num span { color: var(--red); }

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.stat-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── SECTION BASE ── */
section { position: relative; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white-pure);
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--red-dark);
  border-bottom: 2px solid var(--red-dark);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 18s linear infinite; /* bumped from 30s → 18s */
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
}

.ticker-item::after {
  content: '//';
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  margin: 0 32px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--black-mid);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--black-light);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { background: #222; }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--red);
  grid-column: span 1;
}

.service-card.featured::before { display: none; }
.service-card.featured:hover { background: var(--red-bright); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  opacity: 0.7;
}

.service-icon svg { width: 100%; height: 100%; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gray-dark);
  margin-bottom: 12px;
  display: block;
}

.service-card.featured .service-num { color: rgba(255,255,255,0.4); }

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-pure);
  line-height: 1.1;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
}

.service-card.featured .service-desc { color: rgba(255,255,255,0.75); }

/* Additional services row */
.services-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.service-card-sm {
  background: var(--black-light);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s;
  border-left: 3px solid transparent;
}

.service-card-sm:hover {
  background: #1E1E1E;
  border-left-color: var(--red);
}

.service-card-sm-icon {
  width: 36px;
  height: 36px;
  background: rgba(204,26,26,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.service-card-sm-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-pure);
}

.service-card-sm-desc {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.5;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  aspect-ratio: 4/5;
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0a0a 0%, #1e1e1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.15;
}

.about-year-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.about-year-badge .year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: white;
}

.about-year-badge .est {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.about-body {
  font-size: 17px;
  font-weight: 300;
  color: #B0AEAB;
  line-height: 1.8;
  margin-top: 32px;
}

.about-body p + p { margin-top: 18px; }

.about-body strong {
  color: var(--white);
  font-weight: 600;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.pillar {
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
}

.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── PROJECTS ── */
.projects {
  padding: 120px 0;
  background: var(--black-mid);
}

.projects-header { margin-bottom: 64px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card {
  background: var(--black-light);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}

.project-card.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.project-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  transition: transform 0.6s ease;
}

.project-card:hover .project-bg { transform: scale(1.05); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.project-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.project-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-pure);
  line-height: 1.1;
  margin-bottom: 6px;
}

.project-location {
  font-size: 13px;
  color: var(--gray-light);
}

.project-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: rgba(255,255,255,0.06);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.proj-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
}

.proj-placeholder svg { width: 60px; height: 60px; }

/* ── WHY US ── */
.why {
  padding: 120px 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: 'FLS';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 400px;
  color: rgba(0,0,0,0.12);
  line-height: 1;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-label { color: rgba(255,255,255,0.6); }
.why-content .section-label::before { background: rgba(255,255,255,0.6); }
.why-content .section-title { color: white; }

.why-lead {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-top: 28px;
  font-style: italic;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-feature {
  background: rgba(0,0,0,0.15);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.2s;
}

.why-feature:hover { background: rgba(0,0,0,0.25); }

.why-feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  min-width: 32px;
}

.why-feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6px;
}

.why-feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── CREDENTIALS ── */
.credentials {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.cred-item {
  padding: 32px 24px;
  text-align: center;
  background: var(--black-mid);
}

.cred-item:first-child { background: var(--red); }

.cred-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--white-pure);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.cred-item:first-child .cred-value { color: white; }

.cred-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.cred-item:first-child .cred-label { color: rgba(255,255,255,0.7); }

.safety-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.cert-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 8px;
}

/* ── MARKETS ── */
.markets {
  padding: 100px 0;
  background: var(--black-mid);
}

.markets-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.market-item {
  padding: 36px 28px;
  background: var(--black-light);
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.market-item:hover {
  border-top-color: var(--red);
  background: #1E1E1E;
}

.market-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  margin-bottom: 16px;
  display: block;
  color: var(--red);
  fill: var(--red);
}

.market-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 8px;
}

.market-desc {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-body {
  font-size: 17px;
  font-weight: 300;
  color: #B0AEAB;
  line-height: 1.8;
  margin-top: 28px;
  margin-bottom: 48px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(204,26,26,0.12);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.contact-item-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover { color: var(--red); }

.contact-cta-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black-light);
  padding: 60px 48px;
  border-top: 4px solid var(--red);
  position: relative;
  overflow: hidden;
}

.contact-cta-block::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(204,26,26,0.08) 0%, transparent 70%);
}

.contact-cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white-pure);
  margin-bottom: 20px;
}

.contact-cta-headline span { color: var(--red); }

.contact-cta-sub {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-phone-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--white-pure);
  letter-spacing: 0.04em;
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.contact-phone-big:hover { color: var(--red); }

.contact-hours {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 14px;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* ── FOOTER ── */
footer {
  background: var(--black-mid);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

.footer-assoc {
  display: flex;
  align-items: center;
  gap: 24px;
}

.assoc-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 6px 14px;
  border: 1px solid var(--border);
  transition: color 0.2s;
}

.assoc-badge:hover { color: var(--gray-mid); }

.footer-license {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { right: 24px; bottom: 60px; }
  .section-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-secondary { grid-template-columns: 1fr; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.large { grid-column: span 2; }
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
  .markets-list { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .why::before { font-size: 220px; right: -20px; }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  nav { padding: 0 20px; height: 64px; }
  .logo-text .top { font-size: 17px; }
  .logo-text .bottom { font-size: 9px; letter-spacing: 0.15em; }

  .hero {
    padding: 80px 20px 48px;
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 100px;
  }
  .hero-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    opacity: 1;
    animation: none;
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }
  .stat-item { text-align: center; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 9px; letter-spacing: 0.15em; }
  .stat-divider { display: none; }
  .hero-headline { font-size: clamp(56px, 16vw, 80px); }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.2em; }
  .hero-sub { font-size: 15px; margin-top: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 32px; }
  .btn-primary { width: 100%; justify-content: center; }

  .section-inner { padding: 0 20px; }
  .services { padding: 72px 0; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .services-secondary { grid-template-columns: 1fr; }
  .service-card-sm { padding: 20px 24px; }

  .about { padding: 72px 0; }
  .about-visual { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-body { font-size: 15px; }

  .projects { padding: 72px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { aspect-ratio: 16/9; }
  .project-card.large { grid-column: span 1; aspect-ratio: 16/9; }
  .projects-header { margin-bottom: 36px; }

  .why { padding: 72px 0; }
  .why::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-feature { padding: 20px 24px; }

  .credentials { padding: 48px 0; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-item:first-child { grid-column: span 2; }
  .cred-value { font-size: 30px; }

  .markets { padding: 72px 0; }
  .markets-list { grid-template-columns: 1fr; margin-top: 36px; }
  .market-item { padding: 24px 20px; }

  .contact { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-cta-block { padding: 40px 28px; }
  .contact-phone-big { font-size: 32px; }
  .contact-cta-headline { font-size: 38px; }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 28px 20px;
  }
  .footer-assoc { flex-direction: column; gap: 8px; }
}
