:root {
  --bg: #ffffff;
  --bg-alt: #fafaf8;
  --ink: #101e2b;
  --muted: #55606b;
  --line: rgba(16, 30, 43, 0.12);
  --accent: #d9a441;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

/* Hero */

.hero {
  padding-top: 112px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.12;
  max-width: 820px;
}

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 600px;
  margin: 0;
}

.lede.small {
  font-size: 16px;
  max-width: 560px;
}

/* Sections */

.section {
  padding-top: 64px;
  padding-bottom: 96px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.section-head h2,
#contact h2 {
  font-size: 32px;
  font-weight: 700;
}

/* Services */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 19px;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* About */

.about-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.about-grid .eyebrow {
  grid-column: span 4;
}

.about-copy {
  grid-column: span 8;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
}

/* Contact */

#contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact h2 {
  max-width: 520px;
}

.email-link {
  font-size: 17px;
  font-weight: 500;
  margin-top: 8px;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.values {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 860px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 72px; padding-bottom: 64px; }
  .hero h1 { font-size: 38px; }
  .lede { font-size: 17px; }
  .card-grid { grid-template-columns: 1fr; }
  .about-grid { display: flex; flex-direction: column; gap: 16px; padding-top: 56px; padding-bottom: 56px; }
  .about-copy { max-width: none; }
  .nav { gap: 20px; font-size: 13px; }
}
