/* How We Work page - page-specific styles */

a { color: var(--color-accent-700); }
a:hover { color: var(--color-accent-900); }

/* Sticky nav on desktop */
@media (min-width: 861px) {
  ctb-nav { position: sticky; top: 0; z-index: 60; }
}

/* Banner bar */
.hw-banner {
  background: var(--maple);
  color: oklch(0.98 0.005 27);
  text-align: center;
  padding: 9px 20px;
  font-family: var(--shout);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Hero section */
.hw-hero { padding: 80px 0 56px; }
.hw-stamp {
  display: inline-block;
  font-family: var(--scrawl);
  font-weight: 800;
  border: 2px solid var(--maple);
  color: var(--maple-deep);
  background: var(--maple-tint);
  padding: 4px 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10.5px;
  border-radius: var(--radius-sm);
  transform: rotate(-2deg);
}
.hw-h1 {
  text-transform: uppercase;
  font-family: var(--shout);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 35px 0 0;
}
.hw-h1 span { display: block; }
.hw-h1 .hw-tilt { transform: rotate(-0.6deg); }
.hw-intro {
  font-size: 18px;
  line-height: 30px;
  max-width: 56ch;
  margin: 42px 0 0;
}

/* Horizontal rule divider */
.hw-rule {
  height: 5px;
  border: 0;
  border-top: 2px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
  margin: 0 0 49px;
}

/* Multi-column sections */
.hw-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 49px clamp(28px, 4vw, 64px);
}
.hw-cols h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  margin: 0;
}
.hw-cols h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  line-height: 26px;
  margin: 0;
}
.hw-cols p {
  font-size: 15.5px;
  line-height: 28px;
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--color-text) 85%, transparent);
}
.hw-cols ul {
  margin: 14px 0 0;
  padding: 0 0 0 20px;
}
.hw-cols li {
  font-size: 15.5px;
  line-height: 28px;
  color: color-mix(in srgb, var(--color-text) 85%, transparent);
  margin: 7px 0 0;
}
.hw-cols li:first-child { margin-top: 0; }
.hw-cols li strong {
  color: var(--color-text);
}

/* Section stamp headers */
.hw-section-stamp {
  display: inline-block;
  font-family: var(--shout);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 6px 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12.5px;
  transform: rotate(-1.2deg);
  margin-bottom: 49px;
}

/* Corrections single-column */
.hw-corrections {
  max-width: 66ch;
  margin-top: 49px;
}
.hw-corrections h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  margin: 0;
}
.hw-corrections p {
  font-size: 16.5px;
  line-height: 29px;
  margin: 14px 0 0;
}
.hw-corrections a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Full-bleed statement band */
.hw-statement {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 84px 0;
  margin: 0 0 84px;
}
.hw-statement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}
.hw-statement-quote {
  font-family: var(--shout);
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 24ch;
  text-transform: uppercase;
}
.hw-statement-sig {
  font-family: var(--scrawl);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  margin: 35px 0 0;
  opacity: 0.9;
  transform: rotate(-0.5deg);
}

/* Responsive */
@media (max-width: 860px) {
  .hw-h1 { overflow-wrap: break-word; }
}
