:root {
  --ink: #111111;
  --panel: #1a1a1a;
  --muted: #626262;
  --cream: #fff8ec;
  --paper: #ffffff;
  --gold: #f7c948;
  --gold-dark: #b88209;
  --red: #d73322;
  --red-dark: #9f1f16;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

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

.brand strong {
  font-weight: 900;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-links a,
.header-call {
  text-decoration: none;
}

.nav-links a:hover,
.header-call:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-call {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(215, 51, 34, 0.25);
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 86px) clamp(18px, 5vw, 72px) 44px;
  background:
    radial-gradient(circle at 82% 22%, rgba(247, 201, 72, 0.22), transparent 26%),
    linear-gradient(135deg, #0f0f0f 0%, #24110e 48%, #7f1c14 100%);
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 6vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 14px 28px rgba(215, 51, 34, 0.3);
}

.button-secondary {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: white;
}

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

.quick-facts div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-facts dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.service-band,
.coverage,
.testimonials {
  padding: clamp(52px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.service-band {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 228px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.service-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
}

.service-card p,
.coverage p {
  color: var(--muted);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  background: #181818;
  color: white;
}

.coverage p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.business-card {
  display: block;
  width: min(100%, 560px);
  justify-self: end;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
}

.testimonials {
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 51, 34, 0.12), transparent 24%),
    var(--paper);
}

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

.testimonial-card {
  margin: 0;
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.testimonial-card blockquote {
  margin: 0;
  color: #2b2b2b;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.55;
}

.testimonial-card blockquote::before {
  content: '"';
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.6;
}

.testimonial-card figcaption {
  display: grid;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-card strong {
  font-weight: 900;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.schedule-fields {
  display: grid;
  gap: 12px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: rgba(247, 201, 72, 0.13);
}

.schedule-fields legend {
  padding: 0 8px;
  color: var(--red-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 11px 12px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(247, 201, 72, 0.42);
  border-color: var(--gold-dark);
}

.form-note {
  min-height: 22px;
  margin: -2px 0 0;
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.field-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.field-note.is-good {
  color: #0f766e;
}

.field-note.is-error {
  color: var(--red-dark);
}

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.payment-safety-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 2px solid #111111;
  border-radius: 8px;
  background: #fff7d6;
  color: #111111;
  font-weight: 900;
}

.full-width {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 34px);
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 10%, rgba(247, 201, 72, 0.22), transparent 24%),
    linear-gradient(135deg, #fff8ec 0%, #fff3dd 58%, #f8d15c 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.modal-heading {
  max-width: 650px;
  margin-bottom: 22px;
}

.modal-heading p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.site-footer p {
  margin: 0 0 4px;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.facebook {
  background: #1877f2;
}

.x-twitter {
  background: #000000;
}

.snapchat {
  background: #fffc00;
  color: #111111;
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4);
}

.youtube {
  background: #ff0000;
}

.tiktok {
  background: linear-gradient(135deg, #25f4ee, #111111 45%, #fe2c55);
}

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

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 0;
  }

  .coverage {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions,
  .quick-facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    justify-self: start;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .social-links {
    justify-content: flex-start;
  }

  .form-row,
  .three-columns {
    grid-template-columns: 1fr;
  }
}
