/* ============================================
   We Got You LLC — site styles
   Palette pulled from the artwork: warm orange
   bg, cream surfaces, red accent, charcoal ink,
   yellow highlight, sky-blue depth.
============================================= */

:root {
  --orange-50:  #FFF6E6;
  --orange-100: #FCE3B7;
  --orange-300: #F2A65A;
  --orange-500: #E89A3D;
  --orange-600: #D4861E;

  --cream:      #FBF6EA;
  --cream-2:    #F5EBD3;
  --paper:      #FFFDF7;

  --red:        #E63946;
  --red-deep:   #B12A36;
  --red-soft:   #FF6B7A;

  --yellow:     #FFD37A;
  --yellow-2:   #F4C13A;

  --sky:        #A8DCEB;
  --leaf:       #6FA86A;

  --ink:        #1a1a1a;
  --ink-2:      #2c2c2c;
  --muted:      #6b6357;

  --shadow-hard: 4px 4px 0 var(--ink);
  --shadow-soft: 0 18px 40px -18px rgba(26,26,26,.35);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;

  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-cream { background: var(--cream-2); }

h1, h2, h3, h4 {
  font-family: "Bowlby One", "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: #fff;
  padding: 8px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-hard);
  margin-bottom: 22px;
}
.kicker-light { color: var(--ink); background: var(--yellow); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 56px); }
.section-head .section-sub {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 18px;
  color: var(--muted);
}
.ink-red { color: var(--red); }
.ink-yellow { color: var(--yellow); }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s;
  box-shadow: var(--shadow-hard);
  background: #fff;
  color: var(--ink);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #FF4655; }
.btn-yellow { background: var(--yellow); }
.btn-ghost { background: transparent; }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-xl { padding: 20px 30px; font-size: 18px; }
.btn-block { width: 100%; justify-content: center; }

