:root {
  --gold: #D9691E;
  --gold-light: #EA8B44;
  --black: #090909;
  --dark: #111111;
  --dark2: #181818;
  --white: #ffffff;
  --gray: #777777;
  --light: #bbbbbb;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 72px; transition: all .35s ease;
}
nav.scrolled {
  background: rgba(9,9,9,.96); backdrop-filter: blur(12px);
  padding: 14px 72px; border-bottom: 1px solid rgba(217,105,30,.18);
}
.nav-logo img { height: 32px; display: block; }
@media (orientation: portrait) { .nav-logo img { height: 24px; } }
@media (orientation: landscape) and (max-height: 768px) { .nav-logo img { height: 24px; } }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--light); text-decoration: none;
  font-size: .88rem; font-weight: 500; letter-spacing: .4px;
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.spy-active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 9px 22px; border-radius: 3px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta.spy-active { color: var(--black) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  --hero-gold: #B8813F;
  --hero-gold-light: #D6A768;
  --hero-black: #0C0A08;
  --hero-cream: #F7F2EA;
  --hero-gray: #948573;
  --hero-light: #D8CBB9;
  min-height: 100vh; position: relative;
  display: flex; align-items: center; padding: 0 72px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; opacity: .95; filter: brightness(1.35) saturate(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,10,8,.88) 0%, rgba(20,14,9,.6) 32%, rgba(20,14,9,.1) 62%, transparent 82%),
    linear-gradient(to top, rgba(12,10,8,.7) 0%, rgba(12,10,8,.05) 45%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow {
  display: block; font-size: .8rem; color: var(--hero-gold-light);
  letter-spacing: .5px; font-weight: 500; margin-bottom: 22px;
}
.hero-content h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3rem, 6.4vw, 5rem);
  font-weight: 700; line-height: .98; letter-spacing: -2.5px;
  margin-bottom: 26px; color: var(--hero-cream);
}
.hero-content h1 span { color: var(--hero-gold-light); }
.hero-desc { font-size: .93rem; color: var(--hero-gray); line-height: 1.75; max-width: 440px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
#hero .btn-gold {
  background: var(--hero-cream); color: var(--hero-black);
  padding: 14px 30px; border: none; border-radius: 999px;
  font-size: .86rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background .3s, transform .2s;
}
#hero .btn-gold:hover { background: var(--hero-gold-light); transform: translateY(-2px); }
#hero .btn-ghost {
  background: transparent; color: var(--hero-cream);
  padding: 14px 30px; border: 1px solid rgba(247,242,234,.28);
  border-radius: 999px; font-size: .86rem; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .3s, color .3s;
}
#hero .btn-ghost:hover { border-color: var(--hero-gold-light); color: var(--hero-gold-light); }
.scroll-hint {
  position: absolute; bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--hero-gray); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--hero-gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ── SHARED SECTION ── */
