/* Version 4 — Chevron Geo ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blk: #080808;
  --dk:  #131313;
  --dk2: #1E1E1E;
  --org: #F05A1A;
  --orh: #FF7040;
  --wht: #FFFFFF;
  --lt:  #F4F4F4;
  --gr:  #AAAAAA;
  --fh:  'Bebas Neue', 'Oswald', sans-serif;
  --fb:  'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--wht); color: var(--wht); font-family: var(--fb); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 1rem 2.6rem; font-family: var(--fh);
  font-size: 1.1rem; letter-spacing: .15em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer; transition: all .22s;
}
.btn-org  { background: var(--org); color: var(--wht); border-color: var(--org); }
.btn-org:hover { background: var(--orh); border-color: var(--orh); transform: translateY(-2px); }
.btn-out  { background: transparent; color: var(--wht); border-color: var(--wht); }
.btn-out:hover { background: var(--wht); color: var(--blk); }
.btn-blk  { background: var(--blk); color: var(--wht); border-color: var(--blk); }
.btn-blk:hover { background: var(--org); border-color: var(--org); }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: transparent; padding: .65rem 0;
  transition: background .35s, padding .35s;
}
.nav.scrolled { background: rgba(8,8,8,.98); padding: .45rem 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo img { height: 117px; width: auto; }
.nav-menu { display: flex; align-items: center; list-style: none; gap: .15rem; }
.nav-menu a {
  display: block; padding: .5rem 1rem; font-family: var(--fh);
  font-size: .95rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wht); transition: color .2s;
}
.nav-menu a:hover { color: var(--org); }
.nav-sep { width: 1px; height: 20px; background: rgba(255,255,255,.2); margin: 0 .4rem; }
.nav-v { border: 1px solid rgba(255,255,255,.22) !important; font-size: .82rem !important; padding: .38rem .8rem !important; }
.nav-v.cur { background: var(--org) !important; border-color: var(--org) !important; }
.nav-v:not(.cur):hover { border-color: var(--org) !important; color: var(--org) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--wht); transition: all .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 998; }
.nav-overlay.active { display: block; }

/* HERO — full-bleed with orange diagonal text bar */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 1.6s ease;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.52) 35%, rgba(0,0,0,.12) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 1.5rem; }
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero-text { max-width: 680px; padding-top: 130px; }
.hero-eye {
  font-family: var(--fh); font-size: 1rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--org); margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--fh); font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: .95; text-transform: uppercase; color: var(--wht);
  margin-bottom: 0;
}
.hero h1 em { color: var(--org); font-style: normal; display: block; }

/* Diagonal orange accent bar under heading */
.hero-bar {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 1.8rem 0 2.5rem;
}
.hero-bar::before { content: ''; display: block; width: 70px; height: 4px; background: var(--org); flex-shrink: 0; }
.hero-bar p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 480px; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  z-index: 3; display: flex; flex-direction: column; gap: .5rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3);
  border: none; cursor: pointer; transition: background .3s, transform .3s;
}
.hero-dot.active { background: var(--org); transform: scale(1.4); }

/* SECTION EDGE DIVIDER */
.section-edge {
  height: 48px;
  background: linear-gradient(
    to bottom,
    var(--org) 0,      var(--org) 33.33%,
    #fff       33.33%, #fff       66.67%,
    #000       66.67%, #000       100%
  );
}
.se-down { clip-path: polygon(0 0, 100% 0, 50% 100%); }
.se-up   { clip-path: polygon(0 100%, 50% 0, 100% 100%); }

