/* =============================================================
   Park Watch — /home2 (prototype-accurate)
   Palette: paper #FAFAF8, ink #222, dark #262220/#1C1917,
            red #C0392B, yellow #F7C21C, brown accent #9C6B3F
   Fonts: Manrope (display, 600–800), Inter (body 400–600)
============================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --paper: #FAFAF8;
  --ink: #222222;
  --ink-90: #222222E6;
  --ink-cc: #222222CC;
  --ink-99: #22222299;
  --ink-88: #22222288;
  --ink-33: #22222233;
  --ink-20: #22222220;
  --ink-14: #22222214;
  --ink-12: #22222212;
  --ink-10: #22222210;
  --dark: #262220;
  --dark-2: #2E2A27;
  --dark-3: #1C1917;
  --red: #C0392B;
  --red-dark: #A03024;
  --yellow: #F7C21C;
  --yellow-soft: #F7C21C33;
  --brown: #9C6B3F;
  --brown-soft: #9C6B3F18;
  --brown-softer: #9C6B3F22;
  --paper-cc: #FAFAF8CC;
  --paper-bb: #FAFAF8BB;
  --paper-99: #FAFAF899;
  --paper-66: #FAFAF866;
  --paper-26: #FAFAF826;
  --paper-1f: #FAFAF81F;
  --max: 1240px;
  --pad-x: clamp(20px, 4vw, 32px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: 100%; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }

h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
h1 { font-size: clamp(40px, 4.4vw, 62px); line-height: 1.04; letter-spacing: -0.035em; text-wrap: balance; }
h2 { font-size: clamp(34px, 3.2vw, 46px); line-height: 1.08; letter-spacing: -0.03em; }
h3 { font-weight: 700; font-size: 24px; letter-spacing: -0.02em; }

.pw2-container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }

/* -------- Buttons -------- */
.pw2-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  border-radius: 999px; border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer; white-space: nowrap;
}
.pw2-btn-sm { font-size: 15px; padding: 12px 22px; }
.pw2-btn-lg { font-size: 17px; padding: 17px 34px; }
.pw2-btn-block { width: 100%; padding: 17px; font-size: 17px; }

