/* ===== Junkin' It — Sandy Springs, GA ===== */

:root {
  /* Brand palette — sampled from the logo */
  --green: #2c5825;
  --green-deep: #1e3d19;
  --green-bright: #3f7a34;
  --ink: #14140f;
  --ink-soft: #3a3a33;
  --cream: #f6f4ee;
  --cream-2: #ece8dd;
  --line: #d8d3c5;
  --white: #ffffff;

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Satoshi", "Helvetica Neue", system-ui, sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: clamp(1.6rem, 3vw, 2.1rem);
  --text-2xl: clamp(2.1rem, 5vw, 3.1rem);
  --text-hero: clamp(2.6rem, 7.6vw, 5.4rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 15, 0.08), 0 2px 8px rgba(20, 20, 15, 0.05);
  --shadow-md: 0 6px 24px rgba(20, 20, 15, 0.12);
  --wrap: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.02; letter-spacing: -0.015em; margin: 0; text-transform: uppercase; }
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--text-lg); line-height: 1.25; text-transform: none; letter-spacing: 0; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-4);
}
.lede { font-size: var(--text-lg); color: var(--ink-soft); max-width: 62ch; line-height: 1.55; }
.stack > * + * { margin-top: var(--space-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-bright); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--cream-2); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: var(--text-base); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 244, 238, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header--scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); min-height: 88px; }
.header__logo { display: block; flex-shrink: 0; }
.header__logo img { height: 54px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.75rem); }
.nav a {
  font-size: 1.02rem; font-weight: 600; text-decoration: none; color: var(--ink-soft);
  padding: 0.4rem 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--green); border-color: var(--green); }
.header__cta { display: flex; align-items: center; gap: var(--space-3); }
.header__contact { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }
.header__phone { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.15rem; text-decoration: none; color: var(--ink); white-space: nowrap; }
.header__phone .flag { width: 26px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(20,20,15,0.15); flex-shrink: 0; }
.header__hours { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.header__phone:hover { color: var(--green); }
.nav-toggle { display: none; background: none; border: 2px solid var(--ink); border-radius: var(--radius); padding: 0.5rem 0.7rem; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); }
.nav-toggle span + span { margin-top: 4px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15, 24, 13, 0.95) 0%, rgba(15, 24, 13, 0.86) 38%, rgba(15, 24, 13, 0.35) 72%, rgba(15, 24, 13, 0.15) 100%);
}
.hero__inner { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5rem); }
.hero__content { max-width: 46rem; }
.hero h1 { color: var(--white); text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3); }
.hero h1 em { font-style: normal; color: #8fd47c; }
.hero h1 .nowrap { white-space: nowrap; }
.hero__sub { margin-top: var(--space-6); font-size: var(--text-lg); color: rgba(255, 255, 255, 0.88); max-width: 46ch; line-height: 1.55; }
.hero__actions { margin-top: var(--space-8); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: var(--white);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; transform: skewX(-8deg); border-radius: 2px;
}
.tag > span { transform: skewX(8deg); }
.hero__points { margin: var(--space-8) 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); }
.hero__points li { display: flex; align-items: center; gap: 0.5rem; font-size: var(--text-sm); font-weight: 600; color: rgba(255, 255, 255, 0.92); }
.hero__points svg { flex-shrink: 0; color: #8fd47c; }

/* ---------- Trust strip ---------- */
.strip { background: var(--green-deep); color: var(--white); }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); padding-block: var(--space-8); }
.strip__item { text-align: center; }
.strip__num { font-family: var(--font-display); font-size: 1.75rem; display: block; line-height: 1.1; }
.strip__label { font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }

/* ---------- Section head ---------- */
.head { max-width: 60ch; }
.head--center { margin: 0 auto; text-align: center; }
.head p { margin-top: var(--space-4); color: var(--ink-soft); font-size: var(--text-lg); line-height: 1.55; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2rem); margin-top: var(--space-12); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-2); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: var(--space-6); }
.card__body h3 { margin-bottom: var(--space-2); }
.card__body p { color: var(--ink-soft); font-size: var(--text-sm); }
.card__list { margin: var(--space-4) 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2); }
.card__list li { font-size: var(--text-xs); font-weight: 600; color: var(--green-deep); background: var(--cream-2); padding: 0.3rem 0.6rem; border-radius: 999px; }

