/* =========================================================
   Bad Ass Builds — black + yellow, construction-tough
   ========================================================= */
:root {
  --ink: #0b0b0b;
  --ink-2: #141414;
  --ink-3: #1d1d1d;
  --line-dark: #2a2a2a;
  --yellow: #ffc800;
  --yellow-hi: #ffd633;
  --yellow-lo: #e0ae00;
  --yellow-ink: #6b5200;
  --sand: #f6f2e7;
  --paper: #fcfbf7;
  --white: #fff;
  --text: #171717;
  --muted: #5d5b53;
  --line: #e6e0cf;
  --radius: 22px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, .35);
  --head: "Archivo", "Arial Black", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 76px;

  /* Type scale: ONE body size for all paragraph copy, ONE small size, consistent heading steps */
  --fs-body: 1.125rem;                       /* 18px */
  --fs-small: .875rem;                       /* 14px */
  --fs-h3: clamp(1.6rem, 2.6vw, 2.1rem);     /* feature headings */
  --fs-h4: 1.35rem;                          /* card titles */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.04; letter-spacing: -.02em; margin: 0; font-weight: 800; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1200px, 100% - 48px); margin-inline: auto; }
.nowrap { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid var(--yellow);
  background: var(--yellow); color: var(--ink);
  font-family: var(--head); font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 10px 26px -12px rgba(255, 200, 0, .8);
}
.btn:hover { background: var(--yellow-hi); border-color: var(--yellow-hi); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 11px 20px; font-size: 12.5px; }
.btn-lg { padding: 18px 34px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); }