.pw2-btn-red { background: var(--red); color: #FFFFFF; box-shadow: 0 6px 18px #C0392B33; }
.pw2-btn-red.pw2-btn-lg { box-shadow: 0 10px 26px #C0392B40; padding: 17px 34px; }
.pw2-btn-red.pw2-btn-block { box-shadow: 0 12px 28px #C0392B40; }
.pw2-btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 26px #C0392B55; }

.pw2-btn-outline { border: 1.5px solid #2E2A2744; color: var(--dark-2); background: transparent; }
.pw2-btn-outline:hover { background: #2E2A270D; border-color: var(--dark-2); }

.pw2-btn-dark { background: var(--dark-2); color: #FFFFFF; padding: 15px 30px; font-size: 16px; }
.pw2-btn-dark:hover { background: #151312; transform: translateY(-2px); }

/* -------- Eyebrow -------- */
.pw2-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brown); margin-bottom: 18px;
}
.pw2-eyebrow-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-soft); color: #4A3B08;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 24px;
}

/* -------- Section head -------- */
.pw2-section-head { max-width: 620px; margin-bottom: 56px; }
.pw2-section-head h2 { margin: 0 0 14px; }
.pw2-section-head .pw2-lead { font-size: 17px; line-height: 1.6; color: var(--ink-99); margin: 0; }

/* ============================================================
   HEADER
============================================================ */
.pw2-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-12);
}
.pw2-nav {
  max-width: var(--max); margin: 0 auto;
  padding: 14px clamp(16px, 3vw, 32px);
  display: flex; align-items: center; gap: clamp(16px, 2vw, 32px);
}
.pw2-brand {
  display: flex; align-items: center; gap: 10px; margin-right: auto;
  white-space: nowrap;
}
.pw2-brand img {
  width: 42px; height: 42px; border-radius: 999px; object-fit: cover;
  background: var(--dark);
}
.pw2-brand span {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px;
  letter-spacing: -0.02em; color: var(--ink);
}
.pw2-links {
  display: flex; align-items: center; gap: clamp(16px, 2vw, 28px);
  font-size: 15px; font-weight: 500;
}
.pw2-links a { color: var(--ink); }
.pw2-links a:hover { color: var(--dark-2); }

.pw2-burger {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  flex-direction: column; justify-content: space-between;
}
.pw2-burger span { display: block; width: 100%; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* ============================================================
   HERO
============================================================ */
.pw2-hero {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad-x) clamp(64px, 8vw, 96px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(36px, 4vw, 64px); align-items: center;
}
.pw2-hero-figure {
  margin: 0; min-width: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.pw2-hero-img {
  position: relative; min-width: 0;
  height: min(620px, 78vh);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 70px -30px #2E2A2759;
}
.pw2-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.pw2-hero-caption {
  font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 15px;
  color: var(--ink-99);
  letter-spacing: -0.005em;
  padding: 0 6px;
}
.pw2-hero-body { min-width: 0; }
.pw2-hero-body h1 { margin: 0 0 24px; }
.pw2-hero-body .pw2-lead {
  font-size: 19px; line-height: 1.6; color: var(--ink-99);
  margin: 0 0 32px; max-width: 46ch;
}
.pw2-hero-list { list-style: none; display: grid; gap: 14px; margin: 0 0 40px; }
.pw2-hero-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 500;
}
.pw2-check {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 999px; background: var(--dark-2); color: var(--yellow);
  display: grid; place-items: center; font-size: 12px;
}
.pw2-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   STATS (dark strip)
============================================================ */
.pw2-stats { background: var(--dark); color: var(--paper); }
.pw2-stats-grid {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 32px;
}
.pw2-stat { padding-right: 24px; border-right: 1px solid var(--paper-26); }
.pw2-stat:last-child { border-right: 0; }
.pw2-stat-num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 52px; line-height: 1; letter-spacing: -0.04em;
}
.pw2-stat-num--yellow { color: var(--yellow); }
.pw2-stat-label { font-size: 15px; color: var(--paper-bb); margin-top: 10px; }

/* ============================================================
   SERVICE AREA
============================================================ */
.pw2-area {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) var(--pad-x);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(40px, 5vw, 72px); align-items: center;
}
.pw2-area-media {
  position: relative; min-width: 0;
  height: min(520px, 70vh);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--ink-14);
  box-shadow: 0 24px 60px -34px #22222240;
  background: #F1EEE9;
}
.pw2-area-media img { width: 100%; height: 100%; object-fit: cover; }
.pw2-area-body h2 { margin: 0 0 22px; }
.pw2-area-body p { font-size: 18px; line-height: 1.65; color: var(--ink-99); margin: 0 0 20px; }
.pw2-area-body p + p { margin-bottom: 34px; }
.pw2-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pw2-chips span {
  background: var(--brown-soft); color: var(--dark-2);
  font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px;
}

/* ============================================================
   BANDS + HOW IT WORKS
============================================================ */
.pw2-band-white {
  background: #FFFFFF;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.pw2-band-white .pw2-container { padding-top: clamp(64px, 8vw, 112px); padding-bottom: clamp(64px, 8vw, 112px); }
.pw2-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 28px;
}
.pw2-step {
  background: var(--paper); border: 1px solid var(--ink-12);
  border-radius: 20px; padding: 40px 34px;
  box-shadow: 0 14px 40px -28px #22222240;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pw2-step:hover { transform: translateY(-4px); box-shadow: 0 24px 52px -28px #2E2A2759; }
.pw2-step-num {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px;
  color: var(--red); letter-spacing: .1em; margin-bottom: 22px;
}
.pw2-step h3 { margin: 0 0 12px; }
.pw2-step p { font-size: 16px; line-height: 1.65; color: var(--ink-99); margin: 0; }

/* ============================================================
   MISSIONS
============================================================ */
.pw2-missions { padding-top: clamp(64px, 8vw, 112px); padding-bottom: clamp(64px, 8vw, 112px); }
.pw2-mission-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 28px;
}
.pw2-mission {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--ink-12); background: #FFFFFF;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.pw2-mission:hover { transform: translateY(-5px); box-shadow: 0 28px 60px -30px #2E2A2766; }
.pw2-mission-img { position: relative; min-width: 0; height: 240px; overflow: hidden; }
.pw2-mission-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pw2-mission:hover .pw2-mission-img img { transform: scale(1.04); }
.pw2-mission-body { padding: 30px 30px 34px; flex: 1; }
.pw2-mission-body h3 { font-size: 23px; margin: 0 0 10px; }
.pw2-mission-body p { font-size: 16px; line-height: 1.65; color: var(--ink-99); margin: 0 0 18px; }
.pw2-tag-red { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: var(--red); }

