/* =============================================================
   Park Watch — Graffiti Removal page
   Extends home2.css tokens (paper / ink / red / yellow / dark)
============================================================= */

.section { padding: clamp(64px, 8vw, 112px) 0; }
.gr-lead { font-size: 18px; line-height: 1.55; color: var(--ink-99); margin: 12px 0 0; max-width: 60ch; }
.gr-lead-dark { color: rgba(255,255,255,0.75); }
.gr-eyebrow-light { color: var(--yellow); }
.gr-eyebrow-light::before,
.pw2-eyebrow.gr-eyebrow-light { color: var(--yellow); }
.muted { color: var(--ink-99); }

.gr-bg-warm { background: linear-gradient(180deg, #FDFBF3 0%, #F6EFDF 100%); }
.gr-bg-dark { background: var(--dark); color: var(--paper); }
.gr-bg-dark h2, .gr-bg-dark h3, .gr-bg-dark h4 { color: #ffffff; }

/* ============================================================
   Hero
============================================================ */
.gr-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  min-height: min(500px, 80svh);
  display: flex;
  align-items: center;
}
.gr-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.gr-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transform: scale(1.03); }
.gr-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,25,23,0.60) 0%, rgba(28,25,23,0.55) 45%, rgba(28,25,23,0.85) 100%),
    linear-gradient(90deg, rgba(28,25,23,0.80) 0%, rgba(28,25,23,0.35) 55%, rgba(28,25,23,0.10) 100%);
}
.gr-hero-inner {
  position: relative; z-index: 1;
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(56px, 10vw, 96px);
  max-width: 720px;
}
.gr-hero-inner h1 {
  margin: 8px 0 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6.5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(0,0,0,0.35);
}
.gr-hero-lead {
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
  margin: 0 0 28px;
  max-width: 52ch;
}
.gr-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) {
  .gr-hero-cta .pw2-btn { flex: 1 1 auto; justify-content: center; }
}

/* ============================================================
   INTRO — What is tagging + crime card
============================================================ */
.gr-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.gr-intro h2 { margin: 6px 0 14px; }
.gr-crime-card {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px -34px rgba(192,57,43,0.35);
  position: relative;
}
.gr-crime-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.gr-crime-card h3 { font-size: 22px; margin: 0 0 12px; }
.gr-crime-card p { margin: 0 0 10px; font-size: 15.5px; line-height: 1.6; color: var(--ink-99); }
.gr-crime-card p strong { color: var(--ink); }
@media (max-width: 800px) {
  .gr-intro { grid-template-columns: 1fr; }
}

/* ============================================================
   TAGGER PROFILE — 4 cards
============================================================ */
.gr-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 18px;
}
.gr-profile-card {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gr-profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192,57,43,.35);
  box-shadow: 0 22px 50px -28px rgba(34,34,34,.28);
}
.gr-profile-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  margin-bottom: 14px;
}
.gr-profile-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.gr-profile-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-99); }
.gr-profile-card--accent {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--paper);
}
.gr-profile-card--accent .gr-profile-tag { color: var(--yellow); border-bottom-color: var(--yellow); }
.gr-profile-card--accent h3 { color: #fff; }
.gr-profile-card--accent p  { color: rgba(255,255,255,0.78); }

/* ============================================================
   BROKEN WINDOWS — dark section
============================================================ */
.gr-bw {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.gr-bw-copy h2 { color: #fff; margin: 6px 0 14px; }
.gr-bw-copy p  { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.65; max-width: 48ch; }
.gr-bw-cards { display: grid; gap: 12px; }
.gr-bw-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 20px 22px;
}
.gr-bw-card h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--yellow);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.gr-bw-card p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.82); }
@media (max-width: 800px) { .gr-bw { grid-template-columns: 1fr; } }

/* ============================================================
   DIY VS CONTRACTOR — 3-card grid
============================================================ */
.gr-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}
.gr-choice-card {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 20px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.gr-choice-card--warn {
  background: linear-gradient(180deg, #FFF6F3 0%, #FFE9E2 100%);
  border-color: rgba(192,57,43,0.30);
}
.gr-choice-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.gr-choice-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.gr-choice-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-99); }
.gr-choice-card p em { color: var(--red); font-style: normal; font-weight: 700; }

/* ============================================================
   OUR METHOD — timeline
============================================================ */
.gr-method {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.gr-method-step {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 20px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gr-method-step:hover {
  transform: translateY(-2px);
  border-color: rgba(192,57,43,.30);
  box-shadow: 0 20px 50px -30px rgba(34,34,34,.28);
}
.gr-step-num {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--yellow);
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.gr-method-step h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.gr-method-step p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink-99); }
.gr-method-step p em { color: var(--red); font-style: italic; }
.gr-method-step p strong { color: var(--ink); }
@media (max-width: 640px) {
  .gr-method-step { grid-template-columns: 1fr; padding: 22px; }
  .gr-step-num { width: 48px; height: 48px; font-size: 16px; }
}

