:root {
  --bg: #0b0b0b;
  --bg-2: #121212;
  --surface: #181818;
  --surface-2: #1f1f1f;
  --line: #2c2c2c;
  --text: #f4f3ef;
  --muted: #9c9a93;
  --accent: #e8b84a;
  --accent-hover: #f3c85c;
  --accent-ink: #1a1408;
  --ok: #7dce8a;
  --err: #e07070;
  --max: 1120px;
  --pad: clamp(1.1rem, 4vw, 1.75rem);
  --radius: 14px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Unbounded", var(--font);
  --sticky-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100dvh;
  padding-bottom: 5.25rem;
}

@media (min-width: 880px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.wrap {
  width: min(var(--max), 100% - 2 * var(--pad));
  margin-inline: auto;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
}

@media (min-width: 880px) {
  .logo img {
    height: 68px;
  }
}

.nav-main {
  display: none;
  gap: 1.35rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-main a {
  text-decoration: none;
  color: var(--muted);
}

.nav-main a:hover {
  color: var(--text);
}

.header-cta {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.85rem;
}

.header-phone {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header-phone small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
}

@media (min-width: 880px) {
  .nav-main {
    display: flex;
  }

  .header-cta {
    display: flex;
    margin-left: 1.5rem;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-accent:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: #555;
}

.btn-wide {
  width: 100%;
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3rem;
    min-height: 72vh;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--accent);
}

h1,
.h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.9rem;
}

h1 {
  font-size: clamp(1.85rem, 5.4vw, 3.35rem);
}

.h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.chips li {
  font-size: 0.82rem;
  font-weight: 600;
  color: #d8d6ce;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.15rem;
}

.hero-card h2 {
  font-family: var(--font);
  font-size: 1.05rem;
  letter-spacing: 0;
  margin: 0 0 0.35rem;
}

.hero-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  background: #1a1a1a;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  filter: saturate(0.85) contrast(1.05);
}

.hero-visual figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.72);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #ddd;
}

@media (min-width: 920px) {
  .hero-visual img {
    min-height: 520px;
  }
}

/* form */
.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  min-height: 48px;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-note {
  margin: 0.7rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-status {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status.ok {
  color: var(--ok);
}

.form-status.err {
  color: var(--err);
}

/* sections */
.section {
  padding: 3.2rem 0;
}

.section-muted {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.6rem;
  max-width: 40rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.grid-3,
.grid-4,
.works {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .works {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .works {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card,
.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.svc {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.svc:hover {
  border-color: #5a4a24;
  transform: translateY(-2px);
}

.svc h3 {
  margin: 0;
  font-size: 1.05rem;
}

.svc p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}

.svc span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.step-n {
  font-family: var(--display);
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.works figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}

.works img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.works figcaption {
  padding: 0.7rem 0.85rem 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.geo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.geo-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
}

.cta-band {
  background:
    radial-gradient(900px 240px at 10% 0%, rgba(232, 184, 74, 0.16), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 800px) {
  .cta-band {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

footer.site-footer {
  padding: 2.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.site-footer h2 {
  font-family: var(--font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.legal {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

/* mobile dock */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(11, 11, 11, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.dock .btn {
  min-height: 46px;
}

@media (min-width: 880px) {
  .dock {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .svc {
    transition: none;
  }
}

.grid-2 {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.offer {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.35rem 1.4rem;
  background:
    radial-gradient(420px 160px at 100% 0%, rgba(232, 184, 74, 0.12), transparent 60%),
    var(--surface);
  border: 1px solid #3d3420;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.offer:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.offer .kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.offer h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.offer p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.offer span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.page-hero {
  padding: 2.2rem 0 1.2rem;
}

.page-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .page-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.prose {
  color: var(--muted);
}

.prose h2 {
  font-family: var(--display);
  color: var(--text);
  font-size: 1.2rem;
  margin: 1.6rem 0 0.6rem;
}

.prose ul {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.prose li {
  margin: 0.35rem 0;
}

.note {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-main a[aria-current="page"] {
  color: var(--text);
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.related a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.84rem;
  color: var(--text);
}

.related a:hover {
  border-color: #5a4a24;
}
