/* Mr. Haul Away — editorial variant (v2) · concept by Madebyglob */
:root {
  --paper: #140f0c;
  --paper-2: #1c1510;
  --card: #221810;
  --ink: #f4ebe3;
  --ink-soft: #c4b4a6;
  --ink-faint: #8f7f72;
  --green: #e85d04; /* ember */
  --green-deep: #9a031e; /* deep fire */
  --leaf: #ff7b00; /* flame */
  --leaf-soft: #3a2214;
  --night: #0a0705;
  --line: rgba(255, 180, 100, 0.18);
  --line-soft: rgba(255, 200, 140, 0.1);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --max: 1240px;
  --r: 20px;
  --header-h: 78px;
  --sticky: 0px;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  --ember: #ff6b00;
  --ash: #2a1c14;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

.skip { position: absolute; left: 12px; top: -48px; background: var(--ink); color: var(--paper); padding: 8px 14px; z-index: 10000; border-radius: 8px; }
.skip:focus { top: 12px; }

.wrap { width: min(var(--max), calc(100% - 3rem)); margin-inline: auto; }

::selection { background: rgba(232, 93, 4, 0.45); color: #fff; }

/* ---------- demo ribbon ---------- */
.ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: var(--night);
  color: #cfd4c6;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.ribbon strong { color: #fff; font-weight: 600; }
.ribbon a { color: #fff; text-underline-offset: 3px; }
.ribbon .pill {
  background: linear-gradient(135deg, #ff7b00, #e85d04);
  color: #1a0c06;
  font-weight: 600;
  text-decoration: none;
  padding: 3px 12px;
  border-radius: 999px;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.header.scrolled { border-bottom-color: var(--line-soft); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.05; }
.brand b { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; letter-spacing: -0.01em; }
.brand span { font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.head-right { display: flex; align-items: center; gap: 18px; }
.head-tel { text-decoration: none; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; white-space: nowrap; }
.head-tel small { display: block; font-family: var(--sans); font-weight: 500; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.menu-btn span { width: 18px; height: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 15.5px;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { box-shadow: 0 12px 30px rgba(23, 27, 20, 0.25); }
.btn-green { background: linear-gradient(135deg, #ff7b00, #e85d04 55%, #c1121f); color: #1a0c06; text-shadow: none; box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35); }
.btn-green:hover { box-shadow: 0 12px 30px rgba(232, 93, 4, 0.35); }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 16.5px; }
.btn .arr { transition: transform 0.16s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 6vw, 84px) 0 clamp(48px, 6vw, 90px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--green); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--green); font-weight: 480; }

.hero-lead { max-width: 46ch; color: var(--ink-soft); font-size: 1.14rem; margin: 0 0 32px; }
.hero-lead b { color: var(--ink); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; color: var(--ink-soft); padding: 0; margin: 0; list-style: none; }
.hero-proof b { color: var(--ink); }
.hero-proof .star { color: var(--green); }

/* layered photo composition */
.hero-visual { position: relative; }
.photo-frame {
  position: relative;
  aspect-ratio: 4 / 4.8;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-2);
}
.photo-frame picture { display: contents; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }

.polaroid {
  position: absolute;
  left: -28px;
  bottom: 34px;
  width: min(190px, 40%);
  background: #fff;
  padding: 9px 9px 12px;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(23, 27, 20, 0.28);
  transform: rotate(-4deg);
}
.polaroid img { border-radius: 7px; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: top; }
.polaroid figcaption { font-size: 11.5px; margin-top: 8px; color: var(--ink-soft); text-align: center; line-height: 1.35; }
.polaroid figcaption b { display: block; color: var(--ink); font-size: 12.5px; }

.sticker {
  position: absolute;
  top: -20px;
  right: -14px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--green);
  color: #eaf3e4;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  transform: rotate(8deg);
  box-shadow: 0 14px 34px rgba(18, 60, 28, 0.35);
  padding: 14px;
}

/* ---------- marquee ---------- */
.ticker { background: var(--ink); color: var(--paper); overflow: hidden; padding: 13px 0; border-block: 1px solid var(--ink); }
.ticker-track { display: flex; gap: 0; width: max-content; animation: tick 36s linear infinite; }
.ticker span { font-family: var(--serif); font-size: 15.5px; letter-spacing: 0.06em; white-space: nowrap; padding: 0 18px; }
.ticker i { font-style: normal; color: var(--leaf); padding-right: 0; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-head { max-width: 620px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}
h2 em { font-style: italic; color: var(--green); font-weight: 480; }
.section-head p { margin: 0; color: var(--ink-soft); font-size: 1.07rem; }

/* ---------- services (editorial rows) ---------- */
.svc-rows { border-top: 1px solid var(--line); }
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1.1fr 1.3fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.2s, padding 0.2s;
}
.svc-row:hover { background: var(--card); padding-left: 20px; }
.svc-num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink-faint); }
.svc-row h3 { font-family: var(--serif); font-weight: 560; font-size: clamp(1.5rem, 2.6vw, 2.2rem); letter-spacing: -0.015em; margin: 0; }
.svc-row p { margin: 0; color: var(--ink-soft); font-size: 15.5px; max-width: 48ch; }
.svc-arr {
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.svc-row:hover .svc-arr { background: var(--green); border-color: var(--green); color: #fff; transform: rotate(-45deg); }
.svc-thumb { display: none; }

/* floating hover image */
.svc-float {
  position: fixed;
  z-index: 60;
  width: 250px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(0.9) rotate(3deg);
  transition: opacity 0.18s, transform 0.22s;
}
.svc-float.show { opacity: 1; transform: scale(1) rotate(3deg); }
.svc-float img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity 0.2s; }
.svc-float img.on { opacity: 1; }

.svc-note { margin-top: 26px; color: var(--ink-faint); font-size: 14px; }

/* ---------- job story ---------- */
.story { background: var(--night); color: #ece9df; }
.story h2 { color: #f4f1e8; }
.story h2 em { color: var(--leaf); }
.story .section-head p { color: #a9ae9e; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card { position: relative; }
.story-card .ph { aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; background: #1c2017; }
.story-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.story-card:hover .ph img { transform: scale(1.05); }
.story-step {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  padding: 4px 14px;
  border-radius: 999px;
}
.story-card h3 { font-family: var(--serif); font-weight: 560; font-size: 1.6rem; margin: 18px 0 6px; letter-spacing: -0.01em; }
.story-card p { margin: 0; color: #a9ae9e; font-size: 15px; }
.story-cta { margin-top: 48px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.story-cta .hint { color: #a9ae9e; font-size: 14px; }

/* ---------- before / after ---------- */
.ba-band .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.ba {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 3; transform: translateX(-50%); }
.ba-handle i {
  position: absolute; top: 50%; left: 50%;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 1rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.ba-tag { position: absolute; top: 16px; z-index: 4; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; background: rgba(18,21,15,0.72); color: #fff; padding: 6px 12px; border-radius: 999px; }
.ba-tag.l { left: 16px; }
.ba-tag.r { right: 16px; }
.ba-copy .facts { display: grid; gap: 0; margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.ba-copy .facts li { display: flex; justify-content: space-between; gap: 18px; padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-soft); }
.ba-copy .facts b { color: var(--ink); font-family: var(--serif); }

/* ---------- owner ---------- */
.owner { background: var(--paper-2); }
.owner .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.owner-photo { position: relative; }
.owner-photo .ph { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.owner-photo .ph img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.owner-badge {
  position: absolute;
  right: -16px;
  bottom: 30px;
  background: var(--green);
  color: #eef5e9;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 16px 40px rgba(18,60,28,0.35);
  transform: rotate(2deg);
  max-width: 200px;
}
.owner-badge b { display: block; font-family: var(--serif); font-size: 15px; }
blockquote.pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 480;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.owner-copy p { color: var(--ink-soft); max-width: 54ch; }
.cred { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; margin: 28px 0 0; padding: 0; list-style: none; }
.cred li { padding: 13px 2px; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-soft); }
.cred b { color: var(--ink); display: block; font-family: var(--serif); font-size: 16.5px; margin-bottom: 1px; }

/* ---------- process ---------- */
.process { padding-block: clamp(64px, 8vw, 110px); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 4vw, 56px); }
.steps li { border-top: 2px solid var(--ink); padding-top: 22px; }
.step-num { display: block; font-family: var(--serif); font-style: italic; font-weight: 480; font-size: 2.6rem; line-height: 1; color: var(--green); margin-bottom: 14px; }
.steps h3 { font-family: var(--serif); font-weight: 560; font-size: 1.45rem; letter-spacing: -0.01em; margin: 0 0 10px; }
.steps p { margin: 0; font-size: 15.5px; color: var(--ink-soft); }

/* ---------- dump trailers + pricing ---------- */
.trailer-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.trailer-photo { border-radius: var(--r); overflow: hidden; aspect-ratio: 3 / 2; box-shadow: var(--shadow); }
.trailer-photo img { width: 100%; height: 100%; object-fit: cover; }
.trailer-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 0; }
.trailer-points li { padding: 12px 2px 12px 30px; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-soft); position: relative; }
.trailer-points li::before { content: "✓"; position: absolute; left: 2px; color: var(--green); font-weight: 700; }
.ladder { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 26px 26px 22px; }
.ladder-head { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.rung { padding: 13px 0 15px; border-bottom: 1px solid var(--line-soft); }
.rung:last-of-type { border-bottom: 0; }
.rung-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.rung-top span { font-size: 15.5px; font-weight: 500; }
.rung-top b { font-family: var(--serif); font-weight: 560; font-size: 1.35rem; letter-spacing: -0.01em; text-align: right; }
.rung-top b small { display: block; font-family: var(--sans); font-weight: 600; font-size: 9.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: -2px; }
.rung-bar { height: 6px; border-radius: 99px; background: var(--paper-2); overflow: hidden; }
.rung-bar i { display: block; height: 100%; border-radius: 99px; background: var(--green); }
.rung.rental .rung-top { margin-bottom: 0; }
.rung.rental .rung-top b { color: var(--green); }
.ladder-note { margin: 14px 0 0; font-size: 13px; color: var(--ink-faint); line-height: 1.5; }
.price-note { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 30px; padding: 20px 24px; background: var(--leaf-soft); border-radius: var(--r); }
.price-note p { margin: 0; font-size: 15px; color: var(--green-deep); max-width: 56ch; }

/* ---------- reviews ---------- */
.reviews-hero {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 480;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto 14px;
  text-align: center;
  text-wrap: balance;
}
.reviews-hero-cite { display: block; text-align: center; font-size: 14.5px; color: var(--ink-faint); margin-bottom: clamp(40px, 5vw, 64px); }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 940px; margin-inline: auto; }
.review {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 24px;
}
.review .stars { color: var(--green); letter-spacing: 2px; font-size: 13px; margin-bottom: 10px; }
.review p { margin: 0 0 14px; font-size: 15.5px; }
.review cite { font-style: normal; color: var(--ink-faint); font-size: 13.5px; }
.review-foot { text-align: center; margin-top: 28px; color: var(--ink-faint); font-size: 14px; }
.review-foot b { color: var(--ink); }

/* ---------- area ---------- */
.area .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); }
.towns { columns: 2; gap: 32px; margin: 0; padding: 0; list-style: none; }
.towns li { padding: 11px 2px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.15rem; break-inside: avoid; }
.towns li.hot { color: var(--green); font-weight: 600; }
.towns li.hot::after { content: " · same-day"; font-family: var(--sans); font-size: 12px; color: var(--ink-faint); font-weight: 500; }
.area-side p { color: var(--ink-soft); }
.area-photo { border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 9; margin-top: 26px; box-shadow: var(--shadow); }
.area-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 22px 2px;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); flex-shrink: 0; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--ink-soft); max-width: 64ch; }

/* ---------- closing ---------- */
.closing { background: var(--night); color: #ece9df; }
.closing .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.closing h2 { color: #f4f1e8; }
.closing h2 em { color: var(--leaf); }
.big-tel {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid var(--leaf);
  line-height: 1.15;
  margin: 6px 0 22px;
  transition: color 0.2s;
}
.big-tel:hover { color: var(--leaf); }
.closing-meta { color: #a9ae9e; font-size: 15px; margin: 0 0 26px; }
.closing-meta b { color: #ece9df; }
.hours-line { display: grid; gap: 8px; margin: 0 0 30px; padding: 0; list-style: none; font-size: 15px; color: #a9ae9e; max-width: 340px; }
.hours-line li { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(236,233,223,0.18); padding-bottom: 8px; }
.hours-line b { color: #ece9df; }
.pay-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-row span { font-size: 12px; border: 1px solid rgba(236,233,223,0.22); padding: 5px 10px; border-radius: 999px; color: #a9ae9e; }

.q-form { background: #1a1e15; border: 1px solid rgba(236,233,223,0.12); border-radius: 24px; padding: 30px 28px; }
.q-form h3 { font-family: var(--serif); font-weight: 560; font-size: 1.6rem; margin: 0 0 6px; color: #f4f1e8; }
.q-form > p { margin: 0 0 20px; color: #a9ae9e; font-size: 14px; }
.q-form form { display: grid; gap: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.q-form label { display: grid; gap: 7px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8b917f; }
.q-form input, .q-form select, .q-form textarea {
  background: #12150f;
  border: 1px solid rgba(236,233,223,0.16);
  border-radius: 12px;
  padding: 13px 14px;
  color: #ece9df;
  outline: none;
  width: 100%;
}
.q-form input:focus, .q-form select:focus, .q-form textarea:focus { border-color: var(--leaf); }
.q-form textarea { min-height: 96px; resize: vertical; }
/* quote wizard */
.wiz-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wiz-prog { display: flex; gap: 6px; }
.wiz-prog i { width: 26px; height: 3px; border-radius: 99px; background: rgba(236,233,223,0.18); transition: background 0.2s; }
.wiz-prog i.on { background: var(--leaf); }
.wiz-sub { min-height: 1.2em; }
.wiz-q { font-family: var(--serif); font-weight: 560; font-size: 1.25rem; color: #f4f1e8; margin: 2px 0 14px; letter-spacing: -0.01em; }
.wchoice {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  background: #12150f;
  border: 1.5px solid rgba(236,233,223,0.16);
  border-radius: 14px;
  padding: 13px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #ece9df;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.wchoice:hover { border-color: rgba(47,158,68,0.65); transform: translateY(-1px); }
.wchoice.active { border-color: var(--leaf); background: rgba(232, 93, 4, 0.14); }
.wchoice .wc-t b { display: block; font-family: var(--serif); font-weight: 560; font-size: 1.06rem; color: #f4f1e8; }
.wchoice .wc-t span { font-size: 13px; color: #a9ae9e; }
.wchoice .wc-p { font-family: var(--serif); font-weight: 560; font-size: 1.15rem; color: var(--leaf); white-space: nowrap; text-align: right; }
.wchoice .wc-p small { display: block; font-family: var(--sans); font-weight: 600; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #8b917f; margin-bottom: -1px; }
.wiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; }
.wiz-nav .btn-green { flex: 1; }
.btn-wline { border-color: rgba(236,233,223,0.3); color: #ece9df; background: transparent; padding: 0.9rem 1.2rem; }
.btn-wline:hover { border-color: #ece9df; }
.q-form > .wiz-err { color: #f0b0a6; font-size: 13.5px; min-height: 1.2em; margin: 10px 0 0; }
.wiz-sum { border: 1px solid rgba(236,233,223,0.16); border-radius: 14px; overflow: hidden; margin-bottom: 6px; }
.wiz-sum .row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 16px; border-bottom: 1px solid rgba(236,233,223,0.09); font-size: 14.5px; color: #a9ae9e; }
.wiz-sum .row:last-child { border-bottom: 0; }
.wiz-sum .row b { color: #f4f1e8; font-weight: 500; text-align: right; }
.wiz-sum .row.tot b { font-family: var(--serif); font-size: 1.25rem; color: var(--leaf); }
.wiz-fine { font-size: 12.5px; color: #8b917f; margin: 12px 0 0; line-height: 1.5; }
.wiz-done { text-align: left; }
.wiz-done .ok-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(47,158,68,0.14); border: 1px solid rgba(47,158,68,0.4); color: #cfe4c6; font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px; padding: 6px 14px; margin-bottom: 14px; }
.wiz-done h4 { font-family: var(--serif); font-weight: 560; font-size: 1.5rem; color: #f4f1e8; margin: 0 0 8px; }
.wiz-done p { color: #a9ae9e; font-size: 15px; margin: 0 0 18px; }
.wiz-done .row-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ladder-sub { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.rung.rental { padding: 9px 0 10px; }

/* ---------- footer ---------- */
.footer { background: var(--night); color: #8b917f; border-top: 1px solid rgba(236,233,223,0.1); padding: 30px 0 110px; font-size: 13.5px; }
.footer .wrap { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer a { color: #cfd4c6; }

/* ---------- mobile sticky ---------- */
.mob-bar {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 40;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(18,21,15,0.9);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.mob-bar a { text-align: center; text-decoration: none; padding: 14px 8px; border-radius: 12px; font-weight: 600; font-size: 15px; }
.mob-bar .call { background: var(--leaf); color: #1a0c06; }
.mob-bar .text { border: 1.5px solid rgba(236,233,223,0.3); color: #ece9df; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  :root { --header-h: 64px; }
  .nav { display: none; }
  .menu-btn { display: flex; }
  .brand b { font-size: 1.15rem; white-space: nowrap; }
  .brand span { font-size: 9px; letter-spacing: 0.2em; }
  .head-right .btn-green { display: none; }
  .head-right { gap: 10px; }
  body.menu-open .nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 22px 24px 26px;
    gap: 18px;
    box-shadow: 0 24px 40px rgba(23,27,20,0.12);
  }
  .nav a { font-size: 17px; }
  .head-tel { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .photo-frame { aspect-ratio: 4 / 3.6; }
  .photo-frame img { object-position: 50% 28%; }
  .polaroid { left: auto; right: 10px; bottom: -20px; width: 150px; transform: rotate(3deg); }
  .sticker { top: -14px; right: 6px; width: 96px; height: 96px; font-size: 9.5px; }
  .hero h1 { margin-top: 30px; }
  .svc-row {
    grid-template-columns: 1fr 46px;
    grid-template-areas: "title arr" "desc desc" "thumb thumb";
    gap: 12px 16px;
    padding: 26px 2px;
  }
  .svc-row:hover { padding-left: 2px; }
  .svc-num { display: none; }
  .svc-row h3 { grid-area: title; }
  .svc-row p { grid-area: desc; max-width: none; }
  .svc-arr { grid-area: arr; align-self: center; justify-self: end; }
  .svc-thumb { display: block; grid-area: thumb; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9; margin-top: 4px; }
  .svc-thumb.mid { aspect-ratio: 4 / 3; }
  .svc-thumb.tall { aspect-ratio: 1 / 1.05; }
  .svc-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .svc-float { display: none; }
  .story-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .story-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; max-width: none; margin: 0 -1.5rem; padding: 0 1.5rem 8px; }
  .story-card { flex: 0 0 76%; scroll-snap-align: start; }
  .ba-band .wrap, .owner .wrap, .area .wrap, .closing .wrap { grid-template-columns: 1fr; }
  .owner-photo { max-width: 420px; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps li { display: grid; grid-template-columns: 74px 1fr; gap: 4px 18px; padding: 22px 0; border-top: 1px solid var(--line); }
  .steps li:first-child { border-top: 2px solid var(--ink); }
  .step-num { grid-row: 1 / 3; margin: 0; font-size: 2.2rem; }
  .steps h3 { grid-column: 2; }
  .steps p { grid-column: 2; }
  .trailer-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .mob-bar { display: grid; }
  :root { --sticky: 86px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 2.2rem); }
  .ribbon { font-size: 11.5px; gap: 8px; }
  .ribbon .r-alt { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .ladder { padding: 20px 18px 18px; }
  .cred { grid-template-columns: 1fr; }
  .towns { columns: 1; }
  .story-card { flex-basis: 84%; }
  .story-grid { margin: 0 -1.1rem; padding: 0 1.1rem 8px; }
  .hero-cta .btn { width: 100%; }
  .q-form { padding: 24px 20px; }
  .ba { aspect-ratio: 4 / 4.4; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  .btn, .svc-row, .story-card .ph img { transition: none; }
}

/* ---------- Koda Tree Care additions (palette kept in fire :root) ---------- */

.demo-note-inline {
  font-size: 13px;
  color: #8b917f;
  margin: 0;
}

.gallery { padding-top: clamp(48px, 6vw, 80px); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gal {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 30px rgba(23, 27, 20, 0.08);
}
.gal.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal:hover img { transform: scale(1.04); }
.gal figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(18, 21, 15, 0.72);
  color: #f4f1e8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.area-soft-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 12px;
}
.towns.soft li.hot::after { content: " · primary"; }
.area-note {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 22px 0 20px;
  max-width: 42ch;
}
.area-soft .btn { margin-top: 4px; }

.photo-frame img { object-position: 50% 20%; }

@media (max-width: 1020px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gal.wide { grid-column: span 2; aspect-ratio: 4 / 3; }
}


/* === koda fire theme === */
body { background:
  radial-gradient(1200px 600px at 10% -10%, rgba(232, 93, 4, 0.18), transparent 55%),
  radial-gradient(900px 500px at 100% 0%, rgba(154, 3, 30, 0.22), transparent 50%),
  var(--paper);
}
.brand span { color: var(--ember); }
.eyebrow { color: var(--ember); }
.hero h1 em { color: var(--ember); }
.sticker {
  background: linear-gradient(145deg, #ff7b00, #9a031e) !important;
  color: #1a0c06 !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
}
.ticker { background: #0a0705; color: #f0c9a0; border-color: rgba(255,123,0,0.25); }
.btn-ink { background: #1a0c06; color: #ffe8d6; border-color: #3a2214; }
.btn-line { border-color: rgba(255,123,0,0.55); color: #ffd7b0; }
.btn-line:hover { background: rgba(232, 93, 4, 0.12); }
.btn-paper { background: #2a1c14; color: #ffe8d6; }
.photo-frame, .gal, .svc-row, .card, .owner-card, .faq details {
  border: 1px solid rgba(255, 123, 0, 0.14);
}
.sticky-bar .call { background: linear-gradient(135deg, #ff7b00, #e85d04); color: #1a0c06; }
.sticky-bar .text { background: #1a0c06; color: #ffd7b0; border-top: 1px solid rgba(255,123,0,0.25); }
.header .btn-green { color: #1a0c06; }
.closing { background: linear-gradient(180deg, #1a0c06, #0a0705); }
.big-tel { color: var(--ember); }

/* fire theme readability fixes */
.hero-lead, .section-head p, .owner p, .area-side p { color: var(--ink-soft); }
.hero-proof { color: var(--ink-soft); }
.hero-proof b { color: var(--ink); }
.polaroid { background: #2a1c14; color: var(--ink); border-color: rgba(255,123,0,0.25); }
.polaroid figcaption { color: var(--ink-soft); }
.polaroid figcaption b { color: var(--ink); }
.svc-row { background: var(--card); }
.faq details { background: var(--card); }
.gal figcaption { background: rgba(10,7,5,0.78); }


/* force orange text accents (was green) */
.brand span,
.eyebrow,
.hero h1 em,
h2 em,
.story h2 em,
.closing h2 em,
.hero-proof .star,
.step-num,
.trailer-points li::before,
.rung.rental .rung-top b,
.review .stars,
.towns li.hot,
.faq summary::after,
.big-tel,
.big-tel:hover,
.wchoice .wc-p,
.wiz-sum .row.tot b {
  color: #ff7b00 !important;
}
.eyebrow::before,
.ticker i {
  background: #ff7b00;
  color: #ff7b00;
}
.ticker i { background: transparent; }



/* Demo site ribbon (required) — never mention Haulaway */
.demo-site-ribbon {
  background: #1a1a1a;
  color: #f5f1e8;
  font-size: 13px;
  line-height: 1.35;
  padding: 10px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.demo-site-ribbon strong { color: #fff; font-weight: 700; }
.demo-site-ribbon span { opacity: 0.85; margin-left: 0.35em; }