/* =========== NAV =========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 2.5px solid var(--ink);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--orange-100);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-img {
  width: 110%;
  height: auto;
  margin-top: 6px;
  pointer-events: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line1 {
  font-family: "Bowlby One", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--ink);
}
.brand-line2 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-top: 4px;
}

.nav-links {
  display: flex; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-2);
  transition: background .15s;
}
.nav-links a:hover { background: var(--orange-100); }
.nav-cta { white-space: nowrap; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .brand-line2 { display: none; }
}

/* =========== HERO =========== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #F2A65A 0%, #E89A3D 60%, #D4861E 100%);
  border-bottom: 2.5px solid var(--ink);
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-rays {
  position: absolute; inset: -20%;
  background:
    repeating-conic-gradient(from 0deg at 80% 30%,
      rgba(255,255,255,.10) 0deg,
      rgba(255,255,255,.10) 6deg,
      transparent 6deg,
      transparent 14deg);
  opacity: .55;
  animation: spinRays 80s linear infinite;
}
@keyframes spinRays { to { transform: rotate(360deg); } }
.hero-clouds .cloud {
  position: absolute;
  width: 140px; height: 50px;
  background: #fff;
  border-radius: 999px;
  opacity: .85;
  filter: drop-shadow(2px 2px 0 var(--ink));
  border: 2.5px solid var(--ink);
}
.cloud::before, .cloud::after {
  content:""; position:absolute; background: inherit;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
}
.cloud::before { width: 60px; height: 60px; left: 20px; top: -28px; }
.cloud::after  { width: 46px; height: 46px; right: 24px; top: -22px; }
.cloud.c1 { top: 6%;  left: 4%;  animation: drift 28s linear infinite; }
.cloud.c2 { top: 18%; right: 30%; transform: scale(.7); animation: drift 36s linear infinite reverse; }
.cloud.c3 { top: 4%;  right: 6%;  transform: scale(.85); animation: drift 44s linear infinite; }
@keyframes drift {
  0%   { transform: translateX(0) scale(var(--s,1)); }
  50%  { transform: translateX(40px) scale(var(--s,1)); }
  100% { transform: translateX(0) scale(var(--s,1)); }
}

.hero-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-hard);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230,57,70,.25);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230,57,70,.25); }
  50%      { box-shadow: 0 0 0 9px rgba(230,57,70,0); }
}

.hero-title {
  font-size: clamp(48px, 7vw, 92px);
  color: #fff;
  text-shadow:
    4px 4px 0 var(--ink),
    -2px -2px 0 var(--ink),
    2px -2px 0 var(--ink),
    -2px 2px 0 var(--ink);
  line-height: .95;
}
.wegot {
  display: inline-block;
  color: var(--yellow);
  transform: rotate(-2deg);
  margin-top: 6px;
}

.hero-sub {
  margin: 22px 0 28px;
  max-width: 540px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--cream);
  text-shadow: 1px 1px 0 rgba(0,0,0,.15);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 18px 24px;
  color: var(--cream);
  font-weight: 800;
  font-size: 14px;
  text-shadow: 1px 1px 0 rgba(0,0,0,.18);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--yellow); }

.hero-slash {
  position: absolute;
  inset: auto -10% -40px -10%;
  height: 90px;
  background: var(--yellow);
  transform: skewY(-2deg);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.slash-text {
  font-family: "Bowlby One", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--ink);
  white-space: nowrap;
  animation: slashScroll 22s linear infinite;
  padding-left: 0;
}
@keyframes slashScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Smokey band between hero and services */
.smokey-band {
  position: relative;
  background: var(--cream);
  border-bottom: 2.5px solid var(--ink);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  padding: 30px 24px 0;
  margin-top: 50px;
}
.band-smokey {
  width: 120px;
  height: auto;
  margin-bottom: -2.5px;
  filter: drop-shadow(0 -4px 0 rgba(0,0,0,.08));
}
.band-speech {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 14px 22px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: var(--shadow-hard);
  max-width: 360px;
}
.band-speech::before {
  content: "";
  position: absolute;
  left: -14px; bottom: 14px;
  width: 0; height: 0;
  border: 12px solid transparent;
  border-right-color: var(--ink);
}
.band-speech::after {
  content: "";
  position: absolute;
  left: -10px; bottom: 16px;
  width: 0; height: 0;
  border: 10px solid transparent;
  border-right-color: #fff;
}
.band-speech span {
  display: block;
  font-family: "Bowlby One", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .3px;
}
.band-speech em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .smokey-band { flex-direction: column; align-items: center; gap: 8px; }
  .band-smokey { width: 100px; }
  .band-speech::before, .band-speech::after { display: none; }
}

/* Smokey peeking from form corner */
.form-smokey {
  position: absolute;
  top: -78px; right: -14px;
  width: 110px;
  height: auto;
  transform: rotate(8deg);
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.2));
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 600px) {
  .form-smokey { width: 80px; top: -54px; right: -8px; }
}

/* =========== HERO ANIMATED SCENE =========== */
.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  margin: 0 auto;
}
.scene-stage {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 12%, #FFE9C4 0%, #F2A65A 60%, #D4861E 100%);
  border: 4px solid var(--ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--ink);
}

