/* Albuquerque Stump Grinding Pros — polished visual layer.
   Structure and copy unchanged; typography, spacing, color depth,
   buttons, cards, hierarchy, and mobile CTA refined. */

:root {
  --ink: #0f1a10;
  --ink-soft: #2a3a2c;
  --muted: #5e6a5f;
  --muted-2: #7a8579;
  --green: #1f4022;
  --green-2: #2f5c31;
  --green-3: #3d7a3f;
  --gold: #e9a83a;
  --gold-2: #f2c46b;
  --cream: #f7f2e8;
  --paper: #fffbf2;
  --paper-2: #fdf6e6;
  --line: rgba(15, 26, 16, 0.1);
  --line-strong: rgba(15, 26, 16, 0.18);
  --shadow-sm: 0 2px 6px rgba(15, 26, 16, 0.06);
  --shadow-md: 0 10px 24px rgba(15, 26, 16, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 26, 16, 0.18);
  --shadow-gold: 0 14px 30px rgba(233, 168, 58, 0.32);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 28px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.hidden {
  display: none !important;
}
::selection {
  background: var(--gold);
  color: #1b251b;
}

/* ---------- Top strip ---------- */
.top-strip {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 11px 6vw;
  background: #0c150d;
  color: #eef3ea;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.top-strip span {
  opacity: 0.85;
}
.top-phone {
  font-weight: 800;
  color: #ffd98a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.top-phone:hover {
  color: #fff;
}
.top-phone:before {
  content: "→";
  font-weight: 900;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6vw;
  background: rgba(247, 242, 232, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-display);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--green-2), var(--green));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 15px;
  box-shadow:
    0 8px 18px rgba(31, 64, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.brand strong {
  font-size: 15px;
  letter-spacing: -0.01em;
  display: block;
  color: var(--ink);
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: -1px;
  font-size: 12px;
}
.site-header nav {
  display: flex;
  gap: 26px;
  font-weight: 700;
  font-size: 14.5px;
  color: #2a3a2c;
}
.site-header nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.site-header nav a:hover {
  color: var(--green-2);
}
.site-header nav a[href="#quote"],
.site-header nav a[href="/#quote"] {
  color: #0f1a10;
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.site-header nav a[href="#quote"]:hover,
.site-header nav a[href="/#quote"]:hover {
  background: var(--gold-2);
  color: #0f1a10;
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  margin-top: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 800;
  margin-bottom: 16px;
}
h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
p {
  margin-top: 0;
}
.eyebrow,
.section-kicker,
.card-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 14px;
  font-family: var(--font-sans);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a2a1a;
  box-shadow: var(--shadow-gold);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(233, 168, 58, 0.42);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.btn.full {
  width: 100%;
  border-radius: 16px;
  min-height: 56px;
  font-size: 16px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 440px;
  gap: 44px;
  min-height: 720px;
  padding: 96px 6vw 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      105deg,
      rgba(10, 18, 11, 0.92) 0%,
      rgba(10, 18, 11, 0.72) 40%,
      rgba(10, 18, 11, 0.25) 75%,
      rgba(10, 18, 11, 0.55) 100%
    ),
    url("/assets/hero-stump-grinding.webp") center/cover no-repeat;
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(233, 168, 58, 0.22), transparent 40%),
    linear-gradient(to bottom, transparent 78%, var(--cream));
  z-index: -1;
}
.hero-content {
  align-self: center;
  color: #fff;
  max-width: 720px;
}
.hero-content .eyebrow {
  color: var(--gold-2);
}
.hero-text {
  font-size: 19px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row span:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(242, 196, 107, 0.22);
}

