/* The Automated Landscaper - main stylesheet
   Mobile first. Contractors read this on a phone in a truck. */

:root {
  --green-darkest: #101f13;
  --green-dark: #1a2e1e;
  --green-mid: #2e5233;
  --green-accent: #5a9e4b;
  --green-bright: #7cc35e;
  --cream: #f5f1e6;
  --cream-dark: #ece6d6;
  --white: #ffffff;
  --ink: #24281f;
  --ink-soft: #4c5245;
  --gold: #c99b3f;
  --red-soft: #a53d2e;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-script: "Caveat", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Layout ---------- */

.wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wrap-wide {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 3rem 0; }

.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-dark {
  background: var(--green-dark);
  color: var(--cream);
}
.bg-darkest {
  background: var(--green-darkest);
  color: var(--cream);
}

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-top: 2.5rem; }

p { margin: 0 0 1.15rem; }

.bg-dark h2, .bg-dark h3,
.bg-darkest h2, .bg-darkest h3 { color: var(--white); }

.bg-dark a, .bg-darkest a { color: var(--green-bright); }

.lead {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
}

.bg-dark .lead { color: #cfd8c8; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
  background: rgba(90, 158, 75, 0.16);
  border: 1px solid rgba(124, 195, 94, 0.35);
  color: var(--white);
  padding: 0.8rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 1.75rem;
}

.eyebrow-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

/* Green accent phrases inside the fold headline. */
.fold h1 .hl { color: var(--green-bright); }

.h1-rule {
  border: none;
  border-top: 2px solid rgba(124, 195, 94, 0.5);
  margin: 1.5rem 0 1.4rem;
}

.accent { color: var(--green-bright); }

.script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--green-accent);
  line-height: 1.2;
}

.small { font-size: 0.9rem; }

/* ---------- Fold ---------- */

.fold {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 4.5rem;
}

.fold-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fold-bg picture,
.fold-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.fold-bg img {
  object-fit: cover;
  object-position: 70% 46%;
  filter: brightness(1.16) saturate(1.06);
}

/* Solid dark panel with a curved separating edge. The image beyond it runs
   at full brightness with no overlay. */
.fold-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* The fold uses the full screen width with a modest inset, not the narrow
   letter column, so the left margin stays tight on wide screens. */
.fold-content {
  position: relative;
  z-index: 1;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.fold-inner { max-width: 42rem; }

/* Keep the text column inside the solid panel as the viewport narrows. */
@media (min-width: 900px) {
  .fold-inner { max-width: min(42rem, 50vw); }

  /* Nudge the photo right so the couple sits centered in the visible zone.
     The image's left edge stays hidden under the solid panel. */
  .fold-bg img { transform: translateX(4%); }
}

.fold h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5.4vw, 3.7rem);
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.25rem;
}

.fold .lead {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Testimonial card in the fold. Placeholder now, real quote later. */
.testimonial-card {
  position: relative;
  border: 1px solid rgba(124, 195, 94, 0.45);
  border-radius: 10px;
  background: rgba(16, 28, 18, 0.6);
  text-align: center;
  padding: 1.75rem 1.25rem 1.25rem;
  margin-top: 2.25rem;
}

.testimonial-card .quote-mark {
  position: absolute;
  top: -1.05rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-bright);
  background: #101c12;
  padding: 0 0.6rem;
}

.testimonial-card .ph-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #d5dcc9;
}

/* Below 900px: full-width centered layout over a dark wash. Sales copy leads. */
@media (max-width: 899px) {
  .fold-curve { display: none; }

  .fold-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(16, 28, 18, 0.97) 0%,
        rgba(16, 28, 18, 0.92) 45%,
        rgba(11, 20, 13, 0.98) 100%);
  }

  .fold-inner {
    max-width: 100%;
    text-align: center;
  }

  .fold .brand { justify-content: center; }

  .fold h1 { font-size: clamp(2.2rem, 8.5vw, 3rem); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.brand img { width: 44px; height: auto; }

.brand img { display: block; }

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-top {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--white);
}

.brand-bottom {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
  color: var(--green-bright);
}

.logo-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.25rem;
}

.logo-tag strong { color: #b9c4ae; }


/* ---------- Buttons / CTA ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--white);
  background: linear-gradient(180deg, var(--green-accent), #4a8a3c);
  border: none;
  border-radius: 6px;
  padding: 1rem 2rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

.btn-block { display: block; width: 100%; }

.cta-note {
  font-size: 0.95rem;
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.bg-dark .cta-note, .bg-darkest .cta-note { color: #b9c4ae; }

/* ---------- Callouts ---------- */

.callout {
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.callout strong { color: var(--white); }

.callout-light {
  background: var(--white);
  color: var(--ink);
  border-left: 5px solid var(--green-accent);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ---------- Pain section: copy left, proposal comparison right ---------- */

.pain-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1.15rem;
}

@media (min-width: 900px) {
  .pain-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

/* Right column of the pain section: two stacked images that span the copy height. */
.pain-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

/* Let the drill headline own the top of the section; the images start lower. */
@media (min-width: 900px) {
  .pain-visual { padding-top: 5.5rem; }
}

.pain-img-slot {
  flex: 1;
  display: block;
  margin: 0;
  min-height: 0;
  max-height: 38rem;
  overflow: hidden;
  border-radius: 10px;
}

.pain-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(45, 45, 32, 0.18);
}

.drill {
  margin-top: 0;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
}

.pain-copy .quote-green {
  font-size: 1.4rem;
  line-height: 1.45;
}

.pain-copy .quote-green em {
  color: var(--green-mid);
  font-weight: 600;
}

/* Two redacted proposal papers with a VS badge */
.proposal-vs {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.paper {
  width: 47%;
  background: #fbf8ee;
  border: 1px solid #e3dcc6;
  border-radius: 6px;
  padding: 1.3rem 1.15rem 1.5rem;
  box-shadow: 0 16px 32px rgba(45, 45, 32, 0.18);
}

.paper-left {
  transform: rotate(-4deg);
  z-index: 1;
}

.paper-right {
  transform: rotate(4deg);
  margin-left: -1.5%;
}

.vs-badge {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--green-darkest);
  border: 3px solid var(--green-mid);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.paper-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3a4232;
  border-bottom: 1px solid #d8d2bd;
  padding-bottom: 0.45rem;
  margin-bottom: 0.65rem;
}

.paper-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  color: var(--green-dark);
  border-bottom: 1px solid #d8d2bd;
  padding-bottom: 0.55rem;
  margin-bottom: 1rem;
}

.paper-right .paper-price { color: #4a4f46; }

.paper-lines .line {
  display: block;
  height: 7px;
  background: #ddd7c1;
  border-radius: 2px;
  margin-bottom: 9px;
}

.paper-lines .line-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.paper-lines .line-row .line { margin-bottom: 0; }

/* ---------- Lists ---------- */

ul, ol { padding-left: 1.4rem; margin: 0 0 1.25rem; }
li { margin-bottom: 0.85rem; }

.list-plain { list-style: none; padding-left: 0; }

.list-check li,
.list-x li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--green-accent) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M6.5 11.5 3 8l1.2-1.2 2.3 2.3 5.3-5.3L13 5z"/></svg>') center/0.85rem no-repeat;
}

