: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: 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);
}

body.wrb-site > .wrb-main,
body.wrb-site > .wrb-footer {
  position: relative;
  z-index: 1;
}

body.wrb-site > .wrb-header {
  z-index: 30;
}

.wrb-watercolor-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.72;
}

@media (prefers-reduced-motion: no-preference) {
  body.wrb-site > .wrb-header {
    animation: wrb-page-enter 520ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  }

  body.wrb-site > .wrb-main {
    animation: wrb-page-enter 640ms cubic-bezier(0.2, 0.72, 0.2, 1) 60ms both;
  }

  body.wrb-site > .wrb-footer {
    animation: wrb-page-enter 640ms cubic-bezier(0.2, 0.72, 0.2, 1) 120ms both;
  }

  .wrb-watercolor-bg {
    animation: wrb-watercolor-enter 720ms ease both;
    transition: opacity 190ms ease;
  }

  body.wrb-site.wrb-page-exiting > .wrb-header,
  body.wrb-site.wrb-page-exiting > .wrb-main,
  body.wrb-site.wrb-page-exiting > .wrb-footer {
    animation: wrb-page-exit 190ms ease both;
  }

  body.wrb-site.wrb-page-exiting .wrb-watercolor-bg {
    opacity: 0.44;
  }

  @keyframes wrb-page-enter {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes wrb-page-exit {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  @keyframes wrb-watercolor-enter {
    from {
      opacity: 0;
    }

    to {
      opacity: 0.72;
    }
  }
}

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: fixed;
  top: 18px;
  left: 18px;
  z-index: 1000;
  transform: translateY(calc(-100% - 24px));
}

.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-publication-keywords {
  color: rgba(43, 23, 27, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.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-price,
.wrb-card .wrb-price {
  display: block;
  margin: 18px 0 0;
  color: var(--wrb-dark);
  font-family: "Forum", serif;
  font-size: clamp(1.55rem, 1.2rem + 0.6vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.wrb-support-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px dashed rgba(155, 75, 89, 0.42);
  background: rgba(255, 248, 248, 0.76);
  border-radius: 6px;
}

.wrb-circuit-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px dashed rgba(155, 75, 89, 0.4);
  background: rgba(255, 248, 248, 0.7);
  border-radius: 5px;
  color: var(--wrb-accent);
  font-size: 0.94rem;
  line-height: 1.7;
}

.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-button[aria-disabled="true"],
.wrb-card-link[aria-disabled="true"] {
  border-color: rgba(43, 23, 27, 0.26);
  background: rgba(255, 248, 248, 0.58);
  color: rgba(36, 23, 24, 0.58);
  cursor: not-allowed;
}

.wrb-card-link[aria-disabled="true"] {
  background: transparent;
  border-color: transparent;
}

.wrb-card-link[aria-disabled="true"]::after {
  opacity: 0.35;
}

.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;
}

.wrb-book-panel {
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: visible;
  min-height: 590px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wrb-book-panel::before {
  content: none;
}

.wrb-book-mockup {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: min(100%, 360px);
  margin: 0 auto;
}

.wrb-book-panel--compact .wrb-book-mockup {
  width: min(100%, 340px);
}

.wrb-book-mockup::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 9%;
  bottom: 10%;
  left: 22%;
  height: 13%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(43, 23, 27, 0.2), rgba(43, 23, 27, 0.08) 46%, rgba(43, 23, 27, 0) 74%);
  filter: blur(16px);
  transform: skewX(-8deg);
  pointer-events: none;
}

.wrb-book-mockup picture,
.wrb-book-mockup img {
  display: block;
}

.wrb-book-mockup picture {
  position: relative;
  z-index: 1;
}

.wrb-book-mockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 18px rgba(43, 23, 27, 0.1));
}

.wrb-book-panel-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  margin: -84px auto 0;
}

.wrb-book-panel-copy .wrb-kicker {
  margin-bottom: 12px;
}

.wrb-book-panel-copy .wrb-copy {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.58;
}

.wrb-book-panel-copy .wrb-actions {
  margin-top: 22px;
}

.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;
}

#online-giving,
#live-donation-support,
#volunteer-interest,
#corporate-partnerships {
  scroll-margin-top: 150px;
}

.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-grid--media-pair {
  align-items: start;
}

.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--portrait {
  aspect-ratio: 3 / 4;
}

.wrb-card-photo--landscape {
  aspect-ratio: 4 / 3;
}

.wrb-card-photo--square {
  aspect-ratio: 1 / 1;
}

.wrb-card-photo--contain img,
.wrb-image-fit-contain {
  object-fit: contain !important;
  background: rgba(255, 248, 248, 0.72);
}

.wrb-card--media .wrb-card-photo {
  margin-bottom: 0;
}

.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-grid--checkout {
  margin-top: 26px;
}

.wrb-section--online-giving {
  padding: 40px;
  border: 1px solid rgba(155, 75, 89, 0.16);
  background: rgba(255, 248, 248, 0.26);
  border-radius: 6px;
}

