/* ==========================================================================
   OCS V2 — Club Website Stylesheet
   Extracted from ourclub-site-full-prototype.html, adapted for Django templates.
   Colors use CSS custom properties for future palette customization (Phase 5).
   ========================================================================== */

/* ===== FONTS (self-hosted, no Google Fonts CDN) ===== */

/* DM Sans — latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* DM Sans — latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Source Serif 4 — latin-ext */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/source-serif-4-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Source Serif 4 — latin */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/source-serif-4-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Source Serif 4 Italic — latin-ext */
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Source Serif 4 Italic — latin */
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ===== RESET & CUSTOM PROPERTIES ===== */

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

:root {
  --brand: #004165;
  --brand-light: #00619a;
  --brand-dark: #002d47;
  --brand-bg: rgba(0,65,101,0.08);
  --brand-bg-subtle: rgba(0,65,101,0.06);
  --accent: #c4532b;
  --accent-hover: #a8431f;
  --warm: #faf6f1;
  --warm-mid: #f0e8dd;
  --text: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-light: #888;
  --gray-light: #ddd;
  --gray-mid: #999;
  --white: #ffffff;
  --green: #16a34a;
  --green-light: #4ade80;
  --green-bg: #f0fdf4;
  --green-border: #bbf7d0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1120px;
  --blue-info: #1d4ed8;
  --blue-info-bg: #eff6ff;
  --blue-info-border: #bfdbfe;
  --warning-bg: #FEF3C7;
  --warning-border: #F59E0B;
  --warning-text: #92400E;
  /* z-index scale */
  --z-content: 1;
  --z-mobile-sticky: 99;
  --z-nav-menu: 99;
  --z-nav: 100;
  --z-skip: 200;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans); color: var(--text); background: var(--white);
  line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased;
}


/* ===== NAV ===== */

nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--brand); cursor: pointer;
}
.nav-brand img { height: 36px; }
.nav-brand span { font-family: var(--serif); font-weight: 600; font-size: 18px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary); font-size: 15px;
  font-weight: 500; padding: 8px 14px; border-radius: 6px;
  transition: color 0.2s, background-color 0.2s; cursor: pointer;
}
.nav-links a:hover { color: var(--text); background: var(--warm); }
.nav-links a.active, .nav-links span.active {
  color: var(--brand); background: var(--brand-bg-subtle); font-weight: 600;
  padding: 8px 14px; border-radius: 6px; font-size: 15px;
}
.nav-links a.nav-cta { background: var(--accent); color: white; font-weight: 600; margin-left: 8px; }
.nav-links a.nav-cta:hover { background: var(--accent-hover); }
.nav-links a.nav-cta.active { background: var(--accent); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* Mobile menu open state (toggled by JS) */
.nav-links.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: white;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: var(--z-nav-menu);
}


/* ===== SHARED ===== */

.section-label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 620px;
  margin-bottom: 48px; line-height: 1.6;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white; font-size: 17px; font-weight: 600;
  padding: 16px 32px; border-radius: var(--radius); text-decoration: none;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; font-family: var(--sans);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,83,43,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 16px; font-weight: 500;
  padding: 15px 28px; border-radius: var(--radius); text-decoration: none; transition: background-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brand); font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius); text-decoration: none;
  transition: background-color 0.2s, color 0.2s; border: 2px solid var(--brand); cursor: pointer; font-family: var(--sans);
}
.btn-outline:hover { background: var(--brand); color: white; }

/* Focus-visible for all interactive elements */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px;
}
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}
.meeting-card-header:focus-visible {
  outline: 2px solid var(--brand); outline-offset: -2px;
}
.form-submit:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}
.footer-links a:focus-visible,
.footer-social a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.7); outline-offset: 2px;
}
.zoom-link-placeholder:focus-visible {
  outline: 2px solid var(--blue-info); outline-offset: 2px;
}


/* ===== PAGE HEADER (non-home pages) ===== */

