:root {
  --bg: #0c1016;
  --panel: #151b24;
  --ink: #eef2f6;
  --muted: #9aa7b5;
  --amber: #f0b429;
  --amber-d: #c48a12;
  --line: rgba(255, 255, 255, 0.1);
  --font: "IBM Plex Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --space: clamp(3.2rem, 7vw, 6.5rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 1.08rem;
  line-height: 1.55;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--amber); }

h1, h2, h3 { margin: 0 0 0.55em; line-height: 1.15; }

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }

.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.skip {
  position: absolute; left: 0.75rem; top: -4rem;
  background: var(--amber); color: #111; padding: 0.55rem 0.8rem; z-index: 80;
}
.skip:focus { top: 0.75rem; }

.demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: #07090d; color: #d7dde4; padding: 0.5rem 1rem; font-size: 0.95rem;
}
.demo-bar p { margin: 0; }
.demo-bar-dismiss {
  min-width: 44px; min-height: 44px; border: 0; background: transparent; color: inherit; font-size: 1.4rem; cursor: pointer;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(12, 16, 22, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  min-height: 4.25rem; gap: 0.75rem;
}

.logo {
  color: #fff; text-decoration: none; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem;
}

.nav-toggle {
  width: 44px; height: 44px; border: 0; background: transparent; display: grid; place-items: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 1.3rem; height: 2px; background: #fff; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav { display: none; flex-direction: column; width: 100%; padding-bottom: 1rem; gap: 0.2rem; }
.site-nav.is-open { display: flex; }
.site-nav a {
  color: #fff; text-decoration: none; min-height: 44px; display: inline-flex; align-items: center;
}
.nav-phone { font-family: var(--mono); color: var(--amber); }

.hero { padding: 2.5rem 0 3rem; }
.hero-split { display: grid; gap: 1.5rem; }
.kicker {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.7rem;
}
.lead { color: var(--muted); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.2rem 0 1.5rem; }

.btn {
  min-height: 48px; padding: 0.7rem 1.15rem; border-radius: 0.4rem; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; text-decoration: none; border: 0; cursor: pointer; font-family: inherit; font-size: 1rem;
}
.btn-amber { background: var(--amber); color: #141414; }
.btn-amber:hover { background: var(--amber-d); color: #141414; }
.btn-line { background: transparent; color: #fff; border: 1px solid var(--line); }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; margin: 0; }
.stats dt { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); }
.stats dd { margin: 0.15rem 0 0; font-size: 1.15rem; font-weight: 700; }

.hero-photo img {
  width: 100%; height: 22rem; object-fit: cover; object-position: 78% center; border-radius: 0.4rem; background: #1c2430;
}

.section { padding: var(--space) 0; }
.section-panel { background: var(--panel); }

.service-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.service-list li {
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 0.8rem;
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.service-list span { font-family: var(--mono); color: var(--amber); }

.steps ol { padding-left: 1.15rem; color: var(--muted); }
.about, .contact, .quotes { display: grid; gap: 1.4rem; }
.about img { width: 100%; height: 18rem; object-fit: cover; border-radius: 0.4rem; background: #1c2430; }

blockquote {
  margin: 0; padding: 0 0 0 1rem; border-left: 3px solid var(--amber); color: var(--ink);
}
blockquote footer { color: var(--muted); font-size: 0.95rem; }

.contact-form { display: grid; gap: 0.8rem; }
.contact-form label { display: grid; gap: 0.3rem; font-size: 0.92rem; font-weight: 600; }
input, textarea {
  font: inherit; background: #0c1016; color: #fff; border: 1px solid var(--line);
  border-radius: 0.35rem; padding: 0.7rem 0.8rem; min-height: 48px;
}
textarea { min-height: 7.5rem; resize: vertical; }

.site-footer {
  border-top: 1px solid var(--line); padding: 1.3rem 0; color: var(--muted); font-size: 0.95rem;
}
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.7rem; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  flex: 1 1 100%;
}
.footer-contact a { margin-left: 0; }
.legal-page { padding: 4rem 0 5rem; }
.legal-page .note { background: var(--panel); padding: 0.9rem 1rem; border-radius: 0.4rem; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; flex-direction: row; width: auto; align-items: center; gap: 1.1rem; padding: 0; }
  .hero-split, .about, .contact, .quotes, .steps { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .hero-photo img, .about img { height: 28rem; }
  .service-list { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
