
    :root {
      --rotary-blue: #005DAA;
      --rotary-dark: #002147;
      --rotary-gold: #F7A81B;
      --rotary-blue-light: #E6F0FA;
      --white: #FFFFFF;
      --gray-50: #F8FAFC;
      --gray-100: #F1F5F9;
      --gray-200: #E2E8F0;
      --gray-600: #475569;
      --gray-800: #1E293B;
      --navy: #002147;
      --success: #10B981;
      --warning: #F59E0B;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      --radius: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--gray-800);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      line-height: 1.2;
      font-weight: 700;
      color: var(--navy);
    }

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

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

    .container {
      width: 92%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 60px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--rotary-gold);
      background: rgba(247, 168, 27, 0.12);
      padding: 8px 16px;
      border-radius: var(--radius-full);
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 18px;
      color: var(--navy);
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--gray-600);
      line-height: 1.8;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 0.95rem;
      transition: var(--transition);
      cursor: pointer;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--rotary-gold);
      color: var(--navy);
      box-shadow: 0 8px 20px rgba(247, 168, 27, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(247, 168, 27, 0.45);
      background: #FFB833;
    }

    .btn-secondary {
      background: var(--rotary-blue);
      color: var(--white);
      box-shadow: 0 8px 20px rgba(0, 93, 170, 0.3);
    }

    .btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0, 93, 170, 0.4);
      background: #0066BB;
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.45);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.8);
      transform: translateY(-3px);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--rotary-blue);
      border-color: var(--rotary-blue);
    }

    .btn-outline-dark:hover {
      background: var(--rotary-blue);
      color: var(--white);
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: var(--transition);
      padding: 18px 0;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow);
      padding: 12px 0;
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

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

    .brand-logo {
      height: 50px;
      width: auto;
      display: block;
      transition: opacity 0.3s ease;
    }

    .brand-logo-dark {
      display: none;
    }

    .navbar.scrolled .brand-logo-light {
      display: none;
    }

    .navbar.scrolled .brand-logo-dark {
      display: block;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-text strong {
      font-family: 'Poppins', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      transition: var(--transition);
    }

    .navbar.scrolled .brand-text strong {
      color: var(--navy);
    }

    .brand-text span {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.2px;
      color: var(--rotary-gold);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: 0.92rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.92);
      transition: var(--transition);
      position: relative;
    }

    .navbar.scrolled .nav-links a {
      color: var(--gray-800);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--rotary-gold);
      transition: var(--transition);
    }

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

    /* ---------- Dropdown navigation ---------- */
    .nav-links .has-dropdown {
    position: relative;
    }

    .nav-links .has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    }

    .nav-links .caret {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    display: inline-block;
    }

    .nav-links .has-dropdown:hover > a .caret,
    .nav-links .has-dropdown:focus-within > a .caret {
    transform: rotate(180deg);
    }

    .dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 10px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s;
    z-index: 100;
    border: 1px solid var(--gray-100);
    }

    /* Invisible bridge so hover doesn't break when moving cursor to dropdown */
    .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
    }

    .nav-links .has-dropdown:hover > .dropdown-menu,
    .nav-links .has-dropdown:focus-within > .dropdown-menu,
    .nav-links .has-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    }

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

    .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-800) !important;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    }

    .dropdown-menu a::after {
    display: none;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
    background: var(--rotary-blue-light);
    color: var(--rotary-blue) !important;
    }

    /* Touch devices: dropdowns open via the .open class toggled by JS */
    @media (hover: none) {
        .nav-links .has-dropdown:hover > .dropdown-menu {
        opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .nav-links .has-dropdown.open > .dropdown-menu {
        opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
    width: 100%;
    }

    .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    }

    .nav-cta {
    padding: 10px 22px;
    font-size: 0.85rem;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: none;
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .navbar.scrolled .mobile-toggle {
      background: var(--rotary-blue-light);
      color: var(--rotary-blue);
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy) 0%, var(--rotary-blue) 100%);
      padding-top: 100px;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/><circle cx="50" cy="50" r="35" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></svg>') center/600px no-repeat;
      opacity: 0.6;
      animation: slowRotate 120s linear infinite;
    }

    .hero-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      pointer-events: none;
    }

    .hero-shape-1 {
      width: 500px;
      height: 500px;
      background: var(--rotary-gold);
      top: -150px;
      right: -100px;
      animation: float 8s ease-in-out infinite;
    }

    .hero-shape-2 {
      width: 350px;
      height: 350px;
      background: #60A5FA;
      bottom: -120px;
      left: -80px;
      animation: float 10s ease-in-out infinite reverse;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(247, 168, 27, 0.15);
      color: var(--rotary-gold);
      padding: 10px 20px;
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
      border: 1px solid rgba(247, 168, 27, 0.2);
      backdrop-filter: blur(10px);
    }

    .hero h1 {
      font-size: clamp(2.6rem, 5vw, 4rem);
      color: var(--white);
      margin-bottom: 28px;
      font-weight: 800;
      line-height: 1.2;
    }

    .hero h1 .highlight {
      color: var(--rotary-gold);
      display: inline;
    }

    .hero p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.85);
      max-width: 600px;
      margin-bottom: 36px;
      line-height: 1.8;
    }

    .hero p.hero-tagline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.3rem, 2.2vw, 1.7rem);
      font-weight: 700;
      color: var(--rotary-gold);
      margin-top: 0;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
      max-width: 600px;
      line-height: 1.4;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-media {
      position: relative;
    }

    .hero-image-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
      transform: perspective(1000px) rotateY(-5deg);
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-image-card:hover {
      transform: perspective(1000px) rotateY(0deg) scale(1.02);
    }

    .hero-image-card img {
      width: 100%;
      height: 520px;
      object-fit: cover;
    }

    .hero-float {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-radius: var(--radius);
      padding: 14px 18px;
      box-shadow: var(--shadow-xl);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: float 6s ease-in-out infinite;
      z-index: 2;
      max-width: 220px;
    }

    .hero-float-1 {
      top: 24px;
      left: 24px;
    }

    .hero-float-2 {
      bottom: 24px;
      right: 24px;
      animation-delay: -3s;
    }

    .hero-float-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--rotary-blue-light);
      color: var(--rotary-blue);
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .hero-float-text strong {
      display: block;
      font-family: 'Poppins', sans-serif;
      color: var(--navy);
      font-size: 1rem;
      line-height: 1.2;
    }

    .hero-float-text span {
      font-size: 0.78rem;
      color: var(--gray-600);
      line-height: 1.2;
    }

    /* Stats */
    .stats-section {
      padding: 80px 0 60px;
      margin-top: 0;
      position: relative;
      z-index: 10;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .stat-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 24px;
      text-align: center;
      box-shadow: var(--shadow-xl);
      transition: var(--transition);
      border: 1px solid var(--gray-100);
    }

    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }

    .stat-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: var(--rotary-blue-light);
      color: var(--rotary-blue);
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      margin: 0 auto 18px;
    }

    .stat-number {
      font-family: 'Poppins', sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--rotary-blue);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 0.95rem;
      color: var(--gray-600);
      font-weight: 500;
    }

    /* About */
    .about-section {
      background: var(--gray-50);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .about-media {
      position: relative;
    }

    .about-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .about-image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }

    .about-experience {
      position: absolute;
      bottom: -30px;
      right: -20px;
      background: var(--rotary-blue);
      color: var(--white);
      padding: 28px 32px;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: var(--shadow-xl);
    }

    .about-experience strong {
      font-family: 'Poppins', sans-serif;
      font-size: 2.4rem;
      display: block;
      line-height: 1;
    }

    .about-experience span {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    .about-content h2 {
      margin-bottom: 20px;
    }

    .about-content p {
      color: var(--gray-600);
      margin-bottom: 18px;
      line-height: 1.8;
    }

    .about-values {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 28px 0 32px;
    }

    .about-value {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      font-weight: 600;
      color: var(--navy);
    }

    .about-value-icon {
      color: var(--rotary-gold);
      font-size: 1.2rem;
    }

    /* Areas of Focus */
    .focus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .focus-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .focus-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--rotary-gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }

    .focus-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: var(--rotary-blue-light);
    }

    .focus-card:hover::before {
      transform: scaleX(1);
    }

    .focus-icon {
      width: 110px;
      height: 110px;
      border-radius: 18px;
      background: var(--rotary-blue-light);
      color: var(--rotary-blue);
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      transition: var(--transition);
      padding: 12px;
    }

    .focus-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: var(--transition);
    }

    .focus-card:hover .focus-icon {
      background: var(--white);
      transform: scale(1.05);
      box-shadow: var(--shadow-lg);
    }

    .focus-card:hover .focus-icon img {
      transform: scale(1.08);
    }

    .focus-card h3 {
      font-size: 1.25rem;
      margin-bottom: 12px;
    }

    .focus-card p {
      color: var(--gray-600);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    /* Projects */
    .projects-section {
      background: var(--gray-50);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .project-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--gray-100);
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
    }

    .project-image {
      position: relative;
      overflow: hidden;
      height: 220px;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .project-card:hover .project-image img {
      transform: scale(1.08);
    }

    .project-category {
      position: absolute;
      top: 18px;
      left: 18px;
      background: var(--rotary-gold);
      color: var(--navy);
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .project-body {
      padding: 26px;
    }

    .project-body h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .project-body p {
      color: var(--gray-600);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .project-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 18px;
      border-top: 1px solid var(--gray-100);
      font-size: 0.85rem;
      color: var(--gray-600);
      margin-bottom: 18px;
    }

    .project-link {
      font-weight: 700;
      color: var(--rotary-blue);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .project-link:hover {
      color: var(--rotary-gold);
      gap: 14px;
    }

    /* Governor Message */
    .governor-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--rotary-blue) 100%);
      color: var(--white);
      padding-top: 60px;
    }

    .governor-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .governor-portrait {
      position: relative;
    }

    .governor-portrait img {
      width: 100%;
      max-width: 420px;
      border-radius: var(--radius-lg);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
      margin: 0 auto;
    }

    .governor-content .section-label {
      background: rgba(247, 168, 27, 0.2);
      color: var(--rotary-gold);
    }

    .governor-content h2 {
      color: var(--white);
      margin-bottom: 20px;
    }

    .governor-content p {
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.9;
      margin-bottom: 20px;
      font-size: 1.05rem;
    }

    .governor-quote {
      background: rgba(255, 255, 255, 0.08);
      border-left: 4px solid var(--rotary-gold);
      padding: 24px 28px;
      border-radius: 0 var(--radius) var(--radius) 0;
      margin: 28px 0;
      backdrop-filter: blur(10px);
    }

    .governor-quote p {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      font-style: italic;
      color: var(--white);
      margin-bottom: 12px;
    }

    .governor-quote cite {
      font-size: 0.9rem;
      color: var(--rotary-gold);
      font-weight: 700;
      font-style: normal;
    }

    .governor-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    /* RI President */
    .ri-president-section {
      background: var(--white);
    }

    /* ponytail: soft indigo-gray gradient to differentiate from the
       near-white RI President panel above. Matches brand (navy family)
       without going fully dark, so cards stay light/readable. */
    .leadership-section {
      background: linear-gradient(135deg, var(--gray-50) 0%, #EEF2FF 100%);
    }

    .ri-president-grid {
      display: grid;
      grid-template-columns: 280px 1fr 200px;
      gap: 40px;
      align-items: center;
      background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
      border-radius: var(--radius-lg);
      padding: 50px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-100);
    }

    .ri-president-photo {
      position: relative;
    }

    .ri-president-photo img {
      width: 100%;
      max-width: 280px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-xl);
      margin: 0 auto;
    }

    .ri-president-info h2 {
      font-size: 1.8rem;
      color: var(--rotary-blue);
      margin-bottom: 8px;
    }

    .ri-president-info h3 {
      font-size: 1.4rem;
      color: var(--rotary-gold);
      margin-bottom: 18px;
    }

    .ri-president-info p {
      color: var(--gray-600);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .ri-president-info strong {
      color: var(--navy);
    }

    .ri-theme {
      text-align: center;
    }

    .ri-theme img {
      max-width: 200px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    @media (max-width: 1100px) {
      .ri-president-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 28px;
      }

      .ri-president-photo img {
        max-width: 200px;
      }
    }

    /* Leadership */
    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 26px;
    }

    .leader-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--gray-100);
    }

    .leader-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .leader-image {
      height: 260px;
      overflow: hidden;
      background: var(--gray-100);
    }

    .leader-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .leader-card:hover .leader-image img {
      transform: scale(1.05);
    }

    .leader-info {
      padding: 24px;
    }

    .leader-info h3 {
      font-size: 1.15rem;
      margin-bottom: 4px;
    }

    .leader-role {
      color: var(--rotary-gold);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .leader-info p {
      color: var(--gray-600);
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .leader-social {
      display: flex;
      gap: 10px;
    }

    .leader-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--rotary-blue);
      display: grid;
      place-items: center;
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .leader-social a:hover {
      background: var(--rotary-blue);
      color: var(--white);
    }

    .leader-year {
      display: inline-block;
      font-family: 'Poppins', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--white);
      background: var(--rotary-blue);
      padding: 3px 10px;
      border-radius: 999px;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .leader-image-placeholder {
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--navy) 100%);
      position: relative;
      overflow: hidden;
    }

    .leader-image-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 60%),
                  radial-gradient(circle at 70% 80%, rgba(247,168,27,0.18), transparent 60%);
      pointer-events: none;
    }

    .leader-initials {
      font-family: 'Poppins', sans-serif;
      font-size: 4rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.92);
      letter-spacing: 2px;
      z-index: 1;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Secretariat subsection */
    .secretariat {
      margin-top: 80px;
    }

    .secretariat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .secretariat-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .secretariat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--rotary-gold);
    }

    .secretariat-avatar {
          width: 56px;
          height: 56px;
          border-radius: 50%;
          background: linear-gradient(135deg, var(--rotary-gold) 0%, var(--rotary-blue) 100%);
          color: var(--white);
          font-family: 'Poppins', sans-serif;
          font-size: 1.05rem;
          font-weight: 700;
          display: grid;
          place-items: center;
          flex-shrink: 0;
          letter-spacing: 0.5px;
          box-shadow: 0 4px 12px rgba(0, 93, 170, 0.25);
          overflow: hidden;
        }

        .secretariat-avatar img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center top;
          display: block;
        }

    .secretariat-info h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
    }

    .secretariat-role {
      font-size: 0.82rem;
      color: var(--rotary-blue);
      font-weight: 600;
    }

    /* Events Timeline */
    .events-section {
      background: var(--gray-50);
    }

    .events-timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    .events-timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: var(--gray-200);
      transform: translateX(-50%);
    }

    .timeline-item {
      position: relative;
      width: 50%;
      padding: 0 40px 40px 0;
      animation: fadeInUp 0.8s ease forwards;
      opacity: 0;
    }

    .timeline-item:nth-child(even) {
      margin-left: auto;
      padding: 0 0 40px 40px;
    }

    .timeline-dot {
      position: absolute;
      top: 6px;
      right: -10px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--rotary-gold);
      border: 4px solid var(--white);
      box-shadow: var(--shadow);
      z-index: 2;
    }

    .timeline-item:nth-child(even) .timeline-dot {
      right: auto;
      left: -10px;
    }

    .timeline-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-100);
      transition: var(--transition);
    }

    .timeline-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
    }

    .timeline-date {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--rotary-blue-light);
      color: var(--rotary-blue);
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .timeline-card h3 {
      font-size: 1.15rem;
      margin-bottom: 8px;
    }

    .timeline-card p {
      color: var(--gray-600);
      font-size: 0.95rem;
      margin-bottom: 16px;
    }

    .timeline-meta {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 0.88rem;
      color: var(--gray-600);
      margin-bottom: 16px;
    }

    /* Stories */
    .stories-section {
      overflow: hidden;
    }

    .stories-slider {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 10px 0 30px;
      scrollbar-width: none;
    }

    .stories-slider::-webkit-scrollbar {
      display: none;
    }

    .story-card {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-100);
    }

    .story-image {
      height: 220px;
      overflow: hidden;
    }

    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-body {
      padding: 28px;
    }

    .story-body blockquote {
      font-style: italic;
      color: var(--gray-600);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .story-author {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: var(--navy);
    }

    .story-project {
      font-size: 0.85rem;
      color: var(--rotary-gold);
      font-weight: 600;
    }

    /* Gallery */
    .gallery-section {
      background: var(--gray-50);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 220px;
      gap: 16px;
    }

    .gallery-item {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      box-shadow: var(--shadow);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 33, 71, 0.85), transparent);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      opacity: 0;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h4 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 6px;
    }

    .gallery-overlay span {
      color: var(--rotary-gold);
      font-size: 0.85rem;
      font-weight: 600;
    }

    .gallery-item.tall {
      grid-row: span 2;
    }

    .gallery-item.wide {
      grid-column: span 2;
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 21, 48, 0.95);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .lightbox.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox img {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: var(--radius);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    }

    .lightbox-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: var(--white);
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: var(--transition);
    }

    .lightbox-close:hover {
      background: var(--rotary-gold);
      color: var(--navy);
    }

    /* Why Join */
    .why-join-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .why-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      text-align: center;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-100);
      transition: var(--transition);
    }

    .why-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
      border-color: var(--rotary-blue-light);
    }

    .why-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--rotary-blue-light);
      color: var(--rotary-blue);
      display: grid;
      place-items: center;
      font-size: 2rem;
      margin: 0 auto 24px;
      transition: var(--transition);
    }

    .why-card:hover .why-icon {
      background: var(--rotary-gold);
      color: var(--navy);
      transform: rotateY(360deg);
    }

    .why-card h3 {
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .why-card ul {
      list-style: none;
      text-align: left;
      max-width: 220px;
      margin: 0 auto;
    }

    .why-card li {
      padding: 8px 0;
      color: var(--gray-600);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
    }

    .why-card li::before {
      content: '✓';
      color: var(--rotary-gold);
      font-weight: 800;
    }

    /* Foundation */
    .foundation-section {
      background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    }

    .foundation-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .foundation-content p {
      color: var(--gray-600);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .progress-item {
      margin-bottom: 26px;
    }

    .progress-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .progress-bar {
      height: 10px;
      background: var(--gray-200);
      border-radius: var(--radius-full);
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--rotary-blue), var(--rotary-gold));
      border-radius: var(--radius-full);
      width: 0;
      transition: width 1.5s ease;
    }

    .foundation-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .foundation-image img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

    /* News */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .news-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--gray-100);
    }

    .news-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .news-image {
      height: 200px;
      overflow: hidden;
    }

    .news-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .news-card:hover .news-image img {
      transform: scale(1.08);
    }

    .news-body {
      padding: 26px;
    }

    .news-meta {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .news-category {
      color: var(--rotary-gold);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .news-date {
      color: var(--gray-600);
    }

    .news-body h3 {
      font-size: 1.15rem;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .news-body p {
      color: var(--gray-600);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    /* Partners */
    .partners-section {
      padding: 60px 0;
    }

    .partners-track {
      display: flex;
      gap: 50px;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    }

    .partners-slide {
      display: flex;
      gap: 50px;
      animation: scroll 25s linear infinite;
      flex-shrink: 0;
    }

    .partner-logo {
      flex-shrink: 0;
      height: 60px;
      width: 160px;
      background: var(--gray-100);
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: var(--gray-600);
      font-size: 0.95rem;
    }

    /* Newsletter */
    .newsletter-section {
      padding: 80px 0;
    }

    .newsletter-card {
      background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--navy) 100%);
      border-radius: var(--radius-lg);
      padding: 60px;
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .newsletter-card::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: rgba(247, 168, 27, 0.15);
      border-radius: 50%;
    }

    .newsletter-card h2 {
      color: var(--white);
      font-size: 2.2rem;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .newsletter-card p {
      color: rgba(255, 255, 255, 0.85);
      max-width: 560px;
      margin: 0 auto 28px;
      position: relative;
      z-index: 1;
    }

    .newsletter-form {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .newsletter-form input {
      padding: 14px 22px;
      border-radius: var(--radius-full);
      border: none;
      font-size: 0.95rem;
      min-width: 240px;
      outline: none;
    }

    /* CTA */
    .cta-section {
      background: var(--rotary-blue);
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="0.5"/></svg>') center/500px no-repeat;
      animation: slowRotate 100s linear infinite;
    }

    .cta-section h2 {
      color: var(--white);
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .cta-section p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.1rem;
      max-width: 680px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 1;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    /* Footer */
    .footer {
      background: var(--navy);
      color: var(--white);
      padding: 80px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
      gap: 50px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .footer-brand-logo {
      height: 56px;
      width: auto;
      display: block;
    }

    .footer-about p {
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .footer-column h4 {
      color: var(--rotary-gold);
      font-size: 1.05rem;
      margin-bottom: 22px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 12px;
    }

    .footer-column a {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .footer-column a:hover {
      color: var(--rotary-gold);
      padding-left: 4px;
    }

    .footer-contact p {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.95rem;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      display: grid;
      place-items: center;
      transition: var(--transition);
    }

    .footer-social a:hover {
      background: var(--rotary-gold);
      color: var(--navy);
    }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.7);
      margin-left: 20px;
    }

    .footer-bottom a:hover {
      color: var(--rotary-gold);
    }

    /* Utilities */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }

    .back-to-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--rotary-gold);
      color: var(--navy);
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow: var(--shadow-xl);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 900;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-4px);
      background: #FFB833;
    }

    /* Animations */
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(1deg); }
    }

    @keyframes slowRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .hero-grid,
      .about-grid,
      .governor-grid,
      .foundation-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .hero-media {
        order: -1;
      }

      .hero-image-card img {
        height: 400px;
      }

      .hero-float {
        display: none;
      }

      .about-experience {
        right: 20px;
      }

      .governor-portrait img {
        max-width: 360px;
      }

      .foundation-image img {
        height: 360px;
      }
    }

    @media (max-width: 992px) {
      .nav-links,
      .nav-actions .btn {
        display: none;
      }

      .mobile-toggle {
        display: grid;
      }

      .stats-grid,
      .focus-grid,
      .projects-grid,
      .leadership-grid,
      .why-join-grid,
      .news-grid,
      .footer-grid,
      .secretariat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* ponytail: mobile drawer nav — vertical list, dropdowns inline-expand */
      /* ponytail: close button inside the drawer (top-right) */
      #mobileNav .mobile-nav-close {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 44px;
        height: 44px;
        border: none;
        background: rgba(255,255,255,0.10);
        color: var(--white);
        font-size: 1.8rem;
        line-height: 1;
        border-radius: 12px;
        cursor: pointer;
        z-index: 2;
        padding: 0;
      }
      #mobileNav .mobile-nav-close:hover {
        background: rgba(255,255,255,0.18);
      }

      #mobileNav .nav-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
      }
      #mobileNav .nav-links li { list-style: none; }
      #mobileNav .nav-links > li > a {
        display: block;
        color: var(--white);
        font-size: 1.05rem;
        font-weight: 600;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.10);
      }
      #mobileNav .has-dropdown > .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0 0 0 16px;
        min-width: 0;
        display: none;
      }
      #mobileNav .has-dropdown.open > .dropdown-menu { display: block; }


      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .events-timeline::before {
        left: 20px;
      }

      .timeline-item,
      .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
      }

      .timeline-dot,
      .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
      }

      .section {
        padding: 70px 0;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: 94%;
      }

      .stats-grid,
      .focus-grid,
      .projects-grid,
      .leadership-grid,
      .why-join-grid,
      .news-grid,
      .about-values,
      .footer-grid,
      .secretariat-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
      }

      .gallery-item.wide,
      .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
      }

      .hero h1 {
        font-size: 2.3rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .newsletter-card {
        padding: 40px 24px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
      }

      .cta-actions {
        flex-direction: column;
      }

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

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
}
/* ============================================================
       Contact page
       ============================================================ */
    .page-contact .contact-hero {
      padding-top: 60px;
      padding-bottom: 30px;
      background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    }

    /* Tighter section padding on the contact page (5 sections, default 100px makes it feel airy) */
    .page-contact .section {
      padding: 60px 0;
    }

    .page-contact .section-header {
      margin-bottom: 40px;
    }

    .contact-hero-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .contact-hero-content .section-title {
      text-align: left;
      margin-bottom: 20px;
    }

    .contact-hero-content .section-label {
      text-align: left;
    }

    .contact-hero-lead {
      font-size: 1.1rem;
      color: var(--gray-700);
      line-height: 1.7;
      max-width: 640px;
    }

    .contact-hero-media {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4 / 3;
      background: var(--gray-100);
    }

    .contact-hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* District contact info cards */
    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .contact-info-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .contact-info-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--rotary-gold);
    }

    .contact-info-icon {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .contact-info-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .contact-info-card a,
    .contact-info-card span {
      display: block;
      color: var(--rotary-blue);
      font-weight: 600;
      font-size: 0.95rem;
      word-break: break-word;
    }

    .contact-info-card a:hover {
      color: var(--rotary-gold);
    }

    .contact-info-meta {
      margin-top: 8px;
      font-size: 0.8rem;
      color: var(--gray-500);
      font-weight: 400;
    }

    /* Contact form */
    .contact-form-section {
      background: var(--gray-50);
    }

    .contact-form {
      max-width: 760px;
      margin: 40px auto 0;
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-100);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 0;
    }

    .form-group + .form-group:not(.form-row .form-group) {
      margin-bottom: 20px;
    }

    .form-group label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      padding: 12px 14px;
      border: 1px solid var(--gray-200);
      border-radius: 8px;
      background: var(--white);
      color: var(--gray-900);
      transition: var(--transition);
      width: 100%;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 140px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--rotary-blue);
      box-shadow: 0 0 0 3px rgba(0, 93, 170, 0.15);
    }

    .form-group input:invalid:not(:placeholder-shown),
    .form-group textarea:invalid:not(:placeholder-shown) {
      border-color: #c0392b;
    }

    .form-actions {
      display: flex;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .form-note {
      margin-top: 16px;
      font-size: 0.82rem;
      color: var(--gray-500);
    }

    /* Social cards */
    .social-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .social-card {
      background: var(--white);
      padding: 28px 20px;
      border-radius: var(--radius);
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-sm);
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .social-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      background: var(--rotary-blue);
      color: var(--white);
    }

    .social-card:hover h3,
    .social-card:hover span {
      color: var(--white);
    }

    .social-card:hover .social-icon {
      background: var(--rotary-gold);
      color: var(--rotary-blue);
    }

    .social-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.4rem;
      background: var(--rotary-blue-light);
      color: var(--rotary-blue);
      transition: var(--transition);
    }

    .social-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 4px 0 0;
    }

    .social-card span {
      font-size: 0.88rem;
      color: var(--gray-700);
      font-weight: 500;
    }

    /* Support team cards */
    .support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .support-card {
      background: var(--white);
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-sm);
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: var(--transition);
    }

    .support-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--rotary-gold);
    }

    .support-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rotary-gold) 0%, var(--rotary-blue) 100%);
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 12px rgba(0, 93, 170, 0.25);
    }

    .support-body h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
      line-height: 1.2;
    }

    .support-role {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--rotary-gold);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .support-body p {
      font-size: 0.88rem;
      margin-bottom: 6px;
      color: var(--gray-700);
    }

    .support-body a {
      color: var(--rotary-blue);
      font-weight: 600;
      text-decoration: none;
    }

    .support-body a:hover {
      color: var(--rotary-gold);
    }

    /* Commitment (blue gradient banner) */
    .contact-commitment {
      background: linear-gradient(135deg, var(--navy) 0%, var(--rotary-blue) 100%);
      color: var(--white);
      text-align: center;
      padding: 80px 40px;
      border-radius: var(--radius);
      max-width: 1000px;
      margin: 0 auto;
      box-shadow: var(--shadow-xl, var(--shadow-lg));
    }

    .contact-commitment .section-label.light {
      color: var(--rotary-gold);
      margin-bottom: 12px;
      letter-spacing: 2px;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
    }

    .contact-commitment h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 20px;
    }

    .contact-commitment p {
      max-width: 820px;
      margin: 0 auto 16px;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.7;
      font-size: 1rem;
    }

    .contact-commitment strong {
      color: var(--rotary-gold);
    }

    .contact-quote {
      margin: 32px auto 0;
      max-width: 760px;
      font-size: 1.15rem;
      font-style: italic;
      font-weight: 600;
      color: var(--rotary-gold);
      line-height: 1.6;
      padding: 24px 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Contact page responsive */
    @media (max-width: 900px) {
      .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .contact-form {
        padding: 24px;
      }
      .contact-commitment {
        padding: 50px 20px;
      }
      .contact-commitment h2 {
        font-size: 1.6rem;
      }
    }
    /* ============================================================
       Page Banner + Breadcrumb (used by every inner page)
       ============================================================ */
    .page-banner {
      position: relative;
      background: linear-gradient(135deg, var(--navy) 0%, var(--rotary-blue) 100%);
      color: var(--white);
      padding: 112px 0 56px;
      overflow: hidden;
      isolation: isolate;
    }

    /* Decorative background shapes — soft gold + blue glow */
    .page-banner::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: var(--rotary-gold);
      opacity: 0.18;
      filter: blur(60px);
      z-index: -1;
    }

    .page-banner::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: #60A5FA;
      opacity: 0.15;
      filter: blur(60px);
      z-index: -1;
    }

    .page-banner__inner {
      position: relative;
      z-index: 1;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .page-banner__breadcrumb-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 18px;
    }

    .page-banner__title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      margin: 0 0 12px;
      line-height: 1.15;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    }

    .page-banner__subtitle {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.6;
      max-width: 640px;
      margin: 0;
    }

    /* Breadcrumb */
    .breadcrumb {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      backdrop-filter: blur(6px);
      font-size: 0.82rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .breadcrumb a:hover {
      color: var(--rotary-gold);
    }

    .breadcrumb__sep {
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.9rem;
    }

    .breadcrumb__current {
      color: var(--white);
      font-weight: 600;
    }

    /* Lead paragraph (outside banner, on light section) */
    .section-light {
      background: var(--gray-50, #f8fafc);
      padding: 40px 0 24px;
    }

    .lead-paragraph {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--gray-700, #334155);
    }

    /* ============================================================
       Downloads page
       ============================================================ */
    .section-white {
      background: var(--white);
    }

    .section-title--centered {
      text-align: center;
      margin: 0 auto 50px;
      color: var(--rotary-blue);
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      position: relative;
    }

    .section-title--centered::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: var(--rotary-gold);
      border-radius: 2px;
      margin: 14px auto 0;
    }

    /* Featured card (Media Kit) */
    .download-card {
      background: var(--white);
      padding: 45px;
      border-radius: 25px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      margin-bottom: 56px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(0, 93, 170, 0.06);
    }

    .download-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }

    .download-card__icon {
      font-size: 56px;
      margin-bottom: 16px;
      line-height: 1;
    }

    .download-card__title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--rotary-blue);
      margin: 0 0 16px;
      line-height: 1.3;
    }

    .download-card__desc {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--gray-700, #334155);
      margin: 0 0 24px;
    }


    /* ===== Download card: enhanced (featured variant) ===== */

    /* Featured pill at top of card */
    .download-card--featured {
      position: relative;
      padding-top: 56px;
      background: linear-gradient(180deg, #FFFDF6 0%, var(--white, #fff) 280px);
      border: 1px solid rgba(247, 168, 27, 0.18);
    }

    .download-card__featured-pill {
      position: absolute;
      top: 18px;
      left: 28px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      background: linear-gradient(135deg, var(--rotary-gold, #F7A81B), #E89A0F);
      color: var(--white, #fff);
      font-family: 'Poppins', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 999px;
      box-shadow: 0 4px 12px rgba(247, 168, 27, 0.28);
    }

    /* Head: icon + text side by side */
    .download-card__head {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      margin-bottom: 24px;
    }

    .download-card__head-text { flex: 1; }

    /* Bigger icon with colored circle bg */
    .download-card--featured .download-card__icon {
      flex-shrink: 0;
      width: 88px;
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      line-height: 1;
      background: linear-gradient(135deg, rgba(0, 93, 170, 0.08), rgba(0, 93, 170, 0.16));
      border-radius: 24px;
      margin: 0;
      border: 1px solid rgba(0, 93, 170, 0.10);
    }

    /* Metadata grid: 4 inline stats */
    .download-card__meta {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin: 0 0 28px;
      padding: 18px 22px;
      background: linear-gradient(135deg, rgba(0, 93, 170, 0.04), rgba(247, 168, 27, 0.04));
      border: 1px solid rgba(0, 93, 170, 0.10);
      border-radius: 16px;
    }

    .download-card__meta-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 0;
    }

    .download-card__meta-item dt {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: var(--gray-600, #475569);
      margin: 0;
    }

    .download-card__meta-item dd {
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--rotary-blue, #005DAA);
      margin: 0;
    }

    /* CTA wrapper: button + small hint */
    .download-card__cta {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .download-card__cta-hint {
      font-size: 0.82rem;
      color: var(--gray-600, #475569);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* External-link arrow on the button */
    .download-btn__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      margin-left: 6px;
      background: rgba(255, 255, 255, 0.22);
      border-radius: 6px;
      font-size: 0.95rem;
      line-height: 1;
      transition: background 0.3s ease;
    }

    .download-btn:hover .download-btn__icon {
      background: rgba(255, 255, 255, 0.32);
    }

    /* Featured card title: a touch larger */
    .download-card--featured .download-card__title {
      font-size: 1.75rem;
      margin-bottom: 10px;
    }

    /* Mobile: stack icon above text, meta 2x2 */
    @media (max-width: 768px) {
      .download-card__head {
        flex-direction: column;
        gap: 16px;
      }
      .download-card--featured .download-card__icon {
        width: 72px;
        height: 72px;
        font-size: 40px;
      }
      .download-card__meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }
      .download-card--featured .download-card__title {
        font-size: 1.4rem;
      }
      .download-card__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }

    /* Notice (yellow callout) */
    .notice {
      background: #FFF8E8;
      border-left: 6px solid var(--rotary-gold);
      padding: 22px 24px;
      border-radius: 15px;
      margin: 30px 0;
    }

    .notice__title {
      color: var(--rotary-blue);
      margin: 0 0 10px;
      font-size: 1.15rem;
      font-weight: 700;
    }

    .notice p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--gray-700, #334155);
    }

    .notice strong {
      color: var(--rotary-dark, #081C4A);
    }

    /* Primary download button (gold) */
    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 35px;
      background: var(--rotary-gold);
      color: var(--rotary-dark, #081C4A);
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(247, 168, 27, 0.32);
    }

    .download-btn:hover {
      background: var(--rotary-blue);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 93, 170, 0.35);
    }

    /* 3-up grid for smaller downloads */
    .downloads-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .download-item {
      background: var(--white);
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid rgba(0, 93, 170, 0.06);
    }

    .download-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    }

    .download-item h3 {
      color: var(--rotary-blue);
      margin: 0 0 12px;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .download-item p {
      color: var(--gray-700, #334155);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0 0 20px;
    }

    /* Secondary button (blue) — same pattern as existing .btn-secondary */
    .secondary-btn {
      display: inline-block;
      padding: 12px 28px;
      background: var(--rotary-blue);
      color: var(--white);
      text-decoration: none;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 93, 170, 0.25);
    }

    .secondary-btn:hover {
      background: var(--rotary-gold);
      color: var(--rotary-dark, #081C4A);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(247, 168, 27, 0.35);
    }

    @media (max-width: 992px) {
      .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ============================================================
       Shared inner-page components (placeholder, info-block, timeline)
       ============================================================ */

    /* "Coming soon" placeholder used for sections with no content yet */
    .placeholder {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      padding: 56px 32px;
      background: var(--white, #fff);
      border: 2px dashed rgba(0, 93, 170, 0.18);
      border-radius: 20px;
    }

    .placeholder__icon {
      font-size: 56px;
      line-height: 1;
      margin-bottom: 18px;
    }

    .placeholder__title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--rotary-blue, #005DAA);
      margin: 0 0 10px;
    }

    .placeholder__text {
      font-size: 1rem;
      color: var(--gray-700, #334155);
      line-height: 1.6;
      margin: 0 0 18px;
    }

    .placeholder__hint {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(0, 93, 170, 0.06);
      color: var(--rotary-blue, #005DAA);
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* Generic info block (image left, text right; reverse with .info-block--reverse) */
    .info-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 56px;
    }

    .info-block--reverse {
      direction: rtl;
    }
    .info-block--reverse > * { direction: ltr; }

    .info-block__media {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .info-block__media img {
      display: block;
      width: 100%;
      height: auto;
    }

    .info-block__title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--rotary-blue, #005DAA);
      margin: 0 0 14px;
    }

    .info-block__text {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--gray-700, #334155);
      margin: 0 0 18px;
    }

    .info-block__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .info-block__list li {
      padding-left: 28px;
      position: relative;
      margin-bottom: 10px;
      font-size: 0.95rem;
      color: var(--gray-700, #334155);
      line-height: 1.6;
    }
    .info-block__list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--rotary-gold, #F7A81B);
      font-weight: 700;
    }

    /* Timeline card (used on history, past governors, etc.) */
    .timeline {
      position: relative;
      padding-left: 32px;
      margin: 24px 0;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 8px; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--rotary-blue, #005DAA), var(--rotary-gold, #F7A81B));
    }
    .timeline-item {
      position: relative;
      margin-bottom: 28px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -32px;
      top: 6px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--white, #fff);
      border: 3px solid var(--rotary-gold, #F7A81B);
    }
    .timeline-item__year {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--rotary-blue, #005DAA);
      margin: 0 0 4px;
    }
    .timeline-item__title {
      font-weight: 600;
      margin: 0 0 4px;
      color: var(--gray-900, #0f172a);
    }
    .timeline-item__text {
      font-size: 0.95rem;
      color: var(--gray-700, #334155);
      line-height: 1.6;
      margin: 0;
    }

    /* Simple responsive helpers for shared components */
    @media (max-width: 768px) {
      .info-block {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .info-block--reverse { direction: ltr; }
      .placeholder { padding: 36px 20px; }
      .placeholder__title { font-size: 1.2rem; }
    }

    @media (max-width: 600px) {
      .downloads-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .download-card { padding: 30px; }
      .download-card__title { font-size: 1.3rem; }
      .section-title--centered { font-size: 1.6rem; }
    }

    /* ============================================================
       Section hide / show toggle
       ============================================================
       Used to hide homepage sections (Upcoming Events, Stories of Change,
       Gallery, Rotary Foundation, Partners & Sponsors, Stay Connected)
       while district content is being prepared. Remove the
       `.section-hidden` class from each <section> in index.php to restore. */
    .section-hidden {
      display: none !important;
    }

    /* ponytail: drawer-only color overrides — apply at any viewport because
       the drawer is JS-driven (mobileToggle.click) and not gated by viewport */
    #mobileNav .nav-links > li > a {
      color: var(--white);
    }
    #mobileNav .nav-links > li > a:hover {
      color: var(--rotary-gold);
    }
    #mobileNav .dropdown-menu a {
      color: rgba(255, 255, 255, 0.88) !important; /* ponytail: override base .dropdown-menu a !important */
      font-weight: 500;
      font-size: 0.95rem;
      padding: 8px 0;
      border: none;
    }
    #mobileNav .dropdown-menu a:hover {
      color: var(--rotary-gold) !important;
    }

