:root {
  --ink: #151719;
  --muted: #6b7078;
  --line: #e5e1d8;
  --paper: #f6f3ec;
  --white: #ffffff;
  --accent: #d8a12d;
  --accent-strong: #b97813;
  --olive: #51604b;
  --steel: #293037;
  --shadow: 0 24px 70px rgba(21, 23, 25, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(21, 23, 25, .92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.header-phone:hover {
  color: var(--accent);
}

.header-phone {
  font-weight: 800;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .55) 42%, rgba(0, 0, 0, .14)),
    linear-gradient(0deg, rgba(21, 23, 25, .75), rgba(21, 23, 25, .08) 46%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: end;
  min-width: 0;
}

.hero-content {
  max-width: 820px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: #e8b849;
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .09);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
}

.quote-panel {
  padding: 26px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-panel h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.05;
}

.quote-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.stats-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.stats-band strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-copy {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(21, 23, 25, .08);
}

.service-card img {
  height: 250px;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 10px 0;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px clamp(18px, 7vw, 88px);
  color: var(--white);
  background: var(--steel);
}

.feature-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery button {
  overflow: hidden;
  min-height: 250px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--steel);
  cursor: zoom-in;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery button:hover img {
  transform: scale(1.05);
}

.why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.why-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-content h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
}

.benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefits div,
.steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
}

.benefits strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.benefits p,
.steps p,
.request-copy p,
.request-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.request {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.request-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.request-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin-top: 24px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d7d2c8;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf7;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(216, 161, 45, .18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.footer p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.footer-actions {
  align-items: center;
  font-weight: 900;
}

.footer-actions a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  width: auto;
  max-width: min(1100px, 95vw);
  max-height: 88vh;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .16);
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .header-phone {
    display: none;
  }

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

  .hero-inner,
  .intro,
  .why,
  .request {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    max-width: 480px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border-radius: 8px;
    background: rgba(21, 23, 25, .96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    gap: 6px;
  }

  .nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .34)),
      linear-gradient(90deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .14));
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 112px 0 34px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.04;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions .btn,
  .quote-panel .btn,
  .lead-form .btn {
    width: 100%;
  }

  .quote-panel {
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }

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

  .stats-band div {
    min-height: 116px;
    padding: 22px 18px;
  }

  .stats-band strong {
    font-size: 32px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .section-heading h2,
  .why-content h2,
  .request-copy h2 {
    font-size: 34px;
  }

  .section-copy {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-grid,
  .gallery,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .gallery button {
    height: 260px;
    min-height: 260px;
  }

  .feature-band {
    display: grid;
    padding: 38px 18px;
  }

  .feature-band .btn {
    width: 100%;
  }

  .why-media img {
    aspect-ratio: 1 / 1;
  }

  .footer {
    display: grid;
  }

  .footer-actions {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero-content,
  .quote-panel,
  .hero-actions,
  .trust-row {
    max-width: 360px;
  }

  .hero-actions,
  .trust-row {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .trust-row span {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
  }
}