/* SERVICES — white layout */
.services { background: var(--wht); padding: 6rem 0 5rem; color: var(--blk); }
.sh { text-align: center; margin-bottom: 4rem; }
.sh-num {
  font-family: var(--fh); font-size: 5rem; color: rgba(240,90,26,.55);
  line-height: 1; margin-bottom: -.5rem;
}
.sh h2 {
  font-family: var(--fh); font-size: clamp(2.5rem,6vw,5rem);
  text-transform: uppercase; color: var(--blk); line-height: 1;
}
.sh p { font-size: 1rem; color: #555; max-width: 560px; margin: 1rem auto 0; }
.svc-mob-img { display: none; }
.svc-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.svc-card {
  padding: 3rem 2.5rem; border-right: 1px solid rgba(0,0,0,.09);
  transition: background .3s, box-shadow .3s;
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,.08), 0 0 0 1px rgba(240,90,26,.1);
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: rgba(240,90,26,.04); box-shadow: 0 8px 28px rgba(0,0,0,.13), 0 0 0 1px rgba(240,90,26,.3); }
.svc-num {
  font-family: var(--fh); font-size: 4rem; color: rgba(240,90,26,.65);
  line-height: 1; margin-bottom: .5rem;
}
.svc-icon { margin-bottom: 1.25rem; }
.svc-icon svg { width: 44px; height: 44px; }
.svc-card h3 {
  font-family: var(--fh); font-size: 1.8rem; text-transform: uppercase;
  color: var(--blk); margin-bottom: 1rem; line-height: 1.1;
}
.svc-card p { font-size: .95rem; color: #555; line-height: 1.75; }
.svc-card .svc-line { width: 40px; height: 3px; background: var(--org); margin-bottom: 1.5rem; }

/* GALLERY PREVIEW */
.gp { background: var(--wht); padding: 6rem 0; color: var(--blk); }
.sh-left { text-align: left; margin-bottom: 2.5rem; }
.sh-left h2 {
  font-family: var(--fh); font-size: clamp(2.5rem,6vw,5rem);
  text-transform: uppercase; color: var(--blk); line-height: 1;
}
.sh-left p { font-size: 1rem; color: #555; margin-top: .75rem; }
.gp-flex { display: flex; gap: .6rem; height: 420px; }
.gp-col { display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.gp-item {
  flex: 1; background-size: cover; background-position: center;
  overflow: hidden; display: block; position: relative;
  cursor: pointer; transition: transform .35s;
}
.gp-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.3); transition: background .3s;
}
.gp-item:hover { transform: scale(1.02); z-index: 1; }
.gp-item:hover::after { background: rgba(240,90,26,.3); }
.gp-cta { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; }
.gp-line { flex: 1; height: 1px; background: rgba(0,0,0,.12); }

/* ABOUT */
.about { background: var(--org); padding: 0; }
.ab-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.ab-img { position: relative; overflow: hidden; }
.ab-img img { width: 100%; height: 100%; object-fit: cover; }
.ab-txt {
  padding: 5rem 4rem; display: flex; flex-direction: column;
  justify-content: center; background: var(--wht);
}
.ab-txt .marker {
  font-family: var(--fh); font-size: .9rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--org); margin-bottom: .75rem;
}
.ab-txt h2 {
  font-family: var(--fh); font-size: clamp(2.5rem,5vw,4rem);
  text-transform: uppercase; color: var(--blk); line-height: 1.05;
  margin-bottom: 1.75rem;
}
.ab-txt p { color: #555; margin-bottom: 1.2rem; line-height: 1.8; }
.ab-txt .btn { margin-top: .75rem; align-self: flex-start; }

/* STATS */
.stats { background: var(--org); padding: 4rem 0; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat {
  text-align: center; padding: 2rem 1rem;
  border-right: 1px solid rgba(0,0,0,.15);
}
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--fh); font-size: clamp(3rem,6vw,5rem); color: var(--blk); }
.stat-suf { font-family: var(--fh); font-size: clamp(2rem,4vw,3.5rem); color: var(--blk); }
.stat p { font-family: var(--fh); font-size: .85rem; color: rgba(0,0,0,.65); text-transform: uppercase; letter-spacing: .08em; margin-top: .4rem; }

/* CTA */
.cta-band { background: var(--wht); padding: 7rem 0; color: var(--blk); }
.cta-in { max-width: 800px; }
.cta-in h2 {
  font-family: var(--fh); font-size: clamp(3rem,7vw,6rem);
  text-transform: uppercase; color: var(--blk); line-height: 1;
  margin-bottom: 1rem;
}
.cta-in h2 span { color: var(--org); }
.cta-in p { font-size: 1.1rem; color: #555; margin-bottom: 2.5rem; }
.cta-in .tel { color: var(--org); font-weight: 700; text-decoration: underline; }

/* FOOTER */
.footer { background: var(--dk); padding: 5rem 0 2rem; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.ft-brand img { margin-bottom: 1rem; }
.ft-sl { font-family: var(--fh); font-size: 1rem; color: var(--org); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem; }
.ft-brand p { font-size: .82rem; color: var(--gr); }
.footer h4 { font-family: var(--fh); font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: var(--org); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul li a { font-size: .88rem; color: var(--gr); transition: color .2s; }
.footer ul li a:hover { color: var(--wht); }
.ft-v-cur { color: var(--org) !important; font-weight: 600; }
.ft-ct p { font-size: .88rem; color: var(--gr); margin-bottom: .4rem; }
.ft-ct a { color: var(--gr); transition: color .2s; }
.ft-ct a:hover { color: var(--org); }
.ft-copy { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; text-align: center; font-size: .8rem; color: var(--gr); }

/* LIGHTBOX */
#lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
#lightbox.active { opacity: 1; pointer-events: all; }
.lb-bg { position: absolute; inset: 0; background: rgba(0,0,0,.95); }
.lb-wrap { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; gap: 1rem; }
.lb-img { max-width: 85vw; max-height: 88vh; object-fit: contain; }
.lb-close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; }
.lb-arrow { background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 2.5rem; padding: .5rem .9rem; cursor: pointer; transition: background .2s; line-height: 1; flex-shrink: 0; }
.lb-arrow:hover { background: var(--org); }
.lb-count { position: absolute; bottom: -2rem; left: 50%; transform: translateX(-50%); font-size: .82rem; color: var(--gr); white-space: nowrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ab-txt { padding: 4rem 2.5rem; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
    background: var(--dk); flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 2rem; gap: .5rem; z-index: 999; transition: right .3s;
  }
  .nav-menu.open { right: 0; }
  .nav-sep { display: none; }
  .hero { height: 65vh; min-height: 400px; }
  .hero-text { padding-top: 90px; }
  .hero h1 { font-size: 3.5rem; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,.09); }
  .svc-card:last-child { border-bottom: none; }
  .svc-mob-img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
    margin-bottom: 1.75rem;
  }
  .gp-flex { flex-direction: column; height: auto; }
  .gp-col { flex-direction: row; height: 180px; }
  .ab-wrap { grid-template-columns: 1fr; }
  .ab-img { height: auto; }
  .ab-img img { height: auto; object-fit: unset; }
  .ab-txt { padding: 3rem 1.5rem; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,.15); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.15); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-in { text-align: center; }
}
@media (max-width: 480px) {
  .hero { height: 60vh; min-height: 340px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .ab-img { height: auto; }
  .gp-col { height: 140px; }
  .lb-arrow { display: none; }
}
