/* =========================================================
   REFUGE CONSTRUCTION — DEMO STYLES
   DR Web Design  |  Grande Prairie, AB
   ========================================================= */

:root {
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --steel: #2a2a2a;
  --concrete: #4a4a4a;
  --bone: #e8e4dc;
  --paper: #f5f1e8;
  --rust: #c84b1a;
  --amber: #d4a04c;
  --safety: #ffb627;
  --max-width: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.topbar { background: var(--black); color: var(--bone); padding: 0.5rem 0; font-size: 0.78rem; letter-spacing: 0.05em; }
.topbar-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.topbar a { color: var(--bone); text-decoration: none; }
.topbar a:hover { color: var(--safety); }
.topbar-locations { color: var(--concrete); }

/* ===== NAV ===== */
.nav {
  background: rgba(245, 241, 232, 0.95);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo img { height: 36px; width: auto; display: block; }
.logo-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--concrete);
  border-left: 1px solid rgba(0,0,0,0.15);
  padding-left: 0.7rem;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--charcoal); text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rust); }
.nav-cta { background: var(--rust); color: var(--paper) !important; padding: 0.7rem 1.4rem; font-weight: 700; transition: background 0.2s; }
.nav-cta:hover { background: var(--charcoal); }
.menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--charcoal); }

/* ===== HERO (HOMEPAGE - VIDEO) ===== */
.hero-video {
  background: var(--black);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.25) 50%, rgba(13,13,13,0.85) 100%);
  z-index: 1;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px),
    repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
  z-index: 2;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
  width: 100%;
}

/* ===== HERO (PAGE - STATIC DARK) ===== */
.page-hero {
  background: var(--black);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(200,75,26,0.18) 0%, transparent 50%),
    repeating-linear-gradient(45deg, var(--charcoal) 0px, var(--charcoal) 2px, var(--steel) 2px, var(--steel) 4px);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px),
    repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
  z-index: 1;
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--safety);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.breadcrumb a { color: rgba(232,228,220,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--safety); }
.breadcrumb span { color: rgba(232,228,220,0.4); margin: 0 0.5rem; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  max-width: 1000px;
}
.page-hero h1 .accent { color: var(--safety); font-style: italic; }
.page-hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 700px;
  color: rgba(232, 228, 220, 0.85);
  font-family: 'Fraunces', serif;
  font-style: italic;
  line-height: 1.5;
}

/* ===== HERO TEXT (HOMEPAGE) ===== */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--safety);
  font-weight: 700;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease 0.1s backwards;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--safety); }

.hero-video h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  max-width: 900px;
  animation: fadeUp 0.7s ease 0.2s backwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero-video h1 .accent { color: var(--safety); font-style: italic; }
.hero-video h1 .underline { position: relative; display: inline-block; }
.hero-video h1 .underline::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.08em;
  background: var(--rust);
  z-index: -1;
}
.hero-video p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: 620px;
  margin-bottom: 2.5rem;
  color: rgba(232, 228, 220, 0.92);
  animation: fadeUp 0.7s ease 0.4s backwards;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.55s backwards;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--rust); color: var(--paper); }
.btn-primary:hover {
  background: var(--safety);
  color: var(--black);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--charcoal);
}
.btn-ghost { background: transparent; color: var(--bone); border: 2px solid rgba(232,228,220,0.4); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--safety); color: var(--safety); }
.btn-dark { background: var(--black); color: var(--paper); }
.btn-dark:hover { background: var(--rust); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 800px;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(232,228,220,0.25);
  animation: fadeUp 0.7s ease 0.7s backwards;
}
.hero-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--safety);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.hero-stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.7);
}

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

