/* Version 2 — Clean Modern ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blk: #111111;
  --dk:  #222222;
  --org: #F05A1A;
  --orh: #D94D10;
  --wht: #FFFFFF;
  --lt:  #FAFAFA;
  --crm: #F7F3EF;
  --gr:  #666666;
  --bdr: #E8E3DE;
  --fh:  'Montserrat', sans-serif;
  --fb:  'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--wht); color: var(--blk); font-family: var(--fb); font-size: 16px; line-height: 1.65; }
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: .9rem 2.2rem; font-family: var(--fh);
  font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 2px; 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); }
.btn-blk  { background: var(--blk); color: var(--wht); border-color: var(--blk); }
.btn-blk:hover { background: var(--org); border-color: var(--org); }
.btn-out  { background: transparent; color: var(--blk); border-color: var(--blk); }
.btn-out:hover { background: var(--blk); color: var(--wht); }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: var(--wht); border-bottom: 1px solid var(--bdr);
  padding: .65rem 0; transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.1); }
.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: 108px; width: auto; }
.nav-menu { display: flex; align-items: center; list-style: none; gap: .15rem; }
.nav-menu a {
  display: block; padding: .45rem .9rem; font-family: var(--fh);
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blk); border-radius: 2px; font-weight: 600; transition: color .2s;
}
.nav-menu a:hover { color: var(--org); }
.nav-sep { width: 1px; height: 18px; background: var(--bdr); margin: 0 .4rem; }
.nav-v { border: 1px solid var(--bdr) !important; font-size: .7rem !important; padding: .38rem .75rem !important; }
.nav-v.cur { background: var(--org) !important; border-color: var(--org) !important; color: var(--wht) !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(--blk); 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,.4); z-index: 998; }
.nav-overlay.active { display: block; }

/* HERO — split: left text, right image */
.hero { padding-top: 72px; min-height: 92vh; display: flex; align-items: stretch; background: var(--crm); }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(92vh - 72px); }
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 2rem; max-width: 640px; margin-left: auto;
}
.hero-eye {
  font-family: var(--fh); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--org); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--fh); font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.08;
  color: var(--blk); margin-bottom: 1rem;
}
.hero h1 span { color: var(--org); }
.hero-rule { width: 60px; height: 4px; background: var(--org); margin: 1.25rem 0; }
.hero-sub { font-size: 1.05rem; color: var(--gr); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }

/* TRUST BAR */
.trust-bar { background: var(--blk); padding: 1.4rem 0; }
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--fh); font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
.trust-item span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--org); flex-shrink: 0; }

/* SERVICES */
.services { padding: 7rem 0; background: var(--wht); }
.sh { text-align: center; margin-bottom: 4rem; }
.sh-label {
  font-family: var(--fh); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--org); margin-bottom: .75rem;
}
.sh h2 {
  font-family: var(--fh); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--blk); margin-bottom: .75rem;
}
.sh p { font-size: 1rem; color: var(--gr); max-width: 560px; margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.svc-card {
  background: var(--wht); border: 1px solid var(--bdr);
  border-top: 4px solid var(--org); border-radius: 3px; padding: 2.75rem 2rem;
  transition: box-shadow .3s, transform .3s;
}
.svc-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); transform: translateY(-4px); }
.svc-icon { margin-bottom: 1.5rem; }
.svc-icon svg { width: 44px; height: 44px; }
.svc-card h3 {
  font-family: var(--fh); font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em; color: var(--blk); margin-bottom: .75rem;
}
.svc-card p { font-size: .94rem; color: var(--gr); line-height: 1.75; }

/* GALLERY PREVIEW — 3-across strip */
.gp { padding: 7rem 0; background: var(--crm); }
.gp-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; height: 320px; }
.gp-item {
  background-size: cover; background-position: center; border-radius: 3px; overflow: hidden;
  display: block; position: relative; transition: transform .35s;
}
.gp-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .3s;
}
.gp-item:hover { transform: scale(1.02); }
.gp-item:hover::after { background: rgba(240,90,26,.18); }
.gp-more { text-align: center; margin-top: 2.5rem; }

/* ABOUT */
.about { padding: 7rem 0; background: var(--wht); }
.ab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.ab-img { position: relative; }
.ab-img img { width: 100%; border-radius: 3px; }
.ab-img::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 3px solid var(--org); border-radius: 3px; z-index: -1;
}
.ab-txt { max-width: 520px; }
.ab-txt .sh-label { text-align: left; margin-bottom: .5rem; }
.ab-txt h2 {
  font-family: var(--fh); font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--blk);
  margin-bottom: 1.75rem; line-height: 1.15;
}
.ab-txt p { color: var(--gr); margin-bottom: 1.25rem; line-height: 1.8; }
.ab-txt .btn { margin-top: .75rem; }

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

/* CTA */
.cta-band { padding: 7rem 0; background: var(--org); }
.cta-in { text-align: center; }
.cta-in h2 {
  font-family: var(--fh); font-weight: 800;
  font-size: clamp(1.8rem,4vw,2.8rem); color: var(--wht); margin-bottom: .75rem;
}
.cta-in p { font-size: 1.1rem; color: rgba(255,255,255,.9); margin-bottom: 2.25rem; }
.cta-in .tel { text-decoration: underline; font-weight: 700; color: var(--wht); }

/* FOOTER */
.footer { background: var(--dk); color: var(--wht); 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: .8rem; font-weight: 700; color: var(--org); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.ft-brand p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer h4 { font-family: var(--fh); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--org); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .55rem; }
.footer ul li a { font-size: .88rem; color: rgba(255,255,255,.55); 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: rgba(255,255,255,.55); margin-bottom: .4rem; }
.ft-ct a { color: rgba(255,255,255,.55); 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: rgba(255,255,255,.3); }

/* 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,.92); }
.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; border-radius: 3px; }
.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,.12); border: none; color: #fff; font-size: 2.5rem; padding: .5rem .9rem; cursor: pointer; border-radius: 3px; 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: rgba(255,255,255,.55); white-space: nowrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-left { padding: 4rem 2.5rem 4rem 1.5rem; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
    background: var(--wht); flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 2rem; gap: .5rem; z-index: 999; transition: right .3s;
    border-left: 1px solid var(--bdr);
  }
  .nav-menu a { color: var(--blk); }
  .nav-menu.open { right: 0; }
  .nav-sep { display: none; }
  .hero-split { display: flex; flex-direction: column; }
  .hero-right { display: block; order: -1; height: 55vh; min-height: 260px; flex-shrink: 0; }
  .hero-left { padding: 3rem 1.5rem; max-width: 100%; margin: 0; order: 1; }
  .hero { min-height: auto; padding-top: 108px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gp-strip { height: auto; grid-template-rows: repeat(3,200px); }
  .ab-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ab-img::before { display: none; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-inner { gap: 1.5rem; justify-content: flex-start; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .gp-strip { grid-template-columns: 1fr; grid-template-rows: repeat(3,180px); }
  .lb-arrow { display: none; }
}
