 :root {
      --pink: #ff69b4;
      --blue: #1d2487;
      --blue-dark: #2a32a4;
      --white: #edf0fb;
      --soft-white: rgba(240, 239, 251, 0.949);
      --border: 3px solid var(--blue);
      --max-width: 980px;
      --content-width: 720px;    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      letter-spacing: 0.6px;
      background-color: var(--pink);
      color: var(--blue);
      min-height: 100vh;
    }

    body.nav-open {
      overflow: hidden;
    }

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

    a:hover,
    a:focus-visible {
      color: var(--white);
    }

    img {
      max-width: 100%;
      display: block;
    }

    p {
      margin-bottom: 1rem;
    }

    p:last-child {
      margin-bottom: 0;
    }

    ul {
      list-style: none;
    }

    .skip-link {
      position: absolute;
      top: -100px;
      left: 1rem;
      z-index: 999;
      background: var(--white);
      color: var(--blue);
      padding: 0.75rem 1rem;
      border: var(--border);
      font-weight: 800;
    }

    .skip-link:focus {
      top: 1rem;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--pink);
      border-bottom: var(--border);
    }

    .header-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.9rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logotype {
      font-family: Sansita, sans-serif;
      font-weight: 800;
      font-size: clamp(1.25rem, 3vw, 1.7rem);
      letter-spacing: 0.5px;
      line-height: 0.95;
      color: var(--blue);
      transition: all 0.2s ease-in-out;
      flex-shrink: 0;
    }

    .logotype:hover,
    .logotype:focus-visible {
      color: var(--white);
      transform: scale(1.03);
    }

    .logotype img {
  height: 2em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

    .nav-toggle {
      display: none;
      border: var(--border);
      background: var(--pink);
      color: var(--blue);
      font-family: Inter, sans-serif;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.55rem 0.75rem;
      cursor: pointer;
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      background: var(--blue);
      color: var(--pink);
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-nav a {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.55rem 0.75rem;
      border: 2px solid transparent;
      transition: all 0.2s ease-in-out;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible,
    .site-nav a.active {
      background: var(--blue);
      color: var(--pink);
      border-color: var(--blue);
    }

    .donate-link {
      border: 2px solid var(--blue) !important;
    }

    /* Shared page structure */
    main {
      min-height: calc(100vh - 140px);
    }

    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    .page-hero {
      background: var(--blue);
      color: var(--pink);
      border-bottom: var(--border);
      overflow: hidden;
    }

    .page-hero-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: clamp(2.25rem, 6vw, 4.5rem) 1.25rem;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
      gap: 2rem;
      align-items: center;
    }

    .hero-copy {
      max-width: 620px;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    h1,
    h2,
    h3 {
      font-family: Sansita, sans-serif;
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: 0.4px;
    }

    h1 {
      font-size: clamp(3.2rem, 11vw, 6.5rem);
      border-bottom: 6px solid currentColor;
      padding-bottom: 1.2rem;
      margin-bottom: 1.2rem;
    }

    h1 em {
      color: var(--white);
      font-style: italic;
    }

    .hero-copy p {
      color: var(--soft-white);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 560px;
    }

    .hero-image-wrap {

      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem;
    }

    .hero-image-wrap img {
      width: 100%;
      height: auto;
      object-fit: contain;
      mix-blend-mode: normal;
    }

    .hero-image-note {
      color: rgba(255,255,255,0.45);
      font-size: 0.72rem;
      line-height: 1.4;
      text-align: center;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .content {
      max-width: var(--content-width);
      margin: 0 auto;
      padding: 2rem 1.25rem 3rem;
    }

    .content-wide {
      max-width: var(--max-width);
    }

    .intro-card,
    .card,
    .notice-card {
      background: var(--white);
      border: var(--border);
      padding: clamp(1.25rem, 4vw, 1.75rem);
      margin-bottom: 1.25rem;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-bottom: var(--border);
      padding-bottom: 1rem;
      margin-bottom: 1.25rem;
    }

    .card-icon {
      font-size: 1.35rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .card h2,
    .intro-card h2,
    .notice-card h2 {
      font-size: clamp(1.55rem, 5vw, 2.2rem);
      color: var(--blue);
    }

    .card h3 {
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
    }

    .card p,
    .intro-card p,
    .notice-card p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--blue);
    }

    .card ul {
      margin-top: 0.25rem;
    }

    .card li,
    .resource-list li {
      font-size: 0.9rem;
      line-height: 1.65;
      padding: 0.55rem 0 0.55rem 1.35rem;
      border-bottom: 1px solid rgba(35,41,129,0.15);
      position: relative;
    }

    .card li:last-child,
    .resource-list li:last-child {
      border-bottom: 0;
    }

    .card li::before,
    .resource-list li::before {
      content: "→";
      color: var(--pink);
      position: absolute;
      left: 0;
      top: 0.58rem;
      font-weight: 800;
    }

    .section-label {
      display: block;
      font-size: 0.66rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 1rem 0 0.65rem;
    }

    .highlight-box {
      background: var(--pink);
      border: 2px solid var(--blue);
      padding: 1rem 1.15rem;
      margin-top: 1rem;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.25rem;
    }

    .button,
    .apply-btn {
      display: inline-block;
      background: var(--blue);
      color: var(--pink);
      border: 3px solid var(--blue);
      padding: 0.85rem 1.25rem;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: all 0.2s ease-in-out;
    }

    .button:hover,
    .button:focus-visible,
    .apply-btn:hover,
    .apply-btn:focus-visible {
      background: var(--white);
      color: var(--blue);
    }

    .button.secondary {
      background: var(--pink);
      color: var(--blue);
    }

    .button.secondary:hover,
    .button.secondary:focus-visible {
      background: var(--blue);
      color: var(--pink);
    }

    .grid-two {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .mini-card {
      background: var(--white);
      border: var(--border);
      padding: 1.25rem;
    }

    .mini-card h3 {
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
    }

    .mini-card p {
      font-size: 0.9rem;
      line-height: 1.65;
    }

    /* Membership advert page */
    .membership-hero {
      text-align: center;
    }

    .membership-hero .page-hero-inner {
      display: block;
      padding-bottom: 0;
    }

    .membership-hero h1 {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .membership-hero p {
      margin-left: auto;
      margin-right: auto;
      max-width: 420px;
    }

    .membership-hero img {
      width: min(100%, 780px);
      margin: 2rem auto 0;
    }

    .quick-facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--pink);
      border-bottom: var(--border);
    }

    .fact {
      padding: 1.25rem 0.75rem;
      text-align: center;
      border-right: var(--border);
    }

    .fact:last-child {
      border-right: none;
    }

    .fact-value {
      display: block;
      font-family: Sansita, sans-serif;
      font-size: clamp(1.5rem, 5vw, 2rem);
      font-weight: 800;
      line-height: 1;
      margin-bottom: 0.45rem;
    }

    .fact-label {
      display: block;
      font-size: 0.65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-top: 1.25rem;
      border-top: var(--border);
      padding-top: 1.25rem;
    }

    .img-placeholder {
      width: 100%;
      min-height: 130px;
      background: rgba(35,41,129,0.07);
      border: 2px dashed rgba(35,41,129,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(35,41,129,0.45);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-align: center;
      padding: 1rem;
    }

    .img-placeholder.wide {
      grid-column: 1 / -1;
      min-height: 190px;
    }

    .tags {
      margin-top: 1rem;
    }

    .tag {
      display: inline-block;
      color: var(--blue);
      background-color: transparent;
      border: 2px dotted var(--pink);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 0.38rem 0.65rem;
      margin: 0.2rem 0.2rem 0.2rem 0;
      transition: opacity 0.2s ease-in-out;
    }

    .tag:hover,
    .tag:focus-visible {
      opacity: 0.45;
    }

    .rent-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: var(--border);
      margin-top: 1rem;
    }

    .rent-item {
      padding: 1.2rem 1rem;
      border-right: var(--border);
      border-bottom: var(--border);
    }

    .rent-item:nth-child(2) {
      border-right: none;
    }

    .amount {
      display: block;
      font-family: Sansita, sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 0.45rem;
    }

    .desc {
      display: block;
      font-size: 0.78rem;
      line-height: 1.45;
    }

    .rent-note {
      grid-column: 1 / -1;
      padding: 1rem;
      background: var(--pink);
      border-bottom: var(--border);
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .rent-note:last-child {
      border-bottom: none;
    }

    .timeline {
      margin-top: 0.5rem;
    }

    .timeline-item {
      display: flex;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(35,41,129,0.2);
    }

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

    .timeline-left {
      width: 78px;
      flex-shrink: 0;
      text-align: right;
    }

    .timeline-stage {
      display: block;
      color: var(--pink);
      font-size: 0.62rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .timeline-date {
      display: block;
      font-family: Sansita, sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      line-height: 1.15;
    }

    .timeline-connector {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
    }

    .timeline-dot {
      width: 12px;
      height: 12px;
      background: var(--pink);
      border-radius: 50%;
      margin-top: 0.15rem;
    }

    .timeline-line {
      width: 2px;
      flex-grow: 1;
      background: rgba(35,41,129,0.25);
      margin-top: 0.25rem;
    }

    .timeline-item:last-child .timeline-line {
      display: none;
    }

    .timeline-desc {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .cta-card {
      background: var(--blue);
      border: var(--border);
      padding: clamp(1.5rem, 5vw, 2.2rem);
      text-align: center;
      margin-bottom: 1.25rem;
    }

    .cta-card h2 {
      color: var(--pink);
      font-size: clamp(2.2rem, 8vw, 3.2rem);
      border-bottom: 4px solid var(--pink);
      padding-bottom: 1rem;
      margin-bottom: 1rem;
    }

    .cta-card > p {
      color: var(--soft-white);
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .cta-steps {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 1.25rem;
      text-align: left;
      margin: 1.25rem 0;
    }

    .cta-step {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      margin-bottom: 0.75rem;
      color: var(--white);
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .cta-step:last-child {
      margin-bottom: 0;
    }

    .step-num {
      width: 22px;
      height: 22px;
      background: var(--pink);
      color: var(--blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.68rem;
      font-weight: 800;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .apply-btn {
      background: var(--pink);
      color: var(--blue);
      border-color: var(--pink);
    }

    .format-note {
      display: block;
      color: rgba(255,255,255,0.55);
      font-size: 0.72rem;
      line-height: 1.55;
      margin-top: 1rem;
    }

    /* Resources */
    .resource-list a {
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .resource-list a:hover,
    .resource-list a:focus-visible {
      color: var(--pink);
      background: var(--blue);
    }

    /* Footer */
    .site-footer {
      border-top: var(--border);
      background: var(--pink);
      padding: 1rem 1.25rem;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .footer-inner p {
      font-size: 0.72rem;
      line-height: 1.5;
      letter-spacing: 1px;
      margin: 0;
    }

    .footer-inner a {
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer-logo {
      max-height: 32px;
      width: auto;
    }

    @media screen and (max-width: 780px) {
      .nav-toggle {
        display: inline-block;
      }

      .site-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--pink);
        border-top: var(--border);
        padding: 1rem;
        display: none;
        align-content: start;
        justify-content: stretch;
      }

      .site-nav.open {
        display: grid;
        gap: 0.75rem;
      }

      .site-nav a {
        border: var(--border);
        padding: 1rem;
        font-size: 0.85rem;
      }

      .page-hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-image-wrap {
        min-height: 240px;
      }

      .grid-two {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 560px) {
      .header-inner {
        padding: 0.8rem 1rem;
      }

      .content,
      .content-wide {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .quick-facts,
      .rent-grid,
      .photo-grid {
        grid-template-columns: 1fr;
      }

      .fact,
      .rent-item {
        border-right: none;
      }

      .fact {
        border-bottom: var(--border);
      }

      .fact:last-child {
        border-bottom: none;
      }

      .rent-item:nth-child(2) {
        border-bottom: var(--border);
      }

      .timeline-item {
        gap: 0.75rem;
      }

      .timeline-left {
        width: 68px;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
    }