/* Cree's Junk Removal — main.css | Mobile-first, no framework */
:root {
  --green:   #1A3A1A;
  --orange:  #B85800;
  --bg:      #F9F7F4;
  --white:   #FFFFFF;
  --text:    #1C1C1C;
  --muted:   #5A5A5A;
  --border:  #E0E0E0;
  --font:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --r:       4px;
  --max:     1100px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.6; color: var(--text); background: var(--bg); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange); }
ul { list-style: none; }
h1,h2,h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.2rem; }

/* Skip link */
.skip { position: absolute; top: -100%; left: 16px; padding: 8px 16px; background: var(--orange); color: var(--white); font-weight: 700; border-radius: var(--r); z-index: 9999; text-decoration: none; }
.skip:focus { top: 8px; }

/* Layout */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 16px; }
.section { padding: 64px 0; }
.section--alt { background: var(--white); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title::after { content: ''; display: block; width: 48px; height: 4px; background: var(--orange); margin: 16px auto 0; border-radius: 2px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; font-family: var(--font); font-size: 1rem; font-weight: 700; text-decoration: none; border-radius: var(--r); cursor: pointer; border: 2px solid transparent; min-height: 44px; transition: background .15s, color .15s, border-color .15s; }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: #8c4200; border-color: #8c4200; color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--green); }
.btn--ol-accent { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--ol-accent:hover { background: var(--orange); color: var(--white); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: var(--green); box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.nav__toggle { display: none; }
.nav__top { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 8px 16px; }
.nav__logo { font-size: 1.05rem; font-weight: 700; color: var(--white); text-decoration: none; }
.nav__logo small { display: block; font-size: 0.65rem; font-weight: 400; opacity: .7; letter-spacing: .04em; }
.nav__burger { display: flex; flex-direction: column; gap: 5px; width: 40px; height: 44px; justify-content: center; padding: 0 8px; cursor: pointer; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__menu { display: none; flex-direction: column; padding: 0 16px 16px; background: var(--green); }
.nav__toggle:checked ~ .nav__menu { display: flex; }
.nav__toggle:checked ~ .nav__top .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle:checked ~ .nav__top .nav__burger span:nth-child(2) { opacity: 0; }
.nav__toggle:checked ~ .nav__top .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__link { display: block; padding: 12px 0; color: var(--white); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.1); }
.nav__link:hover { color: var(--orange); }
.nav__cta { display: inline-block; margin-top: 8px; padding: 10px 20px; background: var(--orange); color: var(--white); font-weight: 700; border-radius: 50px; text-decoration: none; font-size: .95rem; min-height: 44px; }
.nav__cta:hover { background: #8c4200; color: var(--white); }
@media(min-width:768px) {
  .nav__burger { display: none; }
  .nav__top { gap: 32px; }
  .nav__menu { display: flex !important; flex-direction: row; align-items: center; gap: 24px; padding: 0 16px 0 0; background: transparent; position: static; }
  .nav__link { padding: 0; border: none; font-size: .9rem; }
  .nav__cta { margin-top: 0; }
}

/* Hero */
#hero { background: var(--green); background-image: radial-gradient(ellipse at 70% 50%, rgba(184,88,0,.08) 0%, transparent 60%), repeating-linear-gradient(-45deg, rgba(255,255,255,.015) 0px, rgba(255,255,255,.015) 1px, transparent 1px, transparent 8px); min-height: 100vh; display: flex; align-items: center; padding: 64px 0; }
.hero__eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.hero__title { color: var(--white); margin-bottom: 16px; }
.hero__sub { font-size: 1.15rem; font-weight: 700; color: var(--orange); margin-bottom: 16px; }
.hero__body { font-size: 1.05rem; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 580px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.hero__meta { font-size: .875rem; color: rgba(255,255,255,.72); }
@media(min-width:768px) { .hero__title { font-size: 3.5rem; } }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
@media(min-width:768px) { .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); } }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; border-top: 4px solid var(--orange); }
.card__icon { width: 48px; height: 48px; margin-bottom: 16px; color: var(--orange); }
.card p { color: var(--muted); margin-bottom: 16px; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.card__tags li { font-size: .85rem; background: var(--bg); padding: 4px 10px; border-radius: 50px; border: 1px solid var(--border); }
.card__note { font-size: .85rem; color: var(--muted); font-style: italic; margin-top: 16px; }
.cta-bar { background: var(--green); color: var(--white); padding: 32px 16px; border-radius: var(--r); text-align: center; font-size: 1.05rem; font-weight: 700; }
.cta-bar a { color: #fff; }

/* Pricing */
.pricing-box { max-width: 640px; margin: 0 auto; text-align: center; }
.pricing-box p { color: var(--muted); margin-bottom: 16px; }
.pricing-hl { font-size: 1.1rem; font-weight: 700; color: var(--green); margin: 24px 0; }

/* Reviews */
.review-card { max-width: 700px; margin: 0 auto 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 40px 32px 32px; position: relative; }
.review-card::before { content: '\201C'; position: absolute; top: -20px; left: 24px; font-size: 5rem; line-height: 1; color: var(--orange); font-family: Georgia, serif; }
.review-card__text { font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.review-card__stars { color: var(--orange); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 4px; }
.review-card__by { font-weight: 700; }
.review-card__src { font-size: .875rem; color: var(--muted); }
.reviews-more { text-align: center; color: var(--muted); font-size: .95rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-bottom: 16px; }
.gallery-grid__item { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r); background: var(--border); }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-grid__item img:hover { transform: scale(1.03); }
.gallery-cap { text-align: center; font-size: .875rem; color: var(--muted); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media(min-width:768px) { .about-grid { grid-template-columns: 1fr 240px; } }
.about-body p { color: var(--muted); margin-bottom: 16px; }
.about-body p:first-of-type { color: var(--text); font-size: 1.05rem; }
.about-portrait { order: -1; }
@media(min-width:768px) { .about-portrait { order: 1; } }
.about-portrait img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 4px solid var(--orange); margin: 0 auto; }
@media(min-width:768px) { .about-portrait img { width: 220px; height: 220px; margin: 0; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.ci-item { margin-bottom: 24px; }
.ci-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); display: block; margin-bottom: 2px; }
.ci-val { font-size: 1rem; }
.ci-val a { color: var(--text); font-weight: 700; text-decoration: none; }
.ci-val a:hover { color: var(--orange); }
.ci-note { font-size: .875rem; color: var(--muted); }

/* Form */
#contact-form { display: flex; flex-direction: column; gap: 16px; }
#contact-form label { font-size: .875rem; font-weight: 700; display: block; margin-bottom: 4px; }
#contact-form input, #contact-form textarea { width: 100%; padding: 12px 16px; font-family: var(--font); font-size: 1rem; color: var(--text); background: var(--white); border: 1px solid var(--border); border-radius: var(--r); min-height: 44px; transition: border-color .15s; }
#contact-form input:focus, #contact-form textarea:focus { outline: 2px solid var(--orange); outline-offset: 0; border-color: var(--orange); }
#contact-form textarea { resize: vertical; min-height: 120px; }
#contact-form button { align-self: flex-start; padding: 14px 32px; background: var(--orange); color: var(--white); font-family: var(--font); font-size: 1rem; font-weight: 700; border: 2px solid var(--orange); border-radius: var(--r); cursor: pointer; min-height: 44px; transition: background .15s; }
#contact-form button:hover { background: #8c4200; border-color: #8c4200; }
#form-success { padding: 16px; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--r); color: #2e7d32; font-weight: 700; }
#form-error { padding: 16px; background: #ffebee; border: 1px solid #ef9a9a; border-radius: var(--r); color: #c62828; }

/* About band shoutout */
.about-band { font-size: .9rem; color: var(--muted); margin-top: 8px; }

/* Footer */
.footer { background: var(--green); color: rgba(255,255,255,.7); padding: 48px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media(min-width:768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer__tagline { font-size: .875rem; color: rgba(255,255,255,.72); }
.footer__h { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.72); margin-bottom: 12px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .95rem; }
.footer__links a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.65); }
.footer__bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer__bottom a:hover { color: var(--orange); }
