/* ============================================================
   D SCAPES — Landscape | Lawncare  ·  Columbus, OH
   Sacred Studios static-site build (cloned from Pinnacle Wash pattern)
   Brand: #C41230 (D Scapes red) · #2E2E2E (charcoal)  — per signed agreement §1.1
   STATUS: INTERNAL SCAFFOLD — NOT DEPLOYED. See D-SCAPES-BUILD-STATUS.md.
   ============================================================ */

:root {
  --red:        #C41230;   /* D Scapes red */
  --red-deep:   #9E0E26;   /* darker red for hover / gradients */
  --charcoal:   #2E2E2E;   /* D Scapes charcoal */
  --ink:        #1C1C1C;   /* near-black for body copy */
  --steel:      #6B6B6B;   /* the gray from the logo ribbons */
  --turf:       #2E2E2E;   /* alias — keep charcoal as the dark anchor, not green (brand is red+charcoal) */
  --white:      #FFFFFF;
  --paper:      #F5F4F2;   /* warm off-white background */
  --mist:       #ECEAE7;
  --line:       rgba(46,46,46,0.10);
  --line-soft:  rgba(46,46,46,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo span {
  font-weight: 900; font-size: 18px; letter-spacing: -0.01em; color: var(--charcoal);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none; color: var(--charcoal); font-weight: 600; font-size: 14.5px;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white) !important; padding: 10px 18px;
  border-radius: 100px; font-weight: 700; font-size: 14px;
}
.nav-cta:hover { background: var(--red-deep); }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--charcoal); cursor: pointer; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    position: absolute; top: 71px; left: 0; right: 0; background: var(--white);
    padding: 20px 28px; border-bottom: 1px solid var(--line);
  }
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background: linear-gradient(135deg, var(--charcoal) 0%, #242424 55%, var(--red-deep) 140%);
  padding: 96px 0 88px;
}
.hero::before {
  content: ''; position: absolute; top: -25%; right: -8%;
  width: 55%; height: 150%;
  background: radial-gradient(circle, rgba(196,18,48,0.30) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #F4A6B0; font-weight: 700; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 76px); line-height: 1.03; font-weight: 900;
  letter-spacing: -0.025em; margin-bottom: 22px; max-width: 880px;
}
.hero h1 em { font-style: normal; color: #F26077; }
.hero p {
  font-size: clamp(17px, 1.5vw, 21px); max-width: 660px;
  color: rgba(255,255,255,0.82); font-weight: 400; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 46px; display: flex; gap: 44px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
}
.hero-meta strong { color: var(--white); font-weight: 800; display: block; font-size: 14px; margin-top: 5px; text-transform: none; letter-spacing: 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; text-align: center; padding: 15px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 700; text-decoration: none; letter-spacing: 0.01em;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s; cursor: pointer; border: 0;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 6px 18px rgba(196,18,48,0.28); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: #1c1c1c; transform: translateY(-1px); }
.btn-block { display: block; width: 100%; }

/* ============ SECTION ============ */
section { padding: 84px 0; }
.eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); font-weight: 800; margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(30px, 3.4vw, 46px); font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 16px;
}
.sec-sub { font-size: 18px; max-width: 680px; color: #555; margin-bottom: 48px; }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-charcoal .sec-title { color: var(--white); }
.bg-charcoal .sec-sub { color: rgba(255,255,255,0.72); }
.bg-charcoal .eyebrow { color: #F26077; }

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
  font-size: 14px; font-weight: 600; color: var(--charcoal);
}
.trust-row span { display: inline-flex; align-items: center; gap: 9px; }
.trust-row .dot { color: var(--red); font-weight: 900; }

/* ============ SERVICE CARDS ============ */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 28px; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(46,46,46,0.04); transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(46,46,46,0.10); border-color: rgba(196,18,48,0.35); }
.svc-icon {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(196,18,48,0.10);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 22px;
}
.svc-card h3 { font-size: 20px; font-weight: 800; color: var(--charcoal); margin-bottom: 8px; }
.svc-card p { font-size: 14.5px; color: #5a5a5a; flex: 1; }
.svc-card .more { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--red); }

/* ============ SPLIT (image + copy) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  background: var(--mist); border-radius: 20px; border: 1px solid var(--line);
  min-height: 340px; display: flex; align-items: center; justify-content: center;
  color: var(--steel); font-size: 14px; text-align: center; padding: 28px; overflow: hidden;
}
.split-media img { border-radius: 16px; }
.split-body h2 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 900; color: var(--charcoal); line-height: 1.15; letter-spacing: -0.015em; margin-bottom: 14px; }
.split-body p { font-size: 16px; color: #555; margin-bottom: 14px; }
.split-body ul { list-style: none; margin: 18px 0; }
.split-body li { padding: 7px 0 7px 28px; position: relative; font-size: 15.5px; color: var(--ink); }
.split-body li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 900; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
}

/* ============ PLACEHOLDER NOTE (photos pending) ============ */
.placeholder-note {
  margin-top: 22px; font-size: 14px; color: #6a5a00; background: #FFF6D6;
  border-left: 4px solid #E0B400; border-radius: 10px; padding: 16px 20px;
}
.placeholder-note strong { color: #5a4a00; }

/* ============ GALLERY GRID ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.gallery-tile {
  aspect-ratio: 4/3; background: var(--mist); border: 1px dashed var(--steel); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--steel); font-size: 13px; padding: 18px; font-weight: 600;
}

/* ============ STEPS / PROCESS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 32px 28px;
}
.bg-white .step { background: var(--paper); }
.step-num { font-size: 46px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 19px; font-weight: 800; color: var(--charcoal); margin-bottom: 8px; }
.step p { font-size: 14.5px; color: #5a5a5a; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ============ AREAS ============ */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.area-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; font-weight: 700; color: var(--charcoal); font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.area-chip::before { content: '📍'; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white); border-radius: 24px; padding: 52px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
  box-shadow: 0 16px 40px rgba(196,18,48,0.22);
}
.cta-band h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 900; line-height: 1.1; margin-bottom: 10px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.88); }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn-primary { background: var(--white); color: var(--red); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--paper); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.5); }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; padding: 34px; } }