/* ============================================================
   PSYCHOLOGY — story flow + quote + young/old split
============================================================ */
.gr-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 0;
  margin-bottom: 40px;
}
.gr-story-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  min-width: 0;
}
.gr-story-num {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--dark);
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}
.gr-story-step h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin: 0 0 8px;
}
.gr-story-step p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.78); }
.gr-story-connector {
  align-self: center;
  height: 2px;
  background: rgba(247,194,28,0.35);
  min-width: 12px;
  margin: 0 -4px;
}
@media (max-width: 820px) {
  .gr-story { grid-template-columns: 1fr; }
  .gr-story-connector {
    width: 2px; height: 24px;
    background: rgba(247,194,28,0.35);
    justify-self: center;
    margin: 0;
  }
}

.gr-story-quote {
  background: rgba(255,255,255,0.04);
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.gr-story-quote blockquote { margin: 0; }
.gr-story-quote p {
  margin: 0 0 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: rgba(255,255,255,0.90);
  line-height: 1.5;
}
.gr-story-quote p em { color: rgba(255,255,255,0.55); font-style: italic; font-weight: 400; font-size: 15px; }
.gr-story-quote p strong { color: var(--yellow); font-weight: 800; letter-spacing: 0.04em; }

.gr-story-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}
.gr-story-split-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 24px;
}
.gr-story-split-card h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--yellow);
  margin: 0 0 8px;
}
.gr-story-split-card p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.gr-story-split-card p em { color: var(--yellow); font-style: normal; font-weight: 700; }

/* ============================================================
   COMMUNITY
============================================================ */
.gr-community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.gr-community-card {
  background: #fff;
  border: 1px solid var(--ink-12);
  border-radius: 20px;
  padding: 30px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gr-community-card:hover {
  transform: translateY(-3px);
  border-color: rgba(192,57,43,.30);
  box-shadow: 0 22px 50px -30px rgba(34,34,34,.28);
}
.gr-community-icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: rgba(247,194,28,0.18);
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.gr-community-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.gr-community-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-99); }
.gr-community-card p strong { color: var(--ink); }

/* ============================================================
   MURALS / ZAP
============================================================ */
.gr-mural {
  background:
    linear-gradient(120deg, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.55) 100%),
    conic-gradient(from 180deg at 60% 40%, #E85C2A 0deg, #F7C21C 90deg, #6E5A9E 200deg, #2E9459 320deg, #E85C2A 360deg);
  color: var(--paper);
}
.gr-mural-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.gr-mural-copy h2 { color: #fff; margin: 6px 0 14px; }
.gr-mural-copy p  { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.65; max-width: 52ch; margin: 0 0 12px; }
.gr-mural-copy p em { color: var(--yellow); font-style: italic; }
.gr-mural-copy p strong { color: var(--yellow); font-weight: 700; }

.gr-zap-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.6);
}
.gr-zap-badge {
  display: inline-block;
  background: linear-gradient(135deg, #E85C2A, #F7C21C);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.gr-zap-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.gr-zap-card p { margin: 0 0 12px; font-size: 15px; line-height: 1.6; color: var(--ink-99); }
.gr-zap-card p strong { color: var(--ink); }
.gr-zap-card .pw2-btn { margin-top: 12px; }
.gr-zap-email {
  margin-top: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--red);
  word-break: break-all;
}
@media (max-width: 900px) { .gr-mural-inner { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
============================================================ */
.gr-cta { background: var(--dark); color: var(--paper); text-align: center; }
.gr-cta-inner { max-width: 640px; margin: 0 auto; }
.gr-cta h2 { color: #fff; margin: 8px 0 14px; }
.gr-cta p  { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.6; margin: 0 0 24px; }
.gr-cta .pw2-eyebrow.gr-eyebrow-light { display: inline-flex; }
.gr-cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   Nav active-state on this page
============================================================ */
.pw2-links a.is-active { color: var(--red); font-weight: 700; }

/* Mobile polish for section spacing */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .gr-hero-inner h1 { font-size: clamp(30px, 8vw, 44px); }
  .gr-crime-card { padding: 22px 20px; }
  .gr-profile-card { padding: 22px 20px; }
  .gr-choice-card { padding: 24px 22px; }
  .gr-method-step { padding: 22px 20px; gap: 14px; }
  .gr-community-card { padding: 24px 22px; }
  .gr-zap-card { padding: 26px 22px; }
}
