/* Paint N Parking Lots LLC — spec preview
   Gold #f0ae0f, asphalt #242424, steel #737373, mist #abb2b2
   from their GoDaddy theme. Fonts they already load: Karla + Old Standard TT. */

:root {
  --asphalt: #242424;
  --asphalt-2: #1b1b1b;
  --asphalt-3: #2e2e2e;
  --gold: #f0ae0f;
  --gold-deep: #c48c0c;
  --gold-soft: #f6c84a;
  --steel: #737373;
  --mist: #abb2b2;
  --paper: #f3efe4;
  --paper-2: #e8e2d2;
  --white: #fffdf6;
  --ink: #242424;
  --mute: #5c574c;
  --line: rgba(36, 36, 36, 0.12);
  --shadow: 0 20px 48px rgba(36, 36, 36, 0.18);
  --wrap: min(1120px, calc(100% - 1.6rem));
  --radius: 16px;
  --serif: "Old Standard TT", "Times New Roman", serif;
  --sans: Karla, "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.45em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 8vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 4.6vw, 2.9rem); }
h3 { font-size: 1.35rem; letter-spacing: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--asphalt);
  padding: 0.5rem 0.8rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }
.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow, .kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--gold-deep);
  margin: 0 0 0.65rem;
}
.lede { font-size: 1.12rem; color: var(--mute); max-width: 38rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243, 239, 228, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  display: flex; align-items: center; gap: 0.8rem; min-height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--asphalt);
}
.logo img { width: 40px; height: 40px; border-radius: 8px; background: var(--asphalt); }
.logo-word { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.logo-word span {
  display: block; font-family: var(--sans); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); font-weight: 700;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.1rem; }
.nav a { text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.nav a[aria-current="page"], .nav a:hover { color: var(--gold-deep); }
.header-cta { margin-left: 0.1rem; }
.menu-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  border: 1px solid var(--line); background: transparent; border-radius: 8px; cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--asphalt);
  margin: 0 auto; position: relative; content: "";
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 700;
  letter-spacing: 0.03em; font-size: 0.95rem;
  padding: 0.78rem 1.15rem; border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--asphalt); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-asphalt { background: var(--asphalt); color: var(--gold); }
.btn-ghost { background: transparent; color: inherit; border: 1px solid rgba(36,36,36,0.22); }
.btn-ghost:hover { border-color: var(--asphalt); }
.btn-paper { background: var(--paper); color: var(--asphalt); }

.hero { position: relative; overflow: hidden; background: var(--asphalt); color: var(--paper); min-height: min(86vh, 720px); display: grid; align-items: end; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 60%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,26,26,0.22) 0%, rgba(26,26,26,0.42) 42%, rgba(26,26,26,0.92) 100%),
    linear-gradient(90deg, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.16) 70%);
}
.hero-copy { position: relative; z-index: 1; padding: 5.4rem 0 2.8rem; max-width: 40rem; }
.hero .eyebrow { color: var(--gold); }
.hero .lede { color: #d8d2c4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.45rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; margin-top: 1.45rem; color: #c9c2b3; font-size: 0.95rem; }
.hero-meta strong { color: var(--gold); font-weight: 700; }

section { padding: 4rem 0; }
.band-asphalt { background: var(--asphalt); color: var(--paper); }
.band-asphalt .kicker, .band-asphalt .eyebrow { color: var(--gold); }
.band-asphalt .lede, .band-asphalt p { color: #cfc7b6; }
.band-paper { background: var(--white); }
.band-tan { background: var(--paper-2); }
.page-hero { padding: 3.2rem 0 1.1rem; background: var(--asphalt); color: var(--paper); }
.page-hero .lede { color: #cfc7b6; }
.page-hero a { color: var(--gold); }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.2rem; align-items: center; }
.split img, .frame { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.frame { aspect-ratio: 4/3; }
.frame.tall { aspect-ratio: 3/4; object-position: 50% 40%; }
.frame.card { aspect-ratio: 16/9; object-fit: contain; background: var(--asphalt); padding: 0.6rem; }

.quote-block { background: var(--asphalt); color: var(--paper); padding: 3.2rem 0; }
.quote-block blockquote {
  margin: 0; font-family: var(--serif);
  font-size: clamp(1.4rem, 3.4vw, 2.15rem);
  font-style: italic; line-height: 1.25; max-width: 40rem;
}
.quote-block cite {
  display: block; margin-top: 1rem; font-family: var(--sans); font-style: normal;
  font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700;
}

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.6rem; }
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
}
.service-card img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.service-card .body { padding: 1.1rem 1.15rem 1.3rem; }
.service-card .num { font-weight: 700; color: var(--gold-deep); letter-spacing: 0.12em; font-size: 0.74rem; text-transform: uppercase; }
.service-card p { color: var(--mute); font-size: 0.98rem; }
.band-asphalt .service-card { background: var(--asphalt-3); border-color: rgba(240,174,15,0.18); color: var(--paper); }
.band-asphalt .service-card p { color: #cfc7b6; }

.gallery { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.85rem; margin-top: 1.5rem; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery figcaption {
  position: absolute; left: 0.7rem; bottom: 0.7rem;
  background: rgba(36,36,36,0.84); color: var(--paper);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; padding: 0.28rem 0.55rem; border-radius: 999px;
}

.faq-list { display: grid; gap: 0.85rem; margin-top: 1.4rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.2rem; }
.faq-item h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.faq-item p { color: var(--mute); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: grid; gap: 0.15rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.contact-list span { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); }
.contact-list a { font-weight: 700; text-decoration: none; }
.contact-list a:hover { color: var(--gold-deep); }

form { display: grid; gap: 0.4rem; }
label { font-weight: 700; font-size: 0.88rem; }
input, textarea, select {
  font: inherit; padding: 0.75rem 0.8rem;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); color: var(--ink);
}
textarea { min-height: 8rem; resize: vertical; }
.note { font-size: 0.88rem; color: var(--mute); margin-top: 0.5rem; }

.site-footer { background: var(--asphalt); color: #c9c2b3; padding: 2.5rem 0 6.4rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 1.5rem; }
.footer-mark { width: 48px; height: 48px; border-radius: 10px; margin-bottom: 0.7rem; }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer .kicker { color: var(--gold); }

.mobile-dock {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(27,27,27,0.96); padding: 0.65rem 0.85rem;
  gap: 0.6rem; border-top: 3px solid var(--gold);
}
.mobile-dock .btn { flex: 1; }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: 0.8rem 1rem 1.1rem; border-bottom: 1px solid var(--line); gap: 0.3rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.55rem 0.2rem; }
  .split, .service-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 78vh; }
  .mobile-dock { display: flex; }
}
@media (max-width: 560px) {
  .footer-inner, .gallery { grid-template-columns: 1fr; }
  h1 { font-size: 2.15rem; }
}
