:root {
  --accent: #f57c20;
  --accent-light: #fef0e2;
  --accent-hover: #ff922b;
  --accent-text: #7a3a07;
  --dark: #111111;
  --mid: #222222;
  --light: #888888;
  --faint: #bbbbbb;
  --border: #e8e8e8;
  --bg: #ffffff;
  --bg-off: #fafafa;
  --bg-warm: #fdf8f3;
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Sora', sans-serif;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1rem;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: var(--bg);
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
}
.topbar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
}


/* To change the size of We Clean Garbage Cans in the header, change the font-size below in .nav-mark*/
.nav-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.0005em;
}
/* To change the padding space between the nav menu links (Results, How It Works, etc.), change the gap below*/

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}

/* To change the size of the nav menu links (Results, How It Works, etc.), change the font-size below */
.nav-right a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--dark); }

.nav-book {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.83rem !important;
  transition: all 0.2s !important;
}
.nav-book:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

.nav-phone {
  color: var(--dark) !important;
  font-weight: 700 !important;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-drop-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0;
  transition: color 0.2s;
}
.nav-drop-btn:hover { color: var(--dark); }

.nav-drop-arrow { display: none; }

.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--bg);
  border: none;
  border-radius: 0;
  box-shadow: none;
  list-style: none;
  min-width: 120px;
  padding-top: 0.5rem;.
  z-index: 200;
}
.nav-dropdown:hover .nav-drop-menu { display: block; }

.nav-drop-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: all 0.15s;
}
.nav-drop-menu li a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .nav-drop-btn {
    font-size: 1rem;
    width: 100%;
    text-align: left;
  }
  .nav-drop-arrow { display: inline; }
  .nav-dropdown:hover .nav-drop-menu { display: none; }
  .nav-dropdown.open .nav-drop-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.25rem;
  }
}

.mob-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mob-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
}

/* ── HERO ── */
.hero-img-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 600px;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-text {
  padding: 4rem 2rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-text h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-text p {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-g:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,124,32,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--dark);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-text);
}