/* ===== CREDENTIALS BAR ===== */
.creds {
  background: var(--charcoal);
  color: var(--bone);
  padding: 1.5rem 0;
  border-top: 3px solid var(--safety);
}
.creds-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
  align-items: center;
}
.cred { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.cred-dot { width: 8px; height: 8px; background: var(--safety); border-radius: 50%; }

/* ===== SECTION BASE ===== */
section { padding: 6rem 0; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-eyebrow { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.section-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--rust); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.section-lead {
  font-size: 1.15rem;
  color: var(--concrete);
  max-width: 700px;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ===== SERVICES (HOMEPAGE) ===== */
.services { background: var(--paper); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 4rem; }
.service-card {
  background: var(--bone);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 60px; height: 4px; background: var(--rust); transition: width 0.3s ease; }
.service-card:hover { transform: translateY(-4px); border-color: var(--rust); background: var(--paper); }
.service-card:hover::before { width: 100%; background: var(--safety); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; color: var(--rust); letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin-bottom: 1rem; letter-spacing: 0.02em; color: var(--black); }
.service-card p { color: var(--concrete); margin-bottom: 1.5rem; font-size: 0.95rem; }
.service-card ul { list-style: none; padding: 0; }
.service-card ul li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--charcoal); border-bottom: 1px dashed rgba(0,0,0,0.08); display: flex; align-items: center; gap: 0.5rem; }
.service-card ul li::before { content: '→'; color: var(--rust); font-weight: bold; }

/* ===== WHY US ===== */
.why { background: var(--black); color: var(--bone); position: relative; overflow: hidden; }
.why::before {
  content: 'BUILT NORTH';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22vw;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}
.why .section-title { color: var(--bone); }
.why .section-eyebrow { color: var(--safety); }
.why .section-eyebrow::before { background: var(--safety); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; margin-top: 4rem; position: relative; z-index: 2; }
.why-item { position: relative; padding-top: 2rem; border-top: 2px solid var(--safety); }
.why-item .num { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; color: var(--safety); letter-spacing: 0.15em; margin-bottom: 0.8rem; }
.why-item h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; margin-bottom: 0.8rem; letter-spacing: 0.02em; }
.why-item p { color: rgba(232,228,220,0.7); font-size: 0.95rem; }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--paper); }
.portfolio-header { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 2rem; margin-bottom: 4rem; }
.portfolio-header .left { max-width: 600px; }
.portfolio-header p { color: var(--concrete); font-size: 1.1rem; font-family: 'Fraunces', serif; font-style: italic; }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.project { background: var(--charcoal); position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s ease; min-height: 320px; display: flex; align-items: end; padding: 1.75rem; color: var(--bone); }
.project::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.95) 100%), var(--bg, linear-gradient(135deg, #2a2a2a, #4a4a4a)); z-index: 0; transition: transform 0.5s ease; }
.project:hover::before { transform: scale(1.05); }
.project > * { position: relative; z-index: 1; }
.project-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--safety); margin-bottom: 0.5rem; font-weight: 700; }
.project h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.project .meta { font-size: 0.85rem; color: rgba(232,228,220,0.7); }
.project.large { grid-column: span 7; min-height: 480px; }
.project.medium { grid-column: span 5; min-height: 480px; }
.project.small { grid-column: span 4; }
.project:nth-child(1)::before { background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.95) 100%), linear-gradient(135deg, #1a3a4a 0%, #2a5a6a 50%, #1a2a3a 100%); }
.project:nth-child(2)::before { background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.95) 100%), linear-gradient(135deg, #4a3a2a 0%, #6a4a3a 50%, #2a1a0a 100%); }
.project:nth-child(3)::before { background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.95) 100%), linear-gradient(135deg, #2a2a3a 0%, #4a4a5a 50%, #1a1a2a 100%); }
.project:nth-child(4)::before { background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.95) 100%), linear-gradient(135deg, #3a2a1a 0%, #5a4a2a 50%, #2a1a0a 100%); }
.project:nth-child(5)::before { background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.95) 100%), linear-gradient(135deg, #2a3a2a 0%, #4a5a3a 50%, #1a2a1a 100%); }

.demo-note { margin-top: 2rem; padding: 1rem 1.5rem; background: rgba(200, 75, 26, 0.08); border-left: 4px solid var(--rust); font-size: 0.9rem; color: var(--concrete); font-style: italic; }

/* ===== COVERAGE ===== */
.coverage { background: var(--bone); position: relative; }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.coverage-text p { color: var(--concrete); font-size: 1.05rem; margin-bottom: 1.5rem; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.coverage-list li { list-style: none; padding: 0.7rem 1rem; background: var(--paper); border-left: 3px solid var(--rust); font-weight: 600; font-size: 0.95rem; }
.coverage-map { position: relative; aspect-ratio: 1; background: var(--paper); border: 1px solid rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.coverage-map svg { width: 100%; height: 100%; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--steel); color: var(--bone); position: relative; }
.testimonials .section-title { color: var(--bone); }
.testimonials .section-eyebrow { color: var(--safety); }
.testimonials .section-eyebrow::before { background: var(--safety); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.quote { padding: 2rem; border-left: 3px solid var(--safety); background: rgba(255,255,255,0.03); }
.quote-mark { font-family: 'Fraunces', serif; font-size: 4rem; color: var(--safety); line-height: 0.5; margin-bottom: 1rem; display: block; }
.quote-text { font-family: 'Fraunces', serif; font-size: 1.1rem; font-style: italic; margin-bottom: 1.5rem; color: var(--bone); line-height: 1.5; }
.quote-author { font-size: 0.85rem; color: rgba(232,228,220,0.7); letter-spacing: 0.05em; }
.quote-author strong { color: var(--safety); display: block; font-size: 0.95rem; margin-bottom: 0.2rem; letter-spacing: 0.02em; }

/* ===== CTA ===== */
.cta { background: var(--paper); text-align: center; position: relative; }
.cta-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; margin-bottom: 1.5rem; color: var(--black); }
.cta p { font-size: 1.15rem; color: var(--concrete); margin-bottom: 2.5rem; font-family: 'Fraunces', serif; font-style: italic; }

/* ===== FORM ===== */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; background: var(--bone); padding: 3rem; border: 1px solid rgba(0,0,0,0.08); margin-top: 2rem; }
.contact-form .full { grid-column: span 2; }
.contact-form label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; color: var(--charcoal); }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(0,0,0,0.15); background: var(--paper); font-family: 'Archivo', sans-serif; font-size: 0.95rem; color: var(--charcoal); transition: border-color 0.2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--rust); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .submit-btn { background: var(--black); color: var(--paper); padding: 1.2rem; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; }
.contact-form .submit-btn:hover { background: var(--rust); }

