:root {
  --wrb-bg: #ead8d7;
  --wrb-bg-soft: #f3e8e7;
  --wrb-surface: rgba(255, 248, 248, 0.46);
  --wrb-surface-strong: rgba(255, 250, 250, 0.8);
  --wrb-ink: #241718;
  --wrb-accent: #9b4b59;
  --wrb-line: #c8a8ad;
  --wrb-dark: #2b171b;
  --wrb-focus: #6f2434;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.wrb-site {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(183, 92, 109, 0.1), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(255, 245, 245, 0.5), transparent 22%),
    var(--wrb-bg);
  color: var(--wrb-ink);
  font-family: "PT Mono", monospace;
  font-size: 17px;
  line-height: 1.76;
  -webkit-tap-highlight-color: rgba(155, 75, 89, 0.18);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--wrb-focus);
  outline-offset: 4px;
}

.wrb-site-shell {
  width: min(1300px, calc(100% - 64px));
  margin: 0 auto;
}

.wrb-skip-link {
  position: absolute;
  top: 18px;
  left: 18px;
  transform: translateY(-160%);
}

.wrb-skip-link:focus {
  transform: translateY(0);
  z-index: 1000;
  padding: 10px 14px;
  background: #fff8f8;
  border: 1px solid var(--wrb-line);
}

.wrb-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(234, 216, 215, 0.94);
  backdrop-filter: blur(8px);
}

.wrb-header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 30px 0 26px;
  border-bottom: 2px solid var(--wrb-line);
}

.wrb-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
}

