/* =========================================================
   Mower Removal styles.css
   Brand: rugged, trustworthy, work-truck aesthetic.
   Display: Big Shoulders Display. Body: IBM Plex Sans.
   ========================================================= */

:root {
  --ink: #0E0E0E;
  --paper: #F4EFE6;
  --paper-dark: #EAE3D2;
  --orange: #FF6A1F;
  --orange-deep: #C7481A;
  --forest: #14532D;
  --steel: #555555;
  --fog: #D9D3C5;
  --yellow: #F2C744;

  --display: 'Big Shoulders Display', 'Arial Narrow', Impact, sans-serif;
  --body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --border: 3px solid var(--ink);
  --border-heavy: 4px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --radius: 4px;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

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

/* Paper background grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14,14,14,0.035) 1px, transparent 0);
  background-size: 3px 3px;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 0.6em;
}
h3 { font-size: 1.4rem; font-weight: 800; }
h4 { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 1.2em;
}
.free { color: var(--forest); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: var(--border-heavy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-deep);
  color: var(--paper);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--orange);
}
.btn-dark:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--orange);
}
.btn-block { width: 100%; }
.btn-arrow { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: square; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: var(--border-heavy);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 54px; width: auto; }
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  padding: 8px 16px;
  border: var(--border);
  background: var(--orange);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  transition: transform 0.12s ease;
}
.header-phone:hover { transform: translate(-1px, -1px); }
.header-phone-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.header-phone-number {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 80px;
  background: var(--paper);
  border-bottom: var(--border-heavy);
  position: relative;
  overflow: hidden;
}
.hero::after {
  /* Decorative orange chunk */
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: var(--orange);
  border: var(--border-heavy);
  transform: rotate(10deg);
  opacity: 0.18;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.hero-headline {
  font-size: clamp(2.8rem, 6.8vw, 5.4rem);
  margin-bottom: 20px;
}
.hero-headline .hero-sub {
  display: inline-block;
  font-size: 0.48em;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 14px 4px;
  margin-top: 10px;
  letter-spacing: 0;
}
.hero-lede {
  font-size: 1.22rem;
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: 24px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1.05rem;
}
.ic {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  stroke: var(--forest);
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Form Card ---------- */
.form-card {
  background: var(--paper);
  border: var(--border-heavy);
  box-shadow: 10px 10px 0 var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.form-card-header {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 26px 18px;
  border-bottom: var(--border-heavy);
}
.form-card-header h2 {
  font-size: 1.8rem;
  margin: 0 0 4px;
}
.form-card-header p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--paper);
  opacity: 0.9;
}
#leadForm {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--steel);
  font-size: 0.78rem;
}
.field input[type=text],
.field input[type=tel],
.field input[type=file],
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  width: 100%;
  transition: box-shadow 0.12s, transform 0.12s;
}
.field input[type=file] { padding: 10px 14px; }
.field textarea { resize: vertical; min-height: 100px; font-family: var(--body); }
.field input:focus, .field textarea:focus {
  outline: none;
  box-shadow: var(--shadow-sm);
  transform: translate(-1px, -1px);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.form-fineprint {
  font-size: 0.78rem;
  color: var(--steel);
  margin: 4px 0 0;
}
.form-status {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0;
  margin: 0;
  min-height: 1.4em;
}
.form-status.success { color: var(--forest); }
.form-status.error { color: var(--orange-deep); }

/* ---------- Section helpers ---------- */
section { padding: 80px 0; }
.section-title { margin-bottom: 40px; }

/* Caution stripe divider */
.stripe {
  height: 22px;
  border-top: var(--border-heavy);
  border-bottom: var(--border-heavy);
  background:
    repeating-linear-gradient(
      135deg,
      var(--yellow) 0 22px,
      var(--ink) 22px 44px
    );
}

/* ---------- How it works ---------- */
.how { background: var(--paper); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  background: var(--paper);
  border: var(--border-heavy);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--ink);
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 10px; font-size: 1.55rem; }
.step p { margin: 0; font-size: 1rem; }
.step a { color: var(--orange-deep); font-weight: 600; }

