/*
Theme Name: Junk Crew
Description: Custom WordPress theme for Junk Crew
Version: 1.0
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================
   Palette:
   --black       #111111  — near-black base, headers, nav bg
   --charcoal    #222222  — section backgrounds
   --iron        #3A3A3A  — card backgrounds
   --ash         #6B6B6B  — muted text, labels
   --smoke       #F2F2F0  — light section bg
   --white       #FFFFFF  — text on dark, card fill
   --orange      #E8541A  — primary CTA, accent
   --orange-dark #C4410F  — hover state
   --orange-pale #FFF0EA  — light accent tint

   Typography:
   Display  — Barlow Condensed 700/800, uppercase, tight tracking
   Body     — Inter 400/500, comfortable reading size
   Utility  — Barlow 600, labels, badges, nav

   Signature element:
   The hero uses a full-bleed before/after split image treatment
   with a vertical divider line — immediately communicates the
   transformation this service delivers without saying a word.
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Barlow:wght@500;600&family=Inter:wght@400;500&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  --black:       #111111;
  --charcoal:    #222222;
  --iron:        #3A3A3A;
  --ash:         #6B6B6B;
  --smoke:       #F2F2F0;
  --white:       #FFFFFF;
  --orange:      #E8541A;
  --orange-dark: #C4410F;
  --orange-pale: #FFF0EA;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-util:    'Barlow', sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow:  0 2px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);

  --max-width: 1200px;
  --section-pad: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 40px);
}

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* --- Typography Scale --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 800; }
h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; }
h3 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; }
h4 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; }
p  { font-size: clamp(15px, 1.6vw, 17px); line-height: 1.7; color: var(--ash); }

.eyebrow {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.section { padding: var(--section-pad); }
.section--dark  { background: var(--black); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--charcoal p { color: rgba(255,255,255,0.65); }
.section--smoke { background: var(--smoke); }
.section--orange { background: var(--orange); color: var(--white); }
.section--orange p, .section--orange h2 { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary   { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--outline   { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--dark      { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--iron); }
.btn--lg { padding: 20px 44px; font-size: 17px; }

/* --- Badge / Trust Chips --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--orange-pale);
  color: var(--orange-dark);
  letter-spacing: 0.04em;
}
.badge--dark {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.card--dark {
  background: var(--iron);
  color: var(--white);
}
.card--dark p { color: rgba(255,255,255,0.7); }
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--bordered {
  background: var(--white);
  border: 2px solid var(--smoke);
  box-shadow: none;
}

/* --- Grid Helpers --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* --- Divider --- */
.divider {
  height: 3px;
  width: 48px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* --- Phone CTA (prominent) --- */
.phone-cta {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.phone-cta:hover { color: var(--orange-dark); }

/* --- Stars --- */
.stars { color: var(--orange); font-size: 18px; letter-spacing: 2px; }

/* --- Icon Circle --- */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-circle--dark {
  background: rgba(232, 84, 26, 0.18);
}

/* --- Process Step --- */
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 60px;
  opacity: 0.9;
}
.process-step__body h4 { color: var(--white); margin-bottom: 6px; }
.process-step__body p  { color: rgba(255,255,255,0.65); font-size: 15px; }

/* --- Pricing Card --- */
.pricing-card {
  background: var(--iron);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card__label {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.pricing-card__range {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  margin-bottom: 20px;
}
.pricing-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.pricing-card--featured {
  background: var(--orange);
}
.pricing-card--featured .pricing-card__label,
.pricing-card--featured .pricing-card__range,
.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,0.8);
}

/* --- Item We Take List --- */
.takes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.takes-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--black);
  padding: 12px 16px;
  background: var(--smoke);
  border-radius: var(--radius);
  font-family: var(--font-util);
  font-weight: 500;
}
.takes-list__item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 17px;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: 16px;
}

/* --- Review Card --- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__text {
  font-size: 15px;
  color: var(--black);
  line-height: 1.65;
  font-style: italic;
}
.review-card__author {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 14px;
  color: var(--ash);
}

/* --- Service Card (hub pages) --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
  border-top: 4px solid var(--orange);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card h3 { color: var(--black); font-size: 26px; }
.service-card p  { font-size: 14px; flex: 1; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* --- Location Card --- */
.location-card {
  background: var(--iron);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.18s;
}
.location-card:hover { background: var(--orange-dark); }
.location-card h4 { color: var(--white); font-size: 22px; }
.location-card p  { color: rgba(255,255,255,0.65); font-size: 14px; }
.location-card .arrow {
  margin-top: auto;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
}
.location-card:hover .arrow { color: var(--white); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--orange);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 40px);
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; }
.cta-banner .btn--outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn--outline:hover { background: var(--white); color: var(--orange); }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--charcoal);
  padding: 20px clamp(20px, 5vw, 40px);
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.trust-bar__item {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-bar__item span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

/* --- Forms --- */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: var(--black);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 40px);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,84,26,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.7); max-width: 640px; font-size: 18px; }
.page-hero .breadcrumb {
  font-family: var(--font-util);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.25); }

/* --- Sticky Phone Bar (mobile) --- */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  z-index: 999;
  padding: 14px 20px;
  text-align: center;
}
.sticky-phone a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) { .sticky-phone { display: block; } }

/* --- Utility --- */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }

/* --- Accessibility --- */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
