:root {
  --bg: #F5F5F2;
  --surface: #FFFFFF;
  --ink: #101114;
  --muted: #54565E;
  --border: #E3E2DC;

  --accent: #4B3AFF;
  --accent-ink: #101114;
  --good: #7CFF9E;
  --warn: #FFB454;
  --warn-ink: #B45309;

  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --max-width: 820px;
  --radius-lg: 14px;
  --radius-md: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 32px; }
h3 { font-weight: 700; }
p { margin: 0 0 1em; color: var(--muted); }

.nav, main > section, footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}

.brand { font-family: var(--font-display); font-weight: 700; font-size: 17px; text-decoration: none; color: var(--ink); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 600; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--accent); }

/* Status pill */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  padding: 7px 14px;
  white-space: nowrap;
}
.status .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.status-live { color: #F5F5F2; background: rgba(245,245,242,0.14); }
.status-live .dot { background: var(--good); }
.status-progress { color: #F5F5F2; background: rgba(245,245,242,0.12); font-size: 12px; padding: 5px 12px; }
.status-progress .dot { background: var(--warn); }

/* Hero */
.hero {
  background: var(--accent);
  padding: 60px 0 68px;
  max-width: none;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 56px; }
.hero .status { margin-bottom: 26px; }
.hero h1 { font-size: 48px; color: #F5F5F2; max-width: 14ch; margin-bottom: 24px; }
.lede { font-size: 18px; color: rgba(245,245,242,0.86); max-width: 42ch; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--accent-ink);
  color: #F5F5F2;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  transition: opacity 0.15s ease;
}
.btn:hover, .btn:focus-visible { opacity: 0.85; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #F5F5F2;
  padding: 14px 10px;
}
.btn-ghost:hover, .btn-ghost:focus-visible { opacity: 0.8; }

/* Services */
.services { padding-top: 64px; padding-bottom: 64px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.service .num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #E4E1F5; margin-bottom: 18px; }
.service h3 { font-size: 17px; margin-bottom: 10px; }
.service p:last-child { font-size: 14px; margin-bottom: 0; }

/* Work */
.work { padding-top: 0; padding-bottom: 64px; }
.project { background: var(--accent-ink); border-radius: var(--radius-lg); overflow: hidden; }
.project-body { padding: 32px 32px 28px; }
.project-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.project h3 { color: #F5F5F2; font-size: 19px; margin: 0; }
.project-body p { color: rgba(245,245,242,0.75); font-size: 14px; max-width: 52ch; margin-bottom: 0; }
.project .status-live { background: rgba(124,255,158,0.14); }

.project-shots { display: flex; gap: 12px; height: 360px; padding: 0 32px 32px; }
.shot {
  display: block;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: top;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.5);
}
.shot-desktop { flex: 1; width: 100%; min-width: 0; }
.shot-mobile { flex: 0 0 170px; width: 170px; }

.project-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: var(--accent);
  color: #F5F5F2;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.15s ease;
}
.project-cta:hover, .project-cta:focus-visible { opacity: 0.85; }

/* Contact */
.contact { padding-top: 0; padding-bottom: 68px; }
.contact p { font-size: 16px; max-width: 42ch; }
.contact .btn { background: var(--accent); }

/* Footer */
footer { padding-top: 22px; padding-bottom: 22px; border-top: 1px solid var(--border); }
footer p, footer a { font-size: 13px; color: #8B8B85; margin: 0; text-decoration: none; }
footer a { display: inline-flex; align-items: center; gap: 6px; }
footer a svg { width: 14px; height: 14px; }
footer div { display:grid; grid-auto-flow: column;justify-content: space-between;}

/* Responsive */
@media (max-width: 640px) {
  .nav-links { gap: 16px; }
  .grid { grid-template-columns: 1fr; gap: 16px; }
  .hero h1 { font-size: 34px; }
  .project-shots { height: 240px; }
  .shot-mobile { flex-basis: 110px; width: 110px; }
}