/* ============================================================
   VOLUNTEER FORM
============================================================ */
.pw2-vol {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(40px, 5vw, 72px); align-items: center;
}
.pw2-vol-body h2 { margin: 0 0 22px; }
.pw2-vol-body .pw2-lead {
  font-size: 18px; line-height: 1.65; color: var(--ink-99);
  margin: 0 0 28px; max-width: 42ch;
}
.pw2-vol-notes {
  list-style: none; display: grid; gap: 16px; max-width: 42ch;
}
.pw2-vol-notes li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--ink-99); line-height: 1.55;
}
.pw2-vol-notes a { text-decoration: underline; color: var(--dark-2); font-weight: 600; }
.pw2-check-sm {
  width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px;
  border-radius: 999px; background: var(--brown-softer);
  color: var(--dark-2); display: grid; place-items: center; font-size: 11px;
}

.pw2-vol-card {
  background: var(--paper); border: 1px solid var(--ink-14);
  border-radius: 24px; padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 30px 70px -40px #2E2A2766;
}
.pw2-vol-card-body { display: grid; gap: 20px; }
.pw2-vol-card-body[hidden] { display: none !important; }
.pw2-vol-card-body h3 {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px;
  letter-spacing: -0.025em; margin: 0 0 8px;
}
.pw2-vol-card-body label:not(.pw2-check-row) { display: grid; gap: 8px; }
.pw2-vol-card-body label:not(.pw2-check-row) > span { font-size: 14px; font-weight: 600; color: var(--ink-cc); }
.pw2-vol-card-body input[type=text],
.pw2-vol-card-body input[type=email] {
  font-family: 'Inter', sans-serif; font-size: 16px;
  padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--ink-20); background: #FFFFFF; color: var(--ink);
  outline: none; transition: border-color .16s ease;
}
.pw2-vol-card-body input[type=text]:focus,
.pw2-vol-card-body input[type=email]:focus { border-color: var(--dark-2); }

.pw2-vol-streets { display: grid; gap: 10px; }
.pw2-vol-label { font-size: 14px; font-weight: 600; color: var(--ink-cc); }

.pw2-check-row {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid var(--ink-20); background: #FFFFFF;
  cursor: pointer; font-size: 16px; font-weight: 500;
  transition: border-color .16s ease, background .16s ease;
}
.pw2-check-row input[type=checkbox] {
  position: absolute; opacity: 0; pointer-events: none;
}
.pw2-box {
  width: 20px; height: 20px; flex: 0 0 20px;
  border-radius: 6px; border: 1.5px solid var(--ink-33); background: #FFFFFF;
  display: grid; place-items: center; color: var(--yellow); font-size: 12px;
  transition: border-color .15s, background .15s;
}
.pw2-box::after { content: ''; }
.pw2-check-row input:checked ~ .pw2-box {
  background: var(--dark-2); border-color: var(--dark-2);
}
.pw2-check-row input:checked ~ .pw2-box::after { content: '✓'; }
.pw2-check-row:has(input:checked) { border-color: var(--dark-2); background: #2E2A270A; }

.pw2-check-row--ack {
  align-items: flex-start; padding: 4px 0 0; border: 0; background: transparent;
  font-size: 15px; line-height: 1.5; color: var(--ink-99); font-weight: 400;
}
.pw2-check-row--ack .pw2-box { margin-top: 2px; }

.pw2-vol-success { text-align: center; padding: 40px 0; gap: 12px; }
.pw2-success-badge {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--dark-2); color: var(--yellow);
  display: grid; place-items: center; font-size: 26px; margin: 0 auto 10px;
}
.pw2-vol-success h3 { font-size: 28px; margin: 0 0 4px; }
.pw2-vol-success p { font-size: 17px; line-height: 1.6; color: var(--ink-99); margin: 0; }

/* ============================================================
   GALLERY
============================================================ */
.pw2-gallery-section { padding-top: clamp(64px, 8vw, 112px); padding-bottom: clamp(64px, 8vw, 112px); }
.pw2-gallery-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 44px;
}
.pw2-gallery-head > div { max-width: 560px; }
.pw2-gallery-head h2 { margin: 0; }
.pw2-ig-link {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px;
  white-space: nowrap; color: var(--ink);
}
.pw2-ig-link:hover { color: var(--red); }