.page-header {
  background: var(--brand);
  color: white; padding: 56px 24px 48px; position: relative; overflow: hidden;
}
.page-header-inner {
  max-width: var(--max-w); margin: 0 auto; position: relative; z-index: var(--z-content);
}
.page-header h1 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px;
}
.page-header p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; }

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


/* =========================================
   HOME PAGE
   ========================================= */

.hero {
  background: var(--brand);
  color: white; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 72px 24px 80px;
  position: relative; z-index: var(--z-content); overflow: visible;
}
/* No image: centered text, detail text left-aligned within each detail block */
.hero-inner--centered { text-align: center; }
.hero-inner--centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-inner--centered .hero-details { justify-content: center; }
.hero-inner--centered .hero-actions { justify-content: center; }
.hero-inner--centered .hero-detail-label,
.hero-inner--centered .hero-detail-value,
.hero-inner--centered .hero-detail-extra { text-align: left; }
/* Side layout: text left, image right */
.hero-inner--with-image {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
/* Wide image: give image column more space */
.hero-inner--wide-image {
  grid-template-columns: 2fr 3fr; gap: 40px;
  max-width: 1280px;
}
.hero-image {
  display: flex; flex-direction: column; align-items: center;
}
.hero-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); object-fit: cover;
}
/* Square layout: constrain image size */
.hero-inner--with-image:not(.hero-inner--wide-image) .hero-image img {
  max-width: 480px; aspect-ratio: 1;
}
.hero-image-caption {
  font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 10px;
  text-align: center; font-style: italic; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px; border-radius: 100px; font-size: 14px; font-weight: 500;
  margin-bottom: 24px; color: rgba(255,255,255,0.9); animation: fadeInUp 0.6s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--green-light); border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,0.8);
  max-width: 540px; line-height: 1.5; margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-details {
  display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-detail { display: flex; align-items: flex-start; gap: 12px; }
.hero-detail-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.hero-detail-icon i { font-size: 18px; color: rgba(255,255,255,0.9); }
.hero-detail-label {
  font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; margin-bottom: 2px;
}
.hero-detail-value { font-size: 17px; font-weight: 600; color: white; }
.hero-detail-extra { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.4s both; }


/* What to Expect */

.expect { background: var(--warm); border-bottom: 1px solid var(--warm-mid); }
.expect-inner { max-width: var(--max-w); margin: 0 auto; padding: 72px 24px; }
.expect-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.expect-grid--3col { grid-template-columns: repeat(3, 1fr); }
.expect-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.04);
}
.expect-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.expect-icon {
  width: 48px; height: 48px; background: var(--warm); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.expect-icon i { font-size: 22px; color: var(--brand); }
.expect-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.expect-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }


/* Social Proof */