/* ---------- Pricing ---------- */
.pricing { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); margin-top: var(--space-12); }
.tier {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-6) var(--space-4);
  display: flex; flex-direction: column; text-align: center; background: var(--cream);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--green); }
.tier--feature { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); position: relative; }
.tier--feature .tier__fill span { background: #8fd47c; }
.tier--feature .tier__note { color: rgba(255, 255, 255, 0.72); }
.tier__flag {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%) skewX(-8deg);
  background: var(--green-bright); color: var(--white); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 2px; white-space: nowrap;
}
.tier__name { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.02em; }
.tier__fill { display: flex; gap: 3px; justify-content: center; margin: var(--space-4) 0; }
.tier__fill span { display: block; width: 12px; height: 26px; border-radius: 2px; background: var(--green); }
.tier__fill span.off { background: var(--line); }
.tier--feature .tier__fill span.off { background: rgba(255, 255, 255, 0.18); }
.tier__price { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.tier__unit { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.65; margin-top: 0.35rem; }
.tier__note { font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-4); line-height: 1.45; }
.pricing__foot {
  margin-top: var(--space-8); padding: var(--space-6); background: var(--cream-2); border-radius: var(--radius-lg);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.pricing__foot p { font-size: var(--text-sm); color: var(--ink-soft); max-width: 60ch; }
.pricing__foot strong { color: var(--ink); }

/* ---------- Take / Don't take ---------- */
.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.take-list { margin: var(--space-6) 0 0; padding: 0; list-style: none; columns: 2; column-gap: var(--space-8); }
.take-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--text-sm); break-inside: avoid; margin-bottom: 0.6rem; }
.take-list svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
.panel { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: var(--space-8); }
.panel h3 { color: var(--white); }
.panel p { font-size: var(--text-sm); color: rgba(255, 255, 255, 0.72); margin-top: var(--space-2); }
.panel ul { margin: var(--space-4) 0 0; padding: 0; list-style: none; }
.panel li { font-size: var(--text-sm); padding: 0.55rem 0; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.9); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-12); counter-reset: s; }
.step { position: relative; padding-top: 4.25rem; border-top: 3px solid var(--green); }
.step__num { font-family: var(--font-display); font-size: 2.25rem; line-height: 1; color: var(--green); opacity: 0.32; position: absolute; top: var(--space-4); left: 0; }
.step h3 { margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--ink-soft); }

/* ---------- Areas ---------- */
.areas { background: var(--green-deep); color: var(--white); }
.areas h2 { color: var(--white); }
.areas .head p { color: rgba(255, 255, 255, 0.75); }
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-8); }
.chips span {
  font-size: var(--text-sm); font-weight: 600; padding: 0.5rem 0.95rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.92);
}
.chips span.is-home { background: var(--white); color: var(--green-deep); border-color: var(--white); }