.room-wall {
  position: absolute; inset: 0 0 38% 0;
  background:
    linear-gradient(180deg, rgba(255,180,90,.0) 0%, rgba(245,140,40,.45) 100%);
}
.room-floor {
  position: absolute; inset: 62% 0 0 0;
  background:
    repeating-linear-gradient(90deg, #B57434 0 28px, #A06628 28px 30px),
    linear-gradient(180deg, #C9803F, #8E5824);
  border-top: 3px solid var(--ink);
}
.room-window {
  position: absolute;
  top: 12%; right: 8%;
  width: 28%; aspect-ratio: 1 / 1.1;
  background: linear-gradient(180deg, #BFE3F0 0%, #87C9DF 100%);
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: inset 0 0 0 6px var(--cream-2);
  overflow: hidden;
}
.room-window::before {
  content:""; position:absolute; inset: 8% 8%;
  background:
    radial-gradient(circle at 25% 65%, rgba(255,255,255,.6) 6%, transparent 7%),
    radial-gradient(circle at 65% 75%, rgba(255,255,255,.5) 8%, transparent 9%);
}
.room-window::after {
  content:""; position: absolute;
  left: 50%; top: 0; bottom: 0; width: 4px;
  background: var(--ink); transform: translateX(-2px);
}

/* JUNK pieces — they fade & slide into the truck */
.junk {
  position: absolute;
  border: 3px solid var(--ink);
  animation: junkOut 9s ease-in-out infinite;
  transform-origin: center;
}
@keyframes junkOut {
  0%, 35%   { opacity: 1; transform: translate(0,0) rotate(var(--r,0deg)); }
  55%       { opacity: 1; transform: translate(120%, -10%) rotate(calc(var(--r,0deg) + 25deg)); }
  60%, 100% { opacity: 0; transform: translate(140%, -10%) rotate(calc(var(--r,0deg) + 25deg)); }
}

.junk-couch {
  left: 8%; bottom: 28%;
  width: 38%; height: 22%;
  background: #4FA8B8;
  border-radius: 16px 16px 4px 4px;
  --r: -4deg;
  animation-delay: .1s;
}
.junk-couch::before {
  content:""; position:absolute; inset: -18% 6% 60% 6%;
  background: #5CB6C6; border: 3px solid var(--ink);
  border-radius: 14px 14px 0 0;
}
.junk-couch::after {
  content:""; position:absolute; left: 14%; right: 14%; top: 50%;
  height: 12px; background: #FFD37A; border: 2px solid var(--ink);
  border-radius: 4px;
}
.junk-box {
  background: #C8843D;
  border-radius: 4px;
}
.junk-box-1 { left: 4%; bottom: 16%; width: 18%; aspect-ratio: 1; --r: 3deg; animation-delay: .25s; }
.junk-box-2 { left: 22%; bottom: 10%; width: 14%; aspect-ratio: 1; --r: -6deg; animation-delay: .4s; }
.junk-box::before {
  content:""; position:absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, var(--ink) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, var(--ink) 48% 52%, transparent 52%);
  background-size: 100% 100%;
  opacity: .15;
}
.junk-tv {
  left: 40%; bottom: 30%;
  width: 18%; aspect-ratio: 4/3;
  background: #2c2c2c; border-radius: 6px;
  --r: 2deg; animation-delay: .55s;
}
.junk-tv::before {
  content:""; position:absolute; inset: 8%;
  background: linear-gradient(135deg, #6E7378, #4A4D52);
  border: 2px solid var(--ink);
}
.junk-chair {
  right: 24%; bottom: 30%;
  width: 14%; aspect-ratio: .8;
  background: #B85A3A;
  border-radius: 6px 6px 2px 2px;
  --r: -8deg; animation-delay: .7s;
}
.junk-chair::before {
  content:""; position:absolute; inset: -40% 10% 60% 10%;
  background: #B85A3A; border: 3px solid var(--ink);
  border-radius: 8px 8px 2px 2px;
}
.junk-lamp {
  right: 10%; bottom: 30%;
  width: 8%; aspect-ratio: .35;
  background: #FFD37A;
  border-radius: 50% 50% 2px 2px / 30% 30% 2px 2px;
  --r: 4deg; animation-delay: .85s;
}
.junk-lamp::after {
  content:""; position:absolute; left:50%; top:60%; bottom: -120%;
  width: 10%; background: var(--ink); transform: translateX(-50%);
}
.junk-tire {
  left: 36%; bottom: 12%;
  width: 12%; aspect-ratio: 1;
  background: #1a1a1a;
  border-radius: 50%;
  --r: 0deg; animation-delay: 1s;
}
.junk-tire::before {
  content:""; position:absolute; inset: 26%;
  background: #6E7378; border: 2px solid var(--ink);
  border-radius: 50%;
}
.junk-bag {
  right: 4%; bottom: 14%;
  width: 14%; aspect-ratio: .9;
  background: #2c2c2c;
  border-radius: 50% 50% 8px 8px;
  --r: 6deg; animation-delay: 1.15s;
}
.junk-paper {
  background: #fff; width: 4%; aspect-ratio: 1.3;
  --r: 18deg; animation-delay: 1.3s;
}
.junk-p1 { left: 18%; bottom: 9%;  --r: -10deg; }
.junk-p2 { left: 30%; bottom: 7%;  --r: 14deg;  animation-delay: 1.4s; }
.junk-p3 { right: 20%; bottom: 8%; --r: -22deg; animation-delay: 1.5s; }

/* SMOKEY */
.smokey {
  position: absolute;
  left: 50%; bottom: 4%;
  width: 44%;
  transform: translateX(-50%);
  z-index: 5;
  animation: smokeyBob 9s ease-in-out infinite;
  filter: drop-shadow(0 8px 0 rgba(0,0,0,.18));
}
.smokey-img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes smokeyBob {
  0%, 35%, 70%, 100% { transform: translateX(-50%) translateY(0); }
  40%, 65%           { transform: translateX(-50%) translateY(-6px); }
}

/* TRUCK rolls in */
.truck {
  position: absolute;
  right: -55%;
  bottom: 22%;
  width: 64%;
  aspect-ratio: 320 / 180;
  z-index: 6;
  animation: truckRoll 9s ease-in-out infinite;
}
@keyframes truckRoll {
  0%, 30%   { right: -55%; transform: translateY(0); }
  45%       { right: 18%;  transform: translateY(0); }
  50%       { right: 18%;  transform: translateY(-2px); }
  60%       { right: 18%;  transform: translateY(0); }
  75%       { right: -65%; transform: translateY(0); }
  100%      { right: -65%; transform: translateY(0); }
}
.truck-puff {
  position: absolute;
  bottom: 10%;
  width: 14%; aspect-ratio: 1;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  border: 2px solid rgba(26,26,26,.4);
  opacity: 0;
  animation: puff 9s ease-in-out infinite;
}
.truck .p1 { left: -2%;  animation-delay: 0s; }
.truck .p2 { left: -10%; animation-delay: .15s; }
.truck .p3 { left: -18%; animation-delay: .3s; }
@keyframes puff {
  0%, 30% { opacity: 0; transform: translateY(0) scale(.6); }
  40%     { opacity: .9; transform: translateY(-10px) scale(1); }
  55%     { opacity: 0; transform: translateY(-30px) scale(1.4); }
  100%    { opacity: 0; }
}

/* SPARKLES — appear on the "after" */
.sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.spk {
  position: absolute;
  font-size: 28px;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--ink);
  opacity: 0;
  animation: sparkle 9s ease-in-out infinite;
}
.spk.s1 { left: 16%; top: 22%; animation-delay: .0s; }
.spk.s2 { left: 30%; top: 12%; animation-delay: .2s; font-size: 22px; }
.spk.s3 { left: 48%; top: 26%; animation-delay: .35s; }
.spk.s4 { left: 64%; top: 16%; animation-delay: .15s; font-size: 32px; }
.spk.s5 { left: 78%; top: 30%; animation-delay: .4s; font-size: 20px; }
@keyframes sparkle {
  0%, 60% { opacity: 0; transform: scale(.4) rotate(0); }
  68%     { opacity: 1; transform: scale(1.1) rotate(45deg); }
  78%     { opacity: 1; transform: scale(1) rotate(90deg); }
  88%, 100% { opacity: 0; transform: scale(.4) rotate(120deg); }
}

/* RIBBON — Before / After */
.ribbon {
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between;
  z-index: 8;
  font-family: "Bowlby One", sans-serif;
  font-size: 18px;
  pointer-events: none;
}
.ribbon span {
  background: var(--ink); color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--cream);
  letter-spacing: 1px;
  transition: opacity .4s;
}
.ribbon-before { animation: showBefore 9s ease-in-out infinite; }
.ribbon-after  { animation: showAfter 9s ease-in-out infinite; background: var(--red); }
@keyframes showBefore { 0%, 35% { opacity: 1; } 45%, 100% { opacity: .25; } }
@keyframes showAfter  { 0%, 55% { opacity: .25; } 65%, 100% { opacity: 1; } }

/* shadow under stage */
.scene-shadow {
  position: absolute;
  bottom: -22px; left: 6%; right: 6%;
  height: 24px;
  background: rgba(26,26,26,.25);
  filter: blur(10px);
  border-radius: 50%;
  z-index: -1;
}

.scene-replay {
  position: absolute;
  right: 12px; bottom: -22px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  z-index: 10;
}
.scene-replay:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* =========== SERVICES =========== */
.services-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .services-feature { grid-template-columns: 1fr; }
}
.svc-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform .18s, box-shadow .18s;
}
.svc-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.svc-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-body { padding: 22px 22px 26px; }
.svc-body h3 { font-size: 24px; margin-bottom: 8px; }
.svc-body p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

