:root {
    color-scheme: light;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #000000;
    background: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
.button {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    --header-height: 64px;
    z-index: 1102;
}

.site-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo {
    width: 40px;
    height: 40px;
    background: none;
    color: #ffffff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 700;
    overflow: hidden;
}

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.custom-logo-link {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.site-title-block {
    display: grid;
    gap: 0.04rem;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.20;
    color: #111111;
}

.site-tagline {
    color: #7a2330;
    font-size: 0.9rem;
    line-height: 1.2;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.header-search-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: #7a2330;
    cursor: pointer;
}

.header-search-toggle svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.header-search-toggle:hover,
.header-search-toggle:focus-visible {
    color: rgba(122, 35, 48, 0.6);
}

.header-search-toggle--mobile {
    display: none;
}

.header-search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 0 1rem;
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.header-search-panel.is-open {
    padding-top: 1rem;
    padding-bottom: 1rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 220px) auto;
    gap: 0.75rem;
    max-width: 1180px;
    margin: 0 auto;
}

.header-search-form input,
.header-search-form select {
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #ffffff;
    color: #111111;
    font: inherit;
}

.header-search-form input:focus,
.header-search-form select:focus {
    border-color: #7a2330;
    outline: 2px solid rgba(122, 35, 48, 0.15);
}

.header-search-submit {
    min-height: 44px;
    padding: 0.65rem 1.25rem;
    border: 0;
    border-radius: 4px;
    background: #7a2330;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.header-search-submit:hover,
.header-search-submit:focus-visible {
    background: #5f1b26;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: #111111;
    border: 0;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
}

.menuToggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menuToggle__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.menuToggle__line:nth-child(1) {
  top: 10px;
  width: 16px;
}

.menuToggle__line:nth-child(2) {
  top: 20px;
  width: 22px;
}

.menuToggle__line:nth-child(3) {
  top: 30px;
  width: 16px;
}

.menuToggle.isOpen .menuToggle__line {
  transform: rotate(90deg);
  top: auto;
  bottom: 16px;
}

.menuToggle.isOpen .menuToggle__line:nth-child(1) {
  left: 4px;
  width: 16px;
}

.menuToggle.isOpen .menuToggle__line:nth-child(2) {
  left: 12px;
  width: 22px;
  bottom: 18px;
}

.menuToggle.isOpen .menuToggle__line:nth-child(3) {
  left: 26px;
  width: 16px;
}

.menuToggle.isOpen .menuToggle__line::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%) rotate(-100deg);
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-list {
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-list a,
.menu-link {
    color: #000000;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.menu-link--dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
}

.menu-link--dropdown-toggle:hover > span,
.menu-link--dropdown-toggle:focus-visible > span {
    text-decoration: underline;
}

.menu-link--dropdown-toggle::after {
    content: '▾';
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.2s ease;
    color: #7a2330;
}

.menu-item--has-dropdown.dropdown-open > .menu-link--dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 0.85rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 0;
    color: #111111;
    font-weight: 500;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: #f7f2ec;
    outline: none;
}

.dropdown-menu .menu-link--dropdown-toggle {
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 0;
    color: #111111;
    font-weight: 500;
    text-align: left;
}

.dropdown-menu .menu-link--dropdown-toggle:hover,
.dropdown-menu .menu-link--dropdown-toggle:focus-visible {
    background: #f7f2ec;
    outline: none;
}

.dropdown-menu .menu-link--dropdown-toggle:hover > span,
.dropdown-menu .menu-link--dropdown-toggle:focus-visible > span {
    text-decoration: none;
}

.dropdown-menu__nested {
    position: relative;
}

.dropdown-submenu {
    position: static;
    min-width: 160px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.dropdown-submenu a {
    padding-left: 1.6rem;
}

.menu-item--has-dropdown.dropdown-open > .dropdown-menu {
    display: block;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 1.3rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.button--primary {
    background: #fb9900;
    color: #000000;
}

.notice {
    padding: 1rem 1.25rem;
    border-radius: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.notice--error {
    background: #fbe9e6;
    color: #8a1d15;
    border-color: #f5c2be;
}

.notice--success {
    background: #e6f7ed;
    color: #234d20;
    border-color: #b0d9b1;
}

.notice p {
    margin: 0.5rem 0 0;
}

.verification-timer {
    font-weight: 700;
}

.auth-page {
    min-height: calc(100vh - 140px);
    display: grid;
    place-items: center;
    padding: 3.5rem 1rem;
    background: #f7f2ec;
}

.auth-frame {
    position: relative;
    overflow: hidden;
    width: min(100%, 520px);
    padding: 2.25rem;
    border: 1px solid #ded8d1;
    border-top: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(31, 25, 26, 0.1);
}

.auth-frame::before,
.auth-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    pointer-events: none;
}

.auth-frame::before {
    width: 100%;
    background: #7a2330;
}

.auth-frame::after {
    width: 42%;
    background: linear-gradient(90deg, rgba(251, 153, 0, 0), #fb9900 35%, #ffcf72 65%, rgba(251, 153, 0, 0));
    opacity: 0;
    transform: translateX(-115%);
}

.auth-frame.is-submitting::after {
    opacity: 1;
    animation: auth-submit-progress 2.05s ease-in-out infinite;
}

.auth-frame.is-submitting .button[type="submit"] {
    background: #ffad1f;
    cursor: wait;
}

@keyframes auth-submit-progress {
    0% {
        transform: translateX(-115%);
    }

    100% {
        transform: translateX(260%);
    }
}

.auth-frame--wide {
    width: min(100%, 620px);
}

.auth-brand {
    display: grid;
    justify-items: center;
    margin-bottom: 1.65rem;
    color: #7a2330;
}

.auth-brand__logo {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #7a2330;
    font-size: 1rem;
    font-weight: 800;
}

.auth-brand__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-heading {
    margin-bottom: 1.75rem;
    text-align: center;
}

.auth-heading h1 {
    margin: 0;
    color: #1c1c1c;
    font-size: 2rem;
    line-height: 1.2;
}

.auth-heading p {
    margin: 0.65rem auto 0;
    max-width: 40ch;
    color: #66615d;
}

.auth-form {
    display: grid;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

.auth-form label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
    color: #111111;
}

.hero-section .auth-form > label {
    color: #ffffff;
}

.auth-page .auth-form > label,
.auth-page .radio-question legend,
.auth-page .auth-form .radio-options label {
    color: #252525;
}

.auth-form input {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    font-size: 1rem;
}

.auth-form--register {
    width: 100%;
    max-width: 420px;
}

.password-requirements {
    margin: -0.35rem 0 0;
    color: #ffffff;
    font-size: 0.875rem;
}

.auth-page .password-requirements {
    color: #66615d;
}

.registration-section {
    display: grid;
    gap: 1.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-page .registration-section {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top-color: #e5dfd9;
}

.registration-section h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.auth-page .registration-section h2 {
    color: #7a2330;
}

.radio-question {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.radio-question legend {
    padding: 0;
    font-weight: 600;
    color: #ffffff;
}

.radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.auth-form .radio-options label {
    display: inline-flex;
    grid-template-columns: none;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    cursor: pointer;
}

.auth-form .radio-options input {
    width: 1.1rem;
    height: 1.1rem;
    margin: 0;
    padding: 0;
    accent-color: #fb9900;
}

.auth-consent {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 0.65rem !important;
    color: #2f3430;
    font-weight: 650;
}

.auth-consent-divider {
    height: 1px;
    background: #e5dfd9;
}

.auth-consent input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    accent-color: #7a2330;
}

.auth-consent a {
    color: #7a2330;
    font-weight: 800;
}

.auth-submit {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.password-field__wrap {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    min-width: 2.75rem;
    padding: 0.25rem 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #7a2330;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    background: rgba(122, 35, 48, 0.12);
    outline: none;
}

.auth-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.auth-actions--center {
    justify-content: center;
    padding-top: 1.25rem;
}

.auth-divider {
    width: 100%;
    margin: 1.25rem 0 0.5rem;
    border: 0;
    border-top: 1px solid #e3ddd7;
}

.auth-actions a {
    color: #7a2330;
    text-decoration: none;
    font-weight: 700;
}

.auth-footer {
    margin: 0;
    text-align: center;
    color: #444444;
    line-height: 1.9;
}

.auth-footer a {
    color: #7a2330;
    font-weight: 700;
}

.auth-footer a:hover,
.auth-footer a:focus-visible {
    text-decoration: underline;
}

.auth-register-link {
    color: #7a2330;
    font-weight: 700;
}

.auth-register-link:hover,
.auth-register-link:focus-visible {
    text-decoration: underline;
}

.auth-forgot-link:hover,
.auth-forgot-link:focus-visible {
    text-decoration: underline;
}

.profile-menu-wrapper {
    position: relative;
}

.profile-menu-wrapper--mobile {
    display: none;
}

.mobile-menu-home {
    display: none;
}

.menuToggle__avatar,
.mobile-menu-user,
.mobile-menu-settings,
.mobile-menu-logout {
    display: none;
}

.button--profile {
    background: transparent;
    color: #ffffff;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid #7a2330;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.profile-icon {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.profile-icon img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.button--profile:hover,
.button--profile:focus-visible {
    border-color: rgba(122, 35, 48, 0.45);
}

.logout-confirm-modal[hidden] {
    display: none;
}

.logout-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.logout-confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.42);
}

.logout-confirm-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 1.75rem;
    border-top: 5px solid #7a2330;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22);
}

.logout-confirm-modal__dialog h2 {
    margin: 0;
    color: #7a2330;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.logout-confirm-modal__dialog p {
    margin: 0.75rem 0 0;
    color: #4b504c;
}

.logout-confirm-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.logout-confirm-modal .button--secondary {
    border: 1px solid #7a2330;
    background: #ffffff;
    color: #7a2330;
}

.logout-confirm-modal .button--secondary:hover,
.logout-confirm-modal .button--secondary:focus-visible {
    background: #f1e8ea;
}

.button--logout {
    background: #fb9900;
    color: #111111;
    font-weight: 700;
}

.button--logout:hover,
.button--logout:focus-visible {
    background: #ffad1f;
}

.profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    min-width: 200px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 0.85rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    display: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1105;
    overflow: hidden;
}

.profile-dropdown.is-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.profile-dropdown a {
    display: block;
    padding: 0.85rem 1rem;
    color: #111111;
    text-decoration: none;
    font-weight: 500;
}

.profile-dropdown a:hover {
    background: #f7f2ec;
}

.profile-dropdown__user {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 1rem;
}

.profile-dropdown__avatar img,
.profile-dropdown__avatar > img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: block;
}

.profile-dropdown__avatar {
    position: relative;
    flex: 0 0 48px;
    overflow: hidden;
    border-radius: 50%;
}

.avatar-edit--dropdown {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2px 0 3px;
    background: rgba(17, 17, 17, 0.42);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.avatar-edit--dropdown:hover {
    text-decoration: underline;
}

.avatar-upload-form {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.profile-dropdown__meta {
    display: grid;
    gap: 0.15rem;
}

.profile-name {
    font-weight: 700;
}

.profile-email {
    font-size: 0.85rem;
    color: #666666;
}

.profile-dropdown hr {
    margin: 0;
    border: 0;
    border-top: 1px solid #eee;
}

.button--primary:hover,
.button--secondary:hover {
    background: #ffad1f;
}

.button--secondary {
    background: #fb9900;
    color: #000000;
}

.auth-split {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-height: 40px;
    padding: 0;
    border: 1px solid rgba(122, 35, 48, 0.28);
    border-radius: 4px;
    background: transparent;
    color: #7a2330;
    font-weight: 750;
    line-height: 1;
}

.auth-split__link {
    display: inline-flex;
    align-items: center;
    padding: 0 0.85rem;
    min-height: 38px;
    border-radius: 3px;
    color: inherit;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.auth-split__link:hover,
.auth-split__link:focus-visible {
    background: rgba(122, 35, 48, 0.1);
    color: #4e1520;
    outline: none;
    text-decoration: none;
    transform: translateY(-1px);
}

.auth-split__divider {
    color: rgba(122, 35, 48, 0.45);
    font-weight: 700;
}

.hero-section {
    background: #7a2330;
    color: #ffffff;
    padding: 4rem 1.5rem;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.eyebrow {
    display: inline-block;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    color: #ffad1f;
}

.eyebrow--shimmer {
    font-weight: 800;
    background: linear-gradient(
        90deg,
        #ffad1f 0%,
        #ffad1f 34%,
        #fff7d7 50%,
        #ffad1f 66%,
        #ffad1f 100%
    );
    background-size: 320% 100%;
    background-position: 160% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ggn-text-shimmer 3.4s linear infinite;
}

@keyframes ggn-text-shimmer {
    from {
        background-position: 160% 0;
    }

    to {
        background-position: -160% 0;
    }
}

.hero-section h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    margin: 0;
    line-height: 1.05;
    max-width: 11ch;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.section {
    padding: 4rem 1.5rem;
}

.section--white {
    background: #ffffff;
}

.section--pale {
    background: #f7f2ec;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section h2 {
    margin: 0 0 1.5rem;
    font-size: 2.1rem;
    color: #000000;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.info-card,
.feature-card {
    background: #f7f2ec;
    padding: 2rem;
    border-radius: 1.2rem;
    display: grid;
    gap: 1rem;
}

.volunteer-page .info-card {
    border: 1px solid #e2ddd4;
    border-top: 4px solid #7a2330;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(36, 31, 25, 0.07);
}

.home-page .info-card,
.home-page .feature-card {
    border: 1px solid #e2ddd4;
    border-left: 4px solid #7a2330;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(36, 31, 25, 0.07);
}

.home-page .feature-card .button {
    justify-self: center;
    width: auto;
}

.home-page #section-invite .button {
    display: flex;
    width: max-content;
    margin-top: 1rem;
    margin-right: auto;
    margin-left: auto;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    color: #7a2330;
    display: grid;
    place-items: center;
    font-size: 1.75rem;
}

.info-card h3,
.feature-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.info-card p,
.feature-card p,
.section-copy {
    margin: 0;
    color: #333333;
}

.link-inline {
    color: #7a2330;
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.check-list li::before {
    content: '•';
    color: #7a2330;
    display: inline-block;
    width: 1.2rem;
}

.about-page {
    background: #ffffff;
}

.about-hero {
    background: #7a2330;
    color: #ffffff;
    padding: 4rem 1.5rem;
}

.about-hero__inner,
.about-section__inner {
    margin: 0 auto;
}

.about-section__inner {
    width: min(1180px, 100%);
}

.about-hero__inner {
    display: grid;
    max-width: 980px;
    gap: 1.5rem;
}

.about-hero h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
}

.about-hero p:not(.eyebrow) {
    margin: 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-hero__actions,
.about-join__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.about-hero__actions {
    justify-content: center;
    width: 100%;
}

.about-section {
    padding: 4.25rem 1.5rem;
}

.about-section--white {
    background: #ffffff;
}

.about-section--pale {
    background: #f7f2ec;
}

.about-section__inner {
    display: grid;
    gap: 1.2rem;
}

.about-kicker {
    margin: 0;
    color: #7a2330 !important;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-section h2 {
    margin: 0 0 1.5rem;
    color: #000000;
    font-size: 2.1rem;
}

.about-section h3 {
    margin: 0;
    color: #252a25;
    font-size: 1.18rem;
}

.about-section p {
    margin: 0;
    color: #343a35;
    line-height: 1.7;
}

.about-lead {
    max-width: 880px;
    color: #252a25 !important;
    font-size: 1.16rem;
    font-weight: 750;
}

.about-mission,
.about-vision,
.about-join {
    max-width: 920px;
}

.about-split,
.about-profile {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: start;
}

.about-split > div:first-child,
.about-profile > div:first-child {
    display: grid;
    gap: 1rem;
}

.about-prayer,
.about-card,
.about-profile-list,
.about-scripture-grid blockquote {
    border: 1px solid #e2ddd4;
    border-top: 4px solid #7a2330;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(36, 31, 25, 0.07);
}

.about-prayer {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.about-prayer ul,
.about-profile-list ul {
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-prayer li,
.about-profile-list li {
    position: relative;
    padding-left: 1.2rem;
    color: #343a35;
    line-height: 1.5;
}

.about-prayer li::before,
.about-profile-list li::before {
    position: absolute;
    left: 0;
    color: #7a2330;
    content: '•';
    font-weight: 900;
}

.about-audience-grid,
.about-scripture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.about-scripture-carousel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.about-scripture-carousel .about-scripture-grid {
    margin-top: 0;
}

.about-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #f7f2ec;
}

.about-profile-list {
    display: grid;
    gap: 0.9rem;
    padding: 1.5rem;
}

.about-scripture-grid blockquote {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 1.5rem;
    border-top: 1px solid #e2ddd4;
    border-left: 4px solid #7a2330;
    background: #fbfaf7;
}

.about-scripture-grid blockquote[hidden] {
    display: none;
}

.about-scripture-grid blockquote p {
    color: #252a25;
    font-size: 1.05rem;
    font-weight: 700;
}

.about-scripture-grid blockquote p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.about-scripture-grid blockquote {
    position: relative;
}

.about-scripture-grid blockquote:hover::after,
.about-scripture-grid blockquote:focus-within::after {
    position: absolute;
    z-index: 5;
    left: 0;
    top: calc(100% + 10px);
    width: min(520px, 80vw);
    padding: 10px 12px;
    border-radius: 6px;
    background: #252a25;
    color: #ffffff;
    content: attr(data-full-text);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(36, 31, 25, 0.22);
}

.about-scripture-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #d8d2c8;
    border-radius: 50%;
    background: #7a2330;
    color: #ffffff;
    cursor: pointer;
    font-size: 2.35rem;
    font-weight: 850;
    line-height: 1;
    padding: 0 0 3px 2px;
}

.about-scripture-next:hover,
.about-scripture-next:focus-visible {
    background: #4e1520;
    outline: none;
}

.about-scripture-grid cite {
    justify-self: end;
    color: #7a2330;
    font-style: normal;
    font-weight: 850;
    text-align: right;
}

.about-join {
    justify-items: start;
}

.about-join__words {
    color: #7a2330 !important;
    font-size: 1.15rem;
    font-weight: 850;
}

.steps-page {
    background: #ffffff;
}

.steps-card {
    max-width: 920px;
    padding: 2rem;
    border: 1px solid #e2ddd4;
    border-left: 4px solid #7a2330;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(36, 31, 25, 0.07);
}

.steps-card h2 {
    margin-bottom: 0.25rem;
    font-size: 2.1rem;
    font-weight: 850;
}

.steps-prayer {
    color: #7a2330 !important;
    font-size: 1.12rem;
    font-weight: 750;
}

.steps-actions {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    margin-top: 0.75rem;
}

.steps-actions .button {
    width: max-content;
}

.steps-response-card {
    gap: 1rem;
    border-left: 1px solid #e2ddd4;
    border-top: 4px solid #7a2330;
}

.steps-response-form {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

.steps-response-form label {
    display: grid;
    gap: 0.45rem;
    color: #252a25;
    font-weight: 650;
}

.steps-response-form input,
.steps-response-form select {
    width: 100%;
    border: 1px solid #d8d2c8;
    border-radius: 6px;
    padding: 0.85rem 0.9rem;
    color: #252a25;
    font: inherit;
}

.steps-response-form input:focus,
.steps-response-form select:focus {
    border-color: #7a2330;
    box-shadow: 0 0 0 3px rgba(122, 35, 48, 0.14);
    outline: none;
}

.steps-required {
    color: #b42318;
}

.steps-checkbox {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
}

.steps-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.steps-response-form .button {
    justify-self: center;
    width: max-content;
}

.contact-page {
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-panel {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid #e2ddd4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(36, 31, 25, 0.07);
}

.contact-panel--support {
    background: #f7f2ec;
}

.contact-panel h2,
.contact-panel p,
.contact-confirmation h2,
.contact-confirmation p {
    margin: 0;
}

.contact-panel h2,
.contact-confirmation h2 {
    color: #000000;
    font-size: 2.1rem;
}

.contact-confirmation h2 {
    font-weight: 850;
}

.contact-panel p,
.contact-confirmation p {
    color: #343a35;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: #252a25;
    font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d8d2c8;
    border-radius: 6px;
    padding: 0.85rem 0.9rem;
    color: #252a25;
    font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #7a2330;
    box-shadow: 0 0 0 3px rgba(122, 35, 48, 0.14);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-topic-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-topic-list li {
    display: grid;
    gap: 0.15rem;
    position: relative;
    padding-left: 1.2rem;
    color: #343a35;
    line-height: 1.5;
}

.contact-topic-list li::before {
    position: absolute;
    left: 0;
    color: #7a2330;
    content: '•';
    font-weight: 900;
}

.contact-topic-list strong {
    color: #252a25;
    font-weight: 850;
}

.contact-topic-list span {
    color: #5f6862;
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-confirmation {
    display: grid;
    max-width: 760px;
    margin: 0 auto;
    gap: 1rem;
}

.contact-confirmation[hidden] {
    display: none;
}

.contact-confirmation blockquote {
    display: grid;
    gap: 0.35rem;
    margin: 0;
}

.contact-confirmation blockquote p {
    color: #252a25;
    font-weight: 700;
}

.contact-confirmation cite {
    color: #7a2330;
    font-style: normal;
    font-weight: 850;
}

.contact-confirmation blockquote p cite {
    color: #7a2330;
}

.contact-confirmation .button {
    justify-self: center;
    width: auto;
}

.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 1.5rem 1.5rem 2rem;
}

.site-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 0.5rem;
}

.site-footer__links a {
    color: #ffffff;
    font-size: 0.9rem;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .site-header__inner {
        flex-wrap: wrap;
    }

    .site-menu {
        gap: 0.75rem;
    }

    .menu-list {
        flex-wrap: wrap;
    }

    .card-grid--three,
    .card-grid--two-by-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .auth-page {
        min-height: calc(100vh - 110px);
        padding: 1.5rem 0.85rem 2.5rem;
        align-items: start;
    }

    .auth-frame {
        padding: 1.75rem 1.25rem;
    }

    .auth-brand__logo {
        width: 76px;
        height: 76px;
    }

    .auth-heading h1 {
        font-size: 1.65rem;
    }

    .site-header__inner {
        flex-wrap: wrap;
        align-items: center;
        position: relative;
    }

    .site-branding {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    .site-title-block {
        min-width: 0;
    }

    .site-title {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-tagline {
        font-size: 0.72rem;
    }

    .site-navigation {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        max-width: 100%;
        gap: 0.25rem;
    }

    .header-search-toggle--desktop {
        display: none;
    }

    .header-search-toggle--mobile {
        display: block;
        flex: 0 0 40px;
    }

    .header-search-form {
        grid-template-columns: minmax(0, 1fr) minmax(115px, 38%);
    }

    .header-search-submit {
        grid-column: 1 / -1;
        justify-self: center;
        min-width: 130px;
    }

    .site-menu .profile-menu-wrapper--desktop {
        display: none;
    }

    .mobile-menu-home {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: 0.85rem auto 0;
        padding-top: 0.85rem;
        color: #7a2330;
        font-weight: 800;
    }

    .mobile-menu-home:hover,
    .mobile-menu-home:focus-visible {
        text-decoration: underline;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        margin-left: 0;
        z-index: 1103;
    }

    .menuToggle__avatar {
        position: absolute;
        right: 1px;
        bottom: 1px;
        display: block;
        width: 16px;
        height: 16px;
        overflow: hidden;
        border: 1.6px solid #7a2330;
        border-radius: 50%;
        background: #ffffff;
        pointer-events: none;
    }

    .menuToggle__avatar img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

    /* Slide-in mobile menu (from right -> left) */
    .site-menu {
        display: flex;
        position: fixed;
        top: var(--header-height);
        right: 0;
        height: calc(100vh - var(--header-height));
        width: 80%;
        max-width: 90%;
        flex-direction: column;
        gap: 0;
        margin: 0;
        background: #ffffff;
        padding: 1.5rem 1.25rem;
        border-radius: 0 0 0 0;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-menu.is-open {
        transform: translateX(0);
    }

    .site-menu .auth-split {
        align-self: center;
        width: fit-content;
        min-height: 40px;
        border: 1px solid rgba(122, 35, 48, 0.28);
        margin-top: 1rem;
    }

    .site-menu .auth-split__link {
        min-height: 38px;
        padding: 0 0.85rem;
    }

    .menu-list {
        flex-direction: column;
        gap: 0;
        margin: 0;
    }

    .site-menu .menu-list > .menu-item:nth-child(3) {
        padding-bottom: 1rem;
        border-bottom: 1px solid #eadfe2;
        margin-bottom: 0.15rem;
    }

    .menu-list .menu-item {
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: 0.85rem;
        padding-top: 0.85rem;
    }

    .menu-list .menu-item:first-child {
        padding-top: 0;
    }

    .menu-list .menu-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mobile-menu-user,
    .mobile-menu-settings,
    .mobile-menu-logout {
        display: block;
    }

    .mobile-menu-user__identity {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .mobile-menu-user .avatar-edit--dropdown {
        top: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 4px;
        background: rgba(17, 17, 17, 0.18);
        color: #ffffff;
    }

    .mobile-menu-logout .menu-link {
        display: block;
        width: 100%;
        color: #7a2330;
        font-weight: 700;
    }

    .mobile-menu-logout .menu-link:hover,
    .mobile-menu-logout .menu-link:focus-visible {
        text-decoration: underline;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 0;
        padding: 0;
        display: none;
    }

    .menu-item--has-dropdown.dropdown-open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding-left: 0.75rem;
        display: block;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .dropdown-menu li {
        border-bottom: 1px solid #e6e6e6;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        justify-items: center;
    }

    .hero-section h1 {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .button {
        width: min(100%, 320px);
        text-align: center;
    }

    .about-hero {
        padding: 3.2rem 1rem;
    }

    .about-hero__inner {
        justify-items: center;
        text-align: center;
    }

    .about-hero h1 {
        max-width: 100%;
        text-align: center;
    }

    .about-hero p:not(.eyebrow) {
        max-width: 100%;
        font-size: 1rem;
    }

    .about-hero__actions,
    .about-join__actions {
        justify-content: center;
        width: 100%;
    }

    .about-hero__actions .button,
    .about-join__actions .button {
        width: min(100%, 320px);
        text-align: center;
    }

    .about-section {
        padding: 3rem 1rem;
    }

    .about-split,
    .about-profile,
    .about-audience-grid,
    .about-scripture-grid {
        grid-template-columns: 1fr;
    }

    .about-scripture-carousel {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .about-card,
    .about-prayer,
    .about-profile-list,
    .about-scripture-grid blockquote {
        padding: 1.25rem;
    }

    .about-join {
        justify-items: center;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 1.25rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}
