:root {
  color-scheme: dark;
  --bg: #111111;
  --surface: #1a1a1a;
  --surface-2: #23211d;
  --ink: #f6f0e5;
  --muted: #b4aa9a;
  --accent: #d89b3d;
  --line: #34302a;
  --shadow: 0 26px 70px rgba(0, 0, 0, .38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 74px);
  background: rgba(17, 17, 17, .88);
  border-bottom: 1px solid rgba(52, 48, 42, .8);
  backdrop-filter: blur(16px);
}
.brand { font-size: 20px; font-weight: 850; color: var(--ink); }
nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--accent); }
.small-cta {
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(36px, 6vw, 76px) clamp(20px, 5vw, 74px) 44px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(40px, 6vw, 78px); line-height: .96; letter-spacing: 0; }
h2 { margin-bottom: 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.06; letter-spacing: 0; }
h3 { margin-bottom: 12px; font-size: 22px; }
p { color: var(--muted); line-height: 1.65; }
.hero-copy p { max-width: 620px; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.primary-btn, .secondary-btn, button, .small-cta {
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.primary-btn, .secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 850;
}
.primary-btn { background: var(--accent); color: #111; box-shadow: 0 16px 36px rgba(216, 155, 61, .24); }
.secondary-btn { border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.04); }
.primary-btn:hover, .secondary-btn:hover, button:hover, .small-cta:hover { transform: translateY(-2px); }
.hero-media {
  height: min(68vh, 620px);
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.section { padding: 72px clamp(20px, 5vw, 74px); }
.section-head { max-width: 700px; margin-bottom: 26px; }
.service-list { display: grid; gap: 12px; }
.service-list article {
  display: grid;
  grid-template-columns: 60px 1fr minmax(160px, auto);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.service-list span { color: var(--accent); font-weight: 900; }
.service-list p { margin-bottom: 0; }
.service-list strong { color: var(--accent); font-size: 21px; text-align: right; }
.works { background: #181818; }
.work-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 250px;
  gap: 14px;
}
.work-grid img { border-radius: 8px; filter: saturate(.9) contrast(1.04); }
.work-grid img:first-child { grid-row: span 2; }
.reviews {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  align-items: start;
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
blockquote, details, form {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  line-height: 1.55;
}
cite { display: block; margin-top: 16px; color: var(--muted); font-size: 14px; font-style: normal; }
.faq { max-width: 980px; margin: 0 auto; }
details { margin: 12px 0; }
summary { cursor: pointer; font-weight: 850; }
details p { margin: 12px 0 0; }
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  background: #0b0b0b;
}
form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 800; }
input, select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #151515;
  font: inherit;
}
button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #111;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
@media (max-width: 940px) {
  nav { display: none; }
  .hero, .reviews, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { height: 440px; min-height: 320px; }
  .service-list article { grid-template-columns: 44px 1fr; }
  .service-list strong { grid-column: 2; text-align: left; }
  .review-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .site-header { padding: 14px 18px; }
  .small-cta { display: none; }
  .hero, .section { padding-left: 18px; padding-right: 18px; }
  .hero-actions a { width: 100%; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .work-grid img:first-child { grid-row: auto; }
}
