@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C8982A; --gold-l: #E4B84A;
  --dark: #0D0D0D; --dark2: #141414; --dark3: #1C1C1C; --slate: #2A2A2A;
  --white: #F5F2EC; --muted: #888880; --border: rgba(200,152,42,0.2);
}
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'Barlow', sans-serif; font-weight: 300; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* TOPBAR */
.topbar { background: var(--dark2); border-bottom: 1px solid var(--border); padding: 9px 64px; display: flex; justify-content: flex-end; gap: 32px; font-size: 12px; letter-spacing: .08em; color: var(--muted); }
.topbar a { color: var(--muted); transition: color .2s; white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.topbar a:hover { color: var(--gold); }
.topbar span { color: var(--gold); }

/* NAV */
nav { position: sticky; top: 0; z-index: 200; background: rgba(13,13,13,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 64px; height: 72px; }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .1em; color: var(--white); display: flex; align-items: center; gap: 12px; }
.logo-box { width: 34px; height: 34px; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; transform: rotate(45deg); flex-shrink: 0; font-family: 'Bebas Neue', sans-serif; }
.logo-box span { transform: rotate(-45deg); display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; position: relative; padding-bottom: 3px; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 9px 22px !important; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-l) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--gold); display: block; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,13,13,.98); z-index: 300; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: .1em; color: var(--white); transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--gold); font-size: 32px; cursor: pointer; }

/* BUTTONS */
.btn-gold { background: var(--gold); color: var(--dark); padding: 15px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; display: inline-block; transition: all .3s; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,152,42,.35); }
.btn-outline { border: 1px solid rgba(245,242,236,.3); color: var(--white); padding: 15px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; display: inline-block; transition: all .3s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--dark); color: var(--white); padding: 16px 40px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; display: inline-block; transition: all .3s; border: none; cursor: pointer; }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

/* SHARED */
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
h2.sec-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,5vw,64px); line-height: 1; letter-spacing: .03em; margin-bottom: 16px; }
.sec-body { font-size: 15px; color: rgba(245,242,236,.62); line-height: 1.95; }

/* STRIP */
.strip { background: var(--gold); padding: 18px 64px; display: flex; gap: 40px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
.strip-item { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.strip-dot { width: 5px; height: 5px; background: var(--dark); border-radius: 50%; opacity: .3; }

/* PAGE HERO */
.page-hero { position: relative; padding: 100px 64px 80px; background: var(--dark2); border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(200,152,42,.04) 1px,transparent 1px),linear-gradient(rgba(200,152,42,.04) 1px,transparent 1px); background-size: 60px 60px; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px,7vw,90px); line-height: .95; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: 16px; color: rgba(245,242,236,.6); max-width: 540px; }

/* STATS */
.stats-bar { background: var(--gold); display: grid; grid-template-columns: repeat(3,1fr); }
.stat-box { padding: 48px 32px; text-align: center; border-right: 1px solid rgba(13,13,13,.15); }
.stat-box:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--dark); line-height: 1; }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(13,13,13,.6); margin-top: 4px; }

/* CTA BAND */
.cta-band { background: var(--gold); padding: 70px 64px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px,4vw,56px); color: var(--dark); line-height: 1; }
.cta-band p { color: rgba(13,13,13,.6); font-size: 15px; margin-top: 8px; }

/* FOOTER */
footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 72px 64px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .12em; color: var(--white); display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 320px; margin-bottom: 20px; }
footer h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul a { color: var(--muted); font-size: 13px; transition: color .2s; }
footer ul a:hover { color: var(--white); }
.social-row { display: flex; gap: 8px; margin-top: 14px; }
.soc-btn { width: 34px; height: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 11px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; transition: all .2s; }
.soc-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 10px; }

/* WA FAB */
.wa-fab { position: fixed; bottom: 28px; right: 28px; background: #25D366; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,.45); z-index: 999; transition: transform .2s; }
.wa-fab:hover { transform: scale(1.1); }

/* MOBILE CARDS */
@media(hover: none) {
  .svc-card.mobile-active img, .proj-card.mobile-active img { transform: scale(1.06); }
  .svc-card.mobile-active .svc-ov, .proj-card.mobile-active .proj-ov { background: linear-gradient(to top,rgba(13,13,13,.97) 0%,rgba(13,13,13,.35) 60%); }
  .svc-card.mobile-active .svc-desc, .proj-card.mobile-active .proj-detail { max-height: 80px; }
  .why-card.mobile-active { background: var(--slate); }
  .why-card.mobile-active::before { transform: scaleX(1); }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media(max-width:960px) {
  .topbar { padding: 8px 16px; gap: 16px; flex-wrap: nowrap; justify-content: space-between; }
  .topbar a { font-size: 11px; }
  nav, .page-hero, .strip, .cta-band, footer { padding-left: 24px; padding-right: 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(13,13,13,.15); padding: 32px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media(max-width:540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
