/*
Theme Name:  WIA Theme
Theme URI:   https://wiamembers.ca
Description: Custom theme for the Ward's Island Association.
Author:      Ward's Island Association
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: wia-theme
*/

/* =============================================
   Ward's Island Association — Main Stylesheet
   ============================================= */

/* === Variables === */
:root {
  --green-dark:   #1b4332;
  --green-mid:    #2d6a4f;
  --green-hover:  #245843;
  --green-light:  #d8f3dc;
  --amber:        #b07830;
  --amber-light:  #f0a830;
  --amber-hover:  #8f6225;
  --cream:        #faf8f0;
  --white:        #ffffff;
  --charcoal:     #1a1a1a;
  --gray-700:     #444444;
  --gray-500:     #777777;
  --gray-300:     #bbbbbb;
  --gray-200:     #e0dcd2;
  --gray-100:     #f5f2ea;

  --font-head:    'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow:       0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.14);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.2s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* === Base === */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}

/* === Layout === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section { padding: 84px 0; }
.section--alt { background: var(--gray-100); }
.section--dark { background: var(--green-dark); color: var(--white); }
.section--white { background: var(--white); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.section-title--white { color: var(--white); }

.section-lead {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.section-lead--white { color: rgba(255,255,255,0.82); }

.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn--primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.9);
  color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn--outline-dark:hover {
  background: var(--green-mid);
  color: var(--white);
}
.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--sm   { padding: 8px 18px; font-size: 13px; }
.btn--lg   { padding: 16px 36px; font-size: 17px; }

/* === Cards === */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.card-img-placeholder {
  width: 100%; height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.card-img-placeholder.green  { background: linear-gradient(135deg, #c8e6c9, #81c784); }
.card-img-placeholder.amber  { background: linear-gradient(135deg, #ffe082, #ffb300); }
.card-img-placeholder.blue   { background: linear-gradient(135deg, #b3e5fc, #4fc3f7); }
.card-img-placeholder.earth  { background: linear-gradient(135deg, #d7ccc8, #a1887f); }

.card-body { padding: 26px; }
.card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-head); font-size: 19px; font-weight: 600;
  color: var(--green-dark); margin-bottom: 10px; line-height: 1.3;
}
.card-excerpt { font-size: 14px; color: var(--gray-700); margin-bottom: 18px; line-height: 1.65; }
.card-meta { font-size: 13px; color: var(--gray-500); }
.card-link { font-size: 14px; font-weight: 600; color: var(--green-mid); }
.card-link:hover { color: var(--green-dark); }

/* === Grid === */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.site-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.site-logo img {
  height: 54px; width: 54px; object-fit: contain;
  border-radius: 50%; flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--green-dark); line-height: 1.2; display: block;
}
.logo-sub {
  font-size: 11px; letter-spacing: 0.07em; color: var(--gray-500);
  text-transform: uppercase; display: block;
}
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.dropdown { display: block; }
.main-nav a {
  display: block; padding: 8px 13px; font-size: 14px; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius); transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active,
.main-nav a.current-menu-item,
.main-nav .current-menu-item > a,
.main-nav .current-page-ancestor > a,
.main-nav .current-menu-ancestor > a {
  color: var(--green-dark); background: var(--green-light);
}
.main-nav .nav-cta a {
  background: var(--green-mid); color: var(--white);
  border-radius: var(--radius); padding: 9px 20px;
}
.main-nav .nav-cta a:hover { background: var(--green-hover); color: var(--white); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: auto; right: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 6px 0; white-space: nowrap;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all var(--transition); z-index: 200;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  padding: 10px 18px; font-size: 14px; border-radius: 0; display: block;
  color: var(--gray-700);
}
.dropdown li a:hover { background: var(--gray-100); color: var(--green-dark); }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 8px 14px; font-size: 13px;
  font-weight: 600; cursor: pointer; color: var(--gray-700); font-family: var(--font-body);
}

/* === Homepage Hero === */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: flex-end;
  color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(8,28,18,0.72) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 72px 0;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber-light); margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 20px; color: var(--white);
}
.hero p {
  font-size: 19px; color: rgba(255,255,255,0.88);
  margin-bottom: 36px; max-width: 520px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === Page Hero (interior) === */
.page-hero {
  background: var(--green-dark); color: var(--white); padding: 60px 0 52px;
}
.page-hero.has-bg {
  position: relative; min-height: 300px;
  display: flex; align-items: flex-end;
}
.page-hero.has-bg::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55);
}
.page-hero.has-bg .container { position: relative; z-index: 1; padding-bottom: 52px; }
.page-hero h1 {
  font-family: var(--font-head); color: var(--white);
  font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 560px; margin-bottom: 0; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }

/* === Pillars === */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  text-align: center; padding: 40px 28px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--green-mid);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pillar-icon { font-size: 42px; margin-bottom: 16px; }
.pillar h3 { font-family: var(--font-head); color: var(--green-dark); margin-bottom: 12px; font-size: 20px; }
.pillar p { font-size: 15px; color: var(--gray-700); margin: 0; }

/* === Land Acknowledgement Strip === */
.land-ack-strip {
  background: var(--green-dark); color: rgba(255,255,255,0.88);
  padding: 44px 0; text-align: center;
}
.land-ack-strip p {
  max-width: 820px; margin: 0 auto; font-size: 15px;
  line-height: 1.85; font-style: italic;
}
.land-ack-strip strong { color: var(--white); font-weight: 600; font-style: normal; }

/* === Events === */
.event-item {
  display: flex; gap: 22px; padding: 22px 26px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--green-mid);
  margin-bottom: 14px; transition: box-shadow var(--transition);
  align-items: flex-start;
}
.event-item:hover { box-shadow: var(--shadow); }
.event-date-block { flex-shrink: 0; text-align: center; width: 52px; padding-top: 2px; }
.event-month {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-mid); line-height: 1;
}
.event-day {
  font-family: var(--font-head); font-size: 30px; font-weight: 700;
  color: var(--green-dark); line-height: 1.1;
}
.event-info h3 { font-family: var(--font-head); font-size: 17px; color: var(--green-dark); margin-bottom: 4px; }
.event-info p { font-size: 14px; color: var(--gray-700); margin: 0 0 8px; }
.event-tag {
  display: inline-block; padding: 2px 10px; background: var(--green-light);
  color: var(--green-dark); border-radius: 20px; font-size: 11px; font-weight: 600;
}

