:root {
  --rotary-blue: #17458f;
  --rotary-gold: #f7a81b;
  --rotary-azure: #0067c8;
  --rotary-sky: #00a2e0;
  --rotary-turquoise: #00adbb;
  --ink: #18263a;
  --muted: #5b6778;
  --paper: #ffffff;
  --wash: #f5f8fc;
  --line: #dce4ef;
  --navy: #0d2d5e;
  --max-width: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(13, 45, 94, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: #fff;
  color: var(--rotary-blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(23, 69, 143, .10);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: clamp(225px, 29vw, 335px); height: auto; }
.primary-nav { display: flex; align-items: center; gap: .2rem; }
.primary-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  color: #233750;
  padding: .7rem .8rem;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--rotary-blue); background: #eef4fb; outline: none; }
.primary-nav .nav-cta { margin-left: .35rem; color: #fff; background: var(--rotary-blue); padding-inline: 1rem; }
.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible { color: #fff; background: #103874; }
.primary-nav .coming-soon:not(.nav-cta) { opacity: .68; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 30%, rgba(0, 162, 224, .26), transparent 23%),
    radial-gradient(circle at 92% 90%, rgba(247, 168, 27, .20), transparent 24%),
    linear-gradient(120deg, #0e326b 0%, var(--rotary-blue) 58%, #0f559e 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent 0%, #000 55%, #000 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -130px;
  top: -180px;
  border: 2px solid rgba(247,168,27,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(247,168,27,.05), 0 0 0 108px rgba(247,168,27,.035);
}
.hero-layout {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: 5rem 5.5rem;
}
.eyebrow,
.section-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--rotary-blue);
}
.hero .eyebrow { color: #cfe4ff; }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.25rem, 6.4vw, 6.45rem);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 800;
}
.hero h1 span { color: var(--rotary-gold); }
.hero-lead {
  max-width: 660px;
  margin: 1.7rem 0 0;
  color: #e8f1fb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.25rem;
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(247,168,27,.48); outline-offset: 3px; }
.button-gold { color: #13243c; background: var(--rotary-gold); box-shadow: 0 12px 28px rgba(247,168,27,.20); }
.button-gold:hover { background: #ffb52f; box-shadow: 0 16px 34px rgba(247,168,27,.28); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.13); }
.button-blue { color: #fff; background: var(--rotary-blue); }
.button-blue:hover { background: #103874; }
.button-dark { color: #fff; background: #0d2d5e; }
.button-dark:hover { background: #081f42; }
.hero-note { display: flex; gap: .55rem; align-items: center; margin-top: 2rem; color: #cbdcf0; font-size: .9rem; font-weight: 700; }
.hero-note-icon { color: var(--rotary-gold); }

.hero-visual { position: relative; min-height: 470px; }
.visual-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 75px rgba(3, 24, 58, .30);
}
.visual-card-main {
  inset: 24px 26px 64px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
}
.visual-card-main::before,
.visual-card-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.visual-card-main::before {
  width: 220px;
  height: 220px;
  left: -48px;
  top: -50px;
  background: rgba(247,168,27,.94);
  box-shadow: 0 0 0 24px rgba(247,168,27,.14);
}
.visual-card-main::after {
  width: 150px;
  height: 150px;
  right: 30px;
  top: 28px;
  border: 18px solid rgba(0,173,187,.58);
  box-shadow: inset 0 0 0 20px rgba(0,162,224,.16);
}
.visual-ring {
  position: absolute;
  width: 330px;
  height: 330px;
  right: -150px;
  bottom: -150px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 0 0 42px rgba(255,255,255,.03), 0 0 0 84px rgba(255,255,255,.025);
}
.visual-kicker { position: relative; margin: 0 0 .5rem; color: #bfe8ff; font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; }
.visual-title { position: relative; max-width: 360px; margin: 0; font-family: Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.65rem); line-height: 1.15; color: #fff; }
.visual-tags { position: relative; display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.visual-tags span { padding: .45rem .7rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .75rem; font-weight: 700; color: #edf6ff; }
.visual-card-small {
  right: 0;
  bottom: 18px;
  z-index: 2;
  width: 225px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
}
.visual-card-small strong { display: block; color: var(--rotary-blue); font-size: 1rem; }
.visual-card-small span { display: block; margin-top: .15rem; color: var(--muted); font-size: .82rem; }
.gold-dot { position: absolute; width: 15px; height: 15px; border-radius: 50%; background: var(--rotary-gold); box-shadow: 0 0 0 8px rgba(247,168,27,.12); }
.dot-one { top: 70px; right: 12px; }
.dot-two { left: -12px; bottom: 118px; width: 10px; height: 10px; }

.section { padding-block: clamp(5rem, 8vw, 8rem); }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.section h2 {
  margin: 0;
  color: #17324f;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
}
.prose { max-width: 680px; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; line-height: 1.85; }
.prose p { margin-top: 0; }
.text-link { display: inline-flex; gap: .35rem; align-items: center; margin-top: .5rem; color: var(--rotary-blue); font-family: "Open Sans", Arial, sans-serif; font-size: .92rem; font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.service { background: var(--wash); border-block: 1px solid #e8eef6; }
.section-heading { max-width: 760px; }
.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { margin: 1rem auto 0; color: var(--muted); max-width: 680px; font-family: Georgia, serif; font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; margin-top: 3rem; }
.service-card {
  min-height: 305px;
  padding: 1.55rem;
  border: 1px solid #e1e8f0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 44px rgba(15, 53, 103, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #c9d9eb; box-shadow: 0 24px 56px rgba(15, 53, 103, .11); }
.icon-wrap { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 16px; color: var(--rotary-blue); background: #edf4fb; }
.icon-wrap svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card:nth-child(2) .icon-wrap { color: #008997; background: #e9f8f9; }
.service-card:nth-child(3) .icon-wrap { color: #b46b00; background: #fff6e3; }
.service-card:nth-child(4) .icon-wrap { color: var(--rotary-azure); background: #e8f4ff; }
.service-card h3 { margin: 0 0 .75rem; color: #183556; font-size: 1.12rem; line-height: 1.3; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.75; }

.impact { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.impact::after { content: ""; position: absolute; width: 480px; height: 480px; right: -220px; bottom: -280px; border-radius: 50%; border: 1px solid rgba(247,168,27,.38); box-shadow: 0 0 0 70px rgba(247,168,27,.035), 0 0 0 140px rgba(247,168,27,.025); }
.impact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.section-label.light { color: #b7d8ff; }
.section-label.dark { color: #624000; }
.impact h2 { color: #fff; }
.impact-copy > p:last-child { max-width: 520px; color: #c9d8e9; font-family: Georgia, serif; font-size: 1.1rem; line-height: 1.8; }
.impact-list { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.18); }
.impact-item { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; align-items: baseline; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.impact-item span { color: var(--rotary-gold); font-size: .78rem; font-weight: 800; }
.impact-item p { margin: 0; color: #d6e2ef; }
.impact-item strong { color: #fff; }

.meetings { background: #fff; }
.meeting-shell { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.meeting-copy p:not(.section-label) { max-width: 600px; margin: 1.25rem 0 1.75rem; color: var(--muted); font-family: Georgia, serif; font-size: 1.08rem; line-height: 1.8; }
.meeting-card { padding: 1.8rem; border: 1px solid #dbe5f0; border-radius: 26px; background: linear-gradient(180deg, #ffffff, #f7fafd); box-shadow: var(--shadow); }
.meeting-row { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; align-items: start; padding: 1.25rem 0; }
.meeting-row + .meeting-row { border-top: 1px solid #e1e8f0; }
.meeting-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #edf4fb; color: var(--rotary-blue); }
.meeting-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.meeting-row span { display: block; margin-bottom: .2rem; color: var(--rotary-blue); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; font-weight: 800; }
.meeting-row strong { display: block; color: #1a3554; font-size: 1.1rem; }
.meeting-row small { display: block; margin-top: .2rem; color: var(--muted); font-size: .83rem; }
.meeting-row .needs-update { color: #915e00; font-weight: 700; }

.cta-band { padding-block: 3.2rem; background: var(--rotary-gold); }
.cta-inner { display: flex; gap: 2rem; align-items: center; justify-content: space-between; }
.cta-inner h2 { max-width: 760px; margin: 0; color: #172d48; font-size: clamp(2rem, 3.2vw, 3.35rem); line-height: 1.08; letter-spacing: -.035em; }

.site-footer { padding-top: 4rem; background: #f8fafc; border-top: 1px solid #e3eaf2; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .65fr .8fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand img { width: min(340px, 100%); height: auto; }
.footer-brand p { margin: 1rem 0 0; color: var(--muted); font-family: Georgia, serif; }
.footer-heading { margin: 0 0 1rem; font-size: .77rem; color: #284665; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #43556a; text-decoration: none; font-size: .9rem; font-weight: 700; }
.footer-links a:hover { color: var(--rotary-blue); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.25rem; border-top: 1px solid #dce4ed; color: #6a7685; font-size: .78rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  .header-inner { min-height: 78px; }
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid #d7e0ea;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--rotary-blue); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .6rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: .75rem;
    border: 1px solid #dfe7ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(14, 45, 90, .18);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { border-radius: 10px; padding: .85rem 1rem; }
  .primary-nav .nav-cta { margin-left: 0; text-align: center; }

  .hero, .hero-layout { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-block: 4.5rem; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 420px; max-width: 620px; width: 100%; margin-top: .5rem; }
  .visual-card-main { inset: 15px 25px 55px 0; }
  .two-column, .impact-layout, .meeting-shell { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr .7fr .7fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 1.25rem), var(--max-width)); }
  .site-header .container { width: min(calc(100% - 1rem), var(--max-width)); }
  .brand img { width: 220px; }
  .hero-layout { padding-block: 3.7rem 4.2rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-lead { font-size: 1.08rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 360px; }
  .visual-card-main { inset: 10px 10px 52px 0; padding: 1.5rem; border-radius: 26px; }
  .visual-card-main::before { width: 170px; height: 170px; }
  .visual-card-main::after { width: 110px; height: 110px; border-width: 14px; }
  .visual-card-small { right: 0; width: 200px; }
  .section { padding-block: 4.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .meeting-card { padding: 1.2rem; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Club-specific annual programs */
.club-programs {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 3.25rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid #dce5ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 53, 103, .07);
}
.club-programs h3 {
  margin: 0;
  color: #17324f;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.club-programs-copy > p:last-child {
  margin: .9rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.75;
}
.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.program-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .62rem .9rem;
  border: 1px solid #d9e5f1;
  border-radius: 999px;
  color: #274968;
  background: #f6f9fd;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
}
.program-tags span:nth-child(3n+1) {
  border-color: #f0ddb4;
  background: #fff8e9;
  color: #75500e;
}

@media (max-width: 820px) {
  .club-programs { grid-template-columns: 1fr; }
}


/* Upcoming Events page */
.primary-nav a.active {
  color: var(--rotary-blue);
  background: #edf4fb;
}
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #0d2d5e 0%, var(--rotary-blue) 62%, #0d5aa5 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -150px;
  top: -230px;
  border-radius: 50%;
  border: 2px solid rgba(247,168,27,.32);
  box-shadow: 0 0 0 58px rgba(247,168,27,.055), 0 0 0 116px rgba(247,168,27,.035);
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 0%, #000 40%, #000 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  min-height: 475px;
  padding-block: 5rem;
}
.page-hero .eyebrow { color: #cfe4ff; }
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(3rem, 5.6vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.page-hero h1 span { color: var(--rotary-gold); }
.page-hero-copy > p:last-child {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: #e2edf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.75;
}
.next-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 26px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(4,28,63,.22);
}
.next-label {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: .42rem .7rem;
  border-radius: 999px;
  color: #1f3550;
  background: var(--rotary-gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  font-weight: 800;
}
.date-block {
  width: 88px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 22px;
}
.date-block-light { color: var(--rotary-blue); background: #fff; }
.date-block strong { font-size: 2.25rem; line-height: .92; }
.date-block span { margin-top: .35rem; color: #6d7b8c; font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.next-event-card h2 { margin: 0; color: #fff; font-size: 1.32rem; line-height: 1.25; }
.next-event-card p { margin: .35rem 0 0; color: #d8e8f8; font-size: .9rem; }

.event-list-section { background: #f7f9fc; }
.events-intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 3rem;
}
.events-intro > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.8;
}
.events-grid { display: grid; gap: 1.15rem; }
.event-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  min-height: 225px;
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(15,53,103,.055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: #c7d8e9;
  box-shadow: 0 22px 52px rgba(15,53,103,.10);
}
.event-card.featured-event { border-color: #e4c36e; }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  text-align: center;
  color: #fff;
  background: var(--rotary-blue);
}
.featured-event .event-date { color: #17324f; background: var(--rotary-gold); }
.event-month {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}
.event-date strong {
  margin: .12rem 0 .2rem;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -.045em;
}
.event-range { font-size: .72rem; font-weight: 700; opacity: .9; }
.event-body { padding: 1.7rem 2rem; }
.event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: .75rem;
  color: #6e7a89;
  font-size: .78rem;
  font-weight: 700;
}
.event-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .34rem .65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .65rem;
  font-weight: 800;
}
.event-type.volunteer { color: #75500e; background: #fff1cf; }
.event-type.community { color: #0a5b65; background: #e4f7f8; }
.event-type.fundraiser { color: #17458f; background: #eaf2fb; }
.event-type.service { color: #6b427e; background: #f4eaf8; }
.event-body h3 {
  margin: 0;
  color: #173451;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.event-body > p {
  max-width: 800px;
  margin: .75rem 0 1.1rem;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.72;
}
.event-detail {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #42607d;
  font-size: .8rem;
}
.event-detail > span { color: var(--rotary-gold); font-size: .7rem; }
.location-detail svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--rotary-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.events-note {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid #d8e4ef;
  border-radius: 20px;
  background: #fff;
}
.events-note-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rotary-blue);
  background: #edf4fb;
  font-family: Georgia, serif;
  font-weight: 700;
}
.events-note h3 { margin: 0; color: #173451; font-size: 1rem; }
.events-note p { margin: .25rem 0 0; color: var(--muted); font-size: .84rem; }
.events-note .button { white-space: nowrap; }

.events-meeting-band { padding-block: 4rem; color: #fff; background: var(--navy); }
.meeting-band-inner { display: flex; gap: 3rem; align-items: center; justify-content: space-between; }
.events-meeting-band h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.events-meeting-band p:not(.section-label) {
  margin: .9rem 0 0;
  color: #cbd9e8;
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; min-height: auto; padding-block: 4.5rem; }
  .next-event-card { max-width: 600px; }
  .events-intro { grid-template-columns: 1fr; align-items: start; }
  .meeting-band-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .page-hero-inner { padding-block: 3.7rem; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .next-event-card { grid-template-columns: 72px 1fr; padding: 1.6rem 1.2rem; }
  .date-block { width: 72px; border-radius: 18px; }
  .date-block strong { font-size: 1.85rem; }
  .event-card { grid-template-columns: 92px 1fr; min-height: 0; border-radius: 19px; }
  .event-date { padding: 1rem .65rem; }
  .event-date strong { font-size: 2.3rem; }
  .event-body { padding: 1.25rem 1rem; }
  .events-note { grid-template-columns: 42px 1fr; }
  .events-note .button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 450px) {
  .event-card { grid-template-columns: 1fr; }
  .event-date {
    min-height: auto;
    flex-direction: row;
    gap: .5rem;
    justify-content: flex-start;
    padding: .75rem 1rem;
    text-align: left;
  }
  .event-date strong { margin: 0; font-size: 1.45rem; }
  .event-range { margin-left: auto; }
}

/* Board members page */
.board-hero-inner { grid-template-columns: 1.12fr .88fr; }
.board-hero-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.35rem;
  align-items: center;
  padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(4,28,63,.22);
}
.board-hero-mark {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #17324f;
  background: var(--rotary-gold);
  box-shadow: 0 0 0 10px rgba(247,168,27,.13);
  font-size: 3.35rem;
  line-height: 1;
  font-weight: 800;
}
.board-hero-card span {
  display: block;
  margin-bottom: .2rem;
  color: #bedaff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 800;
}
.board-hero-card strong { display: block; color: #fff; font-size: 1.32rem; line-height: 1.25; }
.board-hero-card p { margin: .35rem 0 0; color: #d8e8f8; font-size: .9rem; }

.board-section { background: #f7f9fc; }
.board-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 3rem;
}
.board-intro > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.8;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.board-card {
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(15,53,103,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.board-card:hover {
  transform: translateY(-4px);
  border-color: #c7d8e9;
  box-shadow: 0 22px 52px rgba(15,53,103,.11);
}
.board-card-president { border-color: #e3c16b; }
.board-photo-wrap {
  position: relative;
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  background: linear-gradient(145deg, #e8eef6, #f7f9fc);
}
.board-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.93) contrast(1.02);
}
.board-card:nth-child(2) .board-photo-wrap img,
.board-card:nth-child(4) .board-photo-wrap img,
.board-card:nth-child(5) .board-photo-wrap img,
.board-card:nth-child(8) .board-photo-wrap img,
.board-card:nth-child(9) .board-photo-wrap img { object-position: center 18%; }
.leadership-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: .38rem .72rem;
  border-radius: 999px;
  color: #17324f;
  background: var(--rotary-gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .64rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(18,43,73,.16);
}
.badge-blue { color: #fff; background: var(--rotary-blue); }
.board-photo-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(247,168,27,.27), transparent 22%),
    linear-gradient(135deg, var(--rotary-blue), #0d2d5e);
}
.board-photo-placeholder::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -48px;
  top: -48px;
  border: 1px solid rgba(247,168,27,.35);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(247,168,27,.06);
}
.board-initials {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 105px;
  aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: var(--rotary-gold);
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -.04em;
}
.photo-note {
  position: relative;
  z-index: 1;
  margin-top: .8rem;
  color: #dceafd;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .62rem;
  font-weight: 800;
}
.board-card-body { min-height: 126px; padding: 1.35rem 1.45rem 1.5rem; }
.board-card-body h3 {
  margin: 0;
  color: #173451;
  font-size: 1.25rem;
  line-height: 1.22;
  letter-spacing: -.015em;
}
.board-card-body p {
  margin: .4rem 0 0;
  color: var(--rotary-blue);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.board-service-band { padding-block: 4rem; color: #fff; background: var(--navy); }
.board-service-inner { display: flex; gap: 3rem; align-items: center; justify-content: space-between; }
.board-service-band h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.board-service-band p:not(.section-label) {
  margin: .9rem 0 0;
  color: #cbd9e8;
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 900px) {
  .board-hero-inner { grid-template-columns: 1fr; }
  .board-hero-card { max-width: 610px; }
  .board-intro { grid-template-columns: 1fr; align-items: start; }
  .board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .board-service-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .board-hero-card { grid-template-columns: 84px 1fr; padding: 1.35rem; }
  .board-hero-mark { width: 84px; font-size: 2.6rem; }
  .board-grid { grid-template-columns: 1fr; }
  .board-photo-wrap { aspect-ratio: 1.3 / 1; }
  .board-card-body { min-height: 0; }
}


/* Shared contact information */
.footer-address {
  margin-top: .9rem;
  color: #667587;
  font-size: .82rem;
  line-height: 1.6;
  font-style: normal;
}

/* Get Involved / Contact page */
.contact-hero-inner { grid-template-columns: 1.05fr .95fr; }
.contact-actions { margin-top: 2rem; }
.contact-hero-card {
  position: relative;
  overflow: hidden;
  padding: 2.2rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(4,28,63,.22);
}
.contact-hero-wheel {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -44px;
  top: -48px;
  opacity: .23;
}
.contact-hero-wheel img { width: 100%; height: 100%; object-fit: contain; }
.contact-hero-label {
  position: relative;
  margin: 0 0 .6rem;
  color: #bfe1ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 800;
}
.contact-hero-card h2 { position: relative; margin: 0; color: #fff; font-size: clamp(1.8rem,3vw,2.6rem); line-height: 1.1; }
.contact-hero-card > p:not(.contact-hero-label) { position: relative; margin: .9rem 0 1.2rem; color: #dbe9f6; font-family: Georgia,serif; line-height: 1.7; }
.contact-hero-card > a { position: relative; color: var(--rotary-gold); font-size: .86rem; font-weight: 800; text-decoration: none; }
.contact-hero-card > a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-options-section { background: #f7f9fc; }
.contact-heading-block { margin-bottom: 3rem; }
.contact-options-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; }
.contact-option {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 1.8rem;
  border: 1px solid #dce5ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(15,53,103,.06);
}
.contact-option-featured { border-top: 5px solid var(--rotary-gold); }
.contact-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 16px; color: var(--rotary-blue); background: #edf4fb; }
.contact-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-kicker { margin: 0 0 .45rem; color: var(--rotary-blue); text-transform: uppercase; letter-spacing: .1em; font-size: .67rem; font-weight: 800; }
.contact-option h3 { margin: 0; color: #173451; font-size: 1.5rem; line-height: 1.2; }
.contact-option > p:not(.contact-kicker) { color: var(--muted); font-family: Georgia,serif; line-height: 1.72; }
.contact-option .button, .contact-option .text-link { margin-top: auto; align-self: flex-start; }
.contact-detail-list { display: grid; gap: .9rem; margin: .4rem 0 1.4rem; }
.contact-detail-list div { padding-top: .8rem; border-top: 1px solid #e4eaf1; }
.contact-detail-list span { display: block; margin-bottom: .14rem; color: #738093; text-transform: uppercase; letter-spacing: .08em; font-size: .64rem; font-weight: 800; }
.contact-detail-list strong { color: #284968; font-size: .9rem; line-height: 1.45; }
.mailing-address { margin: .7rem 0 0; padding: 1rem 1.1rem; border-left: 4px solid var(--rotary-gold); color: #415c77; background: #f7f9fc; font-style: normal; line-height: 1.75; }
.mailing-address strong { color: #173451; }
.involvement-section { background: #fff; }
.involvement-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem,7vw,7rem); align-items: start; }
.involvement-intro > p:last-child { color: var(--muted); font-family: Georgia,serif; font-size: 1.05rem; line-height: 1.8; }
.involvement-list { display: grid; gap: .8rem; }
.involvement-list article { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid #e0e7ef; }
.involvement-list article:first-child { padding-top: 0; }
.involvement-list article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #17324f; background: var(--rotary-gold); font-weight: 800; }
.involvement-list h3 { margin: 0; color: #173451; font-size: 1.18rem; }
.involvement-list p { margin: .35rem 0 0; color: var(--muted); font-family: Georgia,serif; line-height: 1.65; }
.contact-cta-band { padding-block: 4.3rem; color: #fff; background: var(--navy); }
.contact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.contact-cta-inner h2 { max-width: 760px; margin: 0; color: #fff; font-size: clamp(2rem,3.5vw,3.25rem); line-height: 1.08; letter-spacing: -.035em; }
.contact-cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .8rem; }

@media (max-width: 900px) {
  .contact-hero-inner { grid-template-columns: 1fr; }
  .contact-hero-card { max-width: 640px; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .contact-option { min-height: 0; }
  .contact-option .button, .contact-option .text-link { margin-top: 1.3rem; }
  .involvement-layout { grid-template-columns: 1fr; }
  .contact-cta-inner { align-items: flex-start; flex-direction: column; }
  .contact-cta-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .contact-hero-card { padding: 1.6rem; }
  .contact-hero-wheel { width: 150px; height: 150px; }
  .contact-option { padding: 1.35rem; border-radius: 20px; }
  .contact-cta-actions { width: 100%; }
  .contact-cta-actions .button { width: 100%; }
}