.services-chips {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 2.5px solid var(--ink);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s, background .12s, box-shadow .12s;
}
.chip:hover { background: var(--yellow); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.chip-ico { font-size: 18px; }

/* =========== HOW =========== */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  position: relative;
  box-shadow: var(--shadow-hard);
}
.step-num {
  position: absolute;
  top: -22px; left: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-family: "Bowlby One", sans-serif;
  font-size: 26px;
  box-shadow: 3px 3px 0 var(--ink);
}
.step h3 { font-size: 22px; margin: 18px 0 10px; }
.step p { margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.step-ico { width: 64px; height: 64px; }

.how-note {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  padding: 18px 24px;
  font-size: 16px;
  box-shadow: var(--shadow-hard);
}

/* =========== ABOUT =========== */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
.about-photo { display: grid; place-items: center; }
.photo-frame {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  padding: 14px;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
  width: 100%;
  max-width: 360px;
}
.photo-placeholder {
  background: linear-gradient(180deg, #FFE9C4, #F2A65A);
  border: 2.5px solid var(--ink);
  aspect-ratio: 757/898;
  display: grid; place-items: end center;
  overflow: hidden;
}
.about-smokey {
  width: 100%; height: auto;
  display: block;
  filter: drop-shadow(0 6px 0 rgba(0,0,0,.15));
}
.photo-tape {
  position: absolute;
  width: 70px; height: 22px;
  background: rgba(255,211,122,.85);
  border: 1.5px solid rgba(26,26,26,.3);
}
.photo-tape.t-tl { top: -10px; left: -16px; transform: rotate(-22deg); }
.photo-tape.t-br { bottom: -8px; right: -14px; transform: rotate(18deg); }
.photo-cap {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-style: italic;
  color: var(--muted);
}
.about-copy h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 18px; }
.about-copy p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0 0 16px; }
.about-bullets { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.about-bullets li { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.bul {
  width: 28px; height: 28px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* =========== AREA / MAP =========== */
.area-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 880px) { .area-grid { grid-template-columns: 1fr; } }
.area-map {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  min-height: 420px;
  background: #cfe8d6;
}
.area-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-pin {
  position: absolute;
  left: 38%; top: 52%;
  transform: translate(-50%, -100%);
  pointer-events: none;
}
.pin-marker { animation: pinBounce 2.4s ease-in-out infinite; filter: drop-shadow(2px 4px 0 rgba(0,0,0,.25)); }
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.pin-pulse {
  position: absolute;
  left: 50%; bottom: -6px;
  width: 24px; height: 8px;
  background: rgba(230,57,70,.4);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .8; }
  50%      { transform: translateX(-50%) scale(1.6); opacity: .3; }
}
.pin-label {
  margin-top: 6px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
  box-shadow: 2px 2px 0 var(--cream);
}
.area-towns {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-hard);
}
.area-towns h3 { font-family: "Bowlby One"; font-size: 20px; margin-bottom: 16px; }
.towns {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  font-weight: 700;
  font-size: 15px;
}
.towns li::before { content: "✦ "; color: var(--red); margin-right: 4px; }
.area-note { color: var(--muted); margin: 0; }
.area-note a { color: var(--red); font-weight: 800; text-decoration: underline; }