/* === Membership Cards === */
.membership-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 800px; margin: 0 auto; }
.membership-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); border: 2px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.membership-card.featured {
  border-color: var(--green-mid); position: relative;
}
.membership-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%); background: var(--green-mid); color: var(--white);
  padding: 4px 16px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.membership-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-lg); }
.membership-type { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--green-dark); margin-bottom: 8px; }
.membership-price { font-size: 44px; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 4px; }
.membership-price span { font-size: 16px; font-weight: 400; color: var(--gray-500); }
.membership-desc { font-size: 14px; color: var(--gray-700); margin-bottom: 24px; }
.membership-perks { list-style: none; margin-bottom: 28px; }
.membership-perks li {
  font-size: 14px; color: var(--gray-700);
  padding: 8px 0; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 10px;
}
.membership-perks li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.membership-perks li:last-child { border-bottom: none; }

/* === Merch Grid === */
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.merch-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.merch-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.merch-img {
  width: 100%; height: 220px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.merch-body { padding: 20px 22px; }
.merch-name { font-family: var(--font-head); font-size: 17px; color: var(--green-dark); margin-bottom: 4px; }
.merch-price { font-size: 19px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; }
.merch-options { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.size-btn {
  padding: 4px 10px; border: 1.5px solid var(--gray-200); border-radius: 4px;
  font-size: 12px; cursor: pointer; background: var(--white); transition: all var(--transition);
  font-family: var(--font-body);
}
.size-btn:hover, .size-btn.selected {
  border-color: var(--green-mid); color: var(--green-mid); background: var(--green-light);
}
.btn-add-cart.added { background: #4caf50; border-color: #4caf50; }

/* === Forms === */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px;
  color: var(--charcoal); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === History Timeline === */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200); transform: translateX(-50%);
}
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0 20px; margin-bottom: 52px; align-items: start; }
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-dot {
  width: 18px; height: 18px;
  background: var(--green-mid); border: 3px solid var(--cream);
  border-radius: 50%; box-shadow: 0 0 0 2px var(--green-mid);
  margin: 4px auto 0; position: relative; z-index: 1;
}
.timeline-dot.fire     { background: #c0392b; box-shadow: 0 0 0 2px #c0392b; }
.timeline-dot.rebuild  { background: var(--amber); box-shadow: 0 0 0 2px var(--amber); }
.timeline-year { font-size: 13px; font-weight: 700; color: var(--green-mid); letter-spacing: 0.05em; margin-bottom: 5px; }
.timeline-year.fire    { color: #c0392b; }
.timeline-year.rebuild { color: var(--amber); }
.timeline-content h3 { font-family: var(--font-head); font-size: 19px; color: var(--green-dark); margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: var(--gray-700); margin: 0; line-height: 1.7; }
.timeline-content img { margin-top: 16px; border-radius: var(--radius); width: 100%; max-height: 230px; object-fit: cover; }

/* === Executive Grid === */
.exec-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.exec-card {
  text-align: center; padding: 28px 16px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.exec-avatar {
  width: 72px; height: 72px; background: var(--green-light);
  border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: var(--green-dark);
  font-family: var(--font-head);
}
.exec-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.exec-role { font-size: 12px; color: var(--gray-500); }

/* === Constitution === */
.constitution-body { max-width: 760px; margin: 0 auto; }
.constitution-body h2 {
  font-family: var(--font-head); font-size: 21px; color: var(--green-dark);
  margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-200);
}
.constitution-body h3 { font-size: 16px; color: var(--green-dark); margin: 20px 0 8px; }
.constitution-body p, .constitution-body ol, .constitution-body ul {
  font-size: 15px; color: var(--gray-700); margin-bottom: 12px; line-height: 1.75;
}
.constitution-body ol, .constitution-body ul { padding-left: 24px; }
.constitution-body li { margin-bottom: 6px; }
.constitution-toc {
  background: var(--gray-100); border-radius: var(--radius-lg);
  padding: 28px 32px; margin-bottom: 40px; border: 1px solid var(--gray-200);
}
.constitution-toc h3 { font-size: 15px; margin-bottom: 16px; color: var(--green-dark); }
.constitution-toc li { margin-bottom: 8px; }
.constitution-toc a { font-size: 14px; color: var(--green-mid); }
.constitution-toc a:hover { color: var(--green-dark); }

/* === Map Placeholder === */
.map-placeholder {
  background: var(--gray-100); border-radius: var(--radius-lg);
  height: 380px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--gray-500);
  border: 2px dashed var(--gray-200); font-size: 15px;
}
.map-placeholder .map-icon { font-size: 52px; }
.map-placeholder p { margin: 0; text-align: center; line-height: 1.5; }

/* === Notice / Alert === */
.notice {
  background: #e8f4ea; border: 1px solid #a8d5b0; border-radius: var(--radius);
  padding: 16px 20px; font-size: 14px; color: #1b4332;
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px;
}
.notice--amber { background: #fff8e8; border-color: #f0c96a; color: #6b4a00; }
.notice-icon { flex-shrink: 0; font-size: 18px; }

/* === Footer === */
.site-footer { background: #0d2419; color: rgba(255,255,255,0.72); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand .site-logo { margin-bottom: 18px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.45); }
.footer-brand > p { font-size: 14px; line-height: 1.75; max-width: 270px; }
.footer-col h4 { font-family: var(--font-head); font-size: 15px; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.62); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* === Utilities === */
.mb-0  { margin-bottom: 0 !important; }
.mb-8  { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-48 { margin-bottom: 48px !important; }
.mt-8  { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-48 { margin-top: 48px !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
.text-muted { color: var(--gray-500); font-size: 14px; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600; background: var(--green-light); color: var(--green-dark);
}
.divider { height: 1px; background: var(--gray-200); margin: 40px 0; }

/* === Responsive === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .exec-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 0 16px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
  .timeline-spacer { display: none !important; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-3, .pillars { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-cards { grid-template-columns: 1fr; max-width: 420px; }
  .exec-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 24px 28px;
    overflow-y: auto; z-index: 90; flex-direction: column;
  }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--gray-200); }
  .main-nav a { padding: 14px 0; font-size: 16px; border-radius: 0; }
  .has-dropdown > a::after { content: ' ▾'; }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    padding: 0 0 4px 16px; background: none;
  }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 36px; }
}
@media (max-width: 480px) {
  .merch-grid { grid-template-columns: 1fr; }
  .exec-grid { grid-template-columns: repeat(2, 1fr); }
}