/* ── VALUE STRIP ── */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vs-item {
  padding: 1.75rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.vs-item:last-child { border-right: none; }
.vs-item .num {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}
.vs-item .txt {
  font-size: 0.78rem;
  color: var(--light);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ── COMMON ── */
.stag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.s-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* ── BEFORE/AFTER ── */
.ba-section { padding: 5rem 2rem; }
.ba-inner { max-width: 1100px; margin: 0 auto; }
.ba-pair-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

.ba-compare {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  height: 500px;
}
.ba-compare img { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-compare .ba-after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.ba-compare .ba-after img { position: absolute; top: 0; right: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-compare .ba-handle {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: var(--accent); cursor: ew-resize; z-index: 10;
  left: 50%; transform: translateX(-50%);
}
.ba-handle::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 40px; height: 40px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.ba-handle::after {
  content: '\2194'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); color: var(--bg);
  font-size: 1.1rem; font-weight: 700; z-index: 11;
}

.ba-compare .ba-label-b,
.ba-compare .ba-label-a {
  position: absolute; top: 12px; padding: 0.25rem 0.7rem;
  border-radius: 6px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; z-index: 5;
  backdrop-filter: blur(4px);
}
.ba-compare .ba-label-b { left: 12px; background: rgba(0,0,0,0.6); color: #ff7070; }
.ba-compare .ba-label-a { right: 12px; background: rgba(0,0,0,0.6); color: var(--accent); }
.ba-caption { text-align: center; margin-top: 0.75rem; font-size: 0.82rem; color: var(--light); font-weight: 500; }

/* ── HOW IT WORKS ── */
.how-section { padding: 5rem 2rem; background: var(--bg-warm); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-sub { font-size: 1rem; color: var(--light); margin-top: 0.5rem; margin-bottom: 3rem; line-height: 1.6; }

.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.step-num {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(245,124,32,0.25);
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--light); line-height: 1.6; }

/* ── ECO ── */
.eco-section { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.eco-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.eco-text p { font-size: 0.95rem; color: var(--mid); line-height: 1.7; margin-top: 1.25rem; }
.eco-img { border-radius: var(--radius-lg); overflow: hidden; }
.eco-img img { width: 100%; display: block; }

.eco-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.eco-f { background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: border-color 0.3s; }
.eco-f:hover { border-color: var(--accent); }
.eco-f .big { font-family: 'Instrument Serif', serif; font-size: 1.6rem; color: var(--accent); line-height: 1; margin-bottom: 0.25rem; }
.eco-f p { font-size: 0.78rem; color: var(--light); line-height: 1.45; margin: 0; }

/* ── PRICING ── */
.pricing-section { padding: 5rem 2rem; background: var(--bg-warm); text-align: center; border-top: 1px solid var(--border); }
.pricing-box { max-width: 480px; margin: 2.5rem auto 0; border: 2px solid var(--accent); border-radius: var(--radius-lg); padding: 2.5rem; position: relative; background: var(--bg); }
.pricing-box .pill {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg); padding: 0.3rem 1.2rem;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 0.2rem; margin-bottom: 0.25rem; }
.pricing-amount .d { font-size: 1.4rem; font-weight: 600; color: var(--dark); align-self: flex-start; }
.pricing-amount .n { font-family: 'Instrument Serif', serif; font-size: 4.5rem; font-weight: 400; color: var(--dark); line-height: 1; letter-spacing: -0.04em; }
.pricing-amount .per { font-size: 1rem; color: var(--light); margin-left: 0.15rem; }
.pricing-desc { color: var(--light); font-size: 0.95rem; margin-bottom: 1.75rem; }
.pricing-checks {
  list-style: none; text-align: left; display: flex; flex-direction: column;
  gap: 0.65rem; margin-bottom: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.pricing-checks li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--mid); }
.pricing-checks li::before { content: '\2713'; color: var(--accent); font-weight: 700; }
.pricing-btn {
  width: 100%; background: var(--accent); color: var(--bg); border: none;
  padding: 0.95rem; border-radius: 8px; font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all 0.25s;
}
.pricing-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ── CONTACT ── */
.contact { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.c-methods { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.c-method {
  display: flex; align-items: center; gap: 0.85rem; text-decoration: none;
  color: var(--dark); padding: 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.25s;
}
.c-method:hover { border-color: var(--accent); transform: translateX(4px); }
.c-method-ic {
  width: 40px; height: 40px; border-radius: 10px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent-text);
}
.c-method-ic svg { width: 18px; height: 18px; }
.c-lbl { font-size: 0.7rem; color: var(--light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.c-val { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-top: 1px; }

.c-form { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; }
.c-form h3 { font-family: 'Instrument Serif', serif; font-size: 1.4rem; color: var(--dark); margin-bottom: 0.25rem; }
.c-form > p { color: var(--light); font-size: 0.88rem; margin-bottom: 1.5rem; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 0.85rem; }
.fg { display: flex; flex-direction: column; gap: 0.3rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 0.78rem; font-weight: 600; color: var(--mid); }
.fg input, .fg textarea {
  padding: 0.75rem 0.9rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: var(--dark);
  background: var(--bg-off); outline: none; transition: all 0.2s;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,124,32,0.12);
  background: var(--bg);
}
.fg textarea { resize: vertical; min-height: 80px; }

.c-submit {
  width: 100%; background: var(--accent); color: var(--bg); border: none;
  padding: 0.9rem; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; font-family: inherit; margin-top: 0.4rem; transition: all 0.25s;
}
.c-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 3.5rem 2rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-family: 'Instrument Serif', serif; font-size: 1.6rem; color: var(--bg); margin-bottom: 0.5rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }
.footer-social { margin-top: 1.25rem; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  transition: all 0.2s; text-decoration: none;
}
.social-link:hover { background: rgba(255,255,255,0.15); color: var(--accent); }

/* Select styling */
.fg select {
  padding: 0.75rem 0.9rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: var(--dark);
  background: var(--bg-off); outline: none; transition: all 0.2s;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.fg select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,124,32,0.12);
  background-color: var(--bg);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-row { grid-template-columns: 1fr; }
  .eco-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .ba-pair-row { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-right { display: none; }
  .mob-toggle { display: block; }
  .nav-right.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--bg);
    padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
    gap: 1rem; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  .value-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .fr { grid-template-columns: 1fr; }
  .eco-facts { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .value-strip { grid-template-columns: repeat(2, 1fr); }
}