/* ============ FORM (quote / contact) ============ */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; box-shadow: 0 8px 28px rgba(46,46,46,0.06);
}
.form-step { display: none; }
.form-step.active { display: block; animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.form-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.form-progress .bar { flex: 1; height: 5px; border-radius: 4px; background: var(--mist); }
.form-progress .bar.done { background: var(--red); }
.form-step h3 { font-size: 22px; font-weight: 800; color: var(--charcoal); margin-bottom: 6px; }
.form-step .hint { font-size: 14px; color: #777; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
  font-size: 15px; font-family: inherit; color: var(--ink); background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid rgba(196,18,48,0.35); border-color: var(--red); }
.field textarea { resize: vertical; min-height: 110px; }
.svc-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.svc-check {
  border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; font-size: 14.5px;
  font-weight: 600; color: var(--charcoal); display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.svc-check input { width: auto; }
.svc-check:hover { border-color: var(--red); }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
@media (max-width: 560px) { .svc-checks { grid-template-columns: 1fr; } .form-card { padding: 26px; } }

/* ============ SERVICE PAGE HEADER ============ */
.svc-hero { background: var(--charcoal); color: var(--white); padding: 70px 0 56px; position: relative; overflow: hidden; }
.svc-hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--red), var(--red-deep));
}
.svc-hero .eyebrow { color: #F26077; }
.svc-hero h1 { font-size: clamp(34px, 4.5vw, 56px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 16px; }
.svc-hero p { font-size: 18px; max-width: 640px; color: rgba(255,255,255,0.8); }
.svc-body { padding: 70px 0; }
.svc-body h2 { font-size: 28px; font-weight: 900; color: var(--charcoal); margin: 36px 0 14px; letter-spacing: -0.015em; }
.svc-body h2:first-child { margin-top: 0; }
.svc-body p { font-size: 16.5px; color: #4a4a4a; margin-bottom: 16px; }
.svc-body ul { margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.svc-body li { padding: 8px 0 8px 30px; position: relative; font-size: 16px; color: var(--ink); }
.svc-body li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 900; font-size: 17px; }
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.svc-aside {
  position: sticky; top: 92px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 30px;
}
.svc-aside h3 { font-size: 20px; font-weight: 800; color: var(--charcoal); margin-bottom: 8px; }
.svc-aside p { font-size: 14.5px; color: #5a5a5a; margin-bottom: 18px; }
.svc-aside .price { font-size: 14px; color: var(--steel); margin-bottom: 18px; font-weight: 600; }
.related { margin-top: 40px; }
.related h3 { font-size: 18px; font-weight: 800; color: var(--charcoal); margin-bottom: 14px; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a {
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 16px; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--charcoal);
}
.related-links a:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 860px) { .svc-layout { grid-template-columns: 1fr; } .svc-aside { position: static; } }

/* ============ FAQ ============ */
.faq { margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item h4 { font-size: 16.5px; font-weight: 800; color: var(--charcoal); margin-bottom: 8px; }
.faq-item p { font-size: 15px; color: #555; margin: 0; }

/* ============ FOOTER ============ */
footer { background: var(--charcoal); color: rgba(255,255,255,0.66); padding: 56px 0 30px; font-size: 14.5px; }
footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand img { height: 64px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 800; }
.footer-col a { display: block; padding: 5px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom .sacred { font-weight: 700; color: rgba(255,255,255,0.7); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* TBC marker styling (visible only in scaffold; remove on go-live) */
.tbc { background: #FFF1B8; color: #6a5a00; padding: 0 5px; border-radius: 4px; font-weight: 700; }