.wrb-brand-mark {
  color: var(--wrb-accent);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.wrb-brand-copy {
  display: grid;
  gap: 2px;
}

.wrb-brand-kicker {
  color: var(--wrb-accent);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.wrb-brand-name {
  font-family: "Forum", serif;
  font-size: clamp(2rem, 1.7rem + 0.9vw, 3rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wrb-header nav {
  justify-self: end;
}

.wrb-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrb-nav-item {
  position: relative;
}

.wrb-nav-list a {
  color: var(--wrb-ink);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-transform: uppercase;
}

.wrb-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(155, 75, 89, 0.38);
  background: rgba(255, 250, 250, 0.72);
  color: var(--wrb-ink);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  touch-action: manipulation;
}

.wrb-nav-toplink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wrb-nav-item--dropdown > .wrb-nav-toplink::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.wrb-nav-sublist {
  position: absolute;
  top: 100%;
  right: 0;
  display: grid;
  gap: 12px;
  min-width: 220px;
  margin: 0;
  padding: 24px 20px 18px;
  list-style: none;
  border: 1px solid var(--wrb-line);
  background: rgba(255, 250, 250, 0.97);
  box-shadow: 0 18px 38px rgba(43, 23, 27, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 5;
}

.wrb-nav-sublist::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 100%;
  left: 128px;
  height: 24px;
}

.wrb-nav-item--dropdown:hover > .wrb-nav-sublist,
.wrb-nav-item--dropdown:focus-within > .wrb-nav-sublist {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wrb-nav-item--dropdown.wrb-dropdown-suppressed > .wrb-nav-sublist {
  opacity: 0;
  pointer-events: none;
}

.wrb-nav-subitem a {
  display: block;
  white-space: nowrap;
}

.wrb-nav-list a:hover,
.wrb-nav-list a:focus-visible,
.wrb-nav-item.is-active > a,
.wrb-nav-item.is-active > .wrb-nav-toplink,
.wrb-nav-subitem.is-active a {
  color: var(--wrb-accent);
}

.wrb-main {
  padding: 86px 0 0;
}

.wrb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 88px;
  align-items: center;
}

.wrb-card {
  position: relative;
}

.wrb-hero-copy,
.wrb-hero-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wrb-hero-copy h1,
.wrb-page-title,
.wrb-section-heading h2,
.wrb-card-title,
.wrb-feature-block h4,
.wrb-cta h2,
.wrb-footer-brand,
.wrb-signoff {
  margin: 0;
  color: #000;
  font-family: "Forum", serif;
  font-weight: 400;
  text-wrap: balance;
}

.wrb-page-title {
  max-width: 720px;
  font-size: clamp(3.7rem, 2.2rem + 3vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wrb-section-heading h2 {
  font-size: clamp(2.5rem, 2rem + 1vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wrb-kicker,
.wrb-label,
.wrb-meta,
.wrb-event-date {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--wrb-accent);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wrb-lede {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--wrb-ink);
  font-size: 1.08rem;
  line-height: 1.9;
}

.wrb-copy,
.wrb-card p,
.wrb-card li,
.wrb-note {
  color: var(--wrb-ink);
  font-size: 1rem;
  line-height: 1.86;
}

.wrb-copy {
  max-width: 720px;
  margin: 18px 0 0;
}

.wrb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.wrb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 18px 28px 15px;
  border: 1px solid var(--wrb-dark);
  background: var(--wrb-dark);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  touch-action: manipulation;
}

.wrb-button:hover,
.wrb-button:focus-visible {
  background: var(--wrb-accent);
  border-color: var(--wrb-accent);
  color: #fff;
}

.wrb-button--ghost {
  background: transparent;
  color: var(--wrb-ink);
}

.wrb-button--ghost:hover,
.wrb-button--ghost:focus-visible {
  color: #fff;
}

.wrb-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  padding: 34px;
  border: 1px solid rgba(155, 75, 89, 0.14);
  background: var(--wrb-surface);
}

.wrb-hero-panel h2 {
  font-size: clamp(2rem, 1.6rem + 0.9vw, 3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.wrb-hero-panel .wrb-copy {
  max-width: 340px;
}

body.wrb-page-home .wrb-hero-panel {
  justify-content: flex-end;
  border: 0;
  background:
    linear-gradient(180deg, rgba(43, 23, 27, 0.02), rgba(43, 23, 27, 0.54)),
    url("dez-durden/prepared/westmichigan-newspop-dez-durden-cutout-blossom-card.webp") center bottom/cover no-repeat;
  box-shadow: none;
}

body.wrb-page-home .wrb-hero-panel .wrb-kicker,
body.wrb-page-home .wrb-hero-panel h2,
body.wrb-page-home .wrb-hero-panel p {
  color: #fff;
}

.wrb-stat-grid,
.wrb-grid {
  display: grid;
  gap: 28px;
}

.wrb-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wrb-stat,
.wrb-grid--two > .wrb-card,
.wrb-grid--three > .wrb-card,
.wrb-grid--four > .wrb-card {
  padding: 26px 24px;
  border: 1px solid rgba(155, 75, 89, 0.16);
  background: var(--wrb-surface);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(43, 23, 27, 0.045);
}

.wrb-stat-number {
  display: block;
  font-family: "Forum", serif;
  font-size: clamp(2rem, 1.7rem + 0.8vw, 2.7rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.wrb-stat-text {
  display: block;
  margin-top: 12px;
  color: var(--wrb-accent);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wrb-section {
  margin-top: 110px;
}

.wrb-section--photo-feature {
  margin-top: 82px;
}

.wrb-section + .wrb-section {
  margin-top: 96px;
}

.wrb-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.wrb-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wrb-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wrb-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wrb-grid--with-photo {
  align-items: stretch;
}

.wrb-card--wide {
  grid-column: span 2;
}

.wrb-photo-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.wrb-photo-copy h2 {
  max-width: 740px;
  margin: 0;
  color: #000;
  font-family: "Forum", serif;
  font-size: clamp(2.4rem, 1.9rem + 1vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wrb-photo-panel,
.wrb-portrait-lockup,
.wrb-card-photo,
.wrb-card--image,
.wrb-image-band {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(155, 75, 89, 0.16);
  border-radius: 6px;
  background: rgba(255, 248, 248, 0.5);
}

.wrb-photo-panel {
  aspect-ratio: 4 / 5;
}

.wrb-photo-panel--cutout-hero {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 640px;
  aspect-ratio: auto;
  overflow: visible;
  border: 0;
  background: transparent;
}

.wrb-portrait-lockup {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
}

.wrb-portrait-lockup--wide {
  aspect-ratio: 4 / 4.8;
}

.wrb-card-photo {
  aspect-ratio: 16 / 10;
  margin: 0 0 24px;
}

.wrb-card-photo--transparent-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 8;
  border: 0;
  background: transparent;
}

.wrb-card--image {
  min-height: 340px;
  padding: 0;
}

.wrb-gofundme-embed {
  display: grid;
  align-content: center;
  min-height: 340px;
  padding: 24px;
  background: rgba(255, 248, 248, 0.72);
  border-radius: 6px;
}

.wrb-gofundme-embed .gfm-embed {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.wrb-gofundme-embed .gfm-embed iframe {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.wrb-gofundme-embed .gfm-embed:has(iframe) > a {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wrb-section--gofundme {
  padding-top: 36px;
}

.wrb-photo-panel img,
.wrb-portrait-lockup img,
.wrb-card-photo img,
.wrb-card--image img,
.wrb-image-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrb-photo-panel--cutout-hero img {
  width: min(560px, 100%);
  height: auto;
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(43, 23, 27, 0.14));
}

.wrb-card-photo--transparent-logo img {
  width: min(100%, 620px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(43, 23, 27, 0.1));
}

.wrb-portrait-lockup img {
  object-position: center top;
}

.wrb-portrait-lockup--tight-impact img {
  object-position: center;
}

.wrb-card--image img {
  object-position: center;
}

.wrb-image-band {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.82fr;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 248, 248, 0.36);
}

.wrb-image-band img {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.wrb-image-band img:nth-child(2) {
  aspect-ratio: 4 / 5;
}

.wrb-card-title,
.wrb-feature-block h4 {
  font-size: clamp(1.75rem, 1.4rem + 0.55vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.wrb-card-subtitle {
  margin: 0 0 12px;
  color: var(--wrb-accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wrb-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.wrb-list li {
  position: relative;
  padding-left: 20px;
}

.wrb-list li + li {
  margin-top: 12px;
}

.wrb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 7px;
  height: 7px;
  background: var(--wrb-accent);
  transform: translateY(-50%);
}

.wrb-divider {
  width: 80px;
  height: 1px;
  margin: 28px 0;
  background: var(--wrb-line);
}

.wrb-progress {
  display: grid;
  gap: 14px;
}

.wrb-progress-track {
  overflow: hidden;
  height: 14px;
  background: rgba(0, 0, 0, 0.08);
}

.wrb-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--wrb-accent), #c66a79);
}

.wrb-stack {
  display: grid;
  gap: 20px;
}

.wrb-feature-block {
  padding-top: 18px;
  border-top: 1px solid rgba(155, 75, 89, 0.16);
}

.wrb-feature-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.wrb-feature-block p {
  margin: 10px 0 0;
}

.wrb-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 54px 52px;
  background: linear-gradient(135deg, #2b171b, #4b232d);
  color: #fff;
  border-radius: 6px;
}

.wrb-cta h2,
.wrb-cta p {
  color: #fff;
}

.wrb-cta h2 {
  font-size: clamp(2.2rem, 1.8rem + 0.8vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wrb-cta p {
  max-width: 740px;
  margin: 12px 0 0;
}

.wrb-cta .wrb-button {
  background: #fff3f5;
  border-color: #fff3f5;
  color: var(--wrb-dark);
}

.wrb-cta .wrb-button:hover,
.wrb-cta .wrb-button:focus-visible {
  background: var(--wrb-accent);
  border-color: var(--wrb-accent);
  color: #fff;
}

.wrb-footer {
  margin-top: 96px;
  background: linear-gradient(180deg, #2b171b, #211214);
}

.wrb-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0 20px;
}

.wrb-footer-entity p:last-child {
  max-width: 720px;
}

.wrb-footer-brand {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wrb-footer-meta {
  display: grid;
  gap: 14px;
  justify-items: end;
  text-align: right;
}

.wrb-footer-contact,
.wrb-footer-credit {
  margin: 0;
}

.wrb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.wrb-footer-links .wrb-inline-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wrb-heart {
  color: #f1a9b8;
  font-size: 1.08em;
  line-height: 1;
}

.wrb-footer p,
.wrb-inline-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.wrb-inline-link:hover,
.wrb-inline-link:focus-visible {
  color: #fff;
}

.wrb-signoff {
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.wrb-legal-list {
  display: grid;
  gap: 18px;
}

.wrb-legal-list h2 {
  font-size: clamp(1.7rem, 1.45rem + 0.6vw, 2.3rem);
}

.wrb-legal-list p {
  margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
  .wrb-hero {
    gap: 56px;
  }

  .wrb-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 900px) {
  .wrb-site-shell {
    width: min(100% - 36px, 1300px);
  }

  .wrb-header-inner,
  .wrb-hero,
  .wrb-photo-feature,
  .wrb-grid--two,
  .wrb-grid--three,
  .wrb-grid--four,
  .wrb-stat-grid,
  .wrb-cta,
  .wrb-footer-inner {
    grid-template-columns: 1fr;
  }

  .wrb-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wrb-footer-meta {
    justify-items: start;
    text-align: left;
  }

  .wrb-footer-links {
    justify-content: flex-start;
  }

  .wrb-header nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    padding-top: 14px;
  }

  body.wrb-nav-enhanced:not(.wrb-nav-open) .wrb-header nav {
    display: none;
  }

  body.wrb-nav-open .wrb-header nav {
    display: block;
  }

  .wrb-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .wrb-nav-list {
    display: grid;
    justify-content: flex-start;
    gap: 12px;
  }

  .wrb-nav-item--dropdown {
    display: grid;
    gap: 8px;
  }

  .wrb-nav-sublist {
    position: static;
    min-width: 0;
    padding: 2px 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .wrb-main {
    padding-top: 54px;
  }

  .wrb-hero {
    gap: 34px;
  }

  .wrb-hero-panel {
    min-height: 360px;
  }

  .wrb-photo-panel--cutout-hero {
    min-height: 520px;
  }

  .wrb-card--wide {
    grid-column: auto;
  }

  .wrb-image-band {
    grid-template-columns: 1fr;
  }

  .wrb-cta {
    padding: 38px 28px;
  }
}

@media only screen and (max-width: 640px) {
  body.wrb-site {
    font-size: 15px;
  }

  .wrb-site-shell {
    width: min(100% - 24px, 1300px);
  }

  .wrb-header-inner {
    gap: 18px;
    padding: 20px 0 18px;
  }

  .wrb-brand {
    gap: 10px;
    flex-wrap: wrap;
  }

  .wrb-brand-name {
    font-size: 1.7rem;
  }

  .wrb-page-title {
    font-size: clamp(2.8rem, 2.1rem + 2vw, 4rem);
  }

  .wrb-button,
  .wrb-cta .wrb-button {
    width: 100%;
  }

  .wrb-actions {
    gap: 10px;
  }

  .wrb-grid--two > .wrb-card,
  .wrb-grid--three > .wrb-card,
  .wrb-grid--four > .wrb-card,
  .wrb-stat {
    padding: 22px 18px;
  }

  .wrb-section {
    margin-top: 74px;
  }

  .wrb-section + .wrb-section {
    margin-top: 68px;
  }

  .wrb-gofundme-embed {
    min-height: 260px;
    padding: 18px;
  }

  .wrb-gofundme-embed .gfm-embed {
    min-height: 220px;
  }

  .wrb-photo-panel--cutout-hero {
    min-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