/* ---------- Take ---------- */
.take { background: var(--paper-dark); border-top: 2px solid var(--fog); border-bottom: 2px solid var(--fog); }
.take-lede { font-size: 1.15rem; max-width: 680px; margin-bottom: 34px; }
.take-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.take-col h4 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ink);
}
.check-list, .x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li, .x-list li {
  padding-left: 32px;
  position: relative;
  font-size: 1rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 12px;
  border-left: 4px solid var(--forest);
  border-bottom: 4px solid var(--forest);
  transform: rotate(-45deg);
}
.x-list li::before {
  content: '×';
  position: absolute;
  left: 0; top: -4px;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange-deep);
  line-height: 1;
}
.take-note { margin-top: 16px; font-size: 0.92rem; color: var(--steel); font-style: italic; }

/* ---------- Area ---------- */
.area { background: var(--paper); }
.area-lede { font-size: 1.1rem; max-width: 680px; margin-bottom: 34px; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.area-col {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.area-col h4 {
  color: var(--orange-deep);
  font-size: 1rem;
  margin-bottom: 8px;
}
.area-col p { font-size: 0.92rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper-dark); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 12px 0 0; font-size: 1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  border-top: var(--border-heavy);
  border-bottom: var(--border-heavy);
  text-align: center;
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper);
  padding: 60px 0 120px;
  border-top: var(--border-heavy);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 14px; }
.footer-tag { font-size: 0.95rem; max-width: 340px; margin: 0; color: var(--steel); }
.footer-contact p { font-size: 0.98rem; margin: 0 0 8px; }
.footer-contact a { color: var(--orange-deep); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { text-decoration: underline; }
.footer-meta p { font-size: 0.85rem; color: var(--steel); margin: 0; }

/* ---------- Doc / Legal pages ---------- */
.doc { padding: 70px 0 90px; background: var(--paper); }
.doc-wrap { max-width: 780px; }
.doc-title { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 6px; }
.doc-eff { font-family: var(--body); font-size: 0.95rem; color: var(--steel); margin: 0 0 28px; }
.doc-lede { font-size: 1.15rem; line-height: 1.6; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 2px solid var(--fog); }
.doc-wrap h2 {
  font-size: 1.65rem;
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ink);
}
.doc-wrap p { font-size: 1.02rem; line-height: 1.65; }
.doc-wrap a { color: var(--orange-deep); font-weight: 600; }
.doc-wrap a:hover { text-decoration: underline; }
.doc-back { margin-top: 44px; }

/* ---------- 404 page ---------- */
.err { padding: 90px 0 110px; background: var(--paper); }
.err-wrap { max-width: 820px; text-align: left; }
.err-title {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  margin-bottom: 22px;
}
.err-lede {
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 34px;
}
.err-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-meta a {
  color: var(--orange-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.footer-meta a:hover { text-decoration: underline; }

/* ---------- Mobile sticky call bar ---------- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--orange);
  border-top: var(--border-heavy);
  padding: 14px 16px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.sticky-call svg {
  width: 22px; height: 22px; fill: var(--ink);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 40px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero::after { display: none; }
  .steps { grid-template-columns: 1fr; }
  .take-grid { grid-template-columns: 1fr; gap: 30px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 60px 0; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .header-phone-label { display: none; }
  .header-phone-number { font-size: 1.1rem; }
  .header-phone { padding: 8px 12px; }
  .logo img { height: 42px; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .hero-headline .hero-sub { font-size: 0.5em; }
  .btn { font-size: 1.05rem; padding: 14px 20px; }
  .form-card { box-shadow: 6px 6px 0 var(--ink); }
  .area-grid { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; }
  .sticky-call { display: flex; }
}