.proof { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); }
.proof-inner { max-width: var(--max-w); margin: 0 auto; padding: 72px 24px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.testimonial {
  background: var(--warm); border-radius: var(--radius-lg); padding: 40px 36px; position: relative;
}
.testimonial::before {
  content: '\201C'; font-family: var(--serif); font-size: 80px; color: var(--brand);
  opacity: 0.15; position: absolute; top: 12px; left: 24px; line-height: 1;
}
.testimonial blockquote {
  font-family: var(--serif); font-size: 19px; font-style: italic; line-height: 1.6;
  color: var(--text); margin-bottom: 20px; position: relative; z-index: 1;
}
.testimonial-author { font-size: 15px; font-weight: 600; }
.testimonial-role { font-size: 14px; color: var(--text-light); }
.proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proof-stat { background: var(--warm); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.proof-stat-number { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--brand); line-height: 1; margin-bottom: 6px; }
.proof-stat-label { font-size: 14px; color: var(--text-secondary); font-weight: 500; }


/* Meeting Details (Home) */

.home-meeting { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); }
.home-meeting-inner { max-width: var(--max-w); margin: 0 auto; padding: 72px 24px; }
.meeting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.meeting-info .detail-block { margin-bottom: 32px; }
.detail-block .detail-label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 700; color: var(--text-light); margin-bottom: 8px;
}
.detail-block .detail-value { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.detail-block p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.map-placeholder {
  background: var(--warm); border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; position: relative; border: 1px solid var(--warm-mid);
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }
.directions-card {
  background: var(--warm); border-radius: var(--radius-lg); padding: 32px; margin-top: 24px;
}
.directions-card h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.directions-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.directions-card p:last-child { margin-bottom: 0; }
.directions-label { font-weight: 600; color: var(--text); }


/* About */

.about { background: var(--warm); border-bottom: 1px solid var(--warm-mid); }
.about-inner { max-width: var(--max-w); margin: 0 auto; padding: 72px 24px; }
.about-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.about-text p { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.about-text p:first-of-type { font-family: var(--serif); font-size: 20px; color: var(--text); line-height: 1.6; }
.tm-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 600; text-decoration: none; margin-top: 8px; font-size: 15px;
}
.tm-link:hover { text-decoration: underline; }
.tm-link i { font-size: 14px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.highlight-card {
  background: var(--white); border-radius: var(--radius); padding: 24px 20px;
  border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
}
.highlight-card .h-number { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--brand); margin-bottom: 4px; }
.highlight-card .h-text { font-size: 14px; color: var(--text-secondary); font-weight: 500; line-height: 1.4; }


/* Officers */

.officers { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); }
.officers-inner { max-width: var(--max-w); margin: 0 auto; padding: 72px 24px; }
.officers-grid { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; justify-content: center; }
.officers-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; width: 100%; }
.officer-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--warm); border-radius: 100px; padding: 8px 20px 8px 8px;
  border: 1px solid rgba(0,0,0,0.04);
}
.officer-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.officer-avatar.empty { background: var(--gray-light); color: var(--gray-mid); }
.officer-name { font-weight: 600; font-size: 17px; line-height: 1.2; }
.officer-role { font-size: 15px; color: var(--text-light); }


/* Final CTA */

.final-cta {
  background: var(--brand); /* fallback for browsers without gradient support */
  background: linear-gradient(165deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: white; text-align: center;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; padding: 80px 24px; }
.final-cta h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.6; }
.final-cta .btn-primary { font-size: 18px; padding: 18px 40px; }


/* =========================================
   SCHEDULE PAGE
   ========================================= */

.schedule-content { max-width: var(--max-w); margin: 0 auto; padding: 48px 24px 80px; }
.meeting-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg); padding: 0; margin-bottom: 16px;
  overflow: hidden; transition: box-shadow 0.2s;
}
.meeting-card:hover { box-shadow: var(--shadow-md); }
.meeting-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; cursor: pointer; gap: 16px;
}
.meeting-date-block { display: flex; align-items: center; gap: 16px; min-width: 0; }
.meeting-date-badge {
  width: 56px; min-width: 56px; text-align: center;
  background: var(--warm); border-radius: 10px; padding: 8px 4px;
}
.meeting-date-badge .month {
  font-size: 11px; text-transform: uppercase; font-weight: 700;
  color: var(--accent); letter-spacing: 0.06em;
}
.meeting-date-badge .day {
  font-size: 24px; font-weight: 700; color: var(--text); line-height: 1.1;
  font-family: var(--serif);
}
.meeting-meta h3 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.meeting-meta-sub { font-size: 14px; color: var(--text-light); }
.meeting-next-badge {
  font-size: 12px; font-weight: 700; background: var(--green-bg);
  color: var(--green); padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--green-border); white-space: nowrap;
}
.meeting-card-expand {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--text-light); transition: transform 0.3s;
}
.meeting-card-expand.open { transform: rotate(180deg); }
.meeting-card-body {
  display: none; padding: 0 28px 24px; border-top: 1px solid rgba(0,0,0,0.06);
}
.meeting-card-body.open { display: block; padding-top: 20px; }
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.role-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--warm); border-radius: var(--radius); }
.role-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.role-avatar.empty { background: var(--gray-light); color: var(--gray-mid); }
.role-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.role-label { font-size: 12px; color: var(--text-light); }
.schedule-guest-box {
  background: var(--warm); border-radius: var(--radius-lg); padding: 32px; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.schedule-guest-box h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.schedule-guest-box p { color: var(--text-secondary); font-size: 16px; }


/* Club Stats */

.stats-section { max-width: var(--max-w); margin: 0 auto; padding: 56px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 32px; }
.stat-card {
  background: var(--warm); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
}
.stat-card-number { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--brand); line-height: 1; margin-bottom: 6px; }
.stat-card-label { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.dcp-progress { margin-top: 32px; }
.dcp-bar-outer {
  background: var(--warm-mid); border-radius: 100px; height: 12px; overflow: hidden; margin-top: 8px;
}
.dcp-bar-inner {
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  height: 100%; border-radius: 100px; transition: width 0.6s ease;
}
.dcp-legend { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-light); margin-top: 8px; }