.link-arrow { font-family: var(--head); font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; transition: gap .2s; }
.link-arrow:hover { color: var(--yellow-ink); }
.inline-link { font-weight: 700; border-bottom: 2px solid var(--yellow); }
.inline-link:hover { background: rgba(255,200,0,.25); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  background: linear-gradient(to bottom, rgba(11,11,11,.85), rgba(11,11,11,0));
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-solid {
  background: rgba(11, 11, 11, .92); backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; margin-inline: auto; }
.nav > a, .dropdown-toggle {
  color: rgba(255,255,255,.82); font-weight: 700; font-size: 14.5px; background: none; border: 0; padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px; transition: color .15s;
}
.nav > a:hover, .dropdown-toggle:hover, .dropdown:focus-within .dropdown-toggle { color: var(--yellow); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: -16px; min-width: 210px; padding: 8px;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 9px; color: rgba(255,255,255,.86); font-weight: 700; font-size: 14.5px; }
.dropdown-menu a:hover { background: var(--yellow); color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 800; font-size: 15px; white-space: nowrap; }
.header-phone svg { color: var(--yellow); }
.header-phone:hover { color: var(--yellow); }
.menu-btn { display: none; width: 46px; height: 46px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 0; margin-left: auto; position: relative; }
.menu-btn span { position: absolute; left: 12px; right: 12px; height: 2.5px; border-radius: 2px; background: var(--white); transition: .22s; }
.menu-btn span:nth-child(1) { top: 15px; } .menu-btn span:nth-child(2) { top: 22px; } .menu-btn span:nth-child(3) { top: 29px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Hazard stripe ---------- */
.hazard {
  height: 14px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 16px, var(--ink) 16px 32px);
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 94vh; display: flex; flex-direction: column; background: #111; overflow: hidden; isolation: isolate; }
.hero::before { /* warm glow behind mascot */
  content: ""; position: absolute; z-index: -3; inset: 0;
  background:
    radial-gradient(60% 70% at 82% 42%, rgba(255, 200, 0, .20), transparent 65%),
    linear-gradient(180deg, #0b0b0b, #151515);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: -2; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 80% at 30% 40%, #000, transparent 75%);
          mask-image: radial-gradient(70% 80% at 30% 40%, #000, transparent 75%);
}
/* Optional background photo (assets/photos/hero.jpg). Darkness of the tint is adjustable:
   0 = no tint, 1 = solid black. Left side is darker so the headline stays readable. */
.hero { --tint-left: .82; --tint-right: .4; }
.hero-photo { position: absolute; inset: 0; z-index: -3; opacity: 0; transition: opacity .7s ease; }
.hero.has-photo .hero-photo { opacity: 1; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,11,.75), rgba(11,11,11,0) 24%),
    linear-gradient(to top, rgba(11,11,11,.7), rgba(11,11,11,0) 28%),
    linear-gradient(90deg, rgba(11,11,11,var(--tint-left)) 0%, rgba(11,11,11,calc(var(--tint-left) * .82)) 38%, rgba(11,11,11,var(--tint-right)) 100%);
}
.hero.has-photo .hero-grid-lines { display: none; }
/* drop-in photos fade in once found; until then the placeholder underneath shows */
img[data-photo]:not([src]) { visibility: hidden; }
/* focal points: keep the important part of each photo when the tile/panel crops it */
img[data-photo$="gallery-feature-spaces"] { object-position: 50% 28%; }
img[data-photo$="gallery-bars"] { object-position: 50% 60%; }
img[data-photo$="gallery-man-caves"] { object-position: 50% 50%; }
img[data-photo$="service-walls"] { object-position: 50% 42%; }
img[data-photo$="service-hangouts"] { object-position: 50% 55%; }
img[data-photo$="service-handyman"] { object-position: 62% 45%; }
img[data-photo$="gallery-handyman"] { object-position: 50% 28%; }
.badge-card img[data-photo$="/about"] { object-position: 76% 40%; }

/* Mascot is a transparent cut-out, so it stands cleanly in front of the photo (or the glow) */
.hero-art { position: absolute; z-index: -1; top: var(--header-h); bottom: 0; right: max(0px, calc((100vw - 1400px) / 2)); width: min(52vw, 760px); pointer-events: none; }
.hero-art img {
  position: absolute; right: 10%; top: 3%; height: 126%; width: auto; max-width: none; transform: scaleX(-1);
  filter: drop-shadow(0 0 34px rgba(255,200,0,.28)) drop-shadow(0 26px 40px rgba(0,0,0,.6));
}
.hero-inner { flex: 1; display: flex; align-items: center; padding-top: calc(var(--header-h) + 40px); padding-bottom: 56px; }
.hero-copy { max-width: min(690px, 56vw); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px;
  color: var(--yellow); font-family: var(--head); font-weight: 800; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow-dark { color: var(--yellow-ink); }
.eyebrow-dark::before { content: ""; width: 26px; height: 3px; background: var(--yellow); border-radius: 2px; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 900; line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.accent { color: var(--yellow); }
.accent-dk { color: var(--yellow-lo); }
.hero-tag { margin: 26px 0 10px; font-family: var(--head); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: var(--white); letter-spacing: -.01em; }
.hero-sub { max-width: 540px; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px 44px; margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-stats li { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.hero-stats svg { color: var(--yellow); grid-row: span 2; }
.hero-stats strong { font-family: var(--head); font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.1; }
.hero-stats span { color: rgba(255,255,255,.62); font-size: var(--fs-small); line-height: 1.3; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; position: relative; }
.section-sand { background: var(--sand); }
.section-ink { background: var(--ink); color: var(--white); overflow: hidden; }
.section-ink::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 0%, rgba(255,200,0,.10), transparent 70%); pointer-events: none; }
.section-ink > .wrap { position: relative; }
.section h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); font-weight: 900; letter-spacing: -.03em; text-wrap: balance; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head-light h2 { color: var(--white); }
.section-head-split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.section-head-split h2 { max-width: 700px; }
.section-head-split .muted { max-width: 320px; margin: 0; }
.muted { color: var(--muted); }
.lead { color: #2b2a26; }
.lead-light { color: rgba(255,255,255,.75); }
.section h2 + p { margin-top: 18px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.about-copy h2 { margin-bottom: 22px; }
.about-actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.about-art { position: relative; }
/* Photo card (About section): just the photo, with the Veteran Owned tag sitting on it */
.badge-card { position: relative; border-radius: 30px; overflow: hidden; background: var(--ink-3); box-shadow: var(--shadow); aspect-ratio: 1 / 1.22; }
.badge-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.float-chip {
  position: absolute; left: -22px; bottom: 34px; display: flex; align-items: center; gap: 14px; z-index: 3;
  background: var(--yellow); color: var(--ink); padding: 16px 24px 16px 20px; border-radius: 18px; box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.float-chip svg { flex: none; }
.float-chip span { font-family: var(--head); font-weight: 900; font-size: 1.1rem; line-height: 1.15; letter-spacing: -.01em; text-transform: uppercase; }

/* ---------- Tabs / services ---------- */
.tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 28px; max-width: 100%; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { border: 0; background: none; padding: 12px 24px; border-radius: 999px; font-family: var(--head); font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); white-space: nowrap; transition: .18s; }
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--ink); color: var(--yellow); }
.panel { display: none; }
.panel.is-active { display: block; animation: fadeUp .4s ease; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.panel-copy { padding: 52px; display: flex; flex-direction: column; justify-content: center; }
.panel-copy h3 { font-size: var(--fs-h3); margin-bottom: 16px; font-weight: 900; }
.panel-copy p { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 30px; }
.chips li { padding: 7px 16px; border-radius: 999px; background: #fff7d1; border: 1px solid #f3dc7a; color: #5b4500; font-weight: 800; font-size: var(--fs-small); }
.panel-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.panel-visual { position: relative; min-height: 400px; overflow: hidden; }
.panel-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.panel-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent 45%); pointer-events: none; }
.pv-label {
  position: absolute; z-index: 2; left: 22px; bottom: 22px; padding: 9px 16px; background: var(--yellow); color: var(--ink);
  font-family: var(--head); font-weight: 800; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; border-radius: 8px;
}

/* Placeholder "material" visuals */
.pv-slat {
  background:
    linear-gradient(180deg, rgba(255,200,0,.22), transparent 38%),
    repeating-linear-gradient(90deg, #262626 0 22px, #0d0d0d 22px 26px);
}
.pv-plank {
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(255,200,0,.28), transparent 70%),
    repeating-linear-gradient(0deg, #2b2b2b 0 44px, #0d0d0d 44px 48px);
}
.pv-hazard {
  background:
    linear-gradient(180deg, rgba(11,11,11,.0), rgba(11,11,11,.55)),
    repeating-linear-gradient(-45deg, var(--yellow) 0 34px, #141414 34px 68px);
}
.pv-bar {
  background:
    linear-gradient(180deg, transparent 0 46%, var(--yellow) 46% 47.5%, transparent 47.5% 100%),
    linear-gradient(180deg, rgba(255,200,0,.18), transparent 46%),
    linear-gradient(#0b0b0b 2px, transparent 2px) 0 0/62px 30px,
    linear-gradient(90deg, #0b0b0b 2px, transparent 2px) 0 0/62px 30px,
    #232323;
}
.pv-feature {
  background:
    radial-gradient(45% 80% at 50% 110%, rgba(255,200,0,.5), transparent 70%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px) 0 0/44px 44px,
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0/44px 44px,
    #151515;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 16px; }
.tile { position: relative; margin: 0; border-radius: 22px; overflow: hidden; background: var(--ink); isolation: isolate; }
.tile-tall { grid-row: span 2; }
.tile-wide { grid-column: span 3; }
.tile > img, .tile-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.tile:hover > img, .tile:hover .tile-art { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 55%); z-index: 1; }
.tile figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: var(--white); display: flex; flex-direction: column; gap: 2px; }
.tile figcaption span { font-family: var(--head); font-weight: 900; font-size: 22px; letter-spacing: -.01em; }
.tile figcaption small { color: rgba(255,255,255,.75); font-size: var(--fs-small); }
.tile figcaption span::before { content: ""; display: block; width: 34px; height: 4px; background: var(--yellow); border-radius: 2px; margin-bottom: 10px; }
.gallery-cta { text-align: center; margin: 44px 0 0; }

/* ---------- Quiz ---------- */
.quiz-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.quiz-intro .muted { margin-bottom: 26px; }
.quiz-mascot { width: 100%; max-width: 380px; height: 300px; object-fit: cover; object-position: 50% 16%; border-radius: 26px; border: 3px solid var(--ink); box-shadow: var(--shadow); }
.quiz-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); overflow: hidden; }
.quiz-progress { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: #f0ead6; }
.quiz-progress span { display: block; height: 100%; width: 33.3%; background: var(--yellow); border-radius: 0 6px 6px 0; transition: width .35s ease; }
.quiz-step { font-family: var(--head); font-weight: 800; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow-ink); margin: 6px 0 10px; }
.quiz-pane { display: none; }
.quiz-pane.is-active { display: block; animation: fadeUp .35s ease; }
.quiz-pane h3 { font-size: var(--fs-h3); margin-bottom: 22px; }
.quiz-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quiz-options.two { grid-template-columns: repeat(2, 1fr); }
.opt {
  text-align: left; background: var(--paper); border: 2px solid var(--line); border-radius: 16px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 2px; transition: .16s;
}
.opt b { font-family: var(--head); font-weight: 800; font-size: 17px; }
.opt span { color: var(--muted); font-size: var(--fs-small); }
.opt:hover { border-color: var(--yellow); background: #fffbe6; transform: translateY(-2px); }
.opt.is-picked { border-color: var(--ink); background: var(--yellow); }
.back { margin-top: 18px; background: none; border: 0; padding: 6px 0; font-weight: 800; color: var(--muted); }
.back:hover { color: var(--ink); }
.done { text-align: center; padding: 20px 8px; }
.done-icon { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; font-size: 34px; font-weight: 900; }
.done p { color: var(--muted); }

/* ---------- Forms (shared) ---------- */
label { display: block; font-weight: 700; font-size: 14px; color: #2b2a26; }
input:not([type="radio"]), select, textarea {
  display: block; width: 100%; margin-top: 7px; padding: 14px 16px; background: var(--paper);
  border: 2px solid var(--line); border-radius: 12px; font-weight: 500; font-size: 16px; transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(255,200,0,.5); }
input.invalid { border-color: #c0392b; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
form > label { margin-bottom: 14px; }
.form-error { color: #b0281c; font-weight: 700; font-size: 14px; margin: 0 0 12px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: stretch; }
.steps-nav { display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex; align-items: center; gap: 18px; text-align: left; padding: 22px 24px; background: var(--white);
  border: 2px solid var(--line); border-radius: 20px; transition: .2s;
}
.step .num { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); font-family: var(--head); font-weight: 900; font-size: 20px; transition: .2s; }
.step b { display: block; font-family: var(--head); font-weight: 800; font-size: 20px; line-height: 1.2; }
.step small { display: block; color: var(--muted); font-size: var(--fs-small); line-height: 1.4; margin-top: 3px; }
.step:hover { border-color: var(--yellow); }
.step.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.step.is-active .num { background: var(--yellow); color: var(--ink); }
.step.is-active small { color: rgba(255,255,255,.7); }
.steps-detail {
  position: relative; background: var(--sand); border: 1px solid var(--line); border-radius: 26px; padding: 44px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.steps-detail::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: var(--yellow); opacity: .35; }
.steps-detail > * { position: relative; }
.detail { display: none; }
.detail.is-active { display: block; animation: fadeUp .35s ease; }
.detail h3 { font-size: var(--fs-h3); margin-bottom: 14px; font-weight: 900; }
.detail p { color: #35332d; }
.steps-detail .btn { align-self: flex-start; margin-top: 12px; }

/* ---------- Why (ink) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 24px; padding: 34px 30px; transition: .25s; }
.why-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.why-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); border-radius: 16px; margin-bottom: 22px; }
.why-card h3 { font-size: var(--fs-h4); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.68); margin: 0; }
.kyle { margin-top: 56px; display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: center; background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 30px; padding: 26px 46px 26px 26px; }
.kyle-photo { border-radius: 22px; overflow: hidden; border: 3px solid var(--yellow); aspect-ratio: 1 / 1.15; }
.kyle-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; background: var(--ink-3); }
.kyle-copy h3 { font-size: var(--fs-h3); font-weight: 900; margin-bottom: 14px; }
.kyle-copy h3 span { color: var(--yellow); font-weight: 700; font-size: .62em; letter-spacing: 0; }
.kyle-copy p { color: rgba(255,255,255,.72); max-width: 560px; }
.kyle-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq-grid .section-head { position: sticky; top: calc(var(--header-h) + 24px); margin-bottom: 0; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 18px; margin-bottom: 12px; transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: var(--ink); box-shadow: 0 14px 34px -22px rgba(0,0,0,.5); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 64px 22px 26px; position: relative; font-family: var(--head); font-weight: 800; font-size: 18px; letter-spacing: -.01em; line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; translate: 0 -50%; width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--sand); border-radius: 50%; font-size: 22px; font-weight: 700; line-height: 1; transition: .2s;
}
.faq details[open] summary::after { content: "–"; background: var(--yellow); }
.faq details p { padding: 0 26px 24px; margin: 0; color: var(--muted); }

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.areas-copy h2 { margin-bottom: 20px; }
.phone-big { display: inline-block; margin-top: 10px; font-family: var(--head); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: var(--yellow); letter-spacing: -.02em; border-bottom: 4px solid var(--yellow); line-height: 1.15; }
.phone-big:hover { color: var(--yellow-hi); }


/* ---------- Indiana + Kentucky outline map ---------- */
.areas-map { position: relative; padding: 52px 34px 30px; border-radius: 28px; overflow: hidden; border: 1px solid var(--line-dark);
  background: radial-gradient(70% 60% at 50% 42%, #1d1d1d, #0e0e0e); }
.areas-map::before { content: ""; position: absolute; inset: 0; opacity: .7;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px; -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 100%); mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 100%); }
.map-tag { position: absolute; z-index: 2; top: 20px; left: 22px; padding: 7px 14px; background: var(--yellow); color: var(--ink); border-radius: 8px;
  font-family: var(--head); font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.areas-map svg { position: relative; display: block; width: 100%; height: auto; overflow: visible; }
.map-glow use { fill: none; stroke: var(--yellow); stroke-width: 10; opacity: .4; filter: url(#blur10); }
.state-shape { fill: #161616; stroke: none; transition: fill .3s ease; }
.state-hatch { fill: url(#hatch); stroke: none; pointer-events: none; transition: opacity .3s; }
.map-lines use { fill: none; stroke: var(--yellow); stroke-width: 3.5; stroke-linejoin: round; stroke-linecap: round; pointer-events: none; }
.state-abbr { font-family: var(--head); font-weight: 900; font-size: 62px; fill: var(--yellow); text-anchor: middle; letter-spacing: -.02em; pointer-events: none; transition: fill .3s; }
.state-name { font-family: var(--head); font-weight: 800; font-size: 21px; fill: rgba(255,255,255,.85); text-anchor: middle; letter-spacing: .22em; pointer-events: none; transition: fill .3s; }
.state:hover .state-shape { fill: var(--yellow); }
.state:hover .state-hatch { opacity: 0; }
.state:hover .state-abbr, .state:hover .state-name { fill: var(--ink); }


/* ---------- Service-area extras: radius circle, pin, town chips ---------- */
.radius-ring { fill: rgba(255,200,0,.10); stroke: var(--yellow); stroke-width: 2.5; stroke-dasharray: 9 8; stroke-linecap: round; pointer-events: none; }
.pin-dot { fill: var(--yellow); stroke: #0b0b0b; stroke-width: 3; pointer-events: none; }
.pin-pulse { fill: var(--yellow); opacity: .5; transform-box: fill-box; transform-origin: center; animation: pinPulse 2.4s ease-out infinite; pointer-events: none; }
@keyframes pinPulse { from { transform: scale(1); opacity: .55; } to { transform: scale(3.4); opacity: 0; } }
.towns { margin: 26px 0 10px; }
.towns-label { margin: 16px 0 9px; font-family: var(--head); font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); }
.town-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.town-chips li { padding: 6px 14px; border: 1px solid var(--line-dark); border-radius: 999px; background: var(--ink-2); color: rgba(255,255,255,.86); font-weight: 700; font-size: var(--fs-small); }
.opt.wide { grid-column: 1 / -1; }

/* ---------- Quote ---------- */
.quote-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: start; }
.quote-copy h2 { margin-bottom: 20px; }
.contact-list { margin-top: 28px; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 18px; }
.contact-list svg { flex: none; width: 44px; height: 44px; padding: 12px; background: var(--yellow); border-radius: 14px; }
.contact-list a:hover { border-bottom: 2px solid var(--yellow); }
.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 36px; box-shadow: var(--shadow); }
fieldset { border: 0; margin: 0 0 22px; padding: 0; }
legend { font-family: var(--head); font-weight: 800; font-size: 19px; margin-bottom: 14px; padding: 0; }
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pills label { margin: 0; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills span { display: inline-block; padding: 10px 20px; border: 2px solid var(--line); border-radius: 999px; background: var(--paper); font-family: var(--head); font-weight: 800; font-size: var(--fs-small); letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: .15s; }
.pills span:hover { border-color: var(--yellow); }
.pills input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--yellow); }
.pills input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 3px; }
.quote-form .btn { margin-top: 6px; }
.fine { margin: 16px 0 0; font-size: 12px; line-height: 1.5; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: #070707; color: rgba(255,255,255,.72); font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding: 68px 0 46px; }
.footer-brand img { height: 84px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; }
.footer-tag { font-family: var(--head); font-weight: 800; color: var(--yellow); letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }
.footer h4 { color: var(--white); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: var(--fs-small); }

/* ---------- Nav highlight (Handyman) ---------- */
.nav > a.nav-hot { color: var(--yellow); position: relative; }
.nav > a.nav-hot::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--yellow); border-radius: 2px; }
.nav > a.nav-hot:hover { color: var(--yellow-hi); }

/* ---------- Ticker banner ---------- */
.ticker { background: var(--yellow); color: var(--ink); overflow: hidden; border-block: 3px solid var(--ink); position: relative; z-index: 1; }
.ticker-track { display: flex; width: max-content; animation: ticker 60s linear infinite; will-change: transform; }
.ticker ul { display: flex; flex: none; }
.ticker li { display: flex; align-items: center; padding: 15px 0; font-family: var(--head); font-weight: 800; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.ticker li::after { content: ""; width: 9px; height: 9px; margin: 0 30px; background: var(--ink); transform: rotate(45deg); }
@keyframes ticker { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* ---------- Handyman ---------- */
.hm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hm-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 22px; padding: 30px 28px; transition: border-color .25s, transform .25s; }
.hm-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.hm-icon { display: block; width: 58px; height: 58px; padding: 13px; margin-bottom: 20px; color: var(--yellow); background: rgba(255,200,0,.1); border: 1px solid rgba(255,200,0,.3); border-radius: 16px; }
.hm-card h3 { font-size: var(--fs-h4); margin-bottom: 8px; }
.hm-card p { margin: 0; color: rgba(255,255,255,.7); }
.hm-cta { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 34px 40px; background: var(--yellow); color: var(--ink); border-radius: 26px; }
.hm-cta p { margin: 0; max-width: 540px; text-wrap: balance; font-family: var(--head); font-weight: 800; font-size: var(--fs-h4); line-height: 1.25; letter-spacing: -.01em; }
.hm-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hm-cta .btn { background: var(--ink); border-color: var(--ink); color: var(--yellow); box-shadow: none; }
.hm-cta .btn:hover { background: #222; border-color: #222; }
.hm-cta .btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.hm-cta .btn-ghost:hover { background: rgba(0,0,0,.08); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar { display: none; }

/* ---------- Motion ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { width: auto; flex-wrap: wrap; justify-content: center; }
  .ticker ul { flex-wrap: wrap; justify-content: center; }
  .ticker ul[aria-hidden="true"] { display: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1120px) {
  .header-phone { display: none; }
  .nav { gap: 22px; }
}

@media (max-width: 980px) {
  .section { padding: 76px 0; }
  .menu-btn { display: block; }
  .header-cta { display: none; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0; margin: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,11,11,.98); padding: 8px 24px 24px; border-bottom: 1px solid var(--line-dark);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto; display: none;
  }
  .nav.open { display: flex; }
  .nav > a, .dropdown-toggle { font-size: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; justify-content: space-between; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; background: transparent; border: 0; box-shadow: none; padding: 0 0 6px 12px; }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown:hover .dropdown-menu { opacity: 1; }
  .site-header { background: rgba(11,11,11,.92); backdrop-filter: blur(12px); }

  .hero { min-height: 0; }
  .hero-copy { max-width: 690px; }
  .hero-art { display: none; } /* no room beside the text on tablets/phones: hide the mascot instead of showing him faded */
  .hero { --tint-left: .86; --tint-right: .72; } /* stronger tint on phones: text sits over the whole photo */
  .hero-inner { padding-top: calc(var(--header-h) + 44px); padding-bottom: 44px; }

  .about-grid, .quiz-grid, .faq-grid, .areas-grid, .quote-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-art { max-width: 460px; margin-inline: auto; width: 100%; }
  .float-chip { left: 8px; }
  .faq-grid .section-head { position: static; }
  .panel-grid { grid-template-columns: 1fr; }
  .panel-visual { min-height: 240px; order: -1; }
  .panel-copy { padding: 34px 28px; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hm-grid { grid-template-columns: repeat(2, 1fr); }
  .hm-cta { padding: 30px 28px; }
  .kyle { grid-template-columns: 1fr; padding: 22px; gap: 26px; }
  .kyle-photo { aspect-ratio: 16 / 11; max-height: 320px; }
  .kyle-photo img { object-position: 50% 12%; }
  .quiz-mascot { max-width: 100%; height: 240px; }
  .section-head-split { flex-direction: column; align-items: flex-start; gap: 14px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .tile-tall { grid-row: auto; }
  .tile-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  body { padding-bottom: 72px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 2fr; gap: 10px; position: fixed; z-index: 60; left: 0; right: 0; bottom: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(11,11,11,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--line-dark);
  }
  .mobile-bar a { display: grid; place-items: center; padding: 14px; border-radius: 999px; font-family: var(--head); font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
  .mb-call { color: var(--white); border: 2px solid rgba(255,255,255,.3); }
  .mb-quote { background: var(--yellow); color: var(--ink); }
}

@media (max-width: 600px) {
  :root { --fs-body: 1rem; }
  .wrap { width: min(1200px, 100% - 32px); }
  .section { padding: 64px 0; }
  .brand img { height: 50px; }
  .hero h1 { font-size: clamp(2rem, 9.4vw, 3rem); }
  .hm-grid { grid-template-columns: 1fr; }
  .areas-map { padding: 48px 16px 20px; border-radius: 22px; }
  .hm-card { padding: 24px 22px; }
  .hm-cta { padding: 26px 22px; }
  .hm-cta-btns .btn { width: 100%; }
  .ticker li { padding: 13px 0; font-size: .9rem; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 18px 28px; margin-top: 36px; }
  .hero-stats li:last-child { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row label { margin-bottom: 14px; }
  .quiz-card, .quote-form { padding: 24px 20px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-options.two { grid-template-columns: 1fr 1fr; }
  .steps-detail { padding: 30px 24px; }
  .step { padding: 18px; gap: 14px; }
  .gallery { grid-auto-rows: 180px; gap: 12px; }
  .tile figcaption span { font-size: 18px; }
  .tile figcaption small { display: none; }
  .faq summary { font-size: 16.5px; padding: 18px 58px 18px 20px; }
  .faq details p { padding: 0 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }
  /* all three tabs fit side by side on a phone: no sideways scrolling needed */
  .tabs { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; gap: 4px; padding: 5px; border-radius: 22px; overflow: visible; }
  .tab { padding: 12px 4px; font-size: 11.5px; letter-spacing: .03em; line-height: 1.2; white-space: normal; text-align: center; border-radius: 17px; display: flex; align-items: center; justify-content: center; min-height: 52px; }
}