/* =========== REVIEWS =========== */
.sample-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-hard);
  margin: 0;
}
.review .stars {
  color: var(--yellow-2);
  font-size: 22px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 var(--ink);
  margin-bottom: 12px;
}
.review blockquote {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.review figcaption strong { font-family: "Bowlby One", sans-serif; font-size: 16px; letter-spacing: .5px; }
.review figcaption span { color: var(--muted); font-weight: 700; font-size: 14px; }
.review-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--cream-2);
  border: 1.5px dashed var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========== QUOTE =========== */
.quote {
  background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content:"";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,211,122,.05) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(230,57,70,.08) 0, transparent 50%);
  pointer-events: none;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-copy h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  color: #fff;
  margin-bottom: 18px;
}
.quote-copy p { font-size: 17px; color: #d8d2c4; line-height: 1.6; }
.quote-features { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.quote-features li { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 15px; color: var(--cream); }
.quote-or {
  display: flex; align-items: center; gap: 14px;
  color: #80776a; font-style: italic; margin: 24px 0 14px;
}
.quote-or::before, .quote-or::after {
  content:""; flex: 1; height: 2px; background: #444; border-radius: 2px;
}

.quote-form {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
  position: relative;
}
.form-head h3 { font-size: 26px; margin-bottom: 6px; }
.form-head p { color: var(--muted); margin: 0 0 22px; font-size: 14px; }

.field-row { margin-bottom: 16px; }
.field-row.two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 600px) { .field-row.two { grid-template-columns: 1fr; } }
.field { display: block; }
.field-label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .4px;
  margin-bottom: 6px;
  color: var(--ink-2);
}
.optional { color: var(--muted); font-weight: 600; font-size: 12px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
  transition: box-shadow .12s, border-color .12s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230,57,70,.18);
}

