/* ============================================================
   Love Nature Junk Removal — styles.css
   Vanilla CSS · mobile-first · responsive
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --green-900: #0f3d21;
  --green-800: #14532d;
  --green-700: #15803d;
  --green-600: #1a8f45;
  --green-500: #22c55e;
  --yellow:    #facc15;
  --yellow-600:#eab308;
  --orange:    #f97316;
  --sky:       #38bdf8;
  --cream:     #f6f8f2;
  --paper:     #ffffff;
  --ink:       #1c2b1c;
  --ink-soft:  #47584a;
  --line:      #e3e9dd;
  --shadow-sm: 0 2px 8px rgba(15, 61, 33, .08);
  --shadow-md: 0 10px 30px rgba(15, 61, 33, .12);
  --shadow-lg: 0 20px 50px rgba(15, 61, 33, .18);
  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1140px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; font-weight: 800; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: .7em 1.3em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 1.05rem; padding: .95em 1.7em; }
.btn-block { width: 100%; }

.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-800); box-shadow: var(--shadow-md); }
.btn-yellow { background: var(--yellow); color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn-yellow:hover { background: var(--yellow-600); }
.btn-outline { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.75); backdrop-filter: blur(3px); }
.btn-outline:hover { background: #fff; color: var(--green-800); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: #fff; color: var(--green-800); }
.btn-phone { background: var(--yellow); color: var(--green-900); font-size: .95rem; padding: .6em 1.1em; }
.btn-phone:hover { background: var(--yellow-600); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand-mark { display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: .95; }
.brand-love { font-family: var(--font-head); font-weight: 800; font-size: .8rem; letter-spacing: .06em; color: var(--yellow-600); }
.brand-junk { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; color: var(--green-800); }

.main-nav { display: flex; gap: 1.4rem; }
.main-nav a { font-weight: 600; font-size: .95rem; color: var(--ink-soft); padding: .3em 0; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green-600); transition: width .2s ease; }
.main-nav a:hover { color: var(--green-800); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--green-800); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, #0f3d21 0%, #15803d 55%, #1a8f45 100%);
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../assets/boat-trailer.jpg") center/cover no-repeat;
  opacity: .18; mix-blend-mode: luminosity;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(250,204,21,.18), transparent 55%); }
.hero-content { position: relative; max-width: 760px; }
.hero-eyebrow { display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: .4em 1em; border-radius: 999px; font-weight: 600; font-size: .85rem; margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(2.4rem, 7vw, 4.4rem); letter-spacing: -.01em; margin-bottom: 1rem; }
.hero h1 .accent { color: var(--yellow); }
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 620px; color: rgba(255,255,255,.94); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.3rem; }
.hero-trust { font-size: .95rem; color: rgba(255,255,255,.85); }

/* ---------- Section basics ---------- */
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.eyebrow { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--green-600); margin-bottom: .6rem; }
.eyebrow.light { color: var(--yellow); }
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); color: var(--green-900); }
.section-lead { margin-top: .8rem; color: var(--ink-soft); font-size: 1.08rem; }
.on-green { color: #fff; }
.on-green-sub { color: rgba(255,255,255,.9); }

/* ---------- Cards / services ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-500); }
.card-icon { font-size: 2.4rem; margin-bottom: .8rem; line-height: 1; }
.card h3 { font-size: 1.2rem; color: var(--green-800); margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card-cta { background: linear-gradient(160deg, #14532d, #1a8f45); border: none; color: #fff; }
.card-cta h3 { color: #fff; }
.card-cta p { color: rgba(255,255,255,.9); margin-bottom: 1.1rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-text h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--green-900); margin-bottom: 1rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 1.2rem; display: grid; gap: .6rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: var(--ink); font-weight: 500; }
.check-list li::before { content: "✅"; position: absolute; left: 0; top: 0; }

/* ---------- Gallery carousel ---------- */
.carousel { position: relative; max-width: 900px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #000; }
.carousel-track { list-style: none; margin: 0; padding: 0; display: flex; transition: transform .5s ease; }
.carousel-slide { position: relative; flex: 0 0 100%; }
.carousel-slide img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.2rem .9rem; color: #fff; font-size: 1rem; font-weight: 500; background: linear-gradient(transparent, rgba(0,0,0,.75)); }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--green-900); font-size: 2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: background .2s ease, transform .2s ease; }
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carousel-btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.carousel-prev { left: .7rem; }
.carousel-next { right: .7rem; }

.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.carousel-dot { width: 12px; height: 12px; padding: 0; border: none; border-radius: 50%; background: rgba(21,128,61,.28); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.carousel-dot:hover { background: rgba(21,128,61,.55); }
.carousel-dot[aria-selected="true"] { background: var(--green-900); transform: scale(1.2); }
.carousel-dot:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

@media (max-width: 560px) {
  .carousel-btn { width: 38px; height: 38px; font-size: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}

/* ---------- Process (green) ---------- */
.section-green { background: linear-gradient(135deg, #0f3d21, #15803d); color: #fff; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.step { text-align: center; padding: 1rem; }
.step-num { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1rem; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--green-900); background: var(--yellow); box-shadow: var(--shadow-md); }
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { color: rgba(255,255,255,.9); }

/* ---------- Service area ---------- */
.area-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.area-inner h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--green-900); margin-bottom: .8rem; }
.area-inner .btn { margin-top: 1.6rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 1rem; }
.contact-actions { display: flex; flex-direction: column; gap: .7rem; margin: 1.6rem 0; }
.contact-list { list-style: none; display: grid; gap: .6rem; }
.contact-list li { color: rgba(255,255,255,.95); font-weight: 500; }
.contact-list a:hover { color: var(--yellow); }

.contact-form-wrap { background: var(--paper); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); }
.contact-form h3 { color: var(--green-900); font-size: 1.4rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fcfdfb; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.field textarea { resize: vertical; }
.form-status { margin-top: .8rem; font-weight: 600; font-size: .95rem; }
.form-status.ok { color: var(--green-700); }
.form-status.err { color: #c0392b; }
.form-fallback { margin-top: 1rem; text-align: center; color: var(--ink-soft); font-size: .9rem; }
.form-fallback a { color: var(--green-700); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.85); padding: 3rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand .brand-love { color: var(--yellow); font-size: .9rem; display: block; }
.footer-brand .brand-junk { color: #fff; font-size: 1.3rem; display: block; }
.footer-slogan { margin-top: .6rem; color: rgba(255,255,255,.8); }
.footer-contact { display: grid; gap: .5rem; align-content: start; }
.footer-contact a:hover { color: var(--yellow); }
.footer-social { display: flex; flex-direction: column; gap: .5rem; align-content: start; }
.footer-social a { font-weight: 600; }
.footer-social a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.2rem 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---------- Mobile call bar ---------- */
.mobile-callbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--yellow); color: var(--green-900); text-align: center;
  font-family: var(--font-head); font-weight: 700; padding: .9rem; font-size: .95rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}

/* ---------- Logos ---------- */
.brand-logo { display: block; height: 56px; width: auto; border-radius: 10px; box-shadow: var(--shadow-sm); }
.mission-logo { display: block; margin: 0 auto 1rem; width: min(320px, 82%); height: auto; border-radius: 16px; box-shadow: var(--shadow-lg); }
.footer-logo { display: block; width: 240px; max-width: 100%; height: auto; border-radius: 12px; box-shadow: var(--shadow-md); }

/* ---------- Highlights strip ---------- */
.highlights {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
  margin: 0 auto clamp(1.8rem, 4vw, 2.6rem); max-width: 900px;
}
.highlights li {
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: .55em 1.1em; font-size: .92rem; color: var(--ink); font-weight: 500;
  display: inline-flex; align-items: center; gap: .5em; box-shadow: var(--shadow-sm);
}
.highlights strong { color: var(--green-800); }

/* ---------- Mission band ---------- */
.mission-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(250,204,21,.10), transparent 40%),
    linear-gradient(135deg, #0f3d21, #1a8f45);
  color: #fff; text-align: center;
}
.mission-inner { max-width: 820px; margin: 0 auto; }
.mission-quote {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem); line-height: 1.5; color: #fff;
}
.mission-quote strong { color: var(--yellow); font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 360px; }
  .main-nav a { padding: .9rem 20px; border-top: 1px solid var(--line); width: 100%; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
  .footer-contact, .footer-social { justify-items: center; }

  .mobile-callbar { display: block; }
  body { padding-bottom: 56px; } /* room for call bar */
  html { scroll-padding-top: 72px; }
}

@media (max-width: 520px) {
  .brand-logo { height: 46px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .btn-lg { width: 100%; }
  .hero-actions { gap: .6rem; }
}

@media (min-width: 861px) {
  .mobile-callbar { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