/* =========================================
   WHY JOIN PAGE (Phase 3 — styles ready)
   ========================================= */

.why-content { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.why-benefits {
  padding: 72px 0; display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.why-benefit-list { display: flex; flex-direction: column; gap: 32px; }
.why-benefit { display: flex; gap: 20px; align-items: flex-start; }
.why-benefit-icon {
  width: 48px; height: 48px; min-width: 48px; background: var(--warm);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.why-benefit-icon i { font-size: 22px; color: var(--brand); }
.why-benefit h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.why-benefit p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.why-sidebar {
  background: var(--warm); border-radius: var(--radius-lg);
  padding: 36px 32px; position: sticky; top: 88px;
}
.why-sidebar h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.why-faq { margin-bottom: 20px; }
.why-faq summary {
  font-weight: 600; font-size: 16px; cursor: pointer;
  padding: 12px 0; border-bottom: 1px solid var(--warm-mid); list-style: none;
}
.why-faq summary::-webkit-details-marker { display: none; }
.why-faq summary::before { content: '+'; display: inline-block; width: 20px; font-weight: 700; color: var(--brand); font-size: 18px; }
.why-faq[open] summary::before { content: '\2212'; }
.why-faq .faq-answer { padding: 12px 0 8px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.why-comparison { background: var(--warm); padding: 72px 24px; }
.why-comparison-inner { max-width: var(--max-w); margin: 0 auto; }
.comparison-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-top: 40px;
}
.comparison-table th {
  text-align: left; padding: 16px 24px; background: var(--brand); color: white; font-size: 15px; font-weight: 600;
}
.comparison-table td {
  padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 15px; color: var(--text-secondary);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; color: var(--text); }
.check { color: var(--green); font-weight: 700; font-size: 18px; }
.x-mark { color: var(--gray-light); font-size: 18px; }


/* =========================================
   VISIT US PAGE
   ========================================= */

.visit-content { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px 0 72px; align-items: start; }
.visit-expect-list { display: flex; flex-direction: column; gap: 0; }
.visit-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.visit-step:last-child { border-bottom: none; }
.visit-step-num {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
  background: var(--brand); color: white; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; font-family: var(--serif); margin-top: 2px;
}
.visit-step h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.visit-step p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.visit-details-card {
  background: var(--warm); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px;
}
.visit-details-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.visit-detail-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.visit-detail-row:last-child { margin-bottom: 0; }
.visit-detail-icon {
  width: 36px; height: 36px; min-width: 36px; background: var(--brand-bg);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.visit-detail-icon i { font-size: 16px; color: var(--brand); }
.visit-detail-text .vd-label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 700; color: var(--text-light); margin-bottom: 2px;
}
.visit-detail-text .vd-value { font-size: 16px; font-weight: 600; }
.visit-detail-text .vd-extra { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }
.vd-bold { font-weight: 600; color: var(--text); }
.visit-directions {
  background: var(--warm); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px;
}
.visit-directions h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.visit-directions p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.visit-directions p:last-child { margin-bottom: 0; }
.virtual-info-box {
  background: var(--blue-info-bg); border: 1.5px solid var(--blue-info-border);
  border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 24px;
}
.virtual-info-box h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 12px;
  color: var(--blue-info); display: flex; align-items: center; gap: 10px;
}
.virtual-info-box h3 i { font-size: 20px; color: var(--blue-info); }
.virtual-info-box p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 8px; }
.virtual-info-box .zoom-link-placeholder {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid var(--blue-info-border);
  padding: 12px 20px; border-radius: var(--radius); font-size: 15px;
  font-weight: 600; color: var(--blue-info); margin-top: 8px; text-decoration: none;
}

.visit-map-section { padding: 0 24px 72px; }
.visit-map-inner { max-width: var(--max-w); margin: 0 auto; }
.visit-map-frame {
  width: 100%; height: clamp(250px, 40vw, 400px); border-radius: var(--radius-lg);
  background: var(--warm); border: 1px solid var(--warm-mid); overflow: hidden;
}
.visit-map-frame iframe { width: 100%; height: 100%; border: 0; }


/* Form */

.visit-form-section { background: var(--warm); padding: 72px 24px; border-top: 1px solid var(--warm-mid); }
.visit-form-inner { max-width: 680px; margin: 0 auto; }
.visit-form-inner h2 { font-family: var(--serif); font-size: 32px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.visit-form-inner > p { text-align: center; color: var(--text-secondary); font-size: 17px; margin-bottom: 36px; }
.form-card { background: white; border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 24px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius); font-size: 16px; font-family: var(--sans);
  color: var(--text); transition: border-color 0.2s; background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 2px solid transparent; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-bg);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group .field-error { font-size: 13px; color: var(--accent); margin-top: 4px; font-weight: 500; }
.form-group input.error, .form-group textarea.error, .form-group select.error {
  border-color: var(--accent);
}
.form-hint { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand); }
.form-checkbox label { font-size: 15px; color: var(--text-secondary); cursor: pointer; }
.form-submit {
  width: 100%; padding: 16px; background: var(--accent); color: white;
  font-size: 17px; font-weight: 700; border: none; border-radius: var(--radius);
  cursor: pointer; transition: background-color 0.2s; font-family: var(--sans);
}
.form-submit:hover { background: var(--accent-hover); }
.form-success {
  text-align: center; padding: 40px 24px;
}
.form-success h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--green); margin-bottom: 12px;
}
.form-success p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.6;
}

