/* Jacksonville Striping */
:root {
  --ink: #0e1014;
  --asphalt: #171a21;
  --slate: #2a303c;
  --steel: #6b7385;
  --mist: #c8cdd8;
  --chalk: #eef0f4;
  --paper: #f7f8fa;
  --stripe: #e8b800;
  --stripe-hot: #ffc933;
  --white: #ffffff;
  --danger: #c43c2c;
  --ok: #1f7a4c;
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--asphalt);
}

ul,
ol {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2 * var(--pad), 720px);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--asphalt) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--stripe) 35%, transparent);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2 * var(--pad), var(--max));
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-mark span {
  color: var(--stripe);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--mist);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav a:hover {
  color: var(--stripe-hot);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--stripe);
  color: var(--ink) !important;
  font-weight: 800 !important;
  padding: 0.55rem 0.95rem;
  text-decoration: none !important;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-cta:hover {
  background: var(--stripe-hot);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--steel);
  color: var(--white);
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--asphalt);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem var(--pad) 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--slate);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--slate);
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
    border: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  padding: 0.95rem 1.35rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--stripe);
  color: var(--ink) !important;
}

.btn-primary:hover {
  background: var(--stripe-hot);
  color: var(--ink) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  outline: 1.5px solid color-mix(in srgb, var(--white) 55%, transparent);
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--white) 10%, transparent);
  color: var(--white) !important;
}

.btn-dark {
  background: var(--asphalt);
  color: var(--white) !important;
}

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

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--asphalt);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroDrift 28s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.1) translate(-1.5%, -1%);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, color-mix(in srgb, var(--ink) 88%, transparent) 0%, color-mix(in srgb, var(--ink) 55%, transparent) 48%, color-mix(in srgb, var(--ink) 35%, transparent) 100%),
    linear-gradient(to top, color-mix(in srgb, var(--ink) 75%, transparent) 0%, transparent 45%);
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--stripe) 0%, var(--stripe) 18%, transparent 18%, transparent 22%, var(--stripe) 22%, var(--stripe) 40%, transparent 40%);
  opacity: 0.85;
  z-index: 2;
  animation: stripePulse 4.5s var(--ease) infinite;
}

@keyframes stripePulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 10vh, 5.5rem) 0 clamp(2.5rem, 6vh, 4rem);
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero-brand em {
  font-style: normal;
  color: var(--stripe);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 0.85rem;
  animation: riseIn 0.9s 0.1s var(--ease) both;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--mist);
  max-width: 32rem;
  animation: riseIn 0.9s 0.18s var(--ease) both;
}

.hero .cta-row {
  animation: riseIn 0.9s 0.28s var(--ease) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-dark {
  background: var(--asphalt);
  color: var(--chalk);
}

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

.section-muted {
  background: var(--chalk);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stripe);
  margin-bottom: 0.65rem;
}

.section-dark .eyebrow {
  color: var(--stripe-hot);
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.lede {
  color: var(--steel);
  font-size: 1.05rem;
}

.section-dark .lede {
  color: var(--mist);
}

.prose p + p {
  margin-top: 1rem;
}

.prose h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.prose h3 {
  margin-top: 2rem;
}

.prose ul {
  margin: 1rem 0 1.25rem;
}

.prose a {
  color: var(--asphalt);
  font-weight: 700;
}

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .split-reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split-reverse > :first-child {
    order: 2;
  }
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: var(--slate);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 42%;
  height: 5px;
  background: var(--stripe);
}

/* —— Service list (not cards) —— */
.service-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.service-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  text-decoration: none;
  transition: background 0.2s var(--ease);
}

.service-item:hover {
  background: color-mix(in srgb, var(--stripe) 8%, transparent);
}

@media (min-width: 700px) {
  .service-item {
    grid-template-columns: 8rem 1fr auto;
    align-items: baseline;
    gap: 1.5rem;
  }
}

.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--stripe);
  letter-spacing: 0.04em;
}

.service-item h3 {
  margin-bottom: 0.25rem;
}

.service-item p {
  color: var(--steel);
  font-size: 0.98rem;
}

.service-link {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.section-dark .service-rail {
  border-color: color-mix(in srgb, var(--white) 14%, transparent);
}

.section-dark .service-item {
  border-color: color-mix(in srgb, var(--white) 14%, transparent);
}

.section-dark .service-item p {
  color: var(--mist);
}

.section-dark .service-link {
  color: var(--stripe-hot);
}

/* —— Process steps —— */
.process {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.process-step {
  position: relative;
  padding-top: 0.5rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--stripe);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.process-step p {
  color: var(--steel);
  font-size: 0.98rem;
}

.section-dark .process-step p {
  color: var(--mist);
}

/* —— Area chips as plain links —— */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.65rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.area-grid li {
  margin: 0;
  padding: 0.35rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  font-weight: 600;
  font-size: 0.95rem;
}

.section-dark .area-grid li {
  border-color: color-mix(in srgb, var(--white) 12%, transparent);
}

/* —— Proof / specs —— */
.spec-row {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .spec-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.spec-row dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stripe);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.spec-row dd {
  color: var(--steel);
  font-size: 0.95rem;
}

.section-dark .spec-row dd {
  color: var(--mist);
}

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--stripe);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-body {
  padding: 0 0 1.35rem;
  color: var(--steel);
  max-width: 42rem;
}

/* —— Form —— */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.phone-block {
  margin: 1.25rem 0;
}

.phone-block a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--stripe);
  line-height: 1;
}

.phone-block a:hover {
  color: var(--stripe-hot);
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.form input,
.form select,
.form textarea {
  font: inherit;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  padding: 0.85rem 0.95rem;
  width: 100%;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--stripe);
  outline-offset: 1px;
  border-color: transparent;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-note {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* —— Page hero (inner) —— */
.page-hero {
  background: var(--asphalt);
  color: var(--white);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22%;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--stripe) 0 48px,
    transparent 48px 72px
  );
  opacity: 0.7;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 18ch;
  position: relative;
}

.page-hero .lede {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--mist);
  position: relative;
}

/* —— Sticky call bar (mobile) —— */
.call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--stripe);
  padding: 0.75rem var(--pad);
  box-shadow: 0 -4px 24px color-mix(in srgb, var(--ink) 25%, transparent);
}

.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
}

@media (max-width: 860px) {
  .call-bar {
    display: block;
  }

  body {
    padding-bottom: 3.75rem;
  }
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer .logo-mark {
  font-size: 1.45rem;
}

.site-footer p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  max-width: 28rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li {
  margin: 0 0 0.45rem;
}

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

.site-footer a:hover {
  color: var(--stripe-hot);
}

.footer-bottom {
  border-top: 1px solid var(--slate);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

/* —— Content extras —— */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0 0 0.65rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.75rem;
  height: 3px;
  background: var(--stripe);
}

.band-cta {
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--ink) 82%, transparent), color-mix(in srgb, var(--asphalt) 70%, transparent)),
    url("../images/jacksonville-commercial-parking-lot-striping.jpg") center / cover;
  color: var(--white);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  text-align: left;
}

.band-cta h2 {
  color: var(--white);
  max-width: 16ch;
}

.band-cta .lede {
  color: var(--mist);
  max-width: 32rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-panel {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem var(--pad);
}

.thanks-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

/* —— Breadcrumb —— */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--mist);
  margin-bottom: 1rem;
  position: relative;
}

.breadcrumb a {
  color: var(--stripe-hot);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
