/* ============================================
   COARSE STONE CONSULTANT — DESIGN SYSTEM
   Industrial Brutalist + Modern Luxury
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --deep: #111418;
  --steel: #1c2128;
  --slate: #2d3748;
  --iron: #3d4f60;
  --amber: #f59e0b;
  --amber-hot: #fbbf24;
  --amber-dim: #92400e;
  --orange: #ea580c;
  --white: #f8f6f0;
  --muted: #94a3b8;
  --light: #cbd5e1;
  --accent: #22d3ee;
  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --glow: 0 0 40px rgba(245,158,11,0.3);
  --shadow: 0 25px 60px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: var(--black); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
.display { font-family: var(--font-display); letter-spacing: 0.02em; }

a { color: inherit; text-decoration: none; transition: color .2s; }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }

.amber { color: var(--amber); }
.accent { color: var(--accent); }
.muted { color: var(--muted); }

.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  padding: .3rem .8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.section { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }
.section--dark { background: var(--deep); }
.section--steel { background: var(--steel); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--amber);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--amber-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.btn-ghost:hover {
  background: var(--amber);
  color: var(--black);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,158,11,.12);
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,.97);
  border-color: rgba(245,158,11,.25);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
}
.nav-logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; line-height: 1; }
.nav-logo-sub { font-size: .65rem; font-weight: 400; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--light);
  padding: .5rem .9rem;
  border-radius: 3px;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--amber);
  background: rgba(245,158,11,.08);
}

.nav-cta { margin-left: 1rem; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--deep);
  border-bottom: 1px solid rgba(245,158,11,.2);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: .5rem;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--light);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: block;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Canvas for construction scene */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.75) 50%,
    rgba(10,10,10,.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .7s .3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--amber);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .95;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--light);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 1.1s forwards;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: .2rem;
}

/* scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeIn 1s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--amber);
  color: var(--black);
  padding: .75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-item::after {
  content: '◆';
  font-size: .5rem;
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: .75rem;
}
.section-line {
  width: 60px; height: 3px;
  background: var(--amber);
  margin-top: 1rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.06);
}

.service-card {
  background: var(--deep);
  padding: 2.5rem;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { background: var(--steel); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
  filter: grayscale(1) brightness(1.5);
  transition: filter .3s;
}
.service-card:hover .service-icon { filter: none; }

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(245,158,11,.1);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(245,158,11,.2); }

.service-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .75rem;
  letter-spacing: .02em;
}

.service-desc { font-size: .92rem; color: var(--muted); line-height: 1.65; }

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── SECTORS ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sector-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.sector-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  transition: transform .5s ease;
}
.sector-card:hover .sector-bg { transform: scale(1.1); }

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,.3) 0%, rgba(10,10,10,.85) 100%);
  transition: background .3s;
}
.sector-card:hover .sector-overlay {
  background: linear-gradient(160deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.92) 100%);
}

.sector-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
}
.sector-icon-sm { font-size: 1.8rem; margin-bottom: .5rem; }
.sector-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.sector-desc { font-size: .85rem; color: var(--light); opacity: 0; transform: translateY(8px); transition: all .3s; }
.sector-card:hover .sector-desc { opacity: 1; transform: translateY(0); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--steel);
  border-radius: 6px;
  border-left: 3px solid var(--amber);
  transition: transform .25s;
}
.why-point:hover { transform: translateX(4px); }
.why-point-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-point-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.why-point-text span { font-size: .85rem; color: var(--muted); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--amber);
  color: var(--black);
  padding: 4rem 0;
}
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: .3rem;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--steel);
  padding: 2.5rem;
  border-radius: 6px;
  position: relative;
  border-top: 3px solid var(--amber);
}
.testimonial-quote {
  font-size: 4rem;
  color: var(--amber);
  line-height: .5;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  opacity: .5;
}
.testimonial-text { font-size: .95rem; color: var(--light); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: block;
}
.testimonial-author span { font-size: .82rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  background: var(--steel);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 8px;
  padding: 4rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,.12) 0%, transparent 70%);
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner-sub { color: var(--muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ── PAGE BANNER ── */
.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep);
  padding-top: var(--nav-h);
}
.page-banner-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.5) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .95;
  margin-bottom: .75rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span.sep { color: var(--iron); }
