:root {
  --lake-deep: #0b4f6c;
  --lake-mid: #1b7ba8;
  --lake-light: #e6f4f9;
  --sun: #f2a541;
  --ink: #16232b;
  --ink-soft: #4a5b64;
  --paper: #fbfbf9;
  --card: #ffffff;
  --border: #e1e8ea;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(11, 79, 108, 0.08);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--lake-deep);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--lake-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lake-deep);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

.muted { color: #7a8890; font-size: 0.92rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { font-size: 1.6rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--lake-deep); }
.brand-text small { color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.03em; text-transform: uppercase; }

.primary-nav {
  display: flex;
  gap: 24px;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.primary-nav a:hover { color: var(--lake-mid); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--lake-deep);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--lake-deep), var(--lake-mid) 70%);
  color: #fff;
  padding: 84px 20px 120px;
  overflow: hidden;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--sun);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--sun);
  color: var(--lake-deep);
  box-shadow: 0 8px 20px rgba(242, 165, 65, 0.35);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-block { display: block; text-align: center; width: 100%; margin-top: 16px; }

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }
.hero-wave path { fill: var(--paper); }

/* Strip */
.strip {
  max-width: var(--max-width);
  margin: -60px auto 0;
  position: relative;
  z-index: 3;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 10px;
}
.strip-item {
  text-align: center;
  padding: 10px;
  border-right: 1px solid var(--border);
}
.strip-item:last-child { border-right: none; }
.strip-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: var(--lake-deep);
  font-weight: 700;
}
.strip-label {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Sections */
.section { padding: 80px 20px; }
.section-alt { background: var(--lake-light); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section h2 { margin-bottom: 12px; }
.section > .section-inner > p:first-of-type { max-width: 640px; margin-bottom: 32px; font-size: 1.05rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.info-card ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.info-card li { margin-bottom: 6px; }

/* Board */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.board-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--sun);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.board-name { font-weight: 700; color: var(--lake-deep); }
.board-role { font-size: 0.85rem; color: var(--ink-soft); margin-top: 3px; }

/* Events */
.event-list { display: flex; flex-direction: column; gap: 18px; }
.event-card {
  display: flex;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.event-date {
  flex: 0 0 68px;
  background: var(--lake-deep);
  color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  height: fit-content;
}
.event-month { font-size: 0.72rem; letter-spacing: 0.08em; opacity: 0.85; }
.event-day { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; }
.event-body h3 { margin-bottom: 4px; }
.event-meta { color: var(--lake-mid); font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }

/* Minutes */
.minutes-list { display: flex; flex-direction: column; gap: 20px; }
.minutes-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.minutes-card header h3 { margin-bottom: 4px; }
.minutes-card ul { padding-left: 20px; color: var(--ink-soft); }
.minutes-card li { margin-bottom: 6px; }

/* Membership */
.membership-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}
.membership-copy ol { padding-left: 20px; color: var(--ink-soft); }
.membership-copy li { margin-bottom: 8px; }
.callout {
  background: #fff4e0;
  border: 1px solid #f2d9a6;
  border-radius: 10px;
  padding: 14px 16px;
  color: #7a5a12;
  font-size: 0.92rem;
}
.membership-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.membership-card ul { padding-left: 20px; color: var(--ink-soft); margin-bottom: 6px; }
.membership-card li { margin-bottom: 6px; }

.membership-pay {
  margin-top: 24px;
}
.membership-pay-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--lake-deep);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow);
  max-width: 520px;
}
.membership-pay-card h3 { color: var(--lake-deep); margin-bottom: 8px; }
.membership-pay-card p { color: var(--ink-soft); margin-bottom: 0; }
.paypal-form { margin: 16px 0 0; }
.btn-paypal {
  background: var(--sun);
  color: var(--lake-deep);
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 20px rgba(242, 165, 65, 0.35);
}
.btn-paypal:hover { background: #eb9a2f; }
.paypal-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 10px;
}

/* Contact */
.contact-section { background: var(--lake-deep); color: #fff; }
.contact-section h2 { color: #fff; }
.contact-section > .section-inner > p { color: rgba(255,255,255,0.85); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card h3 { color: #fff; }
.contact-card a { color: var(--sun); }
.contact-card p { color: rgba(255,255,255,0.85); }
.contact-card .muted { color: rgba(255,255,255,0.6); }

/* Footer */
.site-footer {
  background: #0a2e3f;
  color: rgba(255,255,255,0.7);
  padding: 26px 20px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-inner p { margin: 4px 0; color: inherit; }
.site-footer .muted { color: rgba(255,255,255,0.5); }

/* Mobile */
@media (max-width: 860px) {
  .membership-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 14px;
  }
  .primary-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3), .strip-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 18px; }
  .hero { padding: 64px 16px 110px; }
  .section { padding: 56px 16px; }
  .event-card { flex-direction: column; }
  .event-date { flex-direction: row; gap: 8px; width: fit-content; padding: 6px 14px; }
}
