:root {
  --ink: #202020;
  --muted: #6b6b6b;
  --line: #deded9;
  --paper: #ffffff;
  --soft: #f4f4f1;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 190px; }
.phone-link { text-decoration: none; font-weight: 600; }

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}
.hero > img {
  width: 100%;
  height: min(68vh, 720px);
  object-fit: cover;
}
.hero-panel {
  position: absolute;
  left: 30px;
  bottom: 30px;
  max-width: 610px;
  padding: 30px;
  background: rgba(255,255,255,.94);
}
.eyebrow {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2 { margin: 0; line-height: 1.08; font-weight: 650; letter-spacing: -.025em; }
h1 { font-size: clamp(2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.hero-panel p:not(.eyebrow) { max-width: 50ch; font-size: 1.08rem; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.button {
  display: inline-block;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid var(--ink);
}
.button-secondary { background: white; color: var(--ink); }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.services li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
figure { margin: 0; }
figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
figcaption { margin-top: 10px; font-weight: 600; }

.contact {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}
.contact img { width: 230px; margin: 0 auto 24px; }
.contact p { margin: 9px 0; }
.contact a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
footer {
  border-top: 1px solid var(--line);
  padding: 24px 20px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 760px) {
  .site-header { min-height: 78px; align-items: center; }
  .brand img { width: 145px; }
  .phone-link { font-size: .88rem; text-align: right; }
  .hero, .section { width: min(100% - 24px, var(--max)); }
  .hero > img { height: 54vh; min-height: 430px; }
  .hero-panel { position: static; max-width: none; padding: 26px 4px 12px; background: white; }
  .services { grid-template-columns: 1fr; gap: 34px; padding: 68px 0; }
  .project-grid { grid-template-columns: 1fr; gap: 36px; }
  .projects { padding: 68px 0; }
  .contact { padding: 76px 0; }
}