.pw2-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 50%), 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}
.pw2-g { position: relative; overflow: hidden; border-radius: 16px; background: #E8E5E1; }
.pw2-g img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pw2-g:hover img { transform: scale(1.05); }
.pw2-g--big { grid-column: span 2; grid-row: span 2; }
.pw2-g--wide { grid-column: span 2; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.pw2-testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 28px;
}
.pw2-quote {
  background: var(--paper); border: 1px solid var(--ink-12);
  border-radius: 20px; padding: 38px 34px;
}
.pw2-quote blockquote {
  font-family: 'Manrope', sans-serif; font-weight: 600;
  font-size: 20px; line-height: 1.5; letter-spacing: -0.015em;
  margin: 0 0 26px;
}
.pw2-quote figcaption { display: flex; align-items: center; gap: 14px; }
.pw2-quote figcaption img {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 999px; object-fit: cover; background: var(--ink-14);
}
.pw2-quote figcaption strong {
  display: block; font-weight: 600; font-size: 15px;
  font-family: 'Inter', sans-serif;
}
.pw2-quote figcaption em {
  display: block; font-style: normal; font-size: 14px; color: var(--ink-88);
}

/* ============================================================
   DONATE BANNER
============================================================ */
.pw2-donate {
  position: relative; min-height: 520px;
  display: grid; overflow: hidden;
}
.pw2-donate-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.pw2-donate-scrim {
  position: relative;
  background: linear-gradient(100deg, #1C1917F2 0%, #1C1917CC 48%, #1C191733 100%);
  display: grid; align-items: center;
}
.pw2-donate-body {
  padding-top: clamp(60px, 7vw, 104px); padding-bottom: clamp(60px, 7vw, 104px);
  max-width: var(--max); width: 100%;
}
.pw2-donate-body > * { max-width: 34ch; }
.pw2-donate-body h2 {
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1.06;
  color: var(--paper); margin: 0 0 20px;
}
.pw2-donate-body p {
  font-size: 18px; line-height: 1.65; color: var(--paper-cc); margin: 0 0 34px;
}

/* ============================================================
   CONTACT
============================================================ */
.pw2-contact { padding-top: clamp(60px, 7vw, 104px); padding-bottom: clamp(60px, 7vw, 104px); }
.pw2-contact .pw2-section-head { margin-bottom: 44px; }
.pw2-contact .pw2-section-head h2 { font-size: clamp(30px, 2.8vw, 40px); }
.pw2-contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 20px;
}
.pw2-contact-card {
  background: #FFFFFF; border: 1px solid var(--ink-12);
  border-radius: 18px; padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pw2-contact-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -30px #22222266; }
.pw2-contact-when { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 14px; }
.pw2-contact-who { font-size: 14px; color: var(--ink-88); margin-bottom: 6px; }
.pw2-contact-phone {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px;
  color: var(--ink);
}
.pw2-contact-phone:hover { color: var(--red); }

/* ============================================================
   NEWSLETTER (above footer)
============================================================ */
.pw2-newsletter {
  background: var(--dark);
  color: var(--paper);
  padding: clamp(56px, 6vw, 88px) 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.pw2-newsletter-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; align-items: start; text-align: left;
  max-width: 720px;
}
.pw2-newsletter-copy .pw2-eyebrow {
  color: var(--yellow); background: rgba(247,194,28,.14);
  border: 1px solid rgba(247,194,28,.35);
  padding: 6px 12px; border-radius: 999px;
  display: inline-block; margin-bottom: 16px;
}
.pw2-newsletter-copy h2 { color: var(--paper); margin: 0 0 12px; }
.pw2-newsletter-copy p { color: var(--paper-cc); margin: 0; max-width: 52ch; font-size: 17px; line-height: 1.6; }
.pw2-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px; border-radius: 999px;
  backdrop-filter: blur(6px);
  max-width: 560px;
}
.pw2-newsletter-form input[type=email] {
  background: transparent; border: 0; outline: none;
  color: var(--paper); padding: 14px 20px;
  font: inherit; font-size: 16px; min-width: 0;
}
.pw2-newsletter-form input[type=email]::placeholder { color: rgba(255,255,255,.55); }
.pw2-newsletter-form .pw2-btn-red { padding: 14px 26px; }
.pw2-newsletter-msg {
  font-size: 14px; min-height: 1em;
  color: rgba(255,255,255,.7);
  padding-left: 20px;
  margin-top: -12px;
}
.pw2-newsletter-msg.is-ok  { color: #b9f2cf; }
.pw2-newsletter-msg.is-err { color: #ffc7bd; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.pw2-footer { background: var(--dark-3); color: var(--paper); }
.pw2-footer-grid {
  padding: clamp(52px, 6vw, 76px) var(--pad-x) 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 48px;
}
.pw2-footer-brand p {
  font-size: 15px; line-height: 1.65; color: var(--paper-99);
  margin: 18px 0 22px; max-width: 32ch;
}
.pw2-brand--light img { background: transparent; }
.pw2-brand--light span { color: var(--paper); }
.pw2-footer-phone {
  color: var(--paper); font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17px;
}
.pw2-footer-phone:hover { color: var(--yellow); }

.pw2-footer-col { display: grid; gap: 12px; align-content: start; }
.pw2-footer-title {
  font-size: 13px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--paper-66); margin-bottom: 4px;
}
.pw2-footer-col a { color: var(--paper-cc); font-size: 15px; }
.pw2-footer-col a:hover { color: var(--yellow); }

.pw2-copyright {
  padding: 26px var(--pad-x) 44px;
  border-top: 1px solid var(--paper-1f);
  font-size: 14px; color: var(--paper-66);
}

/* ============================================================
   Reveal-on-scroll
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* Stats: staggered reveal after container becomes visible */
.pw2-stats[data-reveal] .pw2-stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.pw2-stats[data-reveal].is-revealed .pw2-stat { opacity: 1; transform: none; }
.pw2-stats[data-reveal].is-revealed .pw2-stat:nth-child(1) { transition-delay: .05s; }
.pw2-stats[data-reveal].is-revealed .pw2-stat:nth-child(2) { transition-delay: .15s; }
.pw2-stats[data-reveal].is-revealed .pw2-stat:nth-child(3) { transition-delay: .25s; }
.pw2-stats[data-reveal].is-revealed .pw2-stat:nth-child(4) { transition-delay: .35s; }

.pw2-stat-num {
  font-variant-numeric: tabular-nums;
}

/* Hero image: overflow crops the parallax translate */
.pw2-hero-img img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .pw2-stats[data-reveal] .pw2-stat { opacity: 1 !important; transform: none !important; }
  .pw2-hero-img img { transform: none !important; }
}

/* ============================================================
   Form: alert + loading spinner
============================================================ */
.pw2-form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  background: #FDECEA;
  color: #8B1E14;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #F0B4AD;
}
.pw2-btn { position: relative; }
.pw2-btn-spinner {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  animation: pw2spin .8s linear infinite;
  display: none;
  margin-left: 10px;
}
.pw2-btn.is-loading { pointer-events: none; opacity: .85; }
.pw2-btn.is-loading .pw2-btn-spinner { display: inline-block; }
@keyframes pw2spin { to { transform: rotate(360deg); } }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 900px) {
  .pw2-newsletter-form { grid-template-columns: 1fr; padding: 12px; border-radius: 20px; }
  .pw2-newsletter-form .pw2-btn-red { justify-self: stretch; }
  .pw2-burger { display: flex; }
  .pw2-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #FFFFFF; border-bottom: 1px solid var(--ink-12);
    padding: 0 var(--pad-x);
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .2s ease;
    box-shadow: 0 12px 30px -12px #22222226;
  }
  .pw2-links.is-open { max-height: 400px; padding: 12px var(--pad-x) 20px; }
  .pw2-links a { padding: 14px 0; border-bottom: 1px solid var(--ink-10); font-size: 16px; }
  .pw2-links a:last-child { border-bottom: 0; }
  .pw2-nav { position: relative; }
  .pw2-header .pw2-btn-red { display: none; }
  .pw2-stat { border-right: 0; border-bottom: 1px solid var(--paper-26); padding-right: 0; padding-bottom: 20px; }
  .pw2-stat:last-child { border-bottom: 0; padding-bottom: 0; }
}
@media (max-width: 640px) {
  .pw2-hero-img { height: 60vh; }
  .pw2-area-media { height: 55vh; }
  .pw2-gallery-head { flex-direction: column; align-items: flex-start; }
  .pw2-stat-num { font-size: 44px; }
  .pw2-quote { padding: 30px 24px; }
}
