:root {
  --kcsr-blue: #0f9fd0;
  --kcsr-blue-dark: #087fa9;
  --kcsr-blue-soft: #e9f7fc;
  --kcsr-navy: #0a4f78;
  --kcsr-navy-dark: #063b61;
  --kcsr-ink: #203747;
  --kcsr-muted: #5d7080;
  --kcsr-line: #d8e5ec;
  --kcsr-pale: #f3f9fc;
  --kcsr-white: #ffffff;
  --kcsr-content-width: 1240px;
  --kcsr-shadow: 0 26px 70px rgba(8, 64, 96, 0.11);
}

body.kcsr-page-active.kcsr-hide-theme-title main .entry-header,
body.kcsr-page-active.kcsr-hide-theme-title main .page-title,
body.kcsr-page-active.kcsr-hide-theme-title main header.entry-header,
body.kcsr-page-active.kcsr-hide-theme-title .site-main > .page-header {
  display: none !important;
}

body.kcsr-page-active {
  overflow-x: hidden;
  background-color: #f4f9fc;
}

body.kcsr-page-active .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-inline: 0 !important;
  background-color: #f4f9fc;
}

body.kcsr-page-active .kcsr-app {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Keep the existing site header readable over the photographic hero. */
body.kcsr-page-active header nav a,
body.kcsr-page-active .site-header a,
body.kcsr-page-active .top_panel a {
  text-shadow: 0 2px 14px rgba(0, 25, 42, 0.46);
}

body.kcsr-page-active header img,
body.kcsr-page-active .site-header img,
body.kcsr-page-active .top_panel img {
  filter: drop-shadow(0 3px 12px rgba(0, 25, 42, 0.18));
}

body.kcsr-page-active .entry-content,
body.kcsr-page-active .site-main,
body.kcsr-page-active main {
  overflow: visible;
  background-color: #f4f9fc;
}

.kcsr-app,
.kcsr-app * {
  box-sizing: border-box;
}

.kcsr-app {
  color: var(--kcsr-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.68;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.kcsr-app button,
.kcsr-app input,
.kcsr-app textarea,
.kcsr-app select {
  font: inherit;
}

.kcsr-full-bleed {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}

.kcsr-container {
  width: min(var(--kcsr-content-width), calc(100% - 64px));
  max-width: none !important;
  margin-inline: auto;
  padding-inline: 0 !important;
}

.kcsr-eyebrow {
  margin: 0;
  color: var(--kcsr-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kcsr-eyebrow--light {
  color: #f0dfc2;
}

.kcsr-hero {
  min-height: 620px;
  overflow: hidden;
  background-color: #d9c5a7;
  background-image: var(--kcsr-hero-image);
  background-position: center;
  background-size: cover;
}

.kcsr-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 30, 47, 0.72) 0%, rgba(3, 30, 47, 0.36) 15%, rgba(3, 30, 47, 0.09) 33%, rgba(3, 30, 47, 0) 50%),
    linear-gradient(90deg, rgba(5, 49, 76, 0.94) 0%, rgba(5, 49, 76, 0.84) 27%, rgba(5, 49, 76, 0.51) 47%, rgba(5, 49, 76, 0.17) 67%, rgba(5, 49, 76, 0) 100%),
    linear-gradient(180deg, rgba(0, 49, 77, 0.03), rgba(0, 26, 44, 0.13));
}

.kcsr-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  align-items: center;
  padding-block: 104px 72px;
  padding-inline: 0 !important;
}

.kcsr-hero__copy {
  width: min(620px, 58%);
  color: #fff;
}

.kcsr-hero__line {
  display: block;
}

.kcsr-hero h1 {
  max-width: 700px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(50px, 5.2vw, 72px);
  font-weight: 750;
  letter-spacing: -0.047em;
  line-height: 1.035;
  text-wrap: balance;
}

.kcsr-hero__copy > p:not(.kcsr-eyebrow) {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
}

.kcsr-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

.kcsr-button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.kcsr-button--hero,
.kcsr-button--primary {
  background: var(--kcsr-blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 159, 208, 0.18);
}

.kcsr-button--hero {
  min-height: 50px;
  padding-inline: 24px;
  box-shadow: 0 12px 28px rgba(8, 92, 132, 0.22);
}

.kcsr-button--hero:hover,
.kcsr-button--primary:hover {
  background: var(--kcsr-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.kcsr-button--secondary {
  border: 1px solid #d4e0e7;
  background: #fff;
  color: var(--kcsr-navy);
}

.kcsr-button--secondary:hover {
  border-color: #9eb5c7;
  background: #f7fbfd;
}

.kcsr-button:focus-visible,
.kcsr-carousel-button:focus-visible,
.kcsr-progress__step:focus-visible,
.kcsr-date-card:focus-within,
.kcsr-counter button:focus-visible {
  outline: 3px solid rgba(15, 159, 208, 0.26);
  outline-offset: 3px;
}

.kcsr-main {
  background:
    radial-gradient(circle at 5% 8%, rgba(23, 184, 239, 0.055), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f4f9fc 100%);
}

.kcsr-intro {
  padding-block: 80px 54px;
}

.kcsr-intro h2,
.kcsr-rsvp__heading h2 {
  margin: 12px 0 28px;
  color: var(--kcsr-navy-dark);
  font-size: clamp(38px, 3.2vw, 42px);
  font-weight: 750;
  letter-spacing: -0.038em;
  line-height: 1.1;
}

.kcsr-intro__content {
  max-width: 880px;
  color: #4e6271;
  font-size: 17px;
  line-height: 1.68;
}

.kcsr-intro__content p {
  margin: 0 0 18px;
}

.kcsr-intro__lead {
  max-width: 820px;
  margin: 0 0 24px !important;
  color: var(--kcsr-navy-dark);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.027em;
  line-height: 1.55;
}

.kcsr-info-note,

.kcsr-app .kcsr-button,
.kcsr-app .kcsr-carousel-button,
.kcsr-app .kcsr-counter__actions button,
.kcsr-app .kcsr-progress__step {
  appearance: none;
  -webkit-appearance: none;
  text-transform: none;
}

.kcsr-app .kcsr-button--hero:hover,
.kcsr-app .kcsr-button--primary:hover {
  border-color: var(--kcsr-blue-dark) !important;
  background: var(--kcsr-blue-dark) !important;
  color: #fff !important;
}

.kcsr-app .kcsr-button--secondary:hover {
  border-color: #9db9c8 !important;
  background: #f4fafc !important;
  color: var(--kcsr-navy-dark) !important;
}

.kcsr-app .kcsr-carousel-button:hover,
.kcsr-app .kcsr-counter__actions button:hover {
  border-color: var(--kcsr-blue) !important;
  background: var(--kcsr-blue-soft) !important;
  color: var(--kcsr-navy-dark) !important;
}

.kcsr-app a {
  color: var(--kcsr-navy);
}

.kcsr-app a:hover {
  color: var(--kcsr-blue-dark) !important;
}

.kcsr-services-invite {
  border-radius: 12px;
  background: #eef8fc;
  color: #405968;
  font-size: 15px;
  line-height: 1.68;
}

.kcsr-info-note {
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  padding: 0;
}

.kcsr-rsvp {
  padding-block: 0 32px;
}

.kcsr-rsvp__heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.kcsr-rsvp__heading h2 {
  margin-bottom: 10px;
}

.kcsr-rsvp__heading > p:last-child {
  margin: 0;
  color: var(--kcsr-muted);
  font-size: 17.5px;
  line-height: 1.72;
}

.kcsr-form {
  overflow: hidden;
  border: 1px solid #d6e4eb;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--kcsr-shadow);
}

.kcsr-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.kcsr-progress {
  border-bottom: 1px solid #e1ebf0;
  background: #fff;
  padding: 18px;
}

.kcsr-progress__desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kcsr-progress__mobile {
  display: none;
}

.kcsr-progress__step {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent !important;
  color: #687b8a !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.kcsr-progress__step span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #edf2f5;
  color: #71808d;
  font-size: 12px;
  font-weight: 800;
}

.kcsr-app .kcsr-progress__step:hover:not(:disabled) {
  background: #f0f8fb !important;
  color: var(--kcsr-navy-dark) !important;
}

.kcsr-app .kcsr-progress__step.is-active {
  background: var(--kcsr-blue) !important;
  color: #fff !important;
  box-shadow: 0 9px 22px rgba(15, 159, 208, 0.19);
}

.kcsr-app .kcsr-progress__step.is-complete {
  background: var(--kcsr-blue-soft) !important;
  color: var(--kcsr-navy-dark) !important;
}

.kcsr-progress__step.is-active span {
  background: #fff !important;
  color: var(--kcsr-blue-dark) !important;
}

.kcsr-progress__step.is-complete span {
  background: var(--kcsr-blue) !important;
  color: #fff !important;
}

.kcsr-progress__step:disabled:hover {
  background: transparent !important;
  color: #687b8a !important;
}

.kcsr-progress__step:disabled {
  cursor: default;
}

.kcsr-error-summary {
  margin: 24px 40px 0;
  border: 1px solid #efb6b6;
  border-radius: 10px;
  background: #fff5f5;
  color: #8a2525;
  padding: 14px 16px;
  font-size: 14px;
}

.kcsr-error-summary ul {
  margin: 8px 0 0 20px;
}

.kcsr-step {
  padding: 48px;
}

.kcsr-progress[hidden],
.kcsr-step[hidden],
.kcsr-confirmation[hidden],
.kcsr-payment[hidden],
.kcsr-payment-unavailable[hidden],
.kcsr-error-summary[hidden] {
  display: none !important;
}

.kcsr-step__kicker {
  margin: 0 0 8px;
  color: var(--kcsr-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kcsr-step h3,
.kcsr-confirmation h3 {
  margin: 0 0 10px;
  color: var(--kcsr-navy-dark);
  font-size: 31px;
  font-weight: 750;
  letter-spacing: -0.033em;
  line-height: 1.18;
}

.kcsr-step__lead {
  margin: 0 0 28px;
  color: var(--kcsr-muted);
  font-size: 17px;
  line-height: 1.72;
}

.kcsr-date-carousel {
  position: relative;
}

.kcsr-date-viewport {
  overflow: hidden;
  margin: -4px;
  padding: 4px;
}

.kcsr-date-track {
  display: flex;
  gap: 18px;
  transition: transform 0.28s ease;
  will-change: transform;
}

.kcsr-date-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 232px;
  border: 1px solid #dce7ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 64, 96, 0.045);
  padding: 24px;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

.kcsr-date-card:hover {
  transform: translateY(-3px);
  border-color: #b9d7e4;
  box-shadow: 0 14px 34px rgba(8, 64, 96, 0.10);
}

.kcsr-date-card.is-selected {
  border: 2px solid var(--kcsr-blue);
  background: #fbfeff;
  box-shadow: 0 14px 34px rgba(15, 159, 208, 0.14);
  padding: 23px;
}

.kcsr-date-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.kcsr-date-card__check {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--kcsr-blue);
  color: #fff;
  font-size: 13px;
  opacity: 0;
}

.kcsr-date-card.is-selected .kcsr-date-card__check {
  opacity: 1;
}

.kcsr-date-card__month {
  display: block;
  color: var(--kcsr-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kcsr-date-card strong {
  display: block;
  margin: 14px 32px 18px 0;
  color: var(--kcsr-navy-dark);
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.3;
  white-space: nowrap;
}

.kcsr-date-card--special {
  min-height: 258px;
}

.kcsr-date-card--special strong {
  white-space: normal;
  font-size: 19px;
  line-height: 1.32;
}

.kcsr-date-card--special .kcsr-date-card__schedule b {
  font-size: 14.5px;
}

.kcsr-date-card__schedule,
.kcsr-date-card__location,
.kcsr-date-card__details {
  display: block;
  color: #4f6473;
  font-size: 15px;
  line-height: 1.58;
}

.kcsr-date-card__schedule b {
  color: var(--kcsr-navy-dark);
  font-weight: 700;
}

.kcsr-date-card__location {
  margin-top: 6px;
}

.kcsr-date-card__details {
  margin-top: 14px;
  border-top: 1px solid #e8eef2;
  padding-top: 14px;
  color: var(--kcsr-muted);
  font-size: 14px;
}

.kcsr-carousel-controls {
  position: absolute;
  top: -64px;
  right: 0;
  display: flex;
  gap: 8px;
}

.kcsr-carousel-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d6e3ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8, 64, 96, 0.06);
  color: var(--kcsr-navy);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.kcsr-carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.kcsr-carousel-button:hover {
  border-color: var(--kcsr-blue);
  background: var(--kcsr-blue);
  color: #fff;
}

.kcsr-carousel-button:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.kcsr-services-invite {
  margin-top: 22px;
  padding: 16px 18px;
  background: #f2f8fb;
}

.kcsr-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.kcsr-field label {
  display: block;
  margin-bottom: 8px;
  color: #395169;
  font-size: 15px;
  font-weight: 700;
}

.kcsr-field label span {
  color: #7b8794;
  font-weight: 500;
}

.kcsr-field input,
.kcsr-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d7e2e8;
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: var(--kcsr-ink);
  padding: 14px 15px;
  font-size: 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.kcsr-field textarea {
  min-height: 108px;
  resize: vertical;
}

.kcsr-field input:focus,
.kcsr-field textarea:focus {
  border-color: var(--kcsr-blue);
  box-shadow: 0 0 0 3px rgba(15, 159, 208, 0.20);
}

.kcsr-field.has-error input,
.kcsr-field.has-error textarea,
.kcsr-counter.has-error {
  border-color: #c84242;
}

.kcsr-field-error {
  min-height: 0;
  margin: 7px 0 0;
  color: #a62f2f;
  font-size: 14px;
  line-height: 1.45;
}

.kcsr-field-error:empty {
  display: none;
}

.kcsr-character-count {
  margin-top: 6px;
  color: var(--kcsr-muted);
  font-size: 13px;
  text-align: right;
}

.kcsr-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kcsr-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d7e2e8;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.kcsr-counter strong,
.kcsr-counter small {
  display: block;
}

.kcsr-counter strong {
  color: var(--kcsr-navy-dark);
  font-size: 16px;
}

.kcsr-counter small {
  margin-top: 4px;
  color: var(--kcsr-muted);
  font-size: 13px;
}

.kcsr-counter__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kcsr-counter__actions button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #d7e2e8;
  border-radius: 50%;
  background: #f5fafc;
  color: var(--kcsr-navy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.kcsr-counter__actions output {
  min-width: 20px;
  color: var(--kcsr-navy-dark);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.kcsr-partner {
  margin-top: 22px;
  border: 1px solid #cfe3ec;
  border-radius: 18px;
  background: linear-gradient(180deg, #f2f9fc 0%, #edf7fb 100%);
  box-shadow: 0 14px 34px rgba(8, 64, 96, 0.055);
  padding: 32px;
}

.kcsr-partner__copy {
  width: 100%;
  max-width: none;
}

.kcsr-partner__copy p {
  max-width: none;
  margin: 0;
  color: #36576a;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.72;
}

.kcsr-partner__copy .kcsr-partner__lead {
  color: #36576a;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.65;
}

.kcsr-partner__copy p + p {
  margin-top: 12px;
  color: #234b63;
  font-weight: 600;
}

.kcsr-contribution {
  margin-top: 28px;
  padding-top: 0;
}

.kcsr-contribution__heading {
  margin-bottom: 13px;
  color: var(--kcsr-navy-dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.kcsr-donation-presets {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.kcsr-donation-preset {
  min-height: 48px;
  border: 1px solid #bcd7e3;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--kcsr-navy);
  padding: 10px 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.kcsr-donation-preset:hover:not(:disabled) {
  border-color: var(--kcsr-blue);
  box-shadow: 0 7px 18px rgba(8, 83, 122, 0.08);
  transform: translateY(-1px);
}

.kcsr-donation-preset:focus-visible {
  outline: 3px solid rgba(15, 159, 208, 0.22);
  outline-offset: 2px;
}

.kcsr-donation-preset.is-selected {
  border-color: var(--kcsr-navy);
  background: var(--kcsr-navy);
  box-shadow: 0 8px 20px rgba(7, 60, 98, 0.16);
  color: #fff;
}

.kcsr-donation-preset:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.kcsr-donation-preset--other {
  font-size: 14px;
}

.kcsr-amount-field {
  max-width: 380px;
  margin-top: 16px;
}


.kcsr-dedication-field {
  margin-top: 28px;
  border-top: 1px solid rgba(101, 157, 181, 0.24);
  padding-top: 25px;
}

.kcsr-dedication-field label {
  margin-bottom: 6px;
}

.kcsr-field-helper {
  margin: 0 0 12px !important;
  color: #5b7180 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.kcsr-dedication-field textarea {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.94);
}

.kcsr-partner__closing {
  margin: 22px 0 0 !important;
  color: var(--kcsr-navy-dark) !important;
  font-size: 15.5px !important;
  font-weight: 700;
  line-height: 1.65 !important;
}

.kcsr-money-input {
  position: relative;
}

.kcsr-money-input > span {
  position: absolute;
  top: 13px;
  left: 15px;
  color: #5b6671;
  font-weight: 750;
}

.kcsr-money-input input {
  padding-left: 32px;
}

.kcsr-partner [hidden] {
  display: none !important;
}

.kcsr-payment {
  margin-top: 24px;
  border-top: 1px solid #dceaf2;
  padding-top: 24px;
}

.kcsr-payment__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.kcsr-payment__heading strong {
  color: var(--kcsr-navy-dark);
}

.kcsr-payment__heading span {
  color: var(--kcsr-muted);
  font-size: 12px;
}

.kcsr-card-container {
  min-height: 48px;
}

.kcsr-payment-unavailable {
  margin-top: 20px;
  border-radius: 10px;
  background: #fff7e8;
  color: #6d511a;
  padding: 14px 16px;
  font-size: 14px;
}

.kcsr-no-donation {
  margin: 24px 0 0;
  color: var(--kcsr-muted);
  font-size: 15px;
  text-align: right;
}

.kcsr-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
}

.kcsr-actions--end {
  justify-content: flex-end;
}

.kcsr-privacy {
  margin: 24px 0 0;
  border-top: 1px solid rgba(101, 157, 181, 0.18);
  color: var(--kcsr-muted);
  padding-top: 18px;
  font-size: 12.5px;
  line-height: 1.65;
  text-align: center;
}

.kcsr-privacy a {
  color: var(--kcsr-navy);
}

.kcsr-confirmation {
  padding: 64px 32px;
  text-align: center;
}


.kcsr-confirmation__summary {
  display: grid;
  gap: 6px;
  max-width: 620px;
  margin: 22px auto;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f1f8fb;
  color: #395169;
}
.kcsr-confirmation__summary strong {
  color: #073c62;
  font-size: 17px;
}
.kcsr-confirmation__summary[hidden] {
  display: none !important;
}

.kcsr-confirmation__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--kcsr-navy);
  color: #fff;
  font-size: 32px;
}

.kcsr-confirmation h3 {
  margin-bottom: 14px;
  font-size: 38px;
  letter-spacing: -0.035em;
}

.kcsr-confirmation > p {
  max-width: 720px;
  margin: 0 auto 12px;
  color: var(--kcsr-muted);
  font-size: 17px;
  line-height: 1.75;
}

.kcsr-donation-result {
  max-width: 680px;
  margin: 24px auto 0;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
}

.kcsr-donation-result.is-success {
  background: #ecf8f1;
  color: #1d6840;
}

.kcsr-donation-result.is-warning {
  background: #fff7e8;
  color: #6d511a;
}

.kcsr-confirmation__links {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 28px auto 0;
}

.kcsr-confirmation__links a {
  color: var(--kcsr-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.kcsr-submit-loading {
  position: relative;
  color: transparent !important;
}

.kcsr-submit-loading::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  animation: kcsr-spin 0.8s linear infinite;
}

@keyframes kcsr-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {

  .kcsr-date-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .kcsr-fields,
  .kcsr-counters {
    grid-template-columns: 1fr;
  }

  .kcsr-donation-presets {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .kcsr-donation-preset {
    grid-column: span 2;
  }

  .kcsr-donation-preset:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .kcsr-donation-preset:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 720px) {
  .kcsr-container {
    width: min(100% - 40px, var(--kcsr-content-width));
  }

  .kcsr-hero {
    min-height: 550px;
    background-position: 66% center;
  }

  .kcsr-hero__inner {
    min-height: 550px;
    padding-block: 88px 52px;
  }

  .kcsr-hero__copy {
    width: 100%;
  }

  .kcsr-hero h1 {
    font-size: clamp(39px, 11vw, 46px);
    line-height: 1.045;
  }

  .kcsr-hero__copy > p:not(.kcsr-eyebrow) {
    font-size: 17.5px;
  }

  .kcsr-button--hero {
    width: 100%;
  }

  .kcsr-intro {
    padding-block: 58px 38px;
  }

  .kcsr-intro h2,
  .kcsr-rsvp__heading h2 {
    font-size: 36px;
  }

  .kcsr-intro__lead {
    font-size: 20px;
  }

  .kcsr-rsvp {
    padding-block: 16px 24px;
  }

  .kcsr-form {
    border-radius: 14px;
  }

  .kcsr-progress {
    padding: 18px 20px 16px;
  }

  .kcsr-progress__desktop {
    display: none;
  }

  .kcsr-progress__mobile {
    display: block;
  }

  .kcsr-progress__mobile-count {
    display: block;
    margin-bottom: 4px;
    color: #71808d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .kcsr-progress__mobile-label {
    display: block;
    color: var(--kcsr-navy-dark);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.35;
  }

  .kcsr-progress__mobile-track {
    height: 6px;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9f0f4;
  }

  .kcsr-progress__mobile-track span {
    display: block;
    width: 33.333%;
    height: 100%;
    border-radius: inherit;
    background: var(--kcsr-blue);
    transition: width 220ms ease;
  }

  .kcsr-step__kicker {
    display: none;
  }

  .kcsr-error-summary {
    margin: 16px 16px 0;
  }

  .kcsr-step {
    padding: 28px 20px;
  }

  .kcsr-step h3 {
    font-size: 28px;
  }

  .kcsr-date-card {
    flex-basis: 100%;
    min-height: 222px;
  }

  .kcsr-date-card strong {
    font-size: 19px;
  }

  .kcsr-carousel-controls {
    position: static;
    justify-content: flex-end;
    margin-top: 16px;
  }

  .kcsr-partner {
    margin-top: 18px;
    border-radius: 15px;
    padding: 24px 20px;
  }

  .kcsr-partner__copy {
    width: 100%;
  }

  .kcsr-partner__copy p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .kcsr-partner__copy .kcsr-partner__lead {
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.62;
  }

  .kcsr-partner__copy p + p {
    margin-top: 11px;
    font-weight: 600;
  }

  .kcsr-contribution {
    margin-top: 24px;
    padding-top: 0;
  }

  .kcsr-donation-presets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .kcsr-donation-preset,
  .kcsr-donation-preset:nth-child(4),
  .kcsr-donation-preset:nth-child(5) {
    grid-column: auto;
  }

  .kcsr-donation-preset {
    min-height: 47px;
    font-size: 14.5px;
  }

  .kcsr-donation-preset--other {
    grid-column: 1 / -1 !important;
    font-size: 13.5px;
  }

  .kcsr-amount-field {
    max-width: none;
  }

  .kcsr-dedication-field {
    margin-top: 24px;
    padding-top: 22px;
  }

  .kcsr-partner__closing {
    margin-top: 20px !important;
  }

  .kcsr-payment__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .kcsr-no-donation {
    text-align: left;
  }

  .kcsr-actions {
    flex-direction: column;
  }

  .kcsr-actions .kcsr-button {
    width: 100%;
  }

  .kcsr-actions .kcsr-button--primary {
    order: 2;
  }

  .kcsr-actions .kcsr-button--secondary {
    order: 1;
  }

  .kcsr-confirmation {
    padding: 52px 22px;
  }

  .kcsr-confirmation h3 {
    font-size: 32px;
  }

  .kcsr-field input,
  .kcsr-field textarea {
    font-size: 16px;
  }
}


@media (max-width: 420px) {
  .kcsr-container {
    width: min(100% - 32px, var(--kcsr-content-width));
  }

  .kcsr-hero {
    min-height: 530px;
    background-position: 68% center;
  }

  .kcsr-hero__inner {
    min-height: 530px;
    padding-block: 88px 44px;
  }

  .kcsr-hero h1 {
    font-size: 38px;
  }

  .kcsr-progress {
    padding: 17px 16px 15px;
  }

  .kcsr-progress__mobile-label {
    font-size: 17px;
  }

  .kcsr-step {
    padding: 24px 16px;
  }

  .kcsr-date-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kcsr-app *,
  .kcsr-app *::before,
  .kcsr-app *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


.kcsr-confirmation__icon--processing {
  background: var(--kcsr-blue-soft);
  color: var(--kcsr-blue-dark);
  font-size: 26px;
  letter-spacing: 0.12em;
}

.kcsr-payment-verification[hidden] {
  display: none !important;
}


.kcsr-confirmation__actions {
  display: flex;
  justify-content: center;
  margin: 26px 0 8px;
}

.kcsr-confirmation__actions .kcsr-button {
  min-width: 230px;
}


.kcsr-intro > .kcsr-eyebrow {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}


/* Continue the RSVP page's light-blue background seamlessly into the site newsletter strip. */
body.kcsr-page-active .kcsr-newsletter-background-match {
  position: relative;
  margin-top: 0 !important;
  border-top: 0 !important;
  background-color: #f4f9fc !important;
}

body.kcsr-page-active .kcsr-newsletter-gap-match {
  margin: 0 !important;
  border: 0 !important;
  background-color: #f4f9fc !important;
}

@media (max-width: 720px) {
  .kcsr-intro__content {
    max-width: 100%;
    font-size: 16.5px;
    line-height: 1.68;
  }

  .kcsr-intro__content p {
    margin-bottom: 16px;
  }

  .kcsr-confirmation__actions {
    width: 100%;
  }

  .kcsr-confirmation__actions .kcsr-button {
    width: 100%;
    min-width: 0;
    max-width: 340px;
  }

}