/* Quote card */
.quote-card {
  align-self: center;
  background: linear-gradient(180deg, #fffdf6, var(--paper));
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.quote-card .card-kicker {
  color: var(--green-2);
}
.quote-card h2 {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.quote-card label {
  display: block;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  font-size: 14.5px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.quote-card input:hover,
.quote-card select:hover,
.quote-card textarea:hover {
  border-color: var(--green-3);
}
.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(47, 92, 49, 0.14);
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.optional-text {
  color: var(--muted-2);
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.quote-card input[type="file"] {
  padding: 10px;
  background: #fff;
  font-size: 13px;
}
.quote-card button[type="submit"] {
  margin-top: 22px;
}

/* ---------- Highlight band (trust) ---------- */
.highlight-band {
  margin: -56px 6vw 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  gap: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.highlight-band > div:first-child .section-kicker {
  color: var(--green-2);
}
.highlight-band h2 {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.highlight-band > div:first-child > p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}
.highlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.highlight-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.highlight-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.highlight-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.highlight-list span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.5;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 6vw;
}
.section > .section-kicker,
.section > h2,
.section > p {
  max-width: 820px;
}
.section > h2 + p {
  color: var(--muted);
  font-size: 17px;
  margin-top: -6px;
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 0 !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 14, 8, 0.92) 5%,
    rgba(8, 14, 8, 0.55) 45%,
    rgba(8, 14, 8, 0.08) 100%
  );
}
.service-overlay {
  width: 100%;
  padding: 24px 22px;
  position: relative;
  color: #fff;
}
.service-overlay span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #173017;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(233, 168, 58, 0.35);
}
.service-overlay h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
}
.service-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- Pricing factors ---------- */
.pricing-factors {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}
.pricing-copy {
  max-width: 860px;
}
.pricing-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}
.factor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.factor-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.factor-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.factor-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16.5px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.factor-grid span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- Split section ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 6vw 60px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-panel {
  min-height: 480px;
  background:
    linear-gradient(rgba(15, 26, 16, 0.08), rgba(15, 26, 16, 0.04)),
    url("/assets/finished-stump-area.webp") center/cover no-repeat;
}
.split-copy {
  padding: 56px 48px;
}
.split-copy .section-kicker {
  color: var(--green-2);
}
.split-copy p {
  color: var(--muted);
  font-size: 16px;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.check-list li {
  padding-left: 34px;
  position: relative;
  font-weight: 600;
  color: var(--ink-soft);
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(47, 92, 49, 0.28);
}

/* ---------- Dark section (areas) ---------- */
.dark {
  background: #0f1a10;
  color: #fff;
}
.dark .section-kicker {
  color: var(--gold-2);
}
.dark h2 {
  color: #fff;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.area-grid span {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}
.area-grid span:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.area-grid span:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Tips ---------- */
.tips-section {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}
.tips-heading {
  max-width: 880px;
}
.tips-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.tip-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tip-card:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(233, 168, 58, 0.1);
}
.tip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.do-card .tip-badge {
  background: #dceac9;
  color: #1f4022;
}
.dont-card .tip-badge {
  background: #f4d5c6;
  color: #6c2d1a;
}
.dont-card:before {
  background: rgba(198, 88, 42, 0.1);
}
.tip-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
}
.tip-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  position: relative;
}

/* ---------- SEO content ---------- */
.seo-content {
  background: var(--paper);
}
.seo-content p:not(.section-kicker) {
  max-width: 900px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq details {
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  margin: 10px 0;
  transition:
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  font-size: 24px;
  color: var(--green-2);
  font-weight: 400;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding: 60px 6vw 40px;
  background: #0a120b;
  color: #e8ede6;
}
.site-footer strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
}
.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  max-width: 340px;
  line-height: 1.55;
}
.footer-cta {
  background: linear-gradient(140deg, rgba(233, 168, 58, 0.16), rgba(233, 168, 58, 0.04));
  border: 1px solid rgba(233, 168, 58, 0.28);
  border-radius: 18px;
  padding: 20px;
}
.footer-cta strong {
  display: block;
  color: #ffd98a;
  margin-bottom: 6px;
  font-size: 15px;
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  margin: 0 0 12px;
}
.footer-cta a.btn {
  width: 100%;
  min-height: 46px;
  font-size: 14px;
}
.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ffd98a;
  font-weight: 700;
  font-size: 14.5px;
}
.footer-actions a {
  transition: color 0.15s ease;
}
.footer-actions a:hover {
  color: #fff;
}
.footer-legal {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #fff;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 40;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #152015;
  min-height: 58px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.mobile-call:before {
  content: "→";
  font-weight: 900;
}

/* ---------- Thank-you page ---------- */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--cream), var(--paper-2));
}
.thanks-card {
  max-width: 560px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  text-align: center;
}
.thanks-card h1 {
  font-size: 42px;
  color: var(--ink);
  margin: 22px 0 12px;
}
.thanks-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.thanks-card .btn {
  margin-top: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 6vw 96px;
    gap: 36px;
    min-height: auto;
  }
  .quote-card {
    max-width: 680px;
    width: 100%;
  }
  .highlight-band {
    grid-template-columns: 1fr;
    margin: -40px 5vw 0;
    padding: 28px;
  }
  .highlight-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .factor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cta {
    grid-column: 1/-1;
  }
}
@media (max-width: 720px) {
  .top-strip {
    display: none;
  }
  .site-header {
    padding: 12px 18px;
  }
  .site-header nav {
    display: none;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .brand strong {
    font-size: 14px;
  }
  .brand small {
    font-size: 11px;
  }
  .hero {
    padding: 36px 20px 88px;
  }
  .hero-text {
    font-size: 16.5px;
  }
  h1 {
    font-size: 38px;
    letter-spacing: -0.03em;
  }
  h2 {
    font-size: 26px;
  }
  .hero-actions {
    margin: 26px 0 22px;
  }
  .btn {
    width: 100%;
  }
  .quote-card {
    padding: 22px 20px;
    border-radius: 22px;
  }
  .quote-card h2 {
    font-size: 22px;
  }
  .highlight-list {
    grid-template-columns: 1fr;
  }
  .cards,
  .area-grid,
  .tips-grid,
  .factor-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 20px;
  }
  .split-section {
    margin: 0 20px 32px;
  }
  .split-copy {
    padding: 32px 26px;
  }
  .photo-panel {
    min-height: 260px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 20px 120px;
  }
  .mobile-call {
    display: inline-flex;
  }
  .thanks-card {
    padding: 32px 24px;
  }
  .thanks-card h1 {
    font-size: 32px;
  }
}

