/* =========================================================
   Big Al's Dumptruck — styles.css
   Brand palette pulled from the logo:
   teal truck, peach, pink script, vintage cream, sage banner
   ========================================================= */

:root {
  --teal:        #3a9b91;
  --teal-dark:   #2c7c74;
  --teal-deep:   #1f5a54;
  --peach:       #f3995c;
  --peach-light: #fbc18d;
  --pink:        #ef8ba0;
  --pink-deep:   #e06b85;
  --cream:       #f3ecd9;
  --cream-dark:  #e9dec4;
  --sage:        #a9c0a0;
  --ink:         #21201d;
  --ink-soft:    #4a463f;
  --white:       #ffffff;

  --shadow-sm: 0 2px 8px rgba(33, 32, 29, 0.08);
  --shadow-md: 0 10px 30px rgba(33, 32, 29, 0.12);
  --shadow-lg: 0 24px 60px rgba(33, 32, 29, 0.18);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;

  --font-script:  'Pacifico', cursive;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: 1rem; letter-spacing: .2px;
  padding: 15px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  will-change: transform; text-align: center;
}
.btn--primary { background: var(--peach); color: #3a2410; box-shadow: 0 8px 20px rgba(243,153,92,.4); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(243,153,92,.5); background: #f5a96f; }
.btn--ghost { background: rgba(255,255,255,.14); color: var(--white); border: 2px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }
.btn--light { background: var(--white); color: var(--teal-dark); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: #000; box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: linear-gradient(90deg, var(--pink-deep), var(--peach));
  color: #fff; text-align: center; font-size: .92rem; font-weight: 600;
  padding: 9px 44px 9px 16px; position: relative;
}
.promo-bar a { text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.promo-bar__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); border: none; color: #fff; width: 24px; height: 24px;
  border-radius: 50%; font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.promo-bar__close:hover { background: rgba(255,255,255,.35); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  /* No backdrop-filter: it makes position:fixed children (the mobile menu)
     size to the header instead of the viewport, breaking the slide-out. */
  background: rgba(243,236,217,.97);
  border-bottom: 1px solid rgba(33,32,29,.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); background: var(--cream); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { height: 46px; width: auto; }
.nav__brand-text { font-family: var(--font-script); font-size: 1.45rem; color: var(--pink-deep); line-height: 1; }
.nav__brand-text em { font-family: var(--font-display); font-style: normal; color: var(--teal-dark); font-size: 1.2rem; letter-spacing: 1px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 600; font-size: .98rem; color: var(--ink-soft); transition: color .2s ease; }
.nav__links a:hover { color: var(--teal-dark); }
.nav__cta { background: var(--teal); color: #fff !important; padding: 10px 20px; border-radius: 999px; box-shadow: 0 6px 16px rgba(58,155,145,.35); }
.nav__cta:hover { background: var(--teal-dark); transform: translateY(-2px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; padding-block: 70px 110px; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 78% 8%, rgba(243,153,92,.45), transparent 60%),
    radial-gradient(900px 480px at 8% 100%, rgba(239,139,160,.35), transparent 55%),
    linear-gradient(150deg, var(--teal) 0%, var(--teal-dark) 55%, var(--teal-deep) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .6;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero__eyebrow {
  display: inline-block; font-weight: 600; font-size: .9rem; letter-spacing: .5px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero__title { font-family: var(--font-display); font-size: clamp(3.2rem, 8vw, 6rem); line-height: .92; letter-spacing: 1px; text-shadow: 0 6px 24px rgba(0,0,0,.2); }
.hero__title-accent { color: var(--peach-light); }
.hero__lead { font-size: 1.13rem; max-width: 540px; margin-top: 22px; color: rgba(255,255,255,.94); }
.hero__lead strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__tagline { margin-top: 26px; font-family: var(--font-script); font-size: 1.5rem; color: var(--peach-light); }

.hero__art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__logo {
  width: min(440px, 92%); border-radius: 24px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero__art-fallback { display: none; font-size: 9rem; line-height: 1; filter: drop-shadow(0 18px 30px rgba(0,0,0,.3)); }
.hero__art--fallback .hero__logo { display: none; }
.hero__art--fallback .hero__art-fallback { display: flex; gap: .1em; animation: float 6s ease-in-out infinite; }

.hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; z-index: 1;
  background: var(--cream);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C240,80 480,0 720,30 C960,60 1200,10 1440,40 L1440,70 L0,70 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C240,80 480,0 720,30 C960,60 1200,10 1440,40 L1440,70 L0,70 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
}

@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }

/* ---------- Trust strip ---------- */
.trust { background: var(--cream); }
.trust__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: #fff; border-radius: var(--radius); padding: 22px 26px;
  margin-top: -34px; position: relative; z-index: 2; box-shadow: var(--shadow-md);
}
.trust__item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .98rem; color: var(--ink-soft); }
.trust__icon { font-size: 1.5rem; }

/* ---------- Section base ---------- */
.section { padding-block: 84px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__eyebrow { font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; color: var(--pink-deep); margin-bottom: 12px; }
.section__title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: 1px; color: var(--ink); line-height: 1.05; }
.section__title--left { text-align: left; }
.section__sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(33,32,29,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--peach)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(58,155,145,.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px; display: grid; place-items: center; font-size: 2rem;
  background: linear-gradient(135deg, rgba(58,155,145,.14), rgba(243,153,92,.18));
  border-radius: 16px; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--teal-deep); }
.service-card p { color: var(--ink-soft); font-size: .98rem; }
.services__note { text-align: center; margin-top: 38px; color: var(--ink-soft); }
.services__note a { color: var(--pink-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Promo band ---------- */
.promo { padding-block: 0; }
.promo__inner {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #fff; text-align: center; border-radius: 26px; padding: 56px 28px;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.promo__inner::after {
  content: "🍑"; position: absolute; font-size: 12rem; right: -20px; bottom: -40px; opacity: .15; transform: rotate(-12deg);
}
.promo__badge { display: inline-block; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.4); padding: 7px 18px; border-radius: 999px; font-weight: 700; letter-spacing: 1px; font-size: .85rem; margin-bottom: 18px; }
.promo__title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: 1px; line-height: 1.05; }
.promo__text { max-width: 620px; margin: 16px auto 28px; font-size: 1.08rem; color: rgba(255,255,255,.96); position: relative; z-index: 1; }

/* ---------- How it works ---------- */
.how { background: linear-gradient(180deg, var(--cream), var(--cream-dark)); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.how__step { background: #fff; border-radius: var(--radius); padding: 36px 28px 32px; text-align: center; box-shadow: var(--shadow-sm); position: relative; }
.how__num {
  width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.8rem; color: #fff; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); box-shadow: 0 8px 18px rgba(58,155,145,.35);
}
.how__step h3 { font-size: 1.25rem; color: var(--teal-deep); margin-bottom: 8px; }
.how__step p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Why us ---------- */
.why__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; }
.why__emoji { font-size: 7rem; text-align: center; background: linear-gradient(135deg, rgba(58,155,145,.12), rgba(243,153,92,.16)); border-radius: 24px; padding: 60px 0; box-shadow: var(--shadow-md); }
.why__lead { font-size: 1.08rem; color: var(--ink-soft); margin: 16px 0 22px; }
.why__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.why__list li { position: relative; padding-left: 38px; color: var(--ink-soft); }
.why__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 26px; height: 26px;
  display: grid; place-items: center; background: var(--teal); color: #fff; border-radius: 50%; font-size: .85rem; font-weight: 700;
}
.why__list strong { color: var(--ink); }

/* ---------- Service area ---------- */
.area__pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.area__pills li {
  background: #fff; border: 1px solid rgba(58,155,145,.25); color: var(--teal-deep);
  font-weight: 600; padding: 11px 22px; border-radius: 999px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, background .2s ease, color .2s ease;
}
.area__pills li:hover { transform: translateY(-3px); background: var(--teal); color: #fff; }

/* ---------- Quote / contact ---------- */
.quote { background: linear-gradient(160deg, var(--teal-dark), var(--teal-deep)); color: #fff; }
.quote__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.quote .section__eyebrow { color: var(--peach-light); }
.quote .section__title { color: #fff; }
.quote__lead { color: rgba(255,255,255,.9); margin: 14px 0 26px; font-size: 1.05rem; }
.quote__contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.quote__contact-item { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 16px 18px; border-radius: var(--radius-sm); transition: background .2s ease; }
.quote__contact-item:not(.quote__contact-item--static):hover { background: rgba(255,255,255,.16); }
.quote__contact-icon { font-size: 1.5rem; }
.quote__slogan { font-family: var(--font-script); font-size: 1.5rem; color: var(--peach-light); }

.quote__form { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); color: var(--ink); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid #e2dccb; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fbf8f0; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,155,145,.15); background: #fff;
}
.field textarea { resize: vertical; }
.quote__form-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }
/* Honeypot — visually & physically hidden, but not display:none (some bots skip those) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.quote__form-status { margin-top: 14px; padding: 14px 16px; border-radius: 12px; font-size: .92rem; font-weight: 600; text-align: center; }
.quote__form-status.is-success { background: #e7f5ef; color: #1f7a55; border: 1px solid #b6e2cf; }
.quote__form-status.is-error { background: #fde9e7; color: #b23b2e; border: 1px solid #f3c4bd; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--peach); color: #3a2410; }
.cta-band__inner { text-align: center; padding-block: 64px; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 1px; }
.cta-band p { font-size: 1.1rem; margin: 10px 0 26px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 44px; }
.footer__logo { font-family: var(--font-script); font-size: 1.6rem; color: var(--pink); display: inline-block; margin-bottom: 12px; }
.footer__logo em { font-family: var(--font-display); font-style: normal; color: var(--sage); font-size: 1.3rem; letter-spacing: 1px; }
.footer__brand p { font-size: .95rem; max-width: 320px; margin-bottom: 8px; }
.footer__slogan { font-family: var(--font-script); color: var(--peach-light); font-size: 1.15rem; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .5px; }
.footer__col a, .footer__muted { display: block; font-size: .94rem; margin-bottom: 10px; transition: color .2s ease; }
.footer__col a:hover { color: var(--peach-light); }
.footer__muted { color: rgba(255,255,255,.45); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 20px; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- Floating action button ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; align-items: center; gap: 9px;
  background: var(--pink-deep); color: #fff; font-weight: 700;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 10px 26px rgba(224,107,133,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 34px rgba(224,107,133,.6); }
.fab__icon { font-size: 1.2rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__art { order: -1; margin-bottom: 10px; }
  .hero__logo { width: min(340px, 80%); }
  .why__inner { grid-template-columns: 1fr; }
  .why__media { max-width: 420px; margin: 0 auto; }
  .quote__inner { grid-template-columns: 1fr; }
  .services__grid, .how__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; height: 100dvh; width: min(300px, 82vw);
    flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--cream); padding: 96px 28px 28px;
    border-left: 1px solid rgba(33,32,29,.1);
    box-shadow: -16px 0 40px rgba(33,32,29,.28);
    transform: translateX(100%); transition: transform .3s ease; z-index: 99;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { width: 100%; padding: 15px 0; font-size: 1.1rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid rgba(33,32,29,.1); }
  .nav__cta { text-align: center; margin-top: 8px; }
  .nav__toggle { display: flex; z-index: 100; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .section { padding-block: 60px; }
  .fab__text { display: none; }
  .fab { padding: 16px; }
}

@media (max-width: 480px) {
  .services__grid, .how__grid, .trust__inner, .footer__inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.8rem, 14vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