section { padding: 100px 72px; }
.tag {
  display: inline-block; color: var(--gold);
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 14px;
}
.sec-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 18px;
}
.sec-title span { color: var(--gold); }
.gold-line { width: 52px; height: 3px; background: var(--gold); margin-bottom: 28px; }
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── ABOUT ── */
#about { background: var(--dark); display: flex; gap: 80px; align-items: center; }
.about-text { flex: 1; }
.about-img { flex: 1; position: relative; }
.about-img img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 2px; display: block;
}
.about-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 35%);
  z-index: 1; pointer-events: none;
}
.about-desc { font-size: .97rem; color: var(--light); line-height: 1.85; margin-bottom: 36px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--light); line-height: 1.5; }
.check-dot {
  width: 20px; height: 20px; background: var(--gold); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-dot::after { content: '✓'; color: var(--black); font-size: 10px; font-weight: 800; }
.checklist strong { color: var(--white); }

/* ── SERVICES ── */
#services { background: var(--black); }
.services-head { text-align: center; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.svc-card {
  background: var(--dark); padding: 48px 36px;
  border: 1px solid #1c1c1c; position: relative; overflow: hidden;
  transition: transform .35s, background .35s;
}
.svc-card:hover { background: #161616; transform: translateY(-5px); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transition: transform .4s ease; transform-origin: left;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  font-family: 'League Spartan', sans-serif; font-size: 3.5rem;
  font-weight: 900; color: rgba(217,105,30,.12); line-height: 1;
  margin-bottom: 20px;
}
.svc-icon {
  width: 52px; height: 52px; border: 1.5px solid var(--gold);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.svc-title {
  font-family: 'League Spartan', sans-serif; font-size: 1.1rem;
  font-weight: 800; margin-bottom: 10px;
}
.svc-tagline { font-size: .8rem; color: var(--gold); font-weight: 600; margin-bottom: 14px; letter-spacing: .3px; }
.svc-desc { font-size: .88rem; color: var(--gray); line-height: 1.75; }

/* ── PROCESS ── */
#process { background: var(--dark); position: relative; overflow: hidden; }
.process-bg {
  position: absolute; inset: 0;
  background: url('/images/how-we-work-bg.png') center/cover no-repeat;
  opacity: .06;
}
.process-head { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }
.process-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 40px 60px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
.proc-card { display: flex; gap: 20px; align-items: flex-start; }
.proc-num {
  width: 52px; height: 52px; background: var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'League Spartan', sans-serif; font-size: 1.35rem; font-weight: 900;
  color: var(--black); border-radius: 3px;
}
.proc-body h3 {
  font-family: 'League Spartan', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 11px 18px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09); border-radius: 3px;
  margin-bottom: 12px;
}
.proc-body p { font-size: .87rem; color: var(--gray); line-height: 1.72; padding: 0 2px; }

/* ── EXPERIENCE ── */
#experience { background: var(--black); }
.exp-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.exp-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.exp-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .93rem; color: var(--light); font-weight: 500; line-height: 1.5;
  padding: 16px 18px; border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.03); border-radius: 0 3px 3px 0;
  transition: background .3s, color .3s;
}
.exp-list li:hover { background: rgba(217,105,30,.08); color: var(--white); }
.arr { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.exp-img img {
  width: 100%; height: 580px; object-fit: cover;
  border-radius: 2px; display: block;
}

/* ── PROJECTS ── */
#projects { background: var(--dark); padding: 100px 0; }
.proj-head { text-align: center; padding: 0 72px; margin-bottom: 52px; }
.proj-filters {
  display: flex; justify-content: center; gap: 8px;
  flex-wrap: wrap; padding: 0 72px; margin-bottom: 56px;
}
.filter-btn {
  padding: 8px 20px; border: 1px solid rgba(255,255,255,.14);
  background: transparent; color: var(--gray);
  font-family: 'Poppins', sans-serif; font-size: .83rem; font-weight: 500;
  cursor: pointer; border-radius: 3px; transition: all .3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--black); font-weight: 700;
}
.proj-grid { padding: 0 72px; }
.proj-item {
  margin-bottom: 64px;
  transition: opacity .3s ease, transform .3s ease;
}
.proj-photos { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-bottom: 18px; }
.proj-photo { aspect-ratio: 16/10; overflow: hidden; cursor: pointer; }
.proj-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s;
  animation: projBreathe 7s ease-in-out infinite;
}
.proj-photo:nth-child(2) img { animation-delay: -1.7s; }
.proj-photo:nth-child(3) img { animation-delay: -3.4s; }
.proj-photo:nth-child(4) img { animation-delay: -5.1s; }
.proj-photo:hover img { animation-play-state: paused; transform: scale(1.06); }
@keyframes projBreathe {
  0%, 100% { filter: brightness(1) saturate(1); }
  50% { filter: brightness(1.1) saturate(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .proj-photo img { animation: none; }
}
.proj-meta {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid #1e1e1e;
}
.proj-meta h3 {
  font-family: 'League Spartan', sans-serif; font-size: .93rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--white);
}
.proj-meta .sub { font-size: .78rem; color: var(--gray); margin-top: 2px; }
.proj-divider { width: 3px; height: 38px; background: var(--gold); flex-shrink: 0; }
.proj-type { font-size: .85rem; color: var(--light); font-weight: 500; }

/* ── CLIENTS ── */
#clients { background: var(--black); }
.clients-head { text-align: center; margin-bottom: 60px; }
.clients-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.clients-track {
  display: flex; width: max-content;
  animation: clientsScroll 42s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.client-cell {
  background: var(--dark); padding: 28px 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #191919; transition: background .3s;
  flex-shrink: 0; width: 190px; height: 96px;
}
.client-cell:hover { background: var(--dark2); }
.client-cell img {
  max-width: 110px; max-height: 46px; width: 100%; height: 100%;
  object-fit: contain;
}
@keyframes clientsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--dark); }
.testimonials-head { text-align: center; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--black); border: 1px solid #1c1c1c; border-radius: 2px;
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: transform .35s, background .35s;
}
.testi-card:hover { background: #0d0d0d; transform: translateY(-4px); }
.testi-card::before {
  content: '\201C';
  position: absolute; top: 12px; right: 20px;
  font-size: 6rem; color: rgba(217,105,30,.07);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.testi-stars { color: var(--gold); font-size: .95rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-quote {
  font-size: .9rem; color: var(--light); line-height: 1.82;
  font-style: italic; margin-bottom: 26px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-bar { width: 32px; height: 2px; background: var(--gold); flex-shrink: 0; }
.testi-name { font-size: .82rem; color: var(--gray); line-height: 1.5; }
.testi-name strong { color: var(--white); display: block; font-style: normal; margin-bottom: 2px; }

/* ── ASSETS ── */
#assets { background: var(--black); }
.assets-head { text-align: center; margin-bottom: 72px; }
.asset-cat { margin-bottom: 72px; }
.asset-cat-title {
  font-family: 'League Spartan', sans-serif; font-size: 1.4rem;
  font-weight: 800; color: var(--gold); margin-bottom: 4px;
}
.asset-cat-sub {
  font-size: .75rem; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 32px;
}
.asset-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.asset-card { position: relative; overflow: hidden; }
.asset-card img {
  width: 100%; height: 270px; object-fit: cover;
  display: block; transition: transform .5s;
}
.asset-card:hover img { transform: scale(1.05); }
.asset-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.92), transparent);
}
.asset-pill {
  display: inline-block; padding: 7px 16px;
  border: 1px solid var(--gold); color: var(--white);
  font-size: .8rem; font-weight: 500; border-radius: 30px;
}

/* ── TEAM ── */
#team { background: var(--dark); display: flex; gap: 72px; align-items: center; }
.team-img { flex: 1.15; }
.team-img img {
  width: 100%; height: 500px; object-fit: cover;
  object-position: center top; border-radius: 2px; display: block;
}
.team-text { flex: 1; }
.team-desc { font-size: .97rem; color: var(--light); line-height: 1.85; margin-bottom: 44px; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat {
  text-align: center; padding: 24px 12px;
  background: rgba(217,105,30,.07);
  border: 1px solid rgba(217,105,30,.2); border-radius: 3px;
}
.stat-num {
  font-family: 'League Spartan', sans-serif; font-size: 2.2rem;
  font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-lbl { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ── CONTACT SECTION ── */
#contact { background: var(--black); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info-desc {
  font-size: .95rem; color: var(--light); line-height: 1.82; margin-bottom: 32px;
}
.contact-deets { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-deets li { display: flex; gap: 12px; align-items: center; font-size: .88rem; color: var(--light); }
.cd-icon { color: var(--gold); font-size: 1rem; width: 20px; flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .8rem; color: var(--light); font-weight: 500; letter-spacing: .3px; }
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px; color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: .88rem;
  padding: 12px 14px; transition: border-color .3s, background .3s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); outline: none; background: rgba(217,105,30,.04); }
.form-textarea { height: 130px; resize: vertical; }
.form-select { cursor: pointer; }
.form-select option { background: #1a1a1a; color: var(--white); }
.form-submit {
  width: 100%; margin-top: 6px; padding: 14px;
  font-size: .95rem; letter-spacing: .5px;
}
.form-success {
  display: none; text-align: center;
  padding: 52px 24px;
}
.form-success.visible { display: block; }
.form-success-check {
  width: 68px; height: 68px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--black); font-weight: 900;
  margin: 0 auto 22px;
}
.form-success h3 {
  font-family: 'League Spartan', sans-serif; font-size: 1.5rem;
  font-weight: 800; margin-bottom: 12px;
}
.form-success p { color: var(--gray); font-size: .9rem; line-height: 1.7; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid #1c1c1c; padding: 80px 72px 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo img { height: 52px; display: block; margin-bottom: 20px; }
.footer-desc { font-size: .85rem; color: var(--gray); line-height: 1.8; margin-bottom: 22px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.contact-list li { display: flex; gap: 10px; align-items: center; font-size: .85rem; color: var(--light); }
.cicon { color: var(--gold); font-size: .95rem; }
.social-row { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  color: var(--gray); text-decoration: none; transition: border-color .3s, color .3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 17px; height: 17px; }
.footer-col h4 {
  font-family: 'League Spartan', sans-serif; font-size: .85rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .84rem; color: var(--gray); text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #181818; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-copy, .footer-since { font-size: .78rem; color: var(--gray); }

/* ── FLOATING BUTTONS ── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-btn svg { width: 30px; height: 30px; }
.back-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 800;
  width: 44px; height: 44px; border-radius: 3px;
  background: var(--gold); color: var(--black);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 16px rgba(217,105,30,.35);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }
.back-top svg { width: 20px; height: 20px; }

/* ── 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-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.93); cursor: pointer;
}
.lb-img {
  position: relative; z-index: 2;
  max-width: 88vw; max-height: 82vh;
  object-fit: contain; display: block;
  border-radius: 2px; transition: opacity .2s;
}
.lb-close {
  position: absolute; top: 20px; right: 24px; z-index: 3;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); width: 42px; height: 42px;
  border-radius: 3px; font-size: 1.15rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white); width: 50px; height: 50px;
  border-radius: 3px; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, color .3s;
}
.lb-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  color: var(--gray); font-size: .78rem; letter-spacing: 1.5px;
}

/* ── FADE ANIMATION ── */
.fade { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.fade.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE 1100px ── */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding-left: 32px; padding-right: 32px; }
  section { padding: 80px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .client-cell { width: 160px; height: 84px; padding: 22px; }
  .exp-wrap { grid-template-columns: 1fr; }
  .exp-img { display: none; }
  #about { flex-direction: column; }
  .about-img::before { background: linear-gradient(to bottom, var(--dark) 0%, transparent 30%); }
  #team { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .proj-head, .proj-filters, .proj-grid { padding-left: 32px; padding-right: 32px; }
}

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(9,9,9,.98); padding: 24px 32px; gap: 20px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  #hero { padding: 0 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-gold, .hero-btns .btn-ghost { width: 100%; text-align: center; }
  section { padding: 72px 24px; }
  .proj-head, .proj-filters, .proj-grid { padding-left: 24px; padding-right: 24px; }
  .proj-photos { grid-template-columns: repeat(2,1fr); }
  .client-cell { width: 140px; height: 76px; padding: 18px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .asset-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  footer { padding: 60px 24px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .wa-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .back-top { bottom: 84px; right: 20px; }
  .lb-arrow { width: 42px; height: 42px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-img { max-width: 96vw; max-height: 75vh; }
}

/* ── RESPONSIVE 480px (small phones) ── */
@media (max-width: 480px) {
  .client-cell { width: 120px; height: 68px; padding: 14px; }
  .stats-row { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .stat { padding: 18px 8px; }
  .stat-num { font-size: 1.7rem; }
  .proj-photos { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .asset-cards { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 20px; }
  .scroll-hint { display: none; }
}
