:root {
  --ink: #f4f7fb;
  --panel: #181d26;
  --panel-strong: #10141b;
  --muted: #aeb8c7;
  --line: #343c4b;
  --soft: #202632;
  --gold: #f6d400;
  --blue: #3f9cff;
  --blue-dark: #1768c5;
  --white: #ffffff;
  --page: #05070a;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 12%, rgba(23, 104, 197, 0.12), transparent 34rem),
    var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

.antigravity-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  padding: 8px clamp(14px, 3vw, 34px);
  background: var(--page);
  color: var(--white);
  border-bottom: 5px solid var(--gold);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

body > .site-header {
  z-index: 20;
}

@media (prefers-reduced-motion: reduce) {
  .antigravity-field {
    display: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #cfd6e3;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 14px 16px;
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--gold);
  color: #111318;
}

.site-nav .call-link {
  background: var(--blue);
  color: var(--white);
}

.site-nav .call-link:hover {
  background: var(--gold);
  color: #111318;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 8px;
  background: var(--gold);
  border: 0;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 4px;
  margin: 5px 0;
  background: #111318;
  border-radius: 10px;
}

main {
  width: 100%;
}

.hero,
.section,
.page-title,
.contact-layout,
.reviews-grid,
.cta-band {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 16px;
  padding: 22px 0 14px;
}

.hero-copy {
  padding: clamp(18px, 3vw, 34px);
  color: var(--white);
  background: linear-gradient(135deg, #111722 0%, #172132 50%, #123a70 100%);
  border-radius: 8px;
  border: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-copy .lead {
  color: #dfe8f5;
}

.hero .hero-title {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.98;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 3.25rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.lead {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #111318;
}

.button.secondary {
  background: #e8edf5;
  color: #111318;
}

.quick-panel,
.contact-card {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-panel h2 {
  padding-bottom: 8px;
  border-bottom: 3px solid var(--gold);
}

.quick-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.quick-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.quick-panel dt {
  color: var(--muted);
  font-weight: 900;
}

.quick-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.section {
  padding: 20px 0 0;
}

.compact {
  padding-top: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  border-bottom: 2px solid var(--line);
}

.section-heading .eyebrow {
  order: 2;
  margin-bottom: 9px;
}

.section-heading .section-kicker {
  color: var(--blue);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.section-heading h2 {
  color: var(--gold);
}

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

.service-card,
.review {
  padding: 14px;
  background: #151a23;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.service-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: 8px;
  color: var(--white);
  justify-content: flex-start;
}

.service-card p,
.page-title p,
.contact-card p,
.review p,
.cta-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.service-card p {
  color: #b8d4ff;
}

.service-card span {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 3px 8px;
  color: #dce8f7;
  background: #202938;
  border: 1px solid #3a4658;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card strong {
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 16px;
  color: var(--white);
  background: var(--panel-strong);
  border-radius: 8px;
  border-bottom: 5px solid var(--gold);
}

.cta-band p {
  color: #d7deea;
}

.page-title {
  padding: 22px 0 12px;
  border-bottom: 2px solid var(--line);
}

.page-title .eyebrow {
  color: var(--blue);
}

.page-title .page-title-highlight {
  color: var(--white);
}

.page-title h1 {
  margin-bottom: 8px;
}

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

.star-rating {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.review {
  display: flex;
  min-height: 178px;
  flex-direction: column;
}

.review-preview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.review-more {
  margin-top: 8px;
}

.review-more summary {
  width: fit-content;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.review-more summary:hover {
  color: var(--gold);
}

.review-more p {
  margin-top: 8px;
}

.review strong {
  display: block;
  margin-top: auto;
  padding-top: 10px;
}

.review span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 14px;
  padding-top: 14px;
}

.form-result {
  min-height: calc(100vh - 70px);
  padding-top: 24px;
}

.phone-number {
  display: block;
  margin: 8px 0;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-decoration: none;
}

.hours {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.hours span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--white);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px;
  color: #111318;
  background: #f7f9fc;
  border: 2px solid transparent;
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 0;
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding: 16px 14px;
  color: var(--white);
  background: var(--page);
  font-weight: 800;
  text-align: center;
}

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

@media (max-width: 850px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-block: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
    text-align: center;
    background: #242a34;
  }

  .hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 7px 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero,
  .section,
  .page-title,
  .contact-layout,
  .reviews-grid,
  .cta-band {
    width: min(var(--max), calc(100% - 18px));
  }

  .hero-copy {
    padding: 16px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 6px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}