/* Hero heading + dark section overrides */
.hero-content h1,
.hero-content h2 {
  color: #fff;
}
.hero .eyebrow {
  color: var(--gold-2);
}

/* ---------- SEO landing page polish ---------- */
.seo-copy-block {
  max-width: 900px;
  margin: 0 0 42px;
}
.seo-copy-block p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}
.seo-copy-block h2 {
  margin-top: 0;
}
.inline-cta {
  max-width: 960px;
  margin: 44px 0;
  padding: 24px 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-md);
}
.inline-cta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  margin-bottom: 4px;
}
.inline-cta span {
  color: rgba(255, 255, 255, 0.82);
}
.inline-cta .btn {
  flex: 0 0 auto;
}
.seo-faq {
  margin-top: 54px;
}
@media (max-width: 720px) {
  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .inline-cta .btn {
    width: 100%;
  }
}

/* ---------- Motion V5 RC1 enhancements ---------- */
.partner-disclosure {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.42) !important;
}
.highlight-list.four-up {
  grid-template-columns: repeat(4, 1fr);
}
.area-grid a {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}
.area-grid a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.area-grid a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: stretch;
  padding: 64px 6vw 56px;
  background: linear-gradient(135deg, #f4f1e8 0%, #fbfaf6 65%, #e8efe3 100%);
  border-bottom: 1px solid var(--line);
}
.seo-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 850px;
}
.seo-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  margin: 8px 0 18px;
}
.seo-hero-intro {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0;
}
.seo-hero-photo {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 35, 19, 0.08), rgba(18, 35, 19, 0.18)),
    url("/assets/hero-stump-grinding.webp") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--green-2);
}
.seo-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.seo-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink-soft);
}
.seo-trust-row span:before {
  content: "✓";
  color: var(--green-2);
  font-weight: 900;
}
.seo-main-content {
  padding-top: 76px;
  padding-bottom: 48px;
}
.process-section {
  background: linear-gradient(180deg, #f9f7f0, #eef3ea);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.process-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.process-grid article > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  font-weight: 900;
  color: #173017;
  margin-bottom: 16px;
}
.process-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}
.related-pages {
  border-top: 1px solid var(--line);
}
.seo-bottom-cta a[href^="tel:"] {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
}
.inline-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.text-call-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
  white-space: nowrap;
}
.footer-actions strong {
  color: #fff;
  margin-bottom: 4px;
}
.footer-cta > a:not(.btn) {
  display: block;
  margin-top: 10px;
  color: #ffd98a;
  font-weight: 800;
}
.mobile-cta-bar {
  display: none;
}

