:root{
  --gold:#CAA44A;
  --bg:#101114;
  --bg2:#14161A;

  --paper:#F6F2EA;
  --ink:#14161A;
  --inkMuted:rgba(20,22,26,.70);

  --container:1160px;
  --r14:14px;
  --r18:18px;
  --r24:24px;

  --font:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background:linear-gradient(180deg, var(--bg), var(--bg2));
  color:rgba(255,255,255,.92);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(var(--container), calc(100% - 48px)); margin-inline:auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.scroll-progress{
  position:fixed; inset:0 auto auto 0;
  height:2px; width:0%;
  background:linear-gradient(90deg, var(--gold), rgba(202,164,74,.18));
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:1000;
  background:rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(14px);
  transition:background .2s ease, box-shadow .2s ease;
}
.site-header[data-scrolled="true"]{
  background:rgba(255,255,255,.12);
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}
.nav-wrap{
  display:grid;
  grid-template-columns:1fr auto auto auto;
  align-items:center;
  gap:14px;
  padding:14px 0;
}
.brand-logo{height:34px;width:auto; filter:drop-shadow(0 10px 22px rgba(0,0,0,.22));}

/* Nav */
.nav{display:flex; gap:14px; position:relative; justify-self:center; align-items:center}
.nav-link{
  font-size:.94rem;
  color:rgba(255,255,255,.82);
  padding:10px 10px;
  border-radius:12px;
  transition:background .18s ease, color .18s ease;
}
.nav-link:hover{background:rgba(255,255,255,.08); color:#fff}
.nav-link.is-active{color:#fff}
.nav-underline{
  position:absolute; left:0; bottom:2px;
  height:2px; width:0;
  background:var(--gold);
  border-radius:999px;
  transition:left .22s ease, width .22s ease;
}

.nav-cta{
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  color:#120f08;
  background:var(--gold);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 28px rgba(202,164,74,.12);
}
.nav-cta:hover{filter:brightness(1.06); transform:translateY(-1px)}

/* Mobile */
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(255,255,255,.06);
}
.nav-toggle-lines{
  position:relative; display:block;
  width:18px; height:2px; background:#fff; margin:0 auto;
}
.nav-toggle-lines:before,.nav-toggle-lines:after{
  content:""; position:absolute; left:0;
  width:18px;height:2px;background:#fff;
  transition:transform .2s ease, top .2s ease;
}
.nav-toggle-lines:before{top:-6px}
.nav-toggle-lines:after{top:6px}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines{background:transparent}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines:before{top:0; transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines:after{top:0; transform:rotate(-45deg)}

.mobile-nav{
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(18,20,24,.92);
  backdrop-filter:blur(16px);
}
.mobile-nav-inner{padding:16px 0 18px; display:flex; flex-direction:column; gap:10px}
.mobile-link{
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.mobile-cta{
  padding:14px;
  border-radius:14px;
  background:var(--gold);
  color:#120f08;
  font-weight:900;
}
.mobile-meta{margin-top:6px; display:flex; flex-direction:column; gap:4px; color:rgba(255,255,255,.66)}

/* Hero */
.hero{
  position:relative;
  min-height:84vh;
  display:grid;
  align-items:end;
  padding:44px 0 34px;
}
.hero-bg{position:absolute; inset:0; overflow:hidden}
.hero-bg img{width:100%; height:100%; object-fit:cover; transform:scale(1.04)}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 700px at 30% 20%, rgba(0,0,0,.10), rgba(0,0,0,.56) 60%, rgba(0,0,0,.70)),
    linear-gradient(180deg, rgba(16,17,20,.10), rgba(16,17,20,.55));
}
.hero-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:120px 120px;
  opacity:.14;
}
.hero-inner{position:relative; padding:56px 0 0}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  color:rgba(255,255,255,.82);
}
.kicker-dot{width:8px;height:8px;border-radius:50%; background:var(--gold); box-shadow:0 0 0 6px rgba(202,164,74,.14)}

.hero-title{
  margin:18px 0 0;
  font-size:clamp(2.1rem, 4vw, 3.4rem);
  line-height:1.05;
  letter-spacing:-0.02em;
  font-weight:900;
}
.hero-title-soft{
  display:block;
  margin-top:12px;
  font-weight:600;
  color:rgba(255,255,255,.84);
  font-size:clamp(1.05rem, 1.25vw, 1.2rem);
}
.hero-lede{
  margin:16px 0 0;
  max-width:72ch;
  color:rgba(255,255,255,.78);
  font-size:1.05rem;
  line-height:1.6;
}
.hero-actions{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  font-weight:900;
  transition:transform .18s ease, filter .18s ease, background .18s ease;
}
.btn-primary{
  color:#120f08;
  background:var(--gold);
  border-color:rgba(202,164,74,.55);
}
.btn-primary:hover{filter:brightness(1.06); transform:translateY(-1px)}
.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.08);
}
.btn-secondary:hover{background:rgba(255,255,255,.12); transform:translateY(-1px)}

