:root {
  --black: #050505;
  --soft-black: #101010;
  --gold: #dca51a;
  --gold-light: #f4c443;
  --white: #ffffff;
  --muted: #d9d9d9;
  --line: rgba(220, 165, 26, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.72)),
    radial-gradient(circle at 75% 10%, rgba(220,165,26,.14), transparent 35%),
    linear-gradient(135deg, #050505, #151515 55%, #070707);
  z-index: -1;
}

.page-wrap {
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: 54px 0 42px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 58px;
  align-items: center;
}
.hero-logo img {
  width: 100%;
  max-width: 450px;
  display: block;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.55));
}
.eyebrow {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 800;
}
h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: .92;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0,0,0,.7);
}
.gold-line {
  width: 90px;
  height: 6px;
  background: var(--gold);
  margin: 28px 0;
}
.intro {
  margin: 0;
  color: #eeeeee;
  font-size: clamp(1.05rem, 2.2vw, 1.38rem);
  line-height: 1.58;
  max-width: 600px;
}
.promise {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.2rem;
}

.services { margin-top: 54px; }
.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 42px;
}
.section-title span { height: 3px; background: var(--gold); }
h2 {
  margin: 0;
  color: var(--gold);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: clamp(1.65rem, 3.5vw, 2.55rem);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 300px;
  padding: 12px 22px 0;
  text-align: center;
  border-right: 1px solid var(--line);
}
.icon {
  min-height: 78px;
  display: grid;
  place-items: center;
  font-size: 4.2rem;
  line-height: 1;
  margin-bottom: 18px;
}
.floor-icon { color: var(--gold-light); }
.service-card h3 {
  min-height: 52px;
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
}
.service-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--gold);
}
.service-card p {
  margin: 0;
  color: #f0f0f0;
  font-size: 1.04rem;
  line-height: 1.52;
}

.cta {
  overflow: hidden;
  max-width: 1040px;
  margin: 66px auto 48px;
  border: 4px solid var(--gold);
  border-radius: 28px;
  box-shadow: 0 16px 46px rgba(0,0,0,.5), 0 0 26px rgba(220,165,26,.18);
}
.cta a {
  text-decoration: none;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 38px 70px;
}
.call-row {
  color: #050505;
  background: linear-gradient(135deg, #f5c031, #f8dd72 45%, #bf820d);
}
.request-row {
  color: var(--white);
  background: #050505;
  border-top: 4px solid var(--gold);
}
.cta-icon, .check-icon {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #151515;
  font-size: 4.3rem;
  box-shadow: inset 0 0 15px rgba(255,255,255,.08);
}
.check-icon { border-radius: 20px; background: #2a2a2a; }
.cta strong {
  display: block;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: .95;
  letter-spacing: .05em;
}
.cta em {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: clamp(1.35rem, 3.2vw, 2.4rem);
}
.request-row em { color: var(--gold-light); }

.contact {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 940px;
}
.contact-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  text-decoration: none;
}
.contact-item span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background: #090909;
  font-size: 2rem;
}
.contact-item p {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  line-height: 1.35;
}
.contact-item strong { color: var(--gold-light); }

footer {
  background: linear-gradient(135deg, #b97d08, #f4c443 48%, #b67808);
  color: #070707;
  text-align: center;
  padding: 28px 12px;
}
footer p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: clamp(1rem, 3vw, 1.62rem);
}
footer span { margin: 0 22px; }

@media (max-width: 880px) {
  .page-wrap { padding-top: 34px; width: min(680px, 92vw); }
  .hero { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .hero-logo img { margin: 0 auto; max-width: 430px; }
  .gold-line { margin-inline: auto; }
  .intro { margin-inline: auto; }
  .section-title { gap: 18px; }
  .service-grid { grid-template-columns: 1fr; border-left: 0; }
  .service-card {
    min-height: auto;
    padding: 34px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-card h3 { min-height: auto; }
  .cta a { grid-template-columns: 88px 1fr; padding: 28px 24px; }
  .cta-icon, .check-icon { width: 74px; height: 74px; font-size: 2.75rem; }
  .contact-item { grid-template-columns: 76px 1fr; }
  footer span { display: none; }
}

@media (max-width: 460px) {
  .eyebrow { letter-spacing: .22em; }
  .section-title { grid-template-columns: 54px 1fr 54px; gap: 12px; }
  h2 { letter-spacing: .18em; }
  .cta { border-width: 3px; border-radius: 22px; }
  .cta a { grid-template-columns: 1fr; text-align: center; gap: 14px; padding: 28px 18px; }
  .contact-item { grid-template-columns: 1fr; text-align: center; gap: 12px; padding: 24px 8px; }
  .contact-item span { margin: 0 auto; }
}