/* ---------- Quote ---------- */
.quote { background: var(--white); }
.quote__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.quote__aside .head p { font-size: var(--text-base); }
.contact-rows { margin-top: var(--space-8); border-top: 1px solid var(--line); }
.contact-row { display: flex; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-row svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }
.contact-row__label { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.contact-row__val { font-weight: 700; font-size: var(--text-base); text-decoration: none; word-break: break-word; }
.contact-row__val:hover { color: var(--green); }

form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--text-base); color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.75rem 0.85rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(44, 88, 37, 0.14);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form__note { font-size: var(--text-xs); color: var(--ink-soft); margin-top: var(--space-3); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.7); padding: var(--space-16) 0 var(--space-8); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-8); }
.footer img { height: 54px; width: auto; }
.footer p { font-size: var(--text-sm); margin-top: var(--space-4); max-width: 34ch; }
.footer h4 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin: 0 0 var(--space-4); }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 0.55rem; font-size: var(--text-sm); }
.footer a { text-decoration: none; }
.footer a:hover { color: #8fd47c; }
.footer__bottom {
  margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; font-size: var(--text-xs);
}

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header__contact { display: none; }
  .nav-toggle { display: block; }
  .header__inner { min-height: 74px; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: var(--space-4) var(--space-6);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .header { position: sticky; }
  .quote__grid, .split { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-4); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .services { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .hero__media img { object-position: 65% 50%; }
  .hero__media::after { background: linear-gradient(180deg, rgba(15, 24, 13, 0.9) 0%, rgba(15, 24, 13, 0.82) 55%, rgba(15, 24, 13, 0.7) 100%); }
  .take-list { columns: 1; }
  .field--row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  body { padding-bottom: 68px; }
  .header__cta > .btn { display: none; }
  .header__inner { min-height: 68px; }
  .callbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    gap: 1px; background: var(--line); box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
  }
  .callbar a { flex: 1; text-align: center; padding: 1.05rem 0.5rem; font-size: var(--text-sm); font-weight: 700; text-decoration: none; }
  .callbar a:first-child { background: var(--green); color: var(--white); }
  .callbar a:last-child { background: var(--ink); color: var(--white); }
  .hero__actions .btn { flex: 1 1 100%; }
}
@media (max-width: 460px) {
  .tiers { grid-template-columns: 1fr; }
  .tier__flag { position: static; transform: skewX(-8deg); display: inline-block; margin-bottom: var(--space-3); }
  .header__logo img { height: 40px; }
  .steps { grid-template-columns: 1fr; }
}


/* ---------- Hero city ticker ---------- */
.ticker {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: var(--space-5);
  padding: 0.85rem clamp(1.15rem, 5vw, 3rem) 0.85rem clamp(0.9rem, 2vw, 1.35rem);
  border-top: 1px solid rgba(246,244,238,0.16);
  background: transparent;
}
.ticker__label {
  flex-shrink: 0; font-family: var(--font-display); text-transform: uppercase;
  font-size: 0.7rem; letter-spacing: 0.14em; color: #8fd47c;
}
.ticker__mask {
  position: relative; flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ticker__track {
  display: flex; align-items: center; width: max-content;
  animation: ticker-run 46s linear infinite;
}
.ticker__track span {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(246,244,238,0.82); white-space: nowrap;
}
.ticker__track i { display: block; width: 2.6rem; flex-shrink: 0; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .ticker__mask { mask-image: linear-gradient(90deg, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); }
}

/* ---------- Booking fieldset ---------- */
.booker {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream); padding: var(--space-4) var(--space-4) var(--space-3);
  margin: 0 0 var(--space-4);
}
.booker legend {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 0.72rem; letter-spacing: 0.12em; color: var(--green);
  background: var(--green); color: var(--white);
  padding: 0.3rem 0.7rem; border-radius: 3px; transform: skewX(-8deg);
  margin-left: 0.15rem;
}
.booker legend { display: inline-block; }
.booker .field--row { margin-bottom: 0.6rem; }
.booker input[type="date"] { font-family: inherit; }
.booker__note {
  font-size: 0.8rem; line-height: 1.5; color: var(--ink-soft); margin: 0;
}
.booker__note.is-warn { color: #9a2b1d; font-weight: 600; }

/* ---------- Photo ask ---------- */
.photo-ask {
  border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--cream-2); padding: var(--space-4);
  margin: 0 0 var(--space-4);
}
.photo-ask__head { display: flex; align-items: center; gap: 0.6rem; color: var(--green); margin-bottom: 0.55rem; }
.photo-ask__head svg { flex-shrink: 0; }
.photo-ask__head strong { font-size: 0.95rem; line-height: 1.3; color: var(--ink); }
.photo-ask p { font-size: 0.85rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 var(--space-3); }
.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--white); }

/* ---------- SMS consent ---------- */
.consent {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.78rem; line-height: 1.55; color: var(--ink-soft);
  margin: 0 0 var(--space-4); cursor: pointer;
}
.consent input {
  width: 18px; height: 18px; margin-top: 0.12rem;
  accent-color: var(--green); flex-shrink: 0; cursor: pointer;
}
.consent a { color: var(--green); font-weight: 600; }

/* ---------- Footer social + legal ---------- */
.social { margin-top: var(--space-4); }
.social__label {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  font-size: 0.66rem; letter-spacing: 0.13em; color: rgba(246,244,238,0.5);
  margin-bottom: 0.6rem;
}
.social__row { display: flex; gap: 0.6rem; }
.social__row a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(246,244,238,0.22); border-radius: 50%;
  color: rgba(246,244,238,0.78); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social__row a:hover { background: var(--green-bright); border-color: var(--green-bright); color: var(--white); }