.wrb-checkout-card {
  display: flex;
  flex-direction: column;
}

.wrb-checkout-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.wrb-amount-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.wrb-amount-choice {
  position: relative;
}

.wrb-amount-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.wrb-amount-choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 10px 10px;
  border: 1px solid rgba(43, 23, 27, 0.24);
  background: rgba(255, 250, 250, 0.66);
  color: var(--wrb-ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wrb-amount-choice input:checked + span,
.wrb-amount-choice input:focus-visible + span {
  border-color: var(--wrb-dark);
  background: var(--wrb-dark);
  color: #fff;
}

.wrb-checkout-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--wrb-accent);
  font-size: 0.94rem;
  line-height: 1.6;
}

.wrb-checkout-status[data-status-type="error"] {
  color: #7e1f32;
}

.wrb-checkout-status[data-status-type="success"] {
  color: #315f45;
}

.wrb-checkout-alert {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(155, 75, 89, 0.28);
  background: rgba(255, 250, 250, 0.76);
  border-radius: 6px;
}

.wrb-checkout-alert[hidden] {
  display: none;
}

.wrb-checkout-alert[data-status-type="success"] {
  border-color: rgba(49, 95, 69, 0.28);
}

.wrb-section--resort-offer {
  padding: 40px;
  border: 1px solid rgba(155, 75, 89, 0.16);
  background: rgba(255, 248, 248, 0.26);
  border-radius: 6px;
}

.wrb-section-heading--compact {
  margin-top: 58px;
}

.wrb-offer-feature-card,
.wrb-interest-card {
  background: rgba(255, 250, 250, 0.58);
}

.wrb-offer-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.wrb-offer-metric {
  padding: 18px 14px;
  border: 1px solid rgba(155, 75, 89, 0.16);
  background: rgba(255, 248, 248, 0.62);
  border-radius: 5px;
}

.wrb-interest-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.wrb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wrb-field {
  display: grid;
  gap: 8px;
}

.wrb-field--full {
  grid-column: 1 / -1;
}

.wrb-field span,
.wrb-checkbox span {
  color: var(--wrb-ink);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wrb-field input,
.wrb-field select,
.wrb-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(155, 75, 89, 0.28);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 4px;
  color: var(--wrb-ink);
  font: inherit;
}

.wrb-field textarea {
  min-height: 116px;
  resize: vertical;
}

.wrb-field input:focus,
.wrb-field select:focus,
.wrb-field textarea:focus {
  outline: 2px solid var(--wrb-focus);
  outline-offset: 2px;
}

.wrb-checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.wrb-choice-list {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(155, 75, 89, 0.2);
  background: rgba(255, 255, 255, 0.42);
}

.wrb-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.22em;
  accent-color: var(--wrb-accent);
}

.wrb-checkbox span {
  letter-spacing: 0;
  line-height: 1.72;
  text-transform: none;
}

.wrb-form-status {
  min-height: 1.8em;
  margin: 0;
  color: var(--wrb-accent);
  font-size: 0.94rem;
}

.wrb-grid--disclosures {
  margin-top: 28px;
}

.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-flip-horizontal {
  transform: scaleX(-1);
}

.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-link-grid > .wrb-link-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.wrb-link-card .wrb-card-title {
  font-size: clamp(1.55rem, 1.25rem + 0.45vw, 2rem);
}

.wrb-document-grid {
  align-items: stretch;
}

.wrb-document-card {
  gap: 14px;
}

.wrb-document-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin: 0 0 4px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(155, 75, 89, 0.14);
  border-radius: 5px;
  background: #fff;
}

.wrb-document-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.wrb-document-card--portrait .wrb-document-thumb img {
  object-fit: cover;
  object-position: top center;
}

.wrb-document-card .wrb-card-title {
  font-size: clamp(1.35rem, 1.15rem + 0.35vw, 1.8rem);
}

.wrb-card-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--wrb-accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.wrb-card-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: 0.62em 0 0 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}

.wrb-card-link:hover,
.wrb-card-link:focus-visible {
  color: var(--wrb-dark);
}

.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-inline-link {
  color: var(--wrb-accent);
  text-decoration: none;
}

.wrb-inline-link:hover,
.wrb-inline-link:focus-visible {
  color: var(--wrb-dark);
}

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

.wrb-footer .wrb-inline-link:hover,
.wrb-footer .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-book-panel {
    min-height: auto;
    padding: 8px 0 0;
  }

  .wrb-book-mockup,
  .wrb-book-panel--compact .wrb-book-mockup {
    width: min(100%, 320px);
  }

  .wrb-book-panel-copy {
    margin-top: -80px;
  }

  .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--resort-offer,
  .wrb-section--online-giving {
    padding: 26px 18px;
  }

  .wrb-form-grid,
  .wrb-offer-metrics {
    grid-template-columns: 1fr;
  }

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

  .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;
  }

  .wrb-watercolor-bg {
    opacity: 0.68;
  }

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

@media print {
  .wrb-watercolor-bg {
    display: none;
  }
}