@media (max-width: 1100px) {
  .highlight-list.four-up {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-hero {
    grid-template-columns: 1fr;
  }
  .seo-hero-photo {
    min-height: 340px;
  }
}
@media (max-width: 720px) {
  .highlight-list.four-up {
    grid-template-columns: 1fr;
  }
  .seo-hero {
    padding: 34px 20px 54px;
    gap: 28px;
  }
  .seo-hero h1 {
    font-size: 38px;
  }
  .seo-hero-intro {
    font-size: 16.5px;
  }
  .seo-hero-photo {
    min-height: 245px;
    border-radius: 22px;
  }
  .seo-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .inline-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .text-call-link {
    text-align: center;
  }
  .mobile-call {
    display: none !important;
  }
  .mobile-cta-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .mobile-cta-bar a {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 15px;
  }
  .mobile-cta-bar a:first-child {
    background: #fff;
    color: var(--green);
  }
  .mobile-cta-bar a:last-child {
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    color: #152015;
  }
}

/* ---------- Motion X trust strip ---------- */
.motion-trust-strip {
  width: min(1180px, calc(100% - 12vw));
  margin: -34px auto 70px;
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: auto minmax(190px, 0.9fr) minmax(420px, 1.8fr);
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(253, 246, 230, 0.98));
  border: 1px solid rgba(31, 64, 34, 0.13);
  box-shadow: 0 22px 55px rgba(15, 26, 16, 0.16);
}
.motion-trust-strip.compact {
  margin-top: -22px;
  margin-bottom: 46px;
}
.motion-trust-stars {
  color: var(--gold);
  font-size: 21px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-shadow: 0 5px 16px rgba(233, 168, 58, 0.28);
}
.motion-trust-copy {
  display: grid;
  gap: 2px;
  padding-right: 20px;
  border-right: 1px solid var(--line-strong);
}
.motion-trust-copy strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green);
}
.motion-trust-copy span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.motion-trust-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}
.motion-trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}
.motion-trust-points span:before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(47, 92, 49, 0.11);
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 980px) {
  .motion-trust-strip {
    grid-template-columns: auto 1fr;
  }
  .motion-trust-points {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .motion-trust-copy {
    border-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 640px) {
  .motion-trust-strip,
  .motion-trust-strip.compact {
    width: calc(100% - 28px);
    margin: -18px auto 38px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
    border-radius: 20px;
  }
  .motion-trust-stars {
    font-size: 18px;
  }
  .motion-trust-points {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

/* ---------- Motion X authority hub pages ---------- */
.hub-section {
  max-width: 1180px;
  margin: 0 0 64px;
}
.hub-section + .hub-section {
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.hub-section h2 {
  max-width: 850px;
  margin-top: 0;
}
.hub-intro {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 28px;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(49, 103, 55, 0.34);
  box-shadow: var(--shadow-md);
}
.hub-card strong {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
}
.hub-card strong a {
  color: var(--ink);
}
.hub-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 12px 0 22px;
}
.hub-card-link {
  margin-top: auto;
  color: var(--green-2);
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .hub-card {
    min-height: 0;
  }
}

.faq-actions {
  margin-top: 24px;
}

/* ---------- Motion X v2.1 launch hardening ---------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.quote-card-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.photo-upload {
  margin-top: 16px;
  padding: 16px;
  border: 1px dashed rgba(47, 92, 49, 0.34);
  border-radius: 16px;
  background: rgba(47, 92, 49, 0.045);
}
.photo-upload label {
  margin: 0;
  font-size: 13px;
}
.photo-upload-help,
.photo-file-status,
.form-status {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.photo-file-status {
  color: var(--green-2);
  font-weight: 750;
}
.form-status {
  min-height: 18px;
  text-align: center;
  font-weight: 750;
}
.quote-card input.photo-upload-input {
  margin-top: 10px;
  padding: 8px;
  border-style: solid;
  background: #fff;
  cursor: pointer;
}
.quote-card input.photo-upload-input::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--green-2);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease;
}
.quote-card input.photo-upload-input:hover::file-selector-button {
  background: var(--green);
}
.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none !important;
  box-shadow: var(--shadow-sm);
}

.thanks-card {
  max-width: 760px;
  width: min(100%, 760px);
}
.thanks-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  text-align: left;
  font-family: var(--font-display);
}
.thanks-brand strong,
.thanks-brand small {
  display: block;
}
.thanks-brand strong {
  color: var(--ink);
  font-size: 15px;
}
.thanks-brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.thanks-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
  text-align: left;
}
.thanks-next-steps article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.thanks-next-steps strong,
.thanks-next-steps span {
  display: block;
}
.thanks-next-steps strong {
  margin-bottom: 7px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 14px;
}
.thanks-next-steps span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.thanks-card .thanks-actions .btn {
  margin-top: 0;
}
.btn.secondary.light {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.btn.secondary.light:hover {
  background: var(--paper-2);
}
.thanks-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--green-2);
  font-size: 13px;
  font-weight: 800;
}
.thanks-links a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .photo-upload {
    padding: 14px;
  }
  .quote-card input.photo-upload-input::file-selector-button {
    display: block;
    width: 100%;
    margin: 0 0 9px;
  }
  .thanks-card {
    padding: 30px 20px;
  }
  .thanks-card h1 {
    font-size: 34px;
  }
  .thanks-next-steps {
    grid-template-columns: 1fr;
  }
  .thanks-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .thanks-actions .btn {
    width: 100%;
  }
  .site-footer {
    padding-bottom: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
