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

:root {
  --black:   #1c1c1c;
  --charcoal:#2e2e2e;
  --steel:   #3d3d3d;
  --mid:     #5a5a5a;
  --dust:    #8a8a8a;
  --off:     #d4d0c8;
  --white:   #f2f0eb;
  --yellow:  #f5c800;
}

html { scroll-behavior: smooth; }

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

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  border-bottom: 4px solid var(--yellow);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dust);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover {
  color: var(--black);
  background: var(--yellow);
}

/* ---- HERO ---- */
.hero {
  background: var(--black);
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Diagonal cut between columns */
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 40px);
  width: 80px;
  background: var(--black);
  clip-path: polygon(40px 0, 100% 0, 60px 100%, 0 100%);
  z-index: 2;
}

.hero-left {
  padding: 5rem 4rem 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

/* Hazard stripe top border */
.hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0, var(--yellow) 20px,
    var(--black) 20px, var(--black) 40px
  );
}

.hero-pty {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.5s ease both;
}
.hero-pty::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--yellow);
  display: block;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.88;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  animation: slideIn 0.5s 0.1s ease both;
}
.hero-title-ex {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: slideIn 0.5s 0.15s ease both;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 3rem;
  animation: slideIn 0.5s 0.2s ease both;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dust);
  border: 1px solid var(--steel);
  padding: 0.3rem 0.65rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--yellow);
  padding: 1rem 2.2rem;
  text-decoration: none;
  width: fit-content;
  transition: background 0.15s, color 0.15s;
  animation: slideIn 0.5s 0.25s ease both;
}
.hero-cta:hover { background: var(--white); }

.hero-right {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-logo-img {
  width: 85%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  animation: fadeIn 0.8s 0.3s ease both;
}

/* ---- TICKER ---- */
.ticker {
  background: var(--yellow);
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;   /* centred when content is short */
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}
.ticker-track {
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  /* start the animation so items are centred on screen */
  will-change: transform;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  color: var(--black);
  padding: 0 2rem;
}
.ticker-sep {
  color: var(--black);
  opacity: 0.45;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
}

/* ---- SERVICES ---- */
#services {
  background: var(--white);
  border-bottom: 3px solid var(--black);
}

.section-header {
  background: var(--black);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 4px solid var(--yellow);
}
.section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--steel);
  line-height: 1;
  flex-shrink: 0;
}
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}
.section-rule {
  flex: 1;
  height: 2px;
  background: var(--steel);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  padding: 2.5rem 2.5rem 3rem;
  border-right: 2px solid var(--off);
  border-bottom: 2px solid var(--off);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  cursor: default;
}
.service-card:nth-child(3n)         { border-right: none; }
.service-card:nth-last-child(-n+3)  { border-bottom: none; }
.service-card:hover                  { background: var(--charcoal); }
.service-card:hover .service-name   { color: var(--yellow); }
.service-card:hover .service-desc   { color: var(--dust); }
.service-card:hover .service-num    { color: var(--steel); }

/* Yellow left-bar on hover */
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--yellow);
  transition: width 0.25s;
}
.service-card:hover::before { width: 4px; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--off);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  transition: color 0.2s;
}
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  transition: color 0.2s;
}

/* ---- ABOUT ---- */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  min-height: 520px;
}
.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-right: 3px solid var(--black);
  background: var(--charcoal);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.15);
  transition: filter 0.4s;
}
.about-img-wrap:hover img { filter: grayscale(0.6) contrast(1.05); }
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 0.5rem 0.9rem;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
}

.about-content {
  background: var(--black);
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0, var(--yellow) 20px,
    var(--black) 20px, var(--black) 40px
  );
}

.about-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--yellow);
}

.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.about-content h2 span { color: var(--yellow); }

.about-content p {
  font-size: 0.95rem;
  color: var(--dust);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 420px;
}

.stat-row {
  display: flex;
  margin-top: 2rem;
  border-top: 1px solid var(--steel);
  padding-top: 1.5rem;
}
.stat {
  flex: 1;
  padding-right: 1.5rem;
  border-right: 1px solid var(--steel);
  margin-right: 1.5rem;
}
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid);
}

/* ---- CONTACT ---- */
#contact {
  background: var(--charcoal);
  padding: 5rem 4rem;
  border-bottom: 4px solid var(--yellow);
}
.contact-inner {
  max-width: 980px;
  margin: 0 auto;
}
.contact-heading-wrap {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
#contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
#contact h2 span { color: var(--yellow); }
.contact-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: var(--dust);
  padding-bottom: 0.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--steel);
  border: 2px solid var(--steel);
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--black);
  padding: 2rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: background 0.2s;
  position: relative;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.contact-card:hover { background: var(--charcoal); }
.contact-card:hover::after { transform: scaleX(1); }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 0.35rem;
}
.contact-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.contact-val:hover { color: var(--yellow); }

.contact-tip {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 580px;
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--steel);
}

.contact-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.12em;
  color: var(--black); background: var(--yellow);
  padding: 0.9rem 2rem; text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--white); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.12em;
  color: var(--white); background: transparent;
  padding: 0.9rem 2rem; text-decoration: none;
  border: 2px solid var(--steel);
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  padding: 1.75rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 4px solid var(--yellow);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo-dot { width: 6px; height: 6px; background: var(--yellow); display: inline-block; }
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  color: var(--steel);
  letter-spacing: 0.06em;
}
.footer-social a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dust); text-decoration: none;
  border: 1px solid var(--steel); padding: 0.45rem 1rem;
  transition: color 0.15s, border-color 0.15s;
}
.footer-social a:hover { color: var(--yellow); border-color: var(--yellow); }

/* ---- ANIMATIONS ---- */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::after { display: none; }
  .hero-right { min-height: 300px; border-top: 4px solid var(--yellow); }
  .hero-left { padding: 4rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n)        { border-right: 2px solid var(--off); }
  .service-card:nth-child(2n)        { border-right: none; }
  .service-card:nth-last-child(-n+3) { border-bottom: 2px solid var(--off); }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }
  #about { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 320px; border-right: none; border-bottom: 3px solid var(--black); }
  .about-content { padding: 3rem 2.5rem; }
  #contact { padding: 3.5rem 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 1.5rem 2.5rem; flex-direction: column; text-align: center; }
  .contact-heading-wrap { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .section-header { padding: 1.5rem 2.5rem; }
}

@media (max-width: 600px) {
  nav { padding: 0 1.25rem; }
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.72rem; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-title { font-size: clamp(4rem, 16vw, 6rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 2px solid var(--off) !important; }
  #contact { padding: 2.5rem 1.5rem; }
  footer { padding: 1.5rem; }
  .stat-row { flex-wrap: wrap; gap: 1.5rem; }
  .stat { border-right: none; margin-right: 0; padding-right: 0; }
  .contact-btns { flex-direction: column; }
}