/* Honeypot field — hidden from humans */
.form-honeypot { display: none; }


/* ===== FOOTER ===== */

footer {
  background: var(--brand-dark); color: rgba(255,255,255,0.5); font-size: 14px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 32px 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-brand { font-family: var(--serif); font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 18px; transition: color 0.2s;
}
.footer-social a:hover { color: rgba(255,255,255,0.8); }
.footer-powered {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px 20px; font-size: 13px; opacity: 0.5;
}
.footer-powered a { color: rgba(255,255,255,0.6); }


/* ===== MOBILE STICKY CTA ===== */

.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-mobile-sticky);
  background: var(--white); border-top: 1px solid rgba(0,0,0,0.1);
  padding: 12px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-sticky a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: white; font-size: 16px; font-weight: 700;
  padding: 16px; border-radius: var(--radius); text-decoration: none; width: 100%;
}


/* ===== SKIP TO CONTENT (accessibility) ===== */

.skip-to-content {
  position: absolute; top: -40px; left: 0; z-index: var(--z-skip);
  background: var(--brand); color: white; padding: 8px 16px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-inner { padding: 48px 20px 56px; }
  .hero-details { gap: 24px; }
  .expect-inner, .proof-inner, .home-meeting-inner, .about-inner, .officers-inner { padding: 56px 20px; }
  .hero-inner--with-image, .hero-inner--wide-image { grid-template-columns: 1fr; max-width: var(--max-w); }
  .hero-image { order: 1; }
  .hero-image img { max-width: 280px; }
  .proof-grid, .meeting-grid, .visit-grid, .why-benefits { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .why-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .comparison-table { font-size: 14px; }
  .comparison-table th, .comparison-table td { padding: 12px 16px; }
  .mobile-sticky { display: block; }
  body { padding-bottom: 72px; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .officers-row { gap: 12px; }
  .expect-grid--3col { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 960px) {
  .expect-grid--3col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .roles-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero h1 { font-size: 32px; }
}

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