:root{
  --bg: #ffffff;
  --ink: #0f172a;    /* slate-900 */
  --muted: #475569;  /* slate-600 */
  --line: #e2e8f0;   /* slate-200 */
  --accent: #111827; /* neutral dark (not flashy) */
  --max: 960px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.header{
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
.nav a:hover{ color: var(--ink); }

/* Hero */
.hero{
  padding: 44px 0 24px;
  border-bottom: 1px solid var(--line);
}
.eyebrow{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h1{
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.actions{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Buttons / links */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}
.btn:hover{ filter: brightness(0.95); }

.link{
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 650;
}
.link:hover{ color: #000; }

/* Sections */
.section{
  padding: 28px 0;
}
h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.lead{
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
}

.services{
  margin-top: 6px;
}
.service{
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.service:first-child{ border-top: none; padding-top: 0; }
.service h3{
  margin: 0 0 6px;
  font-size: 15px;
}
.service p{
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact{
  margin-top: 12px;
  border-top: 1px solid var(--line);
}
.row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.k{
  color: var(--muted);
  font-size: 13px;
}
.v{
  font-weight: 700;
}
.note{
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.footer{
  padding: 18px 0 34px;
  color: var(--muted);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* Mobile */
@media (max-width: 720px){
  .row{ grid-template-columns: 1fr; }
}
