:root {
  --ink: #121212;
  --muted: #5d6268;
  --line: #dedede;
  --paper: #f7f7f7;
  --white: #ffffff;
  --steel: #0d0d0f;
  --teal: #b5121b;
  --amber: #e21c2d;
  --red: #b5121b;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 5vw, 56px);
  background: rgba(247, 249, 250, 0.92);
  border-bottom: 1px solid rgba(216, 224, 230, 0.82);
  backdrop-filter: blur(14px);
}

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

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

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: clamp(10px, 3vw, 24px);
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero {
  min-height: calc(100svh - 67px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  background: #0b0b0c;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.94), rgba(8, 8, 9, 0.64) 48%, rgba(8, 8, 9, 0.26)),
    linear-gradient(0deg, rgba(8, 8, 9, 0.9), rgba(8, 8, 9, 0.1) 48%),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 26%;
  background: linear-gradient(0deg, var(--paper), rgba(247, 249, 250, 0));
}

.hero-content {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 36px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: #ff3848;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.2rem, 15vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--amber);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 32px 0 0;
}

.quick-stats div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.quick-stats dt {
  font-size: 1rem;
  font-weight: 950;
}

.quick-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.service-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(16px, 5vw, 56px);
  background: var(--steel);
  color: var(--white);
  scrollbar-width: none;
}

.service-strip span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: clamp(56px, 10vw, 110px) clamp(16px, 5vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 72px);
  align-items: start;
}

.split > div:first-child p:not(.eyebrow),
.booking-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article,
.steps article,
.quote-grid figure,
.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 26, 31, 0.06);
}

.service-grid article {
  padding: 22px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 950;
}

.service-grid p,
.steps p,
.quote-grid blockquote {
  margin: 0;
  color: var(--muted);
}

.process {
  background: var(--white);
}

.process h2 {
  max-width: 780px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.steps article {
  padding: 24px;
  box-shadow: none;
}

.steps strong {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 64px);
}

.quote-grid {
  display: grid;
  gap: 14px;
}

.quote-grid figure {
  margin: 0;
  padding: 24px;
}

.quote-grid blockquote {
  font-size: 1.1rem;
}

.quote-grid figcaption {
  margin-top: 18px;
  color: var(--steel);
  font-weight: 900;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 72px);
  padding: clamp(56px, 10vw, 110px) clamp(16px, 5vw, 56px);
  background: var(--steel);
  color: var(--white);
}

.booking h2,
.booking h3 {
  color: var(--white);
}

.phone-card {
  display: block;
  max-width: 360px;
  margin-top: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.phone-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.phone-card strong {
  display: block;
  margin-top: 4px;
  color: var(--amber);
  font-size: 1.7rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(16px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #090909;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  nav {
    display: none;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(12, 18, 23, 0.9), rgba(12, 18, 23, 0.18)),
      url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1200&q=82") center / cover;
  }

  .hero-content {
    width: min(100% - 28px, 640px);
    padding-bottom: 24px;
  }

  .quick-stats,
  .split,
  .service-grid,
  .steps,
  .reviews,
  .booking,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .quick-stats {
    gap: 8px;
  }

  .section,
  .booking {
    padding-left: 14px;
    padding-right: 14px;
  }

  .phone-card strong {
    font-size: 1.45rem;
  }

  footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .hero-actions .button {
    flex: 1 1 145px;
  }

  .quick-stats div {
    padding: 11px;
  }
}
