@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0b0b0b;
  --surface: #121212;
  --line: #262626;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --accent: #d8ff3e;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.nav {
  height: 82px;
  max-width: 1180px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.logo { font-weight: 800; letter-spacing: -.05em; font-size: 18px; }
.logo span { color: var(--accent); }
.contact-link { font-size: 13px; color: #d0d0d0; }
.hero {
  max-width: 1180px;
  margin: auto;
  padding: 145px 28px 135px;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
}
h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.065em;
}
h1 span, .contact h2 span { color: #777; }
.intro {
  max-width: 620px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.actions { display: flex; gap: 12px; margin-top: 35px; flex-wrap: wrap; }
.button {
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.button.primary { background: var(--text); color: #111; border-color: var(--text); }
.button.secondary:hover, .contact-link:hover { color: var(--accent); }
.section {
  max-width: 1180px;
  margin: auto;
  padding: 110px 28px;
  border-top: 1px solid var(--line);
}
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 38px; }
.muted, .work-note { color: var(--muted); font-size: 13px; }
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card { min-width: 0; }
.project-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #171717, #0f0f0f);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #555;
  font-size: 11px;
  letter-spacing: .15em;
}
.project-info { padding: 18px 2px 0; }
.project-info h2 { margin: 0 0 5px; font-size: 17px; }
.project-info p { margin: 0; color: var(--muted); font-size: 13px; }
.work-note { margin-top: 25px; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.about h2, .pricing h2 { margin: 0; font-size: clamp(35px, 5vw, 56px); line-height: 1; letter-spacing: -.05em; }
.about > p { margin: 0; color: #b0b0b0; font-size: 17px; max-width: 520px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 35px; }
.price-grid > div {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.price-grid h2 { font-size: 25px; }
.price-grid p { color: var(--muted); margin-bottom: 0; }
.price-grid strong { color: var(--text); }
.contact { padding-top: 125px; padding-bottom: 125px; }
.contact h2 { font-size: clamp(52px, 8vw, 100px); line-height: .9; letter-spacing: -.07em; margin: 0; }
.contact-copy { color: var(--muted); margin: 28px 0 35px; }
.contact-links { max-width: 680px; border-top: 1px solid var(--line); }
.contact-links a {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.contact-links a:hover strong { color: var(--accent); }
.contact-links span { color: var(--muted); }
footer {
  max-width: 1180px;
  margin: auto;
  padding: 25px 28px 35px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
@media (max-width: 760px) {
  .nav { padding: 0 20px; }
  .hero { padding: 100px 20px 90px; }
  .section { padding: 80px 20px; }
  .section-head, .about, .price-grid { grid-template-columns: 1fr; display: grid; gap: 30px; }
  .projects { grid-template-columns: 1fr; }
  .about { gap: 40px; }
  .contact { padding-top: 90px; padding-bottom: 90px; }
  footer { padding-left: 20px; padding-right: 20px; }
}
