/* ====================================
   ClearOut — Phoenix Junk Removal
   Theme CSS
   ==================================== */

:root {
  --bg: #F5EFE6;
  --bg-alt: #EDE7DA;
  --fg: #111111;
  --fg-muted: #555555;
  --rust: #C8551E;
  --rust-light: #E07040;
  --sage: #7A8E6A;
  --sage-light: #A8B89A;
  --charcoal: #1A1A1A;
  --cream: #F7F3EC;
  --border: #D8D0C4;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; line-height: 1.1; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Hero ---- */
.hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(247, 243, 236, 0.75);
  max-width: 420px;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--rust) 0%, transparent 70%);
  opacity: 0.35;
  top: 0;
  right: 10%;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: 0.3;
  bottom: 10%;
  right: 30%;
}

.hero-stat-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  border: 1px solid rgba(247, 243, 236, 0.15);
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}

.hero-stat {
  flex: 1;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(247, 243, 236, 0.15);
  background: rgba(247, 243, 236, 0.04);
}

.hero-stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 236, 0.5);
  margin-top: 0.25rem;
}

/* ---- How It Works ---- */
.how-it-works {
  padding: 6rem 0;
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--rust);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.step-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- Pricing ---- */
.pricing {
  padding: 6rem 0;
  background: var(--charcoal);
  color: var(--cream);
}

.pricing .section-eyebrow { color: var(--rust-light); }
.pricing .section-heading { color: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: rgba(247, 243, 236, 0.05);
  border: 1px solid rgba(247, 243, 236, 0.12);
  padding: 2.5rem 2rem;
  border-radius: 0;
}

.pricing-card-featured {
  border-color: var(--rust);
  background: rgba(200, 85, 30, 0.08);
}

.pricing-tier-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pricing-unit {
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: rgba(247, 243, 236, 0.5);
  font-weight: 400;
  margin-left: 0.5rem;
}

.pricing-desc {
  color: rgba(247, 243, 236, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(247, 243, 236, 0.08);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
}

.pricing-note {
  text-align: center;
  color: rgba(247, 243, 236, 0.4);
  font-size: 0.85rem;
}

/* ---- Areas ---- */
.areas {
  padding: 6rem 0;
  background: var(--bg-alt);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.areas-col h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--rust);
  margin-bottom: 1rem;
}

.areas-col ul {
  list-style: none;
}

.areas-col ul li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.areas-col ul li:last-child { border-bottom: none; }

/* ---- Manifesto ---- */
.manifesto {
  padding: 7rem 0;
  background: var(--cream);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-style: normal;
  border-left: 4px solid var(--rust);
  padding-left: 1.5rem;
}

.manifesto-body {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mstat {}

.mstat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--rust);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.mstat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(247, 243, 236, 0.6);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.45);
  max-width: 280px;
  line-height: 1.6;
}

.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 1rem;
}

.footer-services ul {
  list-style: none;
}

.footer-services ul li {
  font-size: 0.85rem;
  padding: 0.3rem 0;
  color: rgba(247, 243, 236, 0.5);
}

.footer-contact p {
  font-size: 0.85rem;
  padding: 0.25rem 0;
  color: rgba(247, 243, 236, 0.5);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(247, 243, 236, 0.08);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(247, 243, 236, 0.25);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .hero-visual { display: none; }

  .steps-grid,
  .pricing-grid,
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stat-row {
    flex-direction: column;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(247, 243, 236, 0.15);
  }

  .hero-stat:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .section-heading { font-size: 2rem; }
  .hero-headline { font-size: 3.5rem; }
  .pricing-price { font-size: 2rem; }
  .mstat-num { font-size: 2.5rem; }
}