.list-x li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--red-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path stroke="white" stroke-width="2" d="M4 4l8 8M12 4l-8 8"/></svg>') center/0.7rem no-repeat;
}

/* Playbook and tools */
.move-list { list-style: none; padding: 0; counter-reset: move; }

.move-list > li {
  background: var(--white);
  border: 1px solid #e2ddce;
  border-radius: 8px;
  padding: 1.4rem 1.5rem 1.4rem 4.2rem;
  margin-bottom: 1rem;
  position: relative;
  counter-increment: move;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.move-list > li::before {
  content: counter(move);
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--green-mid);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Blockquote ---------- */

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--cream);
  border-left: 5px solid var(--green-accent);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
}

.bg-cream blockquote { background: var(--white); }

blockquote p:last-child { margin-bottom: 0; }

/* ---------- Placeholders for pending assets ---------- */

.placeholder {
  border: 2px dashed #a8a08a;
  border-radius: 8px;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.02) 12px,
    rgba(0, 0, 0, 0.05) 12px,
    rgba(0, 0, 0, 0.05) 24px
  );
  padding: 2.5rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
  color: #6d6552;
}

.bg-dark .placeholder, .bg-darkest .placeholder {
  border-color: #4c5f47;
  color: #a9b49c;
}

.placeholder .ph-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.placeholder p { margin: 0; font-size: 0.95rem; }

.placeholder-caption {
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
  color: var(--ink-soft);
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.bg-dark .placeholder-caption { color: #b9c4ae; }

/* ---------- Contrast graphic (Visual 2) ---------- */

.contrast {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.contrast .col {
  border-radius: 8px;
  padding: 1.5rem;
}

.contrast .col-old {
  background: #eceada;
  border: 1px solid #d8d2c2;
  color: var(--ink-soft);
}

.contrast .col-new {
  background: var(--green-dark);
  color: var(--cream);
}

.contrast h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.contrast .col-new h4 { color: var(--green-bright); }

.contrast ul { list-style: none; padding: 0; margin: 0; }

.contrast li {
  padding: 0.6rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contrast .col-new li { border-top-color: rgba(255, 255, 255, 0.12); }

@media (min-width: 640px) {
  .contrast { grid-template-columns: 1fr 1fr; }
}

/* ---------- Credibility / stats ---------- */

.cred-card {
  background: var(--white);
  border: 1px solid #e2ddce;
  border-radius: 8px;
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ---------- Price section ---------- */

.price-box { text-align: center; }

.price-regular {
  font-size: 1.3rem;
  color: #b9c4ae;
}

.price-regular s { opacity: 0.85; }

.price-launch {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  margin: 0.5rem 0 1rem;
}

.price-launch .amount { color: var(--green-bright); }

/* ---------- Guarantee ---------- */

.guarantee-card {
  background: var(--white);
  border: 2px solid var(--green-accent);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  margin: 2rem 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* ---------- FAQ ---------- */

.faq details {
  border-bottom: 1px solid #e2ddce;
  padding: 0.25rem 0;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.9rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--green-accent);
}

.faq details[open] summary::after { content: "\2212"; }

.faq .faq-body { padding: 0 0 1.25rem; }

/* ---------- Signature ---------- */

.signature {
  margin-top: 2rem;
}

.signature .script {
  font-size: 2.4rem;
  color: var(--green-bright);
}

.signature .sig-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9c4ae;
}

/* ---------- Footer ---------- */

footer {
  padding: 3rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

footer .footer-links a {
  color: var(--green-bright);
  text-decoration: none;
}

footer .footer-links a:hover { text-decoration: underline; }

footer .legal-block {
  color: #9aa78f;
  margin-bottom: 1.25rem;
}

.disclaimer-slot {
  border: 1px dashed #4c5f47;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  color: #a9b49c;
  margin-bottom: 1.25rem;
}

/* ---------- Utility ---------- */

.center { text-align: center; }
.divider {
  border: none;
  border-top: 1px solid #d8d2c2;
  margin: 3rem auto;
  max-width: 8rem;
}

@media (min-width: 768px) {
  section { padding: 4rem 0; }
  .fold { padding: 2.5rem 0 5rem; }
}
