html { scroll-behavior: smooth; }
    body { -webkit-font-smoothing: antialiased; }

    .eyebrow {
      font-family: 'Libre Franklin', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 700; letter-spacing: 0.01em; border-radius: 999px; transition: transform .25s cubic-bezier(.16,1,.3,1), background-color .2s ease, border-color .2s ease, color .2s ease; }
    .btn:hover { transform: translateY(-2px); }
    .btn-amber { background: #d98324; color: #211c15; box-shadow: 0 10px 24px -10px rgba(217,131,36,0.7); }
    .btn-amber:hover { background: #e7a650; }
    .btn-ink { background: #211c15; color: #f7f2e7; }
    .btn-ink:hover { background: #3a342a; }
    .btn-outline-ink { border: 1.5px solid rgba(33,28,21,0.28); color: #211c15; }
    .btn-outline-ink:hover { border-color: #211c15; background: rgba(33,28,21,0.04); }
    .btn-outline-cream { border: 1.5px solid rgba(247,242,231,0.4); color: #f7f2e7; }
    .btn-outline-cream:hover { border-color: #f7f2e7; background: rgba(247,242,231,0.08); }

    /* Header Donate: .btn sets display and beats Tailwind .hidden — gate by hamburger breakpoint */
    #site-header .header-cta { display: none; }
    @media (min-width: 1280px) {
      #site-header .header-cta { display: inline-flex; }
    }

    .focus-ring:focus-visible { outline: 2.5px solid #d98324; outline-offset: 3px; }

    .hero-img { filter: saturate(0.86) contrast(1.05) brightness(0.9); }
    .hero-grade {
      background:
        linear-gradient(180deg, rgba(33,28,21,0.62) 0%, rgba(33,28,21,0.3) 30%, rgba(33,28,21,0.5) 62%, rgba(33,28,21,0.96) 100%),
        linear-gradient(100deg, rgba(33,28,21,0.72) 0%, rgba(33,28,21,0.34) 42%, transparent 70%),
        linear-gradient(115deg, rgba(217,131,36,0.26) 0%, rgba(53,80,90,0.12) 52%, transparent 100%);
    }
    .interior-hero-grade {
      background:
        linear-gradient(180deg, rgba(33,28,21,0.72) 0%, rgba(33,28,21,0.45) 100%),
        linear-gradient(115deg, rgba(217,131,36,0.22) 0%, transparent 60%);
    }
    .grain { background-image: radial-gradient(rgba(33,28,21,0.5) 0.5px, transparent 0.6px); background-size: 3px 3px; opacity: 0.06; }

    /* Positioning comes from utilities (relative / absolute). Do not set
       position here — it overrides Tailwind .absolute when site.css loads after. */
    .duotone { overflow: hidden; }
    .duotone:where(:not(.absolute)) { position: relative; }
    .duotone > img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .duotone-content { position: relative; z-index: 3; }

    .marquee-track {
      display: flex;
      width: max-content;
      white-space: nowrap;
      will-change: transform;
      /* Duration scales with ~6 item cycles per half so px/s matches the old 34s track. */
      animation: marquee 204s linear infinite;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .hero-enter { opacity: 0; animation: fadeUp .85s cubic-bezier(.16,1,.3,1) forwards; }
    .he-1 { animation-delay: .05s; } .he-2 { animation-delay: .16s; } .he-3 { animation-delay: .27s; }
    .he-4 { animation-delay: .38s; } .he-5 { animation-delay: .49s; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

    #site-header { transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease; }
    #site-header.scrolled,
    #site-header.header-light { background: rgba(247,242,231,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(33,28,21,0.1); }
    /* !important beats Tailwind CDN utilities still present on home after scroll */
    #site-header.scrolled .nav-link,
    #site-header.header-light .nav-link { color: #6b6255 !important; }
    #site-header.scrolled .nav-link:hover,
    #site-header.header-light .nav-link:hover { color: #211c15 !important; }
    #site-header.scrolled .nav-link.active,
    #site-header.header-light .nav-link.active { color: #211c15 !important; }
    #site-header.scrolled .wordmark, #site-header.scrolled .wordmark b, #site-header.scrolled .wordmark span,
    #site-header.header-light .wordmark, #site-header.header-light .wordmark b, #site-header.header-light .wordmark span { color: #211c15 !important; }
    #site-header.scrolled .menu-btn,
    #site-header.header-light .menu-btn { color: #211c15 !important; }
    #site-header.scrolled .menu-btn:hover,
    #site-header.header-light .menu-btn:hover { background: rgba(33,28,21,0.06); }

    /* Header chrome sits above the full-viewport mobile takeover */
    #site-header .header-bar { position: relative; z-index: 60; }

    /* Full-viewport mobile nav takeover (< xl) */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 40;
      display: flex;
      flex-direction: column;
      background: #211c15;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .35s cubic-bezier(.16,1,.3,1), visibility .35s cubic-bezier(.16,1,.3,1);
    }
    .mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    @media (min-width: 1280px) {
      .mobile-menu {
        display: none !important;
      }
    }
    .mobile-menu-atmosphere {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .mobile-menu-grade {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 90% 55% at 12% 18%, rgba(217,131,36,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 88% 82%, rgba(53,80,90,0.28) 0%, transparent 50%),
        linear-gradient(165deg, #2a241c 0%, #211c15 48%, #1a1611 100%);
    }
    .mobile-menu-grain {
      position: absolute;
      inset: 0;
      opacity: 0.07;
    }
    .mobile-menu-panel {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: calc(76px + 1.75rem) 1.25rem 2rem;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    @media (min-width: 768px) {
      .mobile-menu-panel { padding-left: 2rem; padding-right: 2rem; }
    }
    @media (min-width: 1024px) {
      .mobile-menu-panel { padding-left: 3rem; padding-right: 3rem; }
    }
    .mobile-menu-eyebrow {
      margin-bottom: 1.25rem;
      color: rgba(231,166,80,0.9);
      opacity: 0;
      transform: translateY(12px);
    }
    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      flex: 1;
    }
    .mobile-nav-link {
      display: flex;
      align-items: center;
      min-height: 52px;
      padding: 0.55rem 0;
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600;
      font-size: clamp(1.85rem, 7.5vw, 2.75rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: rgba(247,242,231,0.55);
      border-radius: 0.25rem;
      text-decoration: none;
      transition: color .2s ease;
      opacity: 0;
      transform: translateY(18px);
    }
    .mobile-nav-link:hover,
    .mobile-nav-link:focus-visible {
      color: #f7f2e7;
    }
    .mobile-nav-link.is-active {
      color: #f7f2e7;
    }
    .mobile-nav-link.is-active::after {
      content: '';
      display: inline-block;
      width: 0.45rem;
      height: 0.45rem;
      margin-left: 0.75rem;
      border-radius: 999px;
      background: #d98324;
      flex-shrink: 0;
    }
    .mobile-menu-cta {
      margin-top: 2rem;
      padding-top: 1.75rem;
      border-top: 1px solid rgba(247,242,231,0.12);
      opacity: 0;
      transform: translateY(14px);
    }
    .mobile-menu-donate {
      width: 100%;
      max-width: 20rem;
      min-height: 52px;
      padding: 0.9rem 1.75rem;
      font-size: 15px;
    }
    .mobile-menu-meta {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-top: 1.75rem;
      font-size: 14px;
      opacity: 0;
      transform: translateY(10px);
    }
    .mobile-menu-email {
      color: rgba(247,242,231,0.55);
      transition: color .2s ease;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }
    .mobile-menu-email:hover,
    .mobile-menu-email:focus-visible {
      color: #f7f2e7;
    }
    .mobile-menu-domain {
      color: rgba(247,242,231,0.35);
      font-size: 11px;
    }
    .mobile-menu.is-open .mobile-menu-eyebrow,
    .mobile-menu.is-open .mobile-nav-link,
    .mobile-menu.is-open .mobile-menu-cta,
    .mobile-menu.is-open .mobile-menu-meta {
      animation: mobileMenuIn .5s cubic-bezier(.16,1,.3,1) forwards;
    }
    .mobile-menu.is-open .mobile-menu-eyebrow { animation-delay: .06s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(1) { animation-delay: .1s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(2) { animation-delay: .14s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(3) { animation-delay: .18s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(4) { animation-delay: .22s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(5) { animation-delay: .26s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(6) { animation-delay: .3s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(7) { animation-delay: .34s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(8) { animation-delay: .38s; }
    .mobile-menu.is-open .mobile-nav-link:nth-child(n+9) { animation-delay: .42s; }
    .mobile-menu.is-open .mobile-menu-cta { animation-delay: .46s; }
    .mobile-menu.is-open .mobile-menu-meta { animation-delay: .52s; }
    @keyframes mobileMenuIn {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Keep header chrome readable over ink takeover (incl. scrolled / header-light) */
    #site-header.menu-open {
      background: transparent !important;
      border-bottom-color: transparent !important;
      backdrop-filter: none;
      box-shadow: none;
    }
    #site-header.menu-open .wordmark,
    #site-header.menu-open .wordmark b,
    #site-header.menu-open .wordmark span,
    #site-header.menu-open .menu-btn {
      color: #f7f2e7 !important;
    }
    #site-header.menu-open .menu-btn:hover {
      background: rgba(247,242,231,0.1);
    }

    .underline-link { background-image: linear-gradient(#d98324,#d98324); background-size: 0% 2px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s cubic-bezier(.16,1,.3,1); }
    .underline-link:hover { background-size: 100% 2px; }

    /* Interior section eyebrow with accent rule (mirrors the homepage numbered eyebrows) */
    .eyebrow-rule { display: inline-flex; align-items: center; gap: 0.75rem; }
    .eyebrow-rule::before { content: ''; width: 2.25rem; height: 1px; background: currentColor; opacity: 0.55; }

    /* Lift-on-hover card interaction reused across grids */
    .lift-card { transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1), border-color .3s ease; }
    .lift-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -28px rgba(33,28,21,0.4); }

    /* Accent bar that grows on hover (top-of-card detail) */
    .accent-grow { transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.16,1,.3,1); }
    .group:hover .accent-grow { transform: scaleX(1); }

    /* Editorial body copy inside prose blocks */
    .rich-body :is(h3) { font-family: 'Fraunces', Georgia, serif; font-weight: 600; color: #211c15; font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
    .rich-body p { margin-bottom: 1rem; }
    .rich-body p:last-child { margin-bottom: 0; }
    .rich-body ul { display: grid; gap: 0.75rem; }
    .rich-body ul li { position: relative; padding-left: 1.65rem; line-height: 1.7; }
    .rich-body ul li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 0.5rem; height: 0.5rem; border-radius: 999px; background: #d98324; }
    .rich-body ol { display: grid; gap: 0.75rem; counter-reset: ri; }
    .rich-body ol li { position: relative; padding-left: 2.1rem; line-height: 1.7; counter-increment: ri; }
    .rich-body ol li::before { content: counter(ri); position: absolute; left: 0; top: 0.05em; width: 1.5rem; height: 1.5rem; border-radius: 999px; background: rgba(217,131,36,0.15); color: #b96a16; font-family: 'Libre Franklin', sans-serif; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
    .rich-body blockquote { border-left: 3px solid #d98324; padding-left: 1.5rem; margin: 1.75rem 0; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 1.35rem; line-height: 1.4; color: #211c15; }

    .accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.16,1,.3,1); }
    .accordion-panel.open { grid-template-rows: 1fr; }
    .accordion-panel > div { overflow: hidden; }
    /* Do not use Tailwind [&>…] arbitrary variants in block templates — wptexturize mangles &/" and breaks the HTML. */
    .accordion-answer > *:first-child { margin-top: 1.25rem; }
    [data-accordion-trigger][aria-expanded="true"] .acc-icon { transform: rotate(45deg); background: #211c15; color: #f7f2e7; border-color: #211c15; }

    .bio-modal-backdrop { opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
    .bio-modal-backdrop.open { opacity: 1; visibility: visible; }
    .bio-modal-panel { transform: translateY(16px) scale(.98); opacity: 0; transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s cubic-bezier(.16,1,.3,1); }
    .bio-modal-backdrop.open .bio-modal-panel { transform: translateY(0) scale(1); opacity: 1; }

    /* Committee bio grid: peek carousel below lg, 4-col grid at lg+ */
    .bio-carousel-wrap { position: relative; }
    .bio-carousel-track {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-padding-inline: 1.25rem;
      margin-inline: -1.25rem;
      padding-inline: 1.25rem;
      padding-bottom: 0.25rem;
      cursor: grab;
    }
    .bio-carousel-track.is-dragging {
      cursor: grabbing;
      scroll-snap-type: none;
      user-select: none;
    }
    .bio-carousel-track.is-dragging .bio-carousel-card { pointer-events: none; }
    .bio-carousel-track::-webkit-scrollbar { display: none; }
    .bio-carousel-track:focus-visible { outline: 2.5px solid #d98324; outline-offset: 4px; border-radius: 1rem; }
    .bio-carousel-card {
      flex: 0 0 auto;
      width: min(82vw, 340px);
      scroll-snap-align: start;
    }
    @media (min-width: 768px) {
      .bio-carousel-track { scroll-padding-inline: 2rem; margin-inline: -2rem; padding-inline: 2rem; }
    }
    @media (min-width: 1024px) {
      .bio-carousel-track {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow-x: visible;
        scroll-snap-type: none;
        margin-inline: 0;
        padding-inline: 0;
        padding-bottom: 0;
        cursor: default;
      }
      .bio-carousel-card {
        width: auto;
        scroll-snap-align: none;
      }
    }

    /* Hero meta strip: peek carousel below md, ledger grid at md+ */
    .meta-carousel-track {
      display: flex;
      gap: 0.75rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-padding-inline: 1.25rem;
      margin-inline: -1.25rem;
      padding-inline: 1.25rem;
      padding-bottom: 0.15rem;
    }
    .meta-carousel-track::-webkit-scrollbar { display: none; }
    .meta-carousel-card {
      flex: 0 0 auto;
      width: min(78vw, 280px);
      scroll-snap-align: start;
      box-sizing: border-box;
    }
    @media (min-width: 768px) {
      .meta-carousel-track {
        display: grid;
        gap: 0;
        overflow-x: visible;
        scroll-snap-type: none;
        margin-inline: 0;
        padding-inline: 0;
        padding-bottom: 0;
      }
      .meta-carousel-card {
        width: auto;
        scroll-snap-align: none;
      }
    }

    .peek-carousel-chrome--on-dark {
      margin-top: 0;
      padding-bottom: 1rem;
    }
    .peek-carousel-chrome--on-dark .peek-carousel-dot {
      background: rgba(247, 242, 231, 0.28);
    }
    .peek-carousel-chrome--on-dark .peek-carousel-dot.is-active {
      background: #e7a650;
    }
    .peek-carousel-chrome--on-dark .peek-carousel-count {
      color: rgba(247, 242, 231, 0.55);
    }

    /* Steps: peek carousel below md, connected grid at md+ */
    .steps-carousel-track {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-padding-inline: 1.25rem;
      margin-inline: -1.25rem;
      padding-inline: 1.25rem;
      padding-bottom: 1rem;
      background: transparent;
      border: 0;
      border-radius: 0;
    }
    .steps-carousel-track::-webkit-scrollbar { display: none; }
    .steps-carousel-card {
      flex: 0 0 auto;
      width: min(85vw, 320px);
      scroll-snap-align: start;
      border: 1px solid rgba(33, 28, 21, 0.1);
      border-radius: 1.5rem;
      box-sizing: border-box;
    }
    @media (min-width: 768px) {
      .steps-carousel-track {
        display: grid;
        gap: 1px;
        overflow: hidden;
        scroll-snap-type: none;
        margin-inline: 0;
        padding-inline: 0;
        padding-bottom: 0;
        background: rgba(33, 28, 21, 0.1);
        border: 1px solid rgba(33, 28, 21, 0.1);
        border-radius: 1.5rem;
      }
      .steps-carousel-card {
        width: auto;
        scroll-snap-align: none;
        border: 0;
        border-radius: 0;
      }
    }

    /* Shared peek-carousel progress chrome (mobile only) */
    .peek-carousel-chrome {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.875rem;
      margin-top: 0.25rem;
    }
    .peek-carousel-dots {
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }
    .peek-carousel-dot {
      display: block;
      width: 0.375rem;
      height: 0.375rem;
      border-radius: 999px;
      background: rgba(33, 28, 21, 0.18);
      transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
    }
    .peek-carousel-dot.is-active {
      width: 1.25rem;
      background: #d98324;
    }
    .peek-carousel-count {
      margin: 0;
      font-family: 'Libre Franklin', sans-serif;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(33, 28, 21, 0.45);
      font-variant-numeric: tabular-nums;
    }
    .peek-carousel-status {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    @media (min-width: 768px) {
      .peek-carousel-chrome { display: none; }
    }

    /* Card grid: peek carousel below md, Tailwind grid at md+ */
    .cards-carousel-track {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-padding-inline: 1.25rem;
      margin-inline: -1.25rem;
      padding-inline: 1.25rem;
      padding-top: 0.35rem;
      padding-bottom: 2rem;
    }
    .cards-carousel-track::-webkit-scrollbar { display: none; }
    .cards-carousel-card {
      flex: 0 0 auto;
      width: min(85vw, 320px);
      scroll-snap-align: start;
    }
    @media (min-width: 768px) {
      .cards-carousel-track {
        display: grid;
        overflow-x: visible;
        scroll-snap-type: none;
        margin-inline: 0;
        padding-inline: 0;
        padding-top: 0;
        padding-bottom: 0;
      }
      .cards-carousel-card {
        width: auto;
        scroll-snap-align: none;
      }
    }

    /* Timeline stat-row: peek carousel below md, grid at md+ */
    .timeline-carousel-track {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-padding-inline: 1.25rem;
      margin-inline: -1.25rem;
      padding-inline: 1.25rem;
      padding-top: 0.35rem;
      padding-bottom: 2rem;
      list-style: none;
    }
    .timeline-carousel-track::-webkit-scrollbar { display: none; }
    .timeline-carousel-card {
      flex: 0 0 auto;
      width: min(85vw, 320px);
      scroll-snap-align: start;
    }
    @media (min-width: 768px) {
      .timeline-carousel-track {
        display: grid;
        overflow-x: visible;
        scroll-snap-type: none;
        margin-inline: 0;
        padding-inline: 0;
        padding-top: 0;
        padding-bottom: 0;
      }
      .timeline-carousel-card {
        width: auto;
        scroll-snap-align: none;
      }
    }

    /* Gravity Forms — match contact card */
    .fc-gform-panel { max-width: 100%; }
    .fc-gform-panel .gform_wrapper,
    .fc-gform-panel .gform_body,
    .fc-gform-panel .gform_fields,
    .fc-gform-panel .gfield,
    .fc-gform-panel .ginput_container {
      max-width: 100%;
      min-width: 0;
    }
    .fc-gform-panel .gform_wrapper { margin: 0; }
    .fc-gform .gform_fields { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
    .fc-gform .gfield { margin: 0; }
    .fc-gform .gfield_label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #211c15;
      margin-bottom: 0.5rem;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .fc-gform .gfield_required { color: #d98324; }
    .fc-gform input[type="text"],
    .fc-gform input[type="email"],
    .fc-gform input[type="tel"],
    .fc-gform input[type="url"],
    .fc-gform input[type="number"],
    .fc-gform select,
    .fc-gform textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      border: 1px solid rgba(33,28,21,0.12);
      background: #f7f2e7;
      border-radius: 0.75rem;
      padding: 0.875rem 1rem;
      font-size: 15px;
      min-height: 48px;
      color: #211c15;
    }
    .fc-gform textarea { min-height: 8rem; }

    /* Questionnaire — downplay helper text so labels lead the hierarchy */
    .fc-gform .gfield_description,
    .fc-gform .ginput_counter,
    .fc-gform .charleft {
      font-size: 12px;
      font-weight: 400;
      line-height: 1.4;
      color: #8a8175;
      margin-top: 0.4rem;
      padding: 0;
      letter-spacing: 0;
      text-transform: none;
      overflow-wrap: anywhere;
    }
    .fc-gform .fc-gform-note {
      margin: 0.2rem 0 0;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.45;
      color: #8a8175;
    }
    .fc-gform .fc-gform-section {
      margin: 0.5rem 0 0.15rem;
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: #211c15;
      line-height: 1.25;
    }
    .fc-gform .fc-gform-html .gfield_label { display: none; }

    /* Headshot — styled upload well instead of the bare browser control */
    .fc-gform .ginput_container_fileupload {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.1rem;
      border: 1px dashed rgba(33, 28, 21, 0.28);
      border-radius: 0.9rem;
      background: #f7f2e7;
      max-width: 100%;
      box-sizing: border-box;
      min-width: 0;
    }
    .fc-gform .ginput_container_fileupload input[type="file"] {
      flex: 1 1 12rem;
      min-width: 0;
      max-width: 100%;
      font-size: 13px;
      color: #6b645a;
    }
    .fc-gform .ginput_container_fileupload input[type="file"]::file-selector-button {
      margin-right: 0.85rem;
      margin-bottom: 0.35rem;
      padding: 0.55rem 1.1rem;
      border: 0;
      border-radius: 999px;
      background: #211c15;
      color: #f7f2e7;
      font-family: 'Libre Franklin', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: background-color .2s ease;
      white-space: nowrap;
    }
    .fc-gform .ginput_container_fileupload input[type="file"]::file-selector-button:hover { background: #3a342a; }
    /* Hide GF's verbose "Accepted file types / Max size" line — our description says JPG or PNG */
    .fc-gform .gform_fileupload_rules { display: none; }

    .fc-gform .gform_footer { margin-top: 0.5rem; padding: 0; }
    .fc-gform .validation_message,
    .fc-gform .gform_validation_errors { color: #c0562f; font-size: 14px; margin-top: 0.35rem; }
    .fc-gform .gfield_error input,
    .fc-gform .gfield_error select,
    .fc-gform .gfield_error textarea { border-color: #c0562f; }

    /* Radios — stack choices; never force a wide row */
    .fc-gform .gfield_radio,
    .fc-gform .ginput_container_radio {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      max-width: 100%;
      min-width: 0;
    }
    .fc-gform .gfield_radio li,
    .fc-gform .ginput_container_radio .gchoice {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      max-width: 100%;
      min-width: 0;
    }
    .fc-gform .gfield_radio label,
    .fc-gform .ginput_container_radio label {
      flex: 1;
      min-width: 0;
      overflow-wrap: anywhere;
    }

    /* Consent / checkbox — single row: [ ] statement */
    .fc-gform .gfield_checkbox,
    .fc-gform .ginput_container_consent {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 0.75rem;
      max-width: 100%;
      min-width: 0;
    }
    .fc-gform .fc-donate-consent > .gfield_label {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .fc-gform .fc-donate-consent .ginput_container_consent {
      width: 100%;
      padding: 0.9rem 1rem;
      border: 1px solid rgba(33, 28, 21, 0.12);
      border-radius: 0.9rem;
      background: #f7f2e7;
    }
    .fc-gform .ginput_container_consent .gfield_consent_label,
    .fc-gform .gfield_checkbox label {
      display: block;
      flex: 1;
      min-width: 0;
      margin: 0;
      font-size: 14px;
      font-weight: 500;
      color: #211c15;
      line-height: 1.45;
      cursor: pointer;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .fc-gform .ginput_container_consent input[type="checkbox"],
    .fc-gform .gfield_checkbox input[type="checkbox"] {
      width: 1.15rem;
      height: 1.15rem;
      margin: 0.15rem 0 0;
      flex-shrink: 0;
      accent-color: #d98324;
    }
    .fc-gform .ginput_container_consent input.gform_hidden {
      display: none;
    }
    .fc-gform .ginput_container_address { display: grid; gap: 0.85rem; }
    .fc-gform .ginput_container_address span { display: block; }

    /* Donation total + submit */
    .fc-gform .fc-donate-total {
      margin-top: 0.35rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(33, 28, 21, 0.1);
    }
    .fc-gform .fc-donate-total > .gfield_label {
      margin-bottom: 0.25rem;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #6b645a;
    }
    .fc-gform .fc-donate-total .ginput_total,
    .fc-gform .fc-donate-total .ginput_container_total {
      font-size: 1.75rem;
      font-weight: 600;
      color: #211c15;
      line-height: 1.2;
    }
    .fc-gform .gform_footer {
      margin-top: 1.25rem;
      padding: 0;
    }
    .fc-gform .gform_footer .gform_button {
      width: 100%;
      justify-content: center;
    }
    .fc-gform .fc-donate-card .ginput_container_creditcard,
    .fc-gform .fc-donate-card .ginput_stripe_creditcard {
      display: grid;
      gap: 0.75rem;
    }
    .fc-gform .fc-donate-card .gform-grid-col,
    .fc-gform .fc-donate-card .StripeElement,
    .fc-gform .fc-donate-card iframe {
      width: 100%;
    }
    .fc-gform .fc-donate-card .StripeElement {
      border: 1px solid rgba(33, 28, 21, 0.12);
      background: #f7f2e7;
      border-radius: 0.75rem;
      padding: 0.875rem 1rem;
      min-height: 48px;
    }
    #donate-custom-error:not(.hidden) { color: #c0562f; }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .hero-enter { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
      .marquee-track { animation: none !important; }
      .accordion-panel { transition: none !important; }
      .bio-modal-backdrop, .bio-modal-panel { transition: none !important; }
      .lift-card, .accent-grow { transition: none !important; }
      .mobile-menu { transition: none !important; }
      .mobile-menu .mobile-menu-eyebrow,
      .mobile-menu .mobile-nav-link,
      .mobile-menu .mobile-menu-cta,
      .mobile-menu .mobile-menu-meta {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
      .mobile-menu:not(.is-open) .mobile-menu-eyebrow,
      .mobile-menu:not(.is-open) .mobile-nav-link,
      .mobile-menu:not(.is-open) .mobile-menu-cta,
      .mobile-menu:not(.is-open) .mobile-menu-meta {
        opacity: 0 !important;
      }
      html { scroll-behavior: auto; }
    }