.footer__legal { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.footer__legal a { color: rgba(246,244,238,0.68); text-decoration: none; }
.footer__legal a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal { padding: var(--space-8) 0 var(--space-9); }
.legal__wrap { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.02; margin-bottom: 0.6rem; }
.legal__updated { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: var(--space-6); }
.legal h2 {
  font-size: 1.15rem; margin: var(--space-6) 0 var(--space-3);
  padding-top: var(--space-4); border-top: 1px solid var(--line);
}
.legal h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin: var(--space-4) 0 0.4rem; text-transform: none; letter-spacing: 0; }
.legal p, .legal li { font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); }
.legal p { margin-bottom: var(--space-3); }
.legal ul { margin: 0 0 var(--space-3) 1.2rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--green); font-weight: 600; }
.legal__callout {
  background: var(--cream-2); border-left: 4px solid var(--green);
  padding: var(--space-4); border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--space-6);
}
.legal__callout p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .ticker { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding-block: 0.8rem; }
  .ticker__mask { width: 100%; align-self: stretch; }
  .footer__legal { gap: var(--space-3); }
}


/* ---------- Load visual (truck / load increments) ---------- */
.loadviz {
  margin: var(--space-12) auto 0;
  max-width: 880px;
  width: 100%;
  text-align: center;
  position: relative;
}
.lv-ticks { position: relative; height: 1.5em; margin-bottom: 0.4rem; }
.lv-ticks span {
  position: absolute; top: 0; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 1rem; color: var(--ink-soft);
  letter-spacing: 0.04em; white-space: nowrap;
}
/* The stage matches the artwork's intrinsic ratio, so the percentage-positioned
   fill segments stay locked to the bed panels at every viewport width. */
.lv-stage { position: relative; width: 100%; aspect-ratio: 1750 / 605; }
.lv-truck { display: block; width: 100%; height: 100%; object-fit: contain; }
.lv-fills { position: absolute; inset: 0; pointer-events: none; }
.lv-seg {
  position: absolute;
  top: 8.595%;
  height: 55.702%;
  opacity: 0;
  transition: opacity 0.32s ease;
}
.lv-seg.is-on { opacity: 1; }
.lv-seg[data-seg="1"] { background: var(--green-deep); }
.lv-seg[data-seg="2"] { background: var(--green); }
.lv-seg[data-seg="3"] { background: var(--green-bright); }
.lv-seg[data-seg="4"] { background: #6fb35e; }
.loadviz figcaption {
  font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-4);
  max-width: 52ch; margin-left: auto; margin-right: auto;
}
.loadviz figcaption {
  font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--space-4);
  max-width: 52ch; margin-left: auto; margin-right: auto;
}
.tier { cursor: default; }
.tier.is-active { border-color: var(--green); transform: translateY(-4px); }
.tiers { margin-top: var(--space-8); }
@media (prefers-reduced-motion: reduce) { .lv-seg { transition: none; } }