.hero-divider{margin-top:26px; display:flex; align-items:center; gap:12px}
.hero-divider-line{height:1px; flex:1; background:rgba(255,255,255,.16)}
.hero-divider-notch{width:10px;height:10px;border-radius:2px; background:var(--gold); box-shadow:0 0 0 6px rgba(202,164,74,.14)}

.hero-metrics{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.metric{
  padding:14px;
  border-radius:var(--r18);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}
.metric-num{font-size:1.55rem; font-weight:900}
.metric-label{margin-top:6px; color:rgba(255,255,255,.70)}

/* Sections */
.section{padding:84px 0}
.section-head{display:flex; flex-direction:column; gap:10px; margin-bottom:22px}
.h2{margin:0; font-size:clamp(1.6rem, 2.2vw, 2.2rem); line-height:1.2; font-weight:900}
.p{margin:0; line-height:1.6}

/* Light */
.light{background:var(--paper); color:var(--ink)}
.light .p{color:var(--inkMuted)}
.light .h2{color:var(--ink)}

/* Services */
.service-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
.service-card{
  border-radius:var(--r24);
  padding:18px 16px;
  border:1px solid rgba(20,22,26,.12);
  background:rgba(255,255,255,.84);
  box-shadow:0 14px 40px rgba(0,0,0,.10);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(202,164,74,.55);
  box-shadow:0 18px 60px rgba(0,0,0,.14);
}
.service-card h3{
  margin:12px 0 8px;
  color:var(--ink);
  font-size:1.05rem;
  font-weight:900;
  letter-spacing:-0.01em;
}
.service-card p{margin:0; color:var(--inkMuted); line-height:1.6}

/* ICONS — THIS IS THE FIX */
.svc-icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  color:var(--gold);
}
.svc-svg{
  width:100%;
  height:100%;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Tags */
.svc-tags{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:12px; margin-bottom:10px;
}
.tag{
  font-size:.82rem;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(20,22,26,.12);
  background:rgba(255,255,255,.72);
  color:rgba(20,22,26,.80);
}
.svc-link{display:inline-block; margin-top:12px; font-weight:900; color:rgba(140,106,34,.95)}

/* Services footer */
.services-footer{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  border-top:1px solid rgba(20,22,26,.12);
  padding-top:18px;
}
.services-note{color:rgba(20,22,26,.78); max-width:64ch}

/* Tint */
.tint{
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(202,164,74,.10), transparent 60%),
    linear-gradient(180deg, #14161A, #101114);
  color:rgba(255,255,255,.92);
}
.tint .p{color:rgba(255,255,255,.76)}
.list{margin:16px 0 0; padding-left:18px; color:rgba(255,255,255,.78); line-height:1.7}
.split{display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:start}
.split-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.split-media{display:flex; flex-direction:column; gap:12px}
.frame{
  margin:0;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 60px rgba(0,0,0,.28);
  background:rgba(255,255,255,.03);
}
.frame img{height:320px; width:100%; object-fit:cover}
.frame-small img{height:180px}
.frame-cap{padding:10px 12px; color:rgba(255,255,255,.74)}

/* CTA */
.cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(20,22,26,.12);
  background:rgba(255,255,255,.76);
  box-shadow:0 14px 40px rgba(0,0,0,.10);
}
.cta-actions{display:flex; gap:12px; flex-wrap:wrap}

/* Footer */
.footer{
  background:#0F1013;
  color:rgba(255,255,255,.72);
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0;
}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap}
.footer-brand{font-weight:900; color:rgba(255,255,255,.88)}
.footer-right{display:flex; gap:14px; flex-wrap:wrap}
.footer-right a:hover{color:#fff}

/* Responsive */
@media (max-width: 980px){
  .nav, .nav-cta{display:none}
  .nav-toggle{display:inline-grid; place-items:center}
  .nav-wrap{grid-template-columns:1fr auto}
  .hero-metrics{grid-template-columns:1fr; max-width:520px}
  .service-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .split{grid-template-columns:1fr}
  .cta{flex-direction:column; align-items:flex-start}
  .frame img{height:300px}
  .services-footer{flex-direction:column; align-items:flex-start}
}
@media (max-width: 520px){
  .container{width:min(var(--container), calc(100% - 28px))}
  .hero{min-height:88vh}
  .service-grid{grid-template-columns:1fr}
}