.breadcrumb span.cur { color: var(--amber); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--steel);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}
.about-img-tag {
  position: absolute;
  bottom: 2rem; right: 2rem;
  background: var(--amber);
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: 4px;
}
.about-img-tag strong { font-family: var(--font-display); font-size: 2.5rem; display: block; line-height: 1; }
.about-img-tag span { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.about-features { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-feat {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
}
.about-feat::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.06); }
.value-card {
  background: var(--deep);
  padding: 2rem;
  text-align: center;
  transition: background .25s;
}
.value-card:hover { background: var(--steel); }
.value-icon { font-size: 2rem; margin-bottom: .75rem; }
.value-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; }
.value-desc { font-size: .85rem; color: var(--muted); }

/* ── PROJECTS ── */
.projects-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1.4rem;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.15);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245,158,11,.08);
}

.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.project-card {
  background: var(--steel);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.project-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--iron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.project-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--steel) 0%, transparent 100%);
}
.project-info { padding: 1.5rem; }
.project-cat {
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .4rem;
}
.project-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; margin-bottom: .5rem; }
.project-desc { font-size: .88rem; color: var(--muted); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; }
.contact-info-card {
  background: var(--steel);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--amber);
  transition: transform .25s;
}
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-icon { font-size: 1.75rem; flex-shrink: 0; }
.contact-info-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .3rem;
}
.contact-info-value { font-size: .95rem; color: var(--light); line-height: 1.5; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-control {
  background: var(--steel);
  border: 2px solid rgba(255,255,255,.08);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .85rem 1.1rem;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-control:focus { border-color: var(--amber); }
.form-control::placeholder { color: var(--iron); }
select.form-control option { background: var(--steel); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* Map */
.map-embed {
  margin-top: 5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.06);
}
.map-embed iframe { display: block; width: 100%; height: 400px; }

/* ── CAREERS ── */
.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.job-card {
  background: var(--steel);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 2px solid rgba(255,255,255,.05);
  transition: all .25s;
}
.job-card:hover { border-color: var(--amber); transform: translateX(4px); }
.job-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; margin-bottom: .3rem; }
.job-dept { font-size: .85rem; color: var(--muted); }
.job-type {
  background: rgba(245,158,11,.12);
  color: var(--amber);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.why-join-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.why-join-card {
  background: var(--steel);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--amber);
  transition: transform .25s;
}
.why-join-card:hover { transform: translateY(-4px); }
.why-join-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.why-join-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; margin-bottom: .4rem; }
.why-join-desc { font-size: .85rem; color: var(--muted); }

/* ── FOOTER ── */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-about { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.25rem; }
.footer-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .75rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 4px;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.06);
}
.social-btn:hover { background: var(--amber); color: var(--black); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all .2s;
}
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--amber); font-size: 1.1rem; }

.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-icon { font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.footer-contact-text { font-size: .88rem; color: var(--muted); line-height: 1.5; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .85rem;
  color: var(--iron);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom a { color: var(--iron); transition: color .2s; }
.footer-bottom a:hover { color: var(--amber); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .5; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sectors-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 1.5rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .stats-row { gap: 2rem; }
  .section { padding: 4.5rem 0; }
}

/* ── CONSTRUCTION ANIMATION OVERLAY ── */
.construction-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* ══ PROJECT TABLES ══════════════════════════════════ */
.proj-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.07);
}

.proj-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.proj-table thead tr {
  background: var(--amber);
  color: var(--black);
}

.proj-table th {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}

.proj-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: top;
  line-height: 1.55;
}

.proj-table tbody tr {
  background: var(--deep);
  transition: background .2s;
}

.proj-table tbody tr:hover {
  background: var(--steel);
}

.proj-table tbody tr:last-child td {
  border-bottom: none;
}

.proj-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(245,158,11,.3);
  white-space: nowrap;
}

.proj-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  min-width: 180px;
}

.proj-loc {
  font-size: .82rem;
  color: var(--muted);
  white-space: nowrap;
  font-style: italic;
}

.proj-scope {
  color: var(--light);
  font-size: .87rem;
  min-width: 300px;
  max-width: 480px;
}

.proj-mode {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.proj-mode.epc {
  background: rgba(234,88,12,.15);
  color: #fb923c;
  border: 1px solid rgba(234,88,12,.3);
}

.proj-mode.ham {
  background: rgba(34,211,238,.1);
  color: var(--accent);
  border: 1px solid rgba(34,211,238,.25);
}

.proj-cost {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--amber);
  white-space: nowrap;
}

/* ══ TEAM CARDS ══════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--steel);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s, border-color .3s;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,.3);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--iron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

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

.team-info {
  padding: 1.5rem;
  border-top: 3px solid var(--amber);
}

.team-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .2rem;
}

.team-role {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}

.team-exp {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .proj-table { font-size: .82rem; }
  .proj-table th, .proj-table td { padding: .75rem .9rem; }
}