/* ---------- Required markers + field errors ---------- */
.req { color: #b0392a; font-weight: 700; }
.field__hint { font-size: 0.74rem; color: var(--ink-soft); margin: 0.35rem 0 0; line-height: 1.4; }
.field__hint.is-ok { color: var(--green); font-weight: 600; }
.field__err { font-size: 0.76rem; color: #b0392a; font-weight: 600; margin: 0.35rem 0 0; }
.field input.has-error, .field textarea.has-error {
  border-color: #b0392a; box-shadow: 0 0 0 3px rgba(176,57,42,0.1);
}
.consent.has-error { color: #b0392a; }
.consent.has-error input { outline: 2px solid #b0392a; outline-offset: 2px; }

/* ---------- Address autocomplete ---------- */
.field--autocomplete { position: relative; padding-bottom: 0.3rem; }
.ac-list {
  position: absolute; top: calc(100% - 1.35rem); left: 0; right: 0; z-index: 30;
  margin: 0.3rem 0 0; padding: 0.3rem; list-style: none;
  background: var(--white); border: 1px solid var(--ink); border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20,20,15,0.16); max-height: 262px; overflow-y: auto;
}
.ac-list li {
  padding: 0.55rem 0.65rem; border-radius: 4px; cursor: pointer; line-height: 1.3;
}
.ac-list li strong { display: block; font-size: 0.88rem; color: var(--ink); font-weight: 700; }
.ac-list li span { display: block; font-size: 0.76rem; color: var(--ink-soft); margin-top: 0.1rem; }
.ac-list li:hover, .ac-list li.is-active { background: var(--cream-2); }

/* ---------- Photo dropzone ---------- */
.dropzone {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: var(--space-5) var(--space-4); text-align: center; cursor: pointer;
  background: var(--white); border: 2px dashed var(--line); border-radius: var(--radius);
  color: var(--ink-soft); transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.dropzone:hover, .dropzone.is-over { border-color: var(--green); background: #fbfaf6; color: var(--green); }
.dropzone.has-files { border-style: solid; border-color: var(--green); }
.dropzone input[type="file"] {
  position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.dropzone:focus-within { outline: 2px solid var(--green); outline-offset: 2px; }
.dropzone__main { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.dropzone__sub { font-size: 0.74rem; }
.dropzone__sub.is-warn { color: #b0392a; font-weight: 600; }
.thumbs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.75rem; }
.thumb { position: relative; margin: 0; width: 78px; }
.thumb img {
  width: 78px; height: 78px; object-fit: cover; display: block;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.thumb figcaption { font-size: 0.66rem; color: var(--ink-soft); text-align: center; margin-top: 0.2rem; }
.thumb__x {
  position: absolute; top: -6px; right: -6px; width: 22px; height: 22px;
  border: none; border-radius: 50%; background: var(--ink); color: var(--white);
  font-size: 15px; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.thumb__x:hover { background: #b0392a; }

/* ---------- Submit status ---------- */
.form__status {
  font-size: 0.84rem; line-height: 1.5; font-weight: 600;
  margin: var(--space-3) 0 0; padding: 0.7rem 0.85rem;
  border-radius: var(--radius); border-left: 4px solid;
}
.form__status.is-ok { background: #eaf3e6; border-color: var(--green); color: var(--green-deep); }
.form__status.is-error { background: #fbeeec; border-color: #b0392a; color: #8f2a1e; }
.form__status.is-warn { background: #fdf5e6; border-color: #c98a1e; color: #7a5410; }
.form__status.is-busy { background: var(--cream-2); border-color: var(--ink-soft); color: var(--ink-soft); }

/* ---------- Locally owned sub-line ---------- */
.contact-row__sub {
  font-size: 0.78rem; line-height: 1.5; color: var(--ink-soft);
  margin: 0.35rem 0 0; max-width: 34ch;
}

@media (max-width: 640px) {
  .loadviz { margin-top: var(--space-8); }
  .lv-ticks span { font-size: 0.8rem; }
  .loadviz figcaption { font-size: 0.82rem; }
}

@media (max-width: 430px) { .hero h1 .nowrap { white-space: normal; } }

/* ── FAQ ─────────────────────────────────────────────────── */
.faqlist {
  max-width: 52rem; margin: var(--space-12) auto 0;
  border-top: 1px solid var(--line);
}
.faqitem { border-bottom: 1px solid var(--line); }
.faqitem summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em;
  font-size: clamp(1rem, 1.7vw, 1.16rem); line-height: 1.25; color: var(--ink);
  transition: color 0.2s ease;
}
.faqitem summary::-webkit-details-marker { display: none; }
.faqitem summary:hover { color: var(--green); }
.faqitem summary:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; border-radius: 4px; }
.faqitem summary i {
  position: relative; flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px;
}
.faqitem summary i::before,
.faqitem summary i::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--green);
  border-radius: 2px; transform: translate(-50%, -50%);
}
.faqitem summary i::before { width: 15px; height: 2.5px; }
.faqitem summary i::after { width: 2.5px; height: 15px; transition: transform 0.24s ease, opacity 0.24s ease; }
.faqitem[open] summary i::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faqitem[open] summary { color: var(--green); }
.faqitem__a { padding: 0 0 1.5rem; max-width: 62ch; }
.faqitem__a p { color: var(--ink-soft); font-size: var(--text-sm); }
.faqitem__a p + p { margin-top: 0.85rem; }
.faqitem__a a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.faqitem__a a:hover { color: var(--green-bright); }
.faqfoot {
  max-width: 52rem; margin: var(--space-8) auto 0; text-align: center;
  font-size: var(--text-sm); color: var(--ink-soft);
}
.faqfoot a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ── SERVICE CARD LINK ───────────────────────────────────── */
.card__link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.78rem; color: var(--green); text-decoration: none;
}
.card__link svg { transition: transform 0.22s ease; }
.card__link:hover { color: var(--green-bright); }
.card__link:hover svg { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .faqitem summary i::after, .card__link svg { transition: none; }
}