/* ===== ABOUT PAGE ===== */
.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.story-aside { background: var(--bone); padding: 2.5rem; border-left: 4px solid var(--rust); position: sticky; top: 100px; }
.story-aside .label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 0.8rem; }
.story-aside h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.02em; margin-bottom: 1.5rem; line-height: 1.1; }
.story-aside .fact { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px dashed rgba(0,0,0,0.15); font-size: 0.92rem; gap: 1rem; }
.story-aside .fact:last-child { border-bottom: none; }
.story-aside .fact strong { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; font-size: 1rem; color: var(--black); }
.story-aside .fact span { color: var(--concrete); text-align: right; }
.story-content p { font-size: 1.05rem; margin-bottom: 1.5rem; color: var(--charcoal); line-height: 1.7; }
.story-content p.dropcap::first-letter { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; float: left; line-height: 0.9; margin: 0.1em 0.2em 0 0; color: var(--rust); }
.pullquote { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--black); border-left: 4px solid var(--safety); padding: 0.5rem 0 0.5rem 1.5rem; margin: 2.5rem 0; }

/* ===== TIMELINE ===== */
.timeline-section { background: var(--black); color: var(--bone); position: relative; overflow: hidden; }
.timeline-section::before {
  content: 'TWENTY YEARS';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18vw;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
}
.timeline-section .section-title { color: var(--bone); }
.timeline-section .section-eyebrow { color: var(--safety); }
.timeline-section .section-eyebrow::before { background: var(--safety); }
.timeline-list { margin-top: 4rem; position: relative; z-index: 2; max-width: 900px; margin-left: auto; margin-right: auto; }
.timeline-item { display: grid; grid-template-columns: 130px 1fr; gap: 2.5rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); align-items: start; }
.timeline-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--safety); letter-spacing: 0.02em; line-height: 1; }
.timeline-content h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.02em; margin-bottom: 0.5rem; color: var(--bone); }
.timeline-content p { color: rgba(232,228,220,0.7); font-size: 0.95rem; line-height: 1.6; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 4rem; }
.value-card { background: var(--bone); padding: 2.5rem; border: 1px solid rgba(0,0,0,0.06); position: relative; transition: all 0.3s ease; }
.value-card:hover { transform: translateY(-4px); border-color: var(--rust); }
.value-icon { width: 56px; height: 56px; background: var(--black); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; position: relative; }
.value-icon::before { content: ''; position: absolute; inset: 4px; border: 2px solid var(--safety); }
.value-icon span { font-family: 'Bebas Neue', sans-serif; color: var(--safety); font-size: 1.3rem; position: relative; z-index: 1; }
.value-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.02em; margin-bottom: 0.8rem; color: var(--black); }
.value-card p { color: var(--concrete); font-size: 0.95rem; line-height: 1.6; }