.upload {
  position: relative;
  display: block;
  border: 2.5px dashed var(--ink);
  border-radius: 14px;
  background: var(--cream);
  padding: 20px;
  cursor: pointer;
  transition: background .15s;
}
.upload:hover, .upload.drag { background: var(--yellow); }
.upload input[type=file] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
}
.upload-inner { display: grid; place-items: center; gap: 4px; text-align: center; color: var(--ink-2); }
.upload-inner strong { font-size: 15px; }
.upload-hint { color: var(--muted); font-size: 13px; }
.upload-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.upload-list li {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}
.upload-list .file-thumb {
  width: 24px; height: 24px;
  border-radius: 6px; background: var(--orange-100);
  border: 1.5px solid var(--ink);
  background-size: cover; background-position: center;
}

.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px;
  color: var(--ink-2);
  margin: 16px 0 22px;
  cursor: pointer;
}
.checkbox input {
  width: 20px; height: 20px;
  accent-color: var(--red);
  margin-top: 1px;
  flex-shrink: 0;
}

.form-fineprint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 24px 8px 8px;
}
.form-success h3 { font-size: 24px; margin: 14px 0 8px; }
.form-success p { color: var(--muted); margin: 0; }

/* =========== NEWSLETTER =========== */
.newsletter {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 40px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 760px) { .news-grid { grid-template-columns: 1fr; } }
.newsletter h3 { font-family: "Bowlby One"; font-size: 30px; margin-bottom: 6px; }
.newsletter p { margin: 0; font-weight: 700; }
.news-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}
.news-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
}
.news-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(0,0,0,.12); }
.news-success {
  position: absolute;
  inset: auto 0 -32px 0;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}

/* =========== FOOTER =========== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #333;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand-mark { background: var(--orange-100); }
.footer .brand-line1 { color: #fff; }
.footer .brand-line2 { color: #b6ad9a; }
.footer-tag { color: #b6ad9a; max-width: 320px; margin-top: 16px; line-height: 1.55; }
.footer-col h4 {
  font-family: "Bowlby One", sans-serif;
  font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a {
  color: #d8d2c4;
  font-weight: 700; font-size: 14px;
  transition: color .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #80776a;
  letter-spacing: .5px;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .junk, .smokey, .truck, .truck-puff, .spk, .ribbon-before, .ribbon-after,
  .hero-rays, .cloud, .pin-marker, .pin-pulse, .eyebrow-dot {
    animation: none !important;
  }
  .truck { right: 18%; }
}

/* ===== FAQ ===== */
.faq .container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.6rem; }
.faq-item {
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #1a1a1a;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.7rem;
  line-height: 1;
  color: #1a1a1a;
  transition: transform 0.2s ease;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.3rem 1.2rem; }
.faq-a p { margin: 0; color: #3a352e; font-size: 1rem; line-height: 1.6; }
@media (max-width: 560px) {
  .faq-item summary { font-size: 1rem; padding: 1rem; }
}
