:root{
  /* Dark, polished-metal aesthetic */
  --bg:#050607;                 /* near-black */
  --surface:#0b0d0f;            /* card base */
  --surface2:#101317;           /* subtle alt */
  --text:#f2f4f7;               /* primary text */
  --muted:#b3bcc8;              /* secondary text */
  --muted2:#8f9aaa;             /* kicker / labels */
  --line:rgba(255,255,255,.12); /* crisp borders */
  --line2:rgba(255,255,255,.20);
  --accent:#f2f4f7;             /* button outline/text */
  --accent-2:#050607;           /* on-accent */
  --brown:#7b5a3a;              /* warm metal hint */
  --silver1:#e6e8eb;            /* polished highlight */
  --silver2:#9aa4af;            /* steel mid */
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --shadow-soft: 0 12px 32px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-lg: 24px;
  --container: 1180px;
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), 92%); margin:0 auto; }

/* NAV */
.nav{
  position:sticky; top:0; z-index:40;
  background: rgba(5,6,7,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{
  font-weight:800;
  letter-spacing:.2px;
  font-size:15px;
}
.brand span{ font-weight:400; opacity:.92; margin-left:2px; }
.links{ display:flex; gap:18px; align-items:center; }
.links a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
}
.links a:hover{ color:var(--text); background: rgba(255,255,255,.06); }


/* Brand logo (button) — same "project card" hover language */
.brand-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff; /* makes black logo pop on dark */
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, filter .14s ease;
}
.brand-logo img{
  display:block;
  height:40px;     /* adjust size here */
  width:auto;
}
.brand-logo:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--shadow-soft);
  filter: brightness(1.02);
}
.brand-logo:focus-visible{
  outline: 2px solid rgba(230,232,235,.65);
  outline-offset: 3px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--line2);
  background: transparent;
  color: var(--text);
  font-weight:800;
  font-size:14px;
  letter-spacing:.01em;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn:hover{
  border-color: rgba(255,255,255,.26);
  transform: translateY(-1px);
  background: rgba(255,255,255,.04);
}
.btn.primary{
  background: linear-gradient(180deg, var(--silver1), var(--silver2));
  color: var(--accent-2);
  border-color: rgba(255,255,255,.18);
  box-shadow: var(--shadow-soft);
}
.btn.primary:hover{ filter: brightness(1.03); }
.btn.ghost{
  background: rgba(255,255,255,.06);
  border-color: transparent;
  color: var(--text);
}
.btn.ghost:hover{ background: rgba(255,255,255,.09); }

/* HERO */
.hero{
  padding: 92px 0 28px;
  background:
    radial-gradient(900px 520px at 18% 6%, rgba(230,232,235,.10), transparent 62%),
    radial-gradient(760px 520px at 88% 8%, rgba(154,164,175,.10), transparent 60%),
    radial-gradient(780px 520px at 80% 70%, rgba(123,90,58,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%),
    var(--bg);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:28px;
  align-items:start;
}
.kicker{
  color:var(--muted2);
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 14px;
}
h1{
  font-size: clamp(40px, 4.6vw, 62px);
  line-height:1.02;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
.lead{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  max-width:56ch;
  margin:0 0 22px;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 22px; }

.hero-badges{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.badge{
  border:1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding:14px 14px 15px;
}
.badge-title{ font-weight:800; font-size:13px; margin-bottom:6px; }
.badge-text{ color:var(--muted); font-size:13px; line-height:1.45; }

/* Card */
.card{
  border:1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-top{
  display:flex; gap:8px; padding:14px 16px;
  border-bottom:1px solid var(--line);
  background: linear-gradient(90deg, rgba(230,232,235,.08), rgba(154,164,175,.06), rgba(255,255,255,.04));
}
.dot{ width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.22); }
.card-body{ padding:18px 18px 20px; }
.stat{ padding:12px 0; border-bottom:1px solid var(--line); }
.stat:last-of-type{ border-bottom:none; }
.stat-num{ font-weight:900; font-size:18px; letter-spacing:-.01em; }
.stat-label{ color:var(--muted); font-size:13px; margin-top:4px; }
.note{ margin:14px 0 0; color: rgba(242,244,247,.62); font-size:12px; line-height:1.6; }

/* SECTIONS */
.section{ padding:72px 0; }
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section-head{ margin-bottom:22px; }
.section-head h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.01em;
}
.section-head p{ margin:0; color:var(--muted); line-height:1.75; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.work{
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: var(--surface);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.work:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--shadow-soft);
}
.thumb{
  height:180px;
  display:flex; align-items:center; justify-content:center;
  color: rgba(242,244,247,.55);
  background: linear-gradient(135deg, rgba(230,232,235,.10), rgba(154,164,175,.08), rgba(123,90,58,.06));
}
.work-meta{ padding:16px; }
.work-title{ font-weight:800; }
.work-tag{ color:var(--muted); font-size:13px; margin-top:6px; line-height:1.45; }

/* SERVICES */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.svc{
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding:18px;
  background: var(--surface);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.svc:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--shadow-soft);
}
.svc h3{ margin:0 0 10px; letter-spacing:-.01em; }
.svc p{ margin:0 0 12px; color:var(--muted); line-height:1.75; }
.svc ul{ margin:0; padding-left:18px; color: rgba(242,244,247,.78); line-height:1.75; font-size:14px; }

/* ABOUT */
.about{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:start;
}
.about p{ color:var(--muted); line-height:1.8; }
.about-box{
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding:18px;
  box-shadow: var(--shadow-soft);
}
.about-item{ padding:12px 0; border-bottom:1px solid var(--line); }
.about-item:last-child{ border-bottom:none; }
.label{
  color: rgba(242,244,247,.55);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}
.value{ margin-top:6px; font-weight:800; }

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding:18px;
  box-shadow: var(--shadow-soft);
}
.contact-card h3{ margin:0 0 10px; }
.muted{ color:var(--muted); }
.fine{ color: rgba(242,244,247,.62); font-size:12px; line-height:1.7; margin:12px 0 0; }
.contact-card ul{ margin:10px 0 0; padding-left:18px; line-height:1.8; color: rgba(242,244,247,.78); }

/* FOOTER */
.footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:30px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color: rgba(242,244,247,.70);
  font-size:13px;
}

/* RESPONSIVE */
@media (max-width: 920px){
  .hero{ padding:72px 0 18px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-badges{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .about{ grid-template-columns:1fr; }
  .contact{ grid-template-columns:1fr; }
  .links{ gap:8px; }
  .links a{ padding:8px 8px; }
}