/* ===== SERVICES PAGE - DETAIL SECTIONS ===== */
.service-detail { padding: 6rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.service-detail:nth-child(even) { background: var(--bone); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.service-detail-grid.reverse { grid-template-columns: 1.2fr 1fr; }
.service-detail-grid.reverse .service-detail-content { order: 2; }
.service-detail-grid.reverse .service-detail-visual { order: 1; }
.service-detail-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); line-height: 1; letter-spacing: 0.01em; margin-bottom: 1.5rem; color: var(--black); }
.service-detail-content > p { color: var(--charcoal); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.service-features { list-style: none; padding: 0; margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; }
.service-features li { padding: 0.6rem 0; font-size: 0.95rem; color: var(--charcoal); border-bottom: 1px dashed rgba(0,0,0,0.1); display: flex; align-items: center; gap: 0.5rem; }
.service-features li::before { content: '▪'; color: var(--rust); font-weight: bold; font-size: 1.2rem; }
.service-detail-visual {
  position: relative;
  min-height: 500px;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 2rem;
}
.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-detail-visual.workforce::before { background: linear-gradient(135deg, #1a3a4a 0%, #2a5a6a 50%, #1a2a3a 100%); }
.service-detail-visual.modular::before { background: linear-gradient(135deg, #3a2a1a 0%, #6a4a3a 50%, #2a1a0a 100%); }
.service-detail-visual.logistics::before { background: linear-gradient(135deg, #2a3a2a 0%, #4a5a3a 50%, #1a2a1a 100%); }
.service-detail-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.9) 100%);
  z-index: 1;
}
.service-detail-visual .visual-tag { position: relative; z-index: 2; color: var(--bone); }
.service-detail-visual .visual-tag-eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--safety); margin-bottom: 0.5rem; font-weight: 700; }
.service-detail-visual .visual-tag h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.02em; }
.service-tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.service-tag { background: rgba(200,75,26,0.1); color: var(--rust); padding: 0.4rem 0.9rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--rust); }

/* ===== PROCESS STEPS ===== */
.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 4rem; counter-reset: step; }
.process-step { padding: 2rem; background: var(--bone); position: relative; counter-increment: step; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--rust);
  line-height: 1;
  opacity: 0.3;
}
.process-step h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.02em; margin-bottom: 0.7rem; color: var(--black); }
.process-step p { color: var(--concrete); font-size: 0.92rem; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--bone); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.footer h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; font-size: 1rem; color: var(--safety); margin-bottom: 1.2rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer ul li a { color: rgba(232,228,220,0.7); text-decoration: none; transition: color 0.2s; }
.footer ul li a:hover { color: var(--safety); }
.footer-brand .logo img { height: 40px; filter: invert(1) brightness(1.1); }
.footer-brand p { color: rgba(232,228,220,0.6); font-size: 0.9rem; margin-top: 1rem; max-width: 320px; line-height: 1.6; }
.footer-bottom { max-width: var(--max-width); margin: 3rem auto 0; padding: 2rem 2rem 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(232,228,220,0.5); letter-spacing: 0.05em; }
.footer-bottom a { color: rgba(232,228,220,0.7); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero-video { min-height: auto; padding: 4rem 0 3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .project.large, .project.medium, .project.small { grid-column: span 12; }
  .coverage-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; grid-template-columns: 1fr; }
  .contact-form .full { grid-column: span 1; }
  section { padding: 4rem 0; }
  .topbar-locations { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-aside { position: static; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 1.5rem; }
  .timeline-year { font-size: 1.8rem; }
  .service-detail-grid, .service-detail-grid.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid.reverse .service-detail-content { order: 2; }
  .service-detail-grid.reverse .service-detail-visual { order: 1; }
  .service-features { grid-template-columns: 1fr; }
  .service-detail-visual { min-height: 280px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .logo-tag { display: none; }
}
