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

:root {
  --yellow: #ffde17;
  --yellow-dark: #e8c800;
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --steel: #2b2b2b;
  --iron: #3d3d3d;
  --smoke: #a0a0a0;
  --ash: #e2e2e2;
  --offwhite: #f5f3ef;
  --white: #ffffff;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-sub: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  background-color: var(--black);
  color: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ──────────────────────────────────────────── */
.site-header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  inset: 0;
  background-color: var(--steel);
  overflow: hidden;
}

.header-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay over the header photo */
.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

/* Yellow top stripe */
.header-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
  z-index: 10;
}

/* Caution tape diagonal pattern on left edge */
.caution-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0px,
    var(--yellow) 10px,
    var(--black) 10px,
    var(--black) 20px
  );
  z-index: 10;
  opacity: 0.85;
}

/* ── unified top bar: logo left, nav right ── */
.header-topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px 0 48px;
}

.header-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--yellow); }

/* hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 30;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ash);
  transition: transform 0.25s, opacity 0.25s;
}

.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 nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.97);
  z-index: 25;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--yellow); }

/* hero content area — badges + CTA at bottom */
.header-content {
  position: relative;
  z-index: 20;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 48px 64px 48px;
}

.header-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-logo-wrap svg {
  width: 420px;
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(0,0,0,0.7));
}

/* Invert the dark fills to white in header */
.header-logo-wrap svg .cls-2,
.header-logo-wrap svg .cls-3,
.header-logo-wrap svg .cls-4 {
  fill: #fff !important;
}


.header-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1.5px solid;
}

.badge-yellow {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.badge-outline {
  color: var(--ash);
  background: transparent;
  border-color: rgba(255,255,255,0.35);
}

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

.btn-primary {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 14px 32px;
  text-decoration: none;
  border: 2px solid var(--yellow);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn-ghost {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 14px 32px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ─── TICKER STRIP ────────────────────────────────────── */
.ticker-strip {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-inner span {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 40px;
}

.ticker-inner .sep {
  color: rgba(0,0,0,0.35);
  padding: 0 4px;
  letter-spacing: 0;
}

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

/* ─── ABOUT / INTRO ───────────────────────────────────── */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

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

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

.about-text p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--offwhite);
  margin-bottom: 20px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--steel);
}

.stat-row:first-child { border-top: 1px solid var(--steel); }

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  width: 130px;
  flex-shrink: 0;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ash);
  line-height: 1.45;
}

/* ─── SERVICES ────────────────────────────────────────── */
.section-dark {
  background: var(--charcoal);
}

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

.service-card {
  background: var(--steel);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--yellow);
  transition: height 0.3s ease;
}

.service-card:hover { background: var(--iron); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--yellow);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.975rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ash);
}

/* ─── PROJECTS ────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.project-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

/* ─── BIDS / CTA BAND ─────────────────────────────────── */
.bid-band {
  background: var(--yellow);
  padding: 56px 0;
}

.bid-band-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bid-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
}

.bid-band p {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(0,0,0,0.7);
  margin-top: 8px;
  max-width: 480px;
}

.btn-black {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--black);
  padding: 16px 40px;
  text-decoration: none;
  border: 2px solid var(--black);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-block;
}

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

/* ─── CREDENTIALS ─────────────────────────────────────── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.cred-card {
  background: var(--charcoal);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-icon {
  width: 40px;
  height: 40px;
  color: var(--yellow);
}

.cred-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.cred-desc {
  font-size: 0.975rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ash);
}

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-section {
  background: var(--charcoal);
  padding: 80px 0;
}

.contact-email-cta {
  margin-top: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--steel);
  background: rgba(13, 13, 13, 0.85);
}

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

.contact-item:first-child { border-top: 1px solid var(--steel); }

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  color: var(--black);
}

.contact-detail-label {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-detail-value:hover { color: var(--yellow); }

.contact-owner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-owner-photo img {
  display: block;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.contact-owner-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-owner-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

.contact-owner-subtitle {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}

.contact-owner-copy p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ash);
  margin: 0;
}


/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 48px 0;
  border-top: 1px solid var(--steel);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--steel);
  padding-top: 24px;
}

.footer-logo svg {
  width: 270px;
  height: auto;
}

.footer-logo img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.footer-logo svg .cls-2,
.footer-logo svg .cls-3,
.footer-logo svg .cls-4 {
  fill: var(--smoke) !important;
}

.footer-copy {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--smoke);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 700px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-topbar { padding: 20px 24px 0 24px; }
  .header-logo-wrap svg { width: 280px; }
  .header-content { padding: 0 24px 48px 24px; }
}

@media (max-width: 600px) {
  .services-grid,
  .projects-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .bid-band-inner { flex-direction: column; }
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
