  :root {
    --black: #1A1A1A;
    --gold: #C9A96E;
    --gold-light: #E8C98A;
    --gold-dark: #A07840;
    --ruby: #8B1A1A;
    --white: #FFFFFF;
    --off-white: #F5F0E8;
    --slate: #4A4A4A;
    --slate-light: #7A7A7A;
    --section-dark: #111111;
    --section-mid: #222222;
  }

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

  body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    font-size: 17px;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26,26,26,0.97);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .nav-logo .nav-crown {
    height: 64px;
    width: auto;
    object-fit: contain;
  }

  .nav-logo .nav-wordmark {
    height: 46px;
    width: auto;
    object-fit: contain;
  }

  .crown-icon {
    width: 28px;
    height: 22px;
    fill: var(--gold);
  }

  .nav-links {
    display: flex;
    gap: clamp(0.65rem, 1.2vw, 1.25rem);
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: clamp(0.76rem, 0.86vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 600 !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

  /* Hamburger toggle — hidden on desktop, shown on mobile */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* Animate to an X when open */
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    min-height: 92vh;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
    gap: 3rem;
  }

  .hero-bg-text {
    display: none;
  }

  .hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
  }

  .hero-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .hero-logo-col img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(201,169,110,0.25));
    border-radius: 4px;
  }

  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
    }
    .hero-logo-col {
      order: -1;
    }
    .hero-logo-col img {
      max-width: 280px;
    }
  }

  .hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

  .hero-headline span { color: var(--gold); }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

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

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-outline {
    border: 1.5px solid rgba(201,169,110,0.5);
    color: var(--gold);
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }

  /* PROOF BAR */
  .proof-bar {
    background: var(--gold);
    padding: 1rem 5%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .home-course-promo {
    background: var(--section-dark);
    padding: 4rem 5%;
    border-top: 1px solid rgba(201,169,110,0.14);
    border-bottom: 1px solid rgba(201,169,110,0.14);
  }

  .home-course-promo-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
  }

  .home-course-promo .section-label,
  .home-course-promo .section-heading {
    text-align: left;
  }

  .home-course-promo .section-heading {
    margin-bottom: 1rem;
  }

  .home-course-promo p:not(.section-label) {
    color: rgba(255,255,255,0.72);
    max-width: 680px;
  }

  .proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
  }

  .proof-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--black);
    line-height: 1;
  }

  .proof-label {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 120px;
  }

  /* THREE DOORS */
  .three-doors {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
  }

  .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.05;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    letter-spacing: 1px;
  }

  .doors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .door {
    background: var(--black);
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: var(--white);
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .door::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.3s ease;
  }

  .door:hover::before { height: 100%; }
  .door:hover { background: #1e1e1e; }

  .door-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .door-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
  }

  .door-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }

  .door-arrow {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* CROWN PATHWAY */
  .crown-pathway {
    background: var(--black);
    padding: 5rem 5%;
  }

  .pathway-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }

  .pathway-step {
    padding: 2rem 1.5rem;
    border-top: 2px solid rgba(201,169,110,0.2);
    position: relative;
  }

  .pathway-step.active { border-top-color: var(--gold); }

  .step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(201,169,110,0.15);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .step-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }

  .step-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  /* OUTCOMES */
  .outcomes {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(201,169,110,0.1);
  }

  .outcome-card {
    background: var(--section-mid);
    padding: 2rem 1.5rem;
    transition: background 0.2s;
  }

  .outcome-card:hover { background: #2a2a2a; }

  .outcome-credential {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }

  .outcome-wage {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
  }

  .outcome-quote {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    line-height: 1.5;
  }

  .featured-courses {
    background: var(--black);
    padding: 5rem 5%;
    border-top: 1px solid rgba(201,169,110,0.14);
    border-bottom: 1px solid rgba(201,169,110,0.14);
  }

  .featured-course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    max-width: 1000px;
    margin: 3rem auto 0;
    background: rgba(201,169,110,0.16);
  }

  .featured-course-card {
    background: var(--section-dark);
    padding: 2.5rem;
    min-height: 100%;
  }

  .featured-course-kicker {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .featured-course-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .featured-course-card p {
    color: rgba(255,255,255,0.68);
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .featured-course-time {
    color: var(--gold-light) !important;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .featured-course-card .btn-primary {
    margin-top: 1.5rem;
  }

  .college-hero {
    min-height: calc(100vh - 88px);
    background:
      linear-gradient(135deg, rgba(201,169,110,0.12), transparent 45%),
      var(--black);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 4rem;
    align-items: center;
    padding: 6rem 5% 5rem;
  }

  .college-hero-copy {
    max-width: 760px;
  }

  .college-hero-copy .section-label {
    text-align: left;
  }

  .college-hero-support {
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: -1rem 0 2rem;
  }

  .college-hero-image {
    margin: 0;
    position: relative;
  }

  .college-hero-image::before {
    content: '';
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1px solid rgba(201,169,110,0.34);
  }

  .college-hero-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 26px 70px rgba(0,0,0,0.48);
  }

  .course-highlights {
    background: var(--gold);
    color: var(--black);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 0 5%;
  }

  .course-highlight-card {
    padding: 2rem 1.8rem;
    background: var(--gold);
    border-left: 1px solid rgba(26,26,26,0.16);
  }

  .course-highlight-card:first-child {
    border-left: 0;
  }

  .course-highlight-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: rgba(26,26,26,0.44);
    letter-spacing: 1px;
  }

  .course-highlight-card h2,
  .why-course-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    line-height: 1.05;
  }

  .course-highlight-card h2 {
    font-size: 1.8rem;
    margin: 0.2rem 0 0.5rem;
  }

  .course-highlight-card p {
    color: rgba(0,0,0,0.72);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .college-partnership,
  .course-accordion-section,
  .why-college-course,
  .college-closing-cta {
    padding: 5rem 5%;
  }

  .college-partnership {
    background: var(--section-mid);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 3rem;
    align-items: center;
  }

  .college-partnership-copy,
  .college-callout,
  .course-accordion-list,
  .why-course-grid,
  .college-closing-cta p {
    max-width: 1000px;
  }

  .college-partnership .section-label,
  .college-partnership .section-heading {
    text-align: left;
  }

  .college-partnership .section-heading {
    margin-bottom: 1.5rem;
  }

  .college-partnership p {
    color: rgba(255,255,255,0.72);
  }

  .college-callout {
    background: var(--black);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.24);
  }

  .college-callout strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
  }

  .college-callout span {
    color: rgba(255,255,255,0.74);
  }

  .course-accordion-section,
  .college-closing-cta {
    background: var(--black);
  }

  .course-accordion-list {
    margin: 3rem auto 0;
    display: grid;
    gap: 1rem;
  }

  .course-accordion {
    background: var(--section-dark);
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 4px;
    overflow: hidden;
  }

  .course-accordion summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem 1.8rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: 1px;
  }

  .course-accordion summary::-webkit-details-marker {
    display: none;
  }

  .accordion-indicator {
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.2s;
    flex: 0 0 18px;
  }

  .course-accordion[open] .accordion-indicator {
    transform: rotate(225deg);
  }

  .course-panel {
    border-top: 1px solid rgba(201,169,110,0.14);
    padding: 0 1.8rem 1.8rem;
  }

  .course-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(201,169,110,0.12);
    margin: 1.5rem 0;
  }

  .course-meta div {
    background: var(--section-dark);
    padding: 1rem;
  }

  .course-meta dt {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }

  .course-meta dd {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    margin: 0;
  }

  .course-panel p {
    color: rgba(255,255,255,0.72);
    max-width: 760px;
    margin-bottom: 1.5rem;
  }

  .why-college-course {
    background: var(--section-mid);
  }

  .why-course-grid {
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(201,169,110,0.14);
  }

  .why-course-card {
    background: var(--section-mid);
    padding: 2.2rem 1.7rem;
    border-top: 3px solid transparent;
  }

  .why-course-card h3 {
    color: var(--gold);
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
  }

  .why-course-card p {
    color: rgba(255,255,255,0.68);
    font-size: 0.94rem;
  }

  .college-closing-cta {
    text-align: center;
  }

  .college-closing-cta p {
    margin: -1.5rem auto 2rem;
    color: rgba(255,255,255,0.72);
  }

  /* ECONOMIC CASE */
  .economic {
    background: var(--black);
    padding: 5rem 5%;
  }

  .econ-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    max-width: 900px;
    margin: 3rem auto 0;
  }

  .econ-col {
    padding: 3rem 2.5rem;
    position: relative;
  }

  .econ-col.without {
    background: #1a1a1a;
    border-top: 3px solid var(--ruby);
  }

  .econ-col.with {
    background: #1a1a1a;
    border-top: 3px solid var(--gold);
  }

  .econ-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .econ-label.without-label { color: var(--ruby); }
  .econ-label.with-label { color: var(--gold); }

  .econ-stat {
    margin-bottom: 1.25rem;
  }

  .econ-stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
  }

  .econ-stat-key {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }

  /* MARE ISLAND */
  .mare-island {
    background: var(--gold);
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
  }

  .mare-island::before {
    content: 'MARE ISLAND';
    position: absolute;
    right: -3%;
    bottom: -15%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14vw;
    color: rgba(26,26,26,0.08);
    white-space: nowrap;
    pointer-events: none;
  }

  .mare-island .section-label { color: var(--black); text-align: left; }
  .mare-island .section-heading { color: var(--black); text-align: left; }

  .mare-content {
    max-width: 700px;
  }

  .mare-body {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .mare-stat-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }

  .mare-stat {
    color: var(--black);
  }

  .mare-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--black);
  }

  .mare-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
    margin-top: 4px;
  }

  /* PARTNERS */
  .partners {
    background: var(--section-mid);
    padding: 4rem 5%;
  }

  .partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-tag {
    border: 1px solid rgba(201,169,110,0.3);
    color: rgba(255,255,255,0.7);
    padding: 8px 18px;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: border-color 0.2s, color 0.2s;
  }

  .partner-tag:hover { border-color: var(--gold); color: var(--gold); }

  /* INVEST */
  .invest {
    background: var(--black);
    padding: 5rem 5%;
  }

  .invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    max-width: 1000px;
    margin: 3rem auto 0;
    background: rgba(201,169,110,0.1);
  }

  .invest-tier {
    background: var(--black);
    padding: 2rem 1.5rem;
    transition: background 0.2s;
  }

  .invest-tier:hover { background: #1e1e1e; }

  .invest-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
  }

  .invest-what {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }

  /* DONATE */
  .donate-hero {
    min-height: calc(100vh - 88px);
    background:
      linear-gradient(135deg, rgba(139,26,26,0.28), transparent 42%),
      radial-gradient(circle at 82% 18%, rgba(201,169,110,0.16), transparent 32%),
      var(--black);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 4rem;
    align-items: center;
    padding: 6rem 5%;
    overflow: hidden;
  }

  .donate-hero-copy {
    max-width: 720px;
    position: relative;
    z-index: 1;
  }

  .donate-hero-photo {
    margin: 0;
    position: relative;
  }

  .donate-hero-photo::before {
    content: '';
    position: absolute;
    inset: 24px -24px -24px 24px;
    border: 1px solid rgba(201,169,110,0.35);
    pointer-events: none;
  }

  .donate-hero-photo img {
    width: 100%;
    min-height: 520px;
    max-height: 680px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 26px 70px rgba(0,0,0,0.48);
    position: relative;
  }

  .donate-impact {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .donate-impact .section-intro {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,0.66);
    line-height: 1.7;
  }

  .donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    max-width: 1120px;
    margin: 3rem auto 0;
    background: rgba(201,169,110,0.14);
  }

  .donate-card {
    background: var(--section-mid);
    padding: 2.2rem 1.6rem;
    min-height: 230px;
    border-top: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .donate-card:hover {
    background: #2a2a2a;
    border-top-color: rgba(201,169,110,0.8);
    transform: translateY(-2px);
  }

  .donate-card.featured {
    background: #201d17;
    border-top-color: var(--gold);
  }

  .donate-card.anchor {
    background: var(--black);
    border-top-color: var(--gold);
  }

  .donate-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .donate-card p {
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .donate-split {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .donate-panel {
    padding: 5rem 10%;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(201,169,110,0.14);
  }

  .donate-panel h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  .donate-panel p {
    color: rgba(255,255,255,0.68);
    margin-bottom: 1rem;
    max-width: 560px;
  }

  .gold-panel {
    background: var(--gold);
  }

  .gold-panel .section-label,
  .gold-panel h2,
  .gold-panel p {
    color: var(--black);
  }

  .gold-panel p {
    color: rgba(0,0,0,0.72);
  }

  .gold-panel .btn-primary {
    background: var(--black);
    color: var(--white);
  }

  .gold-panel .btn-primary:hover {
    background: #2a2a2a;
  }

  .gold-panel .btn-outline {
    border-color: rgba(26,26,26,0.45);
    color: var(--black);
  }

  .gold-panel .btn-outline:hover {
    border-color: var(--black);
    background: rgba(26,26,26,0.08);
  }

  .donate-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }

  /* LR COLLAB */
  .lr-collab {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    align-items: start;
  }

  .collab-body {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .collab-weeks {
    display: grid;
    gap: 1px;
    background: rgba(201,169,110,0.1);
  }

  .collab-week {
    background: var(--section-mid);
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: baseline;
  }

  .week-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    min-width: 60px;
    letter-spacing: 1px;
  }

  .week-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }

  /* QUOTE */
  .big-quote {
    background: var(--ruby);
    padding: 5rem 5%;
    text-align: center;
  }

  .quote-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .quote-attr {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* CONTACT / FOOTER */
  .contact {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 3rem auto 0;
    align-items: start;
  }

  .contact-left h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .contact-photo {
    margin: 0 0 1.75rem;
  }
  .contact-photo img {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 6px;
    border: 1px solid rgba(201,169,110,0.3);
    box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  }

  .contact-detail {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }

  .contact-detail strong {
    color: var(--white);
    font-weight: 600;
  }

  .contact-right .btn-primary {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }

  .fiscal-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    margin-top: 1.5rem;
  }

  footer {
    background: var(--black);
    border-top: 1px solid rgba(201,169,110,0.15);
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-brand img {
    height: 36px;
    width: auto;
    object-fit: contain;
  }

  .footer-entities {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
    margin-top: 4px;
  }

  .footer-right {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
  }

  /* Crown SVG */
  .crown-svg {
    display: inline-block;
    vertical-align: middle;
  }

  /* Rancho Cielo */
  .benchmark {
    background: var(--section-dark);
    padding: 3.5rem 5%;
    border-top: 1px solid rgba(201,169,110,0.1);
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }

  .benchmark-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .bench-left {
    flex: 1;
    min-width: 200px;
  }

  .bench-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
  }

  .bench-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
  }

  .bench-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
  }

  .bench-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .bench-stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
  }

  .bench-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }

  /* FAIRWAY TO SUCCESS */
  .fairway {
    background: var(--black);
    padding: 5rem 5%;
  }

  .fairway-intro {
    max-width: 780px;
    margin: 0 auto 4rem;
    text-align: center;
  }

  .fairway-tagline {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .fairway-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .fairway-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1px;
    max-width: 900px;
    margin: 3rem auto;
    background: rgba(201,169,110,0.1);
  }

  .why-item {
    background: var(--black);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: background 0.2s;
  }

  .why-item:hover { background: #1e1e1e; }

  .why-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .why-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 1px;
  }

  .fairway-model {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .model-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    max-width: 900px;
    margin: 3rem auto 0;
    background: rgba(201,169,110,0.1);
  }

  .model-step {
    background: var(--section-mid);
    padding: 2.5rem 2rem;
    position: relative;
  }

  .model-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(201,169,110,0.12);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .model-step-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
  }

  .model-step-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
  }

  .fairway-themes {
    background: var(--section-dark);
    padding: 5rem 5%;
  }

  .themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    max-width: 1000px;
    margin: 3rem auto 0;
    background: rgba(201,169,110,0.1);
  }

  .theme-card {
    background: var(--section-dark);
    padding: 2rem 1.75rem;
    border-top: 3px solid transparent;
    transition: border-color 0.25s, background 0.2s;
  }

  .theme-card:hover {
    border-top-color: var(--gold);
    background: #1a1a1a;
  }

  .theme-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
  }

  .theme-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  .fairway-curriculum {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .curriculum-grid {
    display: grid;
    gap: 1px;
    max-width: 800px;
    margin: 3rem auto 0;
    background: rgba(201,169,110,0.1);
  }

  .curriculum-week {
    background: var(--section-mid);
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: baseline;
    transition: background 0.2s;
  }

  .curriculum-week:hover { background: #2a2a2a; }

  .curriculum-week.capstone {
    border-top: 2px solid var(--gold);
  }

  .cw-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    min-width: 70px;
    letter-spacing: 1px;
    flex-shrink: 0;
  }

  .cw-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.15rem;
  }

  .cw-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
  }

  .fairway-outcomes {
    background: var(--black);
    padding: 5rem 5%;
  }

  .fo-list {
    max-width: 700px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1px;
    background: rgba(201,169,110,0.1);
  }

  .fo-item {
    background: var(--black);
    padding: 1.25rem 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: background 0.2s;
  }

  .fo-item:hover { background: #1a1a1a; }

  .fo-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.6;
    min-width: 28px;
    line-height: 1.2;
  }

  .fo-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
  }

  .fairway-mentors {
    background: var(--section-mid);
    padding: 5rem 5%;
  }

  .mentor-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    max-width: 900px;
    margin: 3rem auto 0;
    background: rgba(201,169,110,0.1);
  }

  .mentor-col {
    background: var(--section-mid);
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--gold);
  }

  .mentor-col-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
  }

  .mentor-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
  }

  .mentor-list li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
  }

  .mentor-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.5;
  }

  @media (max-width: 700px) {
    .model-steps { grid-template-columns: 1fr; }
    .mentor-split { grid-template-columns: 1fr; }
  }

  /* Responsive */
  @media (max-width: 980px) {
    .econ-split { grid-template-columns: 1fr; }
    .collab-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero { padding-top: 4rem; }
    .home-course-promo-inner,
    .college-hero,
    .college-partnership,
    .course-highlights,
    .why-course-grid {
      grid-template-columns: 1fr;
    }

    .home-course-promo .section-label,
    .home-course-promo .section-heading,
    .college-hero-copy .section-label,
    .college-partnership .section-label,
    .college-partnership .section-heading {
      text-align: center;
    }

    .home-course-promo-inner,
    .college-hero-copy,
    .college-partnership-copy {
      text-align: center;
    }

    .college-hero {
      min-height: auto;
      padding: 3.5rem 5% 4rem;
      gap: 2.5rem;
    }

    .college-hero-image {
      order: -1;
    }

    .college-hero-image::before {
      inset: 14px -10px -14px 10px;
    }

    .college-hero-image img {
      min-height: 320px;
      max-height: 440px;
    }

    .course-highlights {
      padding: 0;
    }

    .course-highlight-card {
      border-left: 0;
      border-top: 1px solid rgba(26,26,26,0.16);
    }

    .course-meta {
      grid-template-columns: 1fr;
    }

    .course-accordion summary {
      padding: 1.35rem 1.25rem;
    }

    .course-panel {
      padding: 0 1.25rem 1.35rem;
    }

    /* Mobile nav: hamburger reveals a dropdown menu */
    nav {
      height: 72px;
    }

    .nav-toggle {
      display: flex;
    }

    nav .nav-links {
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: rgba(26,26,26,0.98);
      border-bottom: 1px solid rgba(201,169,110,0.2);
      padding: 0.5rem 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    nav .nav-links.open {
      max-height: 80vh;
    }

    nav .nav-links li {
      width: 100%;
      text-align: center;
    }

    nav .nav-links a {
      display: block;
      padding: 0.9rem 1.5rem;
      font-size: 1rem;
    }

    nav .nav-links .nav-cta {
      display: inline-block;
      margin-top: 0.75rem;
    }
  }

  /* Accessibility & scroll behavior */
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  /* Offset anchored sections so the sticky nav doesn't cover their headings */
  section[id], div[id] { scroll-margin-top: 104px; }

  /* Visible keyboard focus */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  /* Skip link */
  .skip-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    top: 8px;
    z-index: 200;
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  .skip-link:focus {
    transform: translateX(-50%) translateY(0);
  }

  /* CONTACT FORM */
  .contact-form {
    display: grid;
    gap: 1rem;
  }

  .form-intro {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 0.25rem;
  }

  .form-field {
    display: grid;
    gap: 0.35rem;
  }

  .form-field label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    background: var(--section-dark);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 3px;
    padding: 12px 14px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: border-color 0.2s, background 0.2s;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
  }

  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: var(--gold);
    background: #161616;
    outline: none;
  }

  .contact-form textarea { resize: vertical; min-height: 96px; }

  .contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A96E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }

  .contact-form button[type="submit"] {
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Inter', sans-serif;
  }

  .form-hp {
    position: absolute;
    left: -5000px;
  }

  /* Scroll reveal effect via CSS */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ---- Shared page helpers (multi-page restructure) ---- */
  .page-hero {
    background: var(--section-dark);
    padding: 7rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .page-hero .section-heading { margin-bottom: 1rem; }
  .page-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
  }
  .center-cta {
    text-align: center;
    margin-top: 2.5rem;
  }
  .back-link {
    display: inline-block;
    margin-top: 2.5rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .back-link:hover { color: var(--gold-light); }

  /* ---- Image hero (background photo + dark gold overlay) ---- */
  .media-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding: 7rem 5% 4rem;
    overflow: hidden;
    background: var(--black);
  }
  .media-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
  }
  .media-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.82) 42%, rgba(17,17,17,0.45) 100%);
  }
  .media-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
  }
  .media-hero .section-label { text-align: left; }
  .media-hero .section-heading { text-align: left; margin-bottom: 1.25rem; }
  .media-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    line-height: 1.7;
  }

  /* ---- Alternating image + text rows ---- */
  .media-section {
    padding: 5rem 5%;
  }
  .media-section.dark { background: var(--black); }
  .media-section.mid { background: var(--section-mid); }

  .media-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
  }
  .media-row + .media-row { margin-top: 4.5rem; }

  .media-row-figure {
    margin: 0;
    position: relative;
  }
  .media-row-figure img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 6px;
    border: 1px solid rgba(201,169,110,0.25);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  }
  /* Gold accent corner */
  .media-row-figure::after {
    content: '';
    position: absolute;
    left: -10px;
    bottom: -10px;
    width: 64px;
    height: 64px;
    border-left: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    border-radius: 0 0 0 6px;
    z-index: -1;
  }

  .media-row.reverse .media-row-figure { order: 2; }

  .media-row-text .section-label { text-align: left; margin-bottom: 0.75rem; }
  .media-row-text h2,
  .media-row-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
  }
  .media-row-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .media-row-text .btn-primary,
  .media-row-text .btn-outline { margin-top: 0.75rem; }

  @media (max-width: 820px) {
    .media-row { grid-template-columns: 1fr; gap: 2rem; }
    .media-row.reverse .media-row-figure { order: -1; }
    .media-row-figure img { max-height: 340px; }
    .media-hero { min-height: 52vh; }
    .media-hero::after {
      background: linear-gradient(180deg, rgba(17,17,17,0.78) 0%, rgba(17,17,17,0.92) 100%);
    }
  }

  @media (max-width: 980px) {
    .donate-hero {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding-top: 4rem;
    }
    .donate-hero-photo {
      order: -1;
    }
    .donate-hero-photo img {
      min-height: 320px;
      max-height: 440px;
    }
    .donate-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .donate-split {
      grid-template-columns: 1fr;
    }
    .donate-panel {
      min-height: auto;
      padding: 4rem 5%;
    }
  }

  @media (max-width: 560px) {
    .featured-course-grid {
      grid-template-columns: 1fr;
    }

    .featured-course-card {
      padding: 2rem 1.5rem;
    }

    .featured-course-card .btn-primary {
      width: 100%;
      text-align: center;
    }

    .donate-hero {
      padding: 3rem 5% 4rem;
    }
    .donate-hero-photo::before {
      inset: 14px -12px -12px 14px;
    }
    .donate-grid {
      grid-template-columns: 1fr;
    }
    .donate-card {
      min-height: auto;
    }
    .donate-actions .btn-primary,
    .donate-actions .btn-outline {
      width: 100%;
      text-align: center;
    }
  }
