
  /* ===== HERO — 3 variations ===== */
  .hero { position: relative; overflow: hidden; }

  /* ---------- Variation A: Editorial Masthead ---------- */
  .hero-a {
    background: var(--paper);
    padding: 24px 0 84px;
    border-bottom: 1px solid var(--slate-200);
  }
  .hero-a .wrap { position: relative; }
  .hero-a .masthead-row {
    display: flex; justify-content: flex-start; align-items: center;
    padding-bottom: 18px;
    border-bottom: 1.5px solid var(--ink);
    margin-bottom: 36px;
  }
  .hero-a .masthead-row .est { font-style: italic; color: var(--slate-500); font-size: 0.95rem; }
  .hero-a h1 {
    font-size: clamp(3rem, 6.5vw, 6.4rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 26px;
    max-width: 14ch;
  }
  .hero-a h1 .accent { color: var(--gold-600); font-style: italic; font-weight: 500; }
  .hero-a .deck-row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: end; margin-bottom: 56px; }
  .hero-a .deck { font-size: 1.2rem; color: var(--slate-700); max-width: 52ch; }
  .hero-a .actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-a .photo-strip {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 14px;
    height: 320px;
  }
  .hero-a .photo-strip .tile { aspect-ratio: auto; height: 100%; }
  .hero-a .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 44px;
    border-top: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
  }
  .hero-a .stat {
    padding: 24px 18px 22px 0;
    border-right: 1px solid var(--slate-200);
  }
  .hero-a .stat:last-child { border-right: 0; }
  .hero-a .stat .num {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--navy-700);
    font-weight: 800;
  }
  .hero-a .stat .num sup { color: var(--gold-600); font-size: 0.55em; vertical-align: super; }
  .hero-a .stat .lab {
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    color: var(--slate-500);
    font-weight: 700;
    margin-top: 10px;
  }
  @media (max-width: 900px) {
    .hero-a .deck-row { grid-template-columns: 1fr; gap: 28px; }
    .hero-a .photo-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; height: auto; }
    .hero-a .stats-bar { grid-template-columns: 1fr 1fr; }
    .hero-a .stat { padding-right: 14px; border-right: 0; border-bottom: 1px solid var(--slate-200); }
  }

  /* ---------- Variation B: Impact Mosaic ---------- */
  .hero-b { background: var(--navy-900); color: var(--white); padding: 72px 0 96px; }
  .hero-b .grid-frame {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 44px;
    align-items: center;
  }
  .hero-b h1 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4.6rem); margin-bottom: 22px; }
  .hero-b h1 .accent { color: var(--gold-400); }
  .hero-b .lead { color: var(--slate-200); font-size: 1.2rem; max-width: 50ch; margin-bottom: 28px; }
  .hero-b .mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 86px;
    gap: 10px;
    position: relative;
  }
  .hero-b .mosaic .tile { border-radius: 8px; }
  .hero-b .m-1 { grid-column: span 4; grid-row: span 3; }
  .hero-b .m-2 { grid-column: span 2; grid-row: span 2; }
  .hero-b .m-3 { grid-column: span 2; grid-row: span 2; }
  .hero-b .m-4 { grid-column: span 3; grid-row: span 2; }
  .hero-b .m-5 { grid-column: span 3; grid-row: span 2; }
  .hero-b .stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-b .stat-strip .stat .num {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--gold-400);
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .hero-b .stat-strip .stat .lab {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--slate-300);
    font-weight: 700;
    margin-top: 6px;
  }
  .hero-b .actions { display: flex; gap: 12px; flex-wrap: wrap; }
  @media (max-width: 900px) {
    .hero-b .grid-frame { grid-template-columns: 1fr; }
    .hero-b .mosaic { grid-auto-rows: 70px; }
    .hero-b .stat-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
  }

  /* ---------- Variation C: Full-bleed photo with stats sidebar ---------- */
  .hero-c {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1fr 380px;
    background: var(--navy-900);
  }
  .hero-c .hero-img {
    position: relative;
    overflow: hidden;
  }
  .hero-c .hero-img img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.7);
  }
  .hero-c .hero-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(7,23,58,0.85) 0%, rgba(7,23,58,0.2) 60%, transparent 100%);
  }
  .hero-c .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 0 0 64px;
  }
  .hero-c .hero-content .wrap { width: 100%; }
  .hero-c h1 {
    color: var(--white);
    font-size: clamp(2.6rem, 5vw, 5rem);
    max-width: 18ch;
    margin-bottom: 22px;
  }
  .hero-c h1 .accent { color: var(--gold-400); font-style: italic; font-weight: 500; }
  .hero-c .lead {
    color: var(--slate-100);
    max-width: 50ch;
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
  .hero-c .actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-c .stats-panel {
    background: var(--navy-800);
    color: var(--white);
    padding: 64px 36px;
    display: flex; flex-direction: column;
    justify-content: center;
    gap: 32px;
    border-left: 3px solid var(--gold-500);
  }
  .hero-c .stats-panel .head {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-400);
    font-weight: 700;
  }
  .hero-c .stats-panel .stat {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-c .stats-panel .stat:last-of-type { border-bottom: 0; }
  .hero-c .stats-panel .num {
    font-size: 3rem;
    line-height: 1;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .hero-c .stats-panel .lab {
    font-size: 0.92rem;
    color: var(--slate-200);
    margin-top: 8px;
  }
  @media (max-width: 1100px) {
    .hero-c { grid-template-columns: 1fr; min-height: auto; }
    .hero-c .hero-img { min-height: 520px; }
    .hero-c .stats-panel { padding: 40px 28px; }
  }

  /* ---------- Variation D: People of Action (rotary.org-style) ---------- */
  .hero-d {
    position: relative;
    min-height: 640px;
    color: var(--white);
    overflow: hidden;
    background: var(--navy-700);
  }
  .hero-d .hero-bg {
    position: absolute;
    inset: 0;
  }
  .hero-d .hero-bg img.hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1500ms ease-in-out;
  }
  .hero-d .hero-bg img.hero-img.is-active {
    opacity: 1;
  }
  .hero-d .hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(95deg, rgba(0, 51, 160, 0.88) 0%, rgba(0, 51, 160, 0.45) 55%, rgba(0, 157, 220, 0.25) 100%);
  }
  .hero-d .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 640px;
    padding: 80px 0;
  }
  .hero-d .hero-content .wrap { width: 100%; }
  .hero-d .eyebrow-d {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 22px;
  }
  .hero-d .eyebrow-d::before {
    content: ""; width: 36px; height: 2px; background: var(--gold-500);
  }
  .hero-d h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 800;
    max-width: 18ch;
    margin: 0 0 24px;
  }
  .hero-d .deck {
    color: rgba(255,255,255,0.92);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    max-width: 54ch;
    line-height: 1.55;
    margin: 0 0 32px;
  }
  .hero-d .actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-d .ri-strip {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    background: rgba(14, 42, 138, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-d .ri-strip .wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    padding-top: 18px;
    padding-bottom: 18px;
    align-items: center;
  }
  .hero-d .ri-label {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-400);
  }
  .hero-d .ri-stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
  }
  .hero-d .ri-stat .num {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1;
  }
  .hero-d .ri-stat .lab {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
  }
  .hero-d .ri-link {
    color: var(--gold-400);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex; gap: 8px; align-items: center;
  }
  @media (max-width: 800px) {
    .hero-d .ri-strip .wrap { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; padding-bottom: 22px; }
    .hero-d .ri-stats { gap: 24px; }
  }

  /* ===== Impact by the numbers (rotary.org-style) ===== */
  .impact-numbers { background: var(--paper); padding-bottom: 32px; }
  .impact-numbers .head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
  }
  .impact-numbers .head h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 12px;
  }
  .impact-numbers .head p { color: var(--slate-500); }

  .impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: flex-start;
  }
  @media (max-width: 900px) { .impact-cards { grid-template-columns: 1fr; gap: 24px; } }

  .impact-card {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--sky-500);
    transition: transform 200ms, box-shadow 200ms;
  }
  .impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

  .impact-card.color-red    { border-top-color: #b41e2c; }
  .impact-card.color-sky    { border-top-color: var(--sky-500); }
  .impact-card.color-teal   { border-top-color: #1a8a8a; }
  .impact-card.color-gold   { border-top-color: var(--gold-500); }
  .impact-card.color-purple { border-top-color: #6b3fa0; }

  .impact-card .img {
    aspect-ratio: 4/3;
    background: var(--slate-100);
    overflow: hidden;
  }
  .impact-card .img img { width: 100%; height: 100%; object-fit: cover; }
  .impact-card .stat-bar {
    padding: 16px 28px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: -0.01em;
  }
  .impact-card.color-red    .stat-bar { background: #b41e2c; }
  .impact-card.color-sky    .stat-bar { background: var(--sky-500); }
  .impact-card.color-teal   .stat-bar { background: #1a8a8a; }
  .impact-card.color-gold   .stat-bar { background: var(--gold-500); color: var(--navy-900); }
  .impact-card.color-purple .stat-bar { background: #6b3fa0; }

  .impact-card .body {
    padding: 28px;
    background: var(--slate-100);
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .impact-card .body h3 {
    text-transform: uppercase;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin: 0 0 10px;
    font-weight: 800;
  }
  .impact-card .body p { color: var(--slate-700); font-size: 0.95rem; flex: 1; }
  .impact-card .body .explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sky-500);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 14px;
    align-self: flex-start;
  }
  .impact-card .body .explore:hover { color: var(--sky-700); }

  /* ===== Causes band (No challenge is too big) ===== */
  .causes-band {
    background: var(--paper);
    padding-top: 24px; padding-bottom: 32px;
  }
  .causes-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 36px;
  }
  @media (max-width: 800px) { .causes-head { grid-template-columns: 1fr; gap: 18px; } }

  .causes-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  @media (max-width: 900px) { .causes-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .causes-grid { grid-template-columns: 1fr; } }

  .cause-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex; flex-direction: column;
    text-decoration: none; color: var(--ink);
    transition: transform 240ms ease, box-shadow 240ms ease;
  }
  .cause-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .cause-card .visual {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: var(--slate-100);
  }
  .cause-card .visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
  }
  .cause-card:hover .visual img { transform: scale(1.06); }
  .cause-card .visual::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 4px;
  }
  .cause-card.c-peace   .visual::after { background: #0e7ec9; }
  .cause-card.c-disease .visual::after { background: #b41e2c; }
  .cause-card.c-water   .visual::after { background: #009ddc; }
  .cause-card.c-mch     .visual::after { background: #d35980; }
  .cause-card.c-edu     .visual::after { background: #f7a81b; }
  .cause-card.c-econ    .visual::after { background: #1a8a8a; }
  .cause-card.c-env     .visual::after { background: #4ca64c; }

  .cause-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .cause-card .c-num { font-size: 0.72rem; letter-spacing: 0.18em; font-weight: 800; color: var(--slate-400); }
  .cause-card .c-name { font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; }
  .cause-card .c-blurb { font-size: 0.88rem; color: var(--slate-500); line-height: 1.5; margin: 0; }
  .cause-card .c-link {
    margin-top: auto; padding-top: 12px;
    font-size: 0.74rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .cause-card.c-peace   .c-link { color: #0e7ec9; }
  .cause-card.c-disease .c-link { color: #b41e2c; }
  .cause-card.c-water   .c-link { color: #009ddc; }
  .cause-card.c-mch     .c-link { color: #d35980; }
  .cause-card.c-edu     .c-link { color: #d79008; }
  .cause-card.c-econ    .c-link { color: #1a8a8a; }
  .cause-card.c-env     .c-link { color: #2f7a2f; }
  .cause-card .c-link::after { content: "→"; transition: transform 220ms; }
  .cause-card:hover .c-link::after { transform: translateX(4px); }
  .cause-card.cta {
    background: linear-gradient(135deg, var(--sky-500), var(--navy-700));
    color: var(--white); padding: 28px 26px 32px; justify-content: space-between;
  }
  .cause-card.cta .visual { display: none; }
  .cause-card.cta .c-num { color: rgba(255,255,255,0.7); }
  .cause-card.cta .c-name { color: var(--white); font-size: 1.4rem; max-width: 14ch; }
  .cause-card.cta .c-blurb { color: rgba(255,255,255,0.85); }
  .cause-card.cta .c-link { color: var(--white); }
  .causes-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 40px;
  }
  @media (max-width: 800px) { .causes-head { grid-template-columns: 1fr; gap: 18px; } }

  /* ===== Mission band ===== */
  .mission {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
    padding: 38px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
  }
  /* Faint Rotary gear background */
  .mission::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 520px; height: 520px;
    transform: translate(-50%, -50%);
    background-image: url('https://summervilleeveningrotary.org/wp-content/uploads/2020/07/Summerville-Evening-Wheel160x160.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    filter: brightness(0) invert(1);
  }
  .mission .wrap-narrow { max-width: 1100px; position: relative; z-index: 1; }
  .mission .eyebrow { color: var(--gold-400); }
  .mission .eyebrow::before { background: var(--gold-500); }
  .mission .quote {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    line-height: 1.45;
    letter-spacing: -0.005em;
    max-width: none;
    margin: 12px auto 12px;
    color: var(--white);
  }
  .mission .quote .accent { color: var(--gold-400); font-style: italic; }
  .mission .signoff {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);
    font-weight: 700;
  }

  /* ===== President welcome ===== */
  .president-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
  }
  .president-card .portrait {
    aspect-ratio: 4/5;
    border-radius: 14px;
    overflow: hidden;
    background: var(--slate-100);
    position: relative;
  }
  .president-card .portrait::after {
    content: "";
    position: absolute;
    inset: auto -20px -20px auto;
    width: 200px; height: 200px;
    background: var(--gold-500);
    z-index: -1;
    border-radius: 14px;
  }
  .president-card .portrait img { width: 100%; height: 100%; object-fit: cover; }
  .president-card .copy { padding-top: 12px; }
  .president-card .copy h2 { margin-bottom: 14px; }
  .president-card .signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    margin-top: 24px;
    color: var(--navy-800);
  }
  .president-card .signature span {
    display: block;
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-top: 6px;
    font-weight: 700;
  }
  @media (max-width: 800px) {
    .president-card { grid-template-columns: 1fr; gap: 32px; }
    .president-card .portrait { max-width: 280px; }
  }

  /* ===== Service projects featured cards ===== */
  .project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    display: flex; flex-direction: column;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    position: relative;
    text-decoration: none;
    color: var(--ink);
  }
  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }
  .project-card .img-frame {
    aspect-ratio: 4/3;
    background: var(--slate-100);
    overflow: hidden;
    position: relative;
  }
  .project-card .img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
  .project-card:hover .img-frame img { transform: scale(1.05); }
  .project-card .img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(7, 23, 58, 0.08) 100%);
    pointer-events: none;
  }
  .project-card .body {
    padding: 32px 32px 28px;
    display: flex; flex-direction: column;
    flex: 1;
    gap: 12px;
  }
  .project-card .badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: var(--sky-500);
    margin: 0;
  }
  .project-card h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--ink);
    /* Stretched-link target */
    position: relative;
  }
  .project-card h3 a {
    color: inherit;
    text-decoration: none;
  }
  .project-card h3 a::after {
    /* Make the entire card clickable */
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .project-card p {
    margin: 0;
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.55;
    flex: 1;
  }
  .project-card .more {
    margin-top: 6px;
    font-weight: 800;
    color: var(--sky-500);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: gap 200ms;
  }
  .project-card:hover .more { gap: 12px; color: var(--sky-700); }

  /* ===== Events calendar ===== */
  .events {
    background: var(--paper);
    padding-top: 32px;
  }
  .event-row {
    display: grid;
    grid-template-columns: 110px 1.4fr 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--slate-200);
  }
  .event-row:first-child { border-top: 1px solid var(--slate-200); }
  .event-date {
    text-align: center;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    line-height: 1;
  }
  .event-date .mo { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-600); font-weight: 700; }
  .event-date .day { font-size: 2rem; font-weight: 800; color: var(--ink); margin-top: 6px; letter-spacing: -0.02em; }
  .event-info h4 { margin-bottom: 4px; font-size: 1.1rem; font-weight: 700; }
  .event-info .meta { font-size: 0.88rem; color: var(--slate-500); }
  .event-loc { font-size: 0.92rem; color: var(--slate-500); }
  @media (max-width: 800px) {
    .event-row { grid-template-columns: 80px 1fr; }
    .event-loc, .event-row .btn { grid-column: span 2; }
  }

  /* ===== Member spotlight ===== */
  .spotlight {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .spotlight::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 540px; height: 540px;
    background-image: url('https://summervilleeveningrotary.org/wp-content/uploads/2020/07/Summerville-Evening-Wheel160x160.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    filter: brightness(0) invert(1);
    pointer-events: none;
  }
  .spotlight .wrap { position: relative; z-index: 1; }
  .spotlight .split { align-items: center; }
  .spotlight .photo {
    aspect-ratio: 5/6;
    border-radius: 14px;
    overflow: hidden;
    background: var(--navy-800);
    position: relative;
  }
  .spotlight .photo img { width: 100%; height: 100%; object-fit: cover; }
  .spotlight .photo::before {
    content: "";
    position: absolute;
    left: -20px; top: -20px;
    width: 100px; height: 100px;
    border: 3px solid var(--gold-500);
    border-radius: 14px;
    z-index: 0;
  }
  .spotlight h2 { color: var(--white); }
  .spotlight .quote {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .spotlight .quote::before { content: "“"; color: var(--gold-400); font-size: 3.6em; line-height: 0; vertical-align: -0.25em; margin-right: 6px; }
  .spotlight .attrib { font-size: 0.9rem; color: var(--gold-400); font-weight: 700; letter-spacing: 0.04em; }
  .spotlight .attrib span { color: var(--slate-300); font-weight: 500; }

  /* ===== Fundraisers ===== */
  .fundraiser-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
  }
  .fundraiser-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,23,58,0.05) 0%, rgba(7,23,58,0.85) 100%);
  }
  .fundraiser-card > * { position: relative; z-index: 1; }
  .fundraiser-card .when {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-400);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .fundraiser-card h3 { color: var(--white); font-size: 1.85rem; margin-bottom: 8px; }
  .fundraiser-card p { color: var(--slate-200); font-size: 0.95rem; margin-bottom: 18px; }
  .fundraiser-card .arrow-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
    align-self: flex-start;
  }

  /* ===== Insta-style horizontal reel ===== */
  .insta-reel-section {
    background: var(--white);
    padding: 56px 0 64px;
    position: relative;
  }
  .insta-reel-head {
    max-width: var(--maxw);
    margin: 0 auto 28px;
    padding: 0 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
  }
  .insta-reel-head .meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--slate-500);
    font-weight: 600;
  }
  .insta-reel-head .meta a { color: var(--sky-500); font-weight: 700; }
  .insta-reel-head .meta a:hover { color: var(--sky-700); }

  .insta-reel-wrap {
    position: relative;
  }
  .insta-reel {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .insta-reel::-webkit-scrollbar { display: none; }
  .insta-tile {
    position: relative;
    flex: 0 0 auto;
    width: 340px;
    aspect-ratio: 1 / 1;
    scroll-snap-align: start;
    overflow: hidden;
    background: var(--slate-100);
    cursor: pointer;
  }
  .insta-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
  }
  .insta-tile:hover img { transform: scale(1.05); }
  .insta-tile .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.7) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px 18px;
    opacity: 0;
    transition: opacity 240ms;
  }
  .insta-tile:hover .overlay { opacity: 1; }
  .insta-tile .overlay .cap {
    font-size: 0.88rem; line-height: 1.35; font-weight: 500;
  }
  .insta-tile .stats {
    display: flex; gap: 14px;
    font-size: 0.78rem; font-weight: 700;
    margin-top: 8px;
  }
  .insta-tile.is-carousel::after,
  .insta-tile.is-video::after {
    content: ""; position: absolute;
    top: 12px; right: 12px;
    width: 22px; height: 22px;
    background-size: contain; background-repeat: no-repeat;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
  }
  .insta-tile.is-carousel::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='14' height='14' rx='2'/><path d='M7 7h14v14H7z'/></svg>");
  }
  .insta-tile.is-video::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M8 5v14l11-7z'/></svg>");
  }

  .insta-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 0;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.1);
    display: grid; place-items: center;
    cursor: pointer;
    color: var(--ink);
    z-index: 4;
    transition: background 140ms, color 140ms;
  }
  .insta-nav:hover { background: var(--sky-500); color: var(--white); }
  .insta-nav.prev { left: 12px; }
  .insta-nav.next { right: 12px; }
  .insta-nav svg { width: 18px; height: 18px; }

  .insta-reel-wrap::before,
  .insta-reel-wrap::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
  }
  .insta-reel-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0) 100%);
  }
  .insta-reel-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white) 0%, rgba(255,255,255,0) 100%);
  }
  @media (max-width: 720px) {
    .insta-tile { width: 240px; }
    .insta-nav { display: none; }
  }

  /* ===== Gallery (deprecated) ===== */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }
  .gallery-grid .tile { border-radius: 8px; }
  .gallery-grid .g-1 { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .g-2 { grid-column: span 2; }
  .gallery-grid .g-3 { grid-column: span 2; }
  .gallery-grid .g-4 { grid-column: span 2; }
  .gallery-grid .g-5 { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .g-6 { grid-column: span 2; }
  .gallery-grid .g-7 { grid-column: span 2; }
  @media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
    .gallery-grid .g-1, .gallery-grid .g-2, .gallery-grid .g-3, .gallery-grid .g-4, .gallery-grid .g-5, .gallery-grid .g-6, .gallery-grid .g-7 { grid-column: span 1; grid-row: auto; }
    .gallery-grid .g-1, .gallery-grid .g-5 { grid-column: span 2; grid-row: span 1; }
  }

  /* ===== Sponsors strip ===== */
  .sponsors {
    background: var(--white);
    padding: 56px 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }
  .sponsor-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
  }
  .sponsor-row .sponsor {
    height: 56px;
    border: 1px dashed var(--slate-300);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--slate-500);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
  }
  @media (max-width: 800px) { .sponsor-row { grid-template-columns: repeat(3, 1fr); } }

  /* ===== Final CTA ===== */
  .final-cta {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--sky-700) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(600px 300px at 20% 30%, rgba(247, 168, 27, 0.15), transparent 60%),
      radial-gradient(500px 300px at 80% 80%, rgba(0, 157, 220, 0.35), transparent 60%);
  }
  .final-cta::after {
    content: "";
    position: absolute;
    top: -100px; right: -120px;
    width: 520px; height: 520px;
    background-image: url('https://summervilleeveningrotary.org/wp-content/uploads/2020/07/Summerville-Evening-Wheel160x160.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    filter: brightness(0) invert(1);
    pointer-events: none;
  }
  .final-cta > * { position: relative; }
  .final-cta h2 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.8rem); max-width: 18ch; margin: 0 auto 22px; }
  .final-cta .lead { color: var(--slate-200); max-width: 56ch; margin: 0 auto 32px; }
  .final-cta .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ===== Hide variations based on data attr ===== */
  body[data-hero="A"] .hero-b, body[data-hero="A"] .hero-c, body[data-hero="A"] .hero-d { display: none; }
  body[data-hero="B"] .hero-a, body[data-hero="B"] .hero-c, body[data-hero="B"] .hero-d { display: none; }
  body[data-hero="C"] .hero-a, body[data-hero="C"] .hero-b, body[data-hero="C"] .hero-d { display: none; }
  body[data-hero="D"] .hero-a, body[data-hero="D"] .hero-b, body[data-hero="D"] .hero-c { display: none; }
