/* ============================================================
   DAVID ANGEL FOR COOPER CITY COMMISSION
   Primary: #2D4A25 (Forest Green)  |  Secondary: #FFFFFF
   ============================================================ */

:root {
  --green:       #2D4A25;
  --green-dark:  #1e3319;
  --green-mid:   #3a5e30;
  --green-light: #4a7a3d;
  --white:       #ffffff;
  --off-white:   #f5f3ee;
  --cream:       #ede9e0;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #767676;
  --rule:        rgba(45, 74, 37, 0.15);
  --rule-white:  rgba(255, 255, 255, 0.2);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

/* ── UTILITY CLASSES ────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad { padding: 90px 28px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { grid-auto-flow: dense; }
.two-col.reverse .col-img { grid-column: 1; }
.two-col.reverse .col-text { grid-column: 2; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.12s;
}

.btn:active { transform: translateY(1px); }

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 28px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { flex-shrink: 0; }
.logo a { display: block; }
.logo img { height: 72px; width: auto; }

/* Nav */
.site-nav { display: flex; align-items: center; }

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 3px;
  transition: background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255,255,255,0.14);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

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

.social-bar a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.social-bar a:hover { background: rgba(255,255,255,0.15); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background-color: var(--off-white);
  background-image:
    linear-gradient(rgba(245, 243, 238, 0.85), rgba(245, 243, 238, 0.85)),
    url('../images/bending-tree-canopy.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-dark);
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 70px 60px 70px 28px;
}

.hero-name {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green);
  margin-bottom: 10px;
}

.hero-seat {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-seat-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--green);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero-contact {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 36px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-contact a {
  text-decoration: none;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.hero-contact a i { color: var(--green); }
.hero-contact a:hover { color: var(--green); }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  padding: 40px 28px 40px 0;
}
.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center top;
  border-radius: 2px;
}

/* ── PAGE HEADER (inner pages) ──────────────────────────────── */
.page-header {
  background: var(--green);
  color: var(--white);
  padding: 70px 28px 60px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ── DIVIDER ────────────────────────────────────────────────── */
.rule {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 0 0 28px;
}
.rule.white {
  background: rgba(255,255,255,0.5);
}
.rule.center { margin: 0 auto 28px; }

/* ── SECTION: ABOUT INTRO (Home) ───────────────────────────── */
.section-about {
  background: var(--white);
  padding-left: 0;
  padding-right: 0;
}

.section-about .col-text h2 {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 24px;
}
.section-about .col-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.section-about .col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* ── SECTION: PRIORITIES (Home) ─────────────────────────────── */
.section-priorities {
  background: var(--off-white);
  color: var(--text-dark);
}

.section-priorities .col-text h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--green);
}

.priority-list {
  list-style: none;
  margin-bottom: 36px;
}
.priority-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
}
.priority-list li:first-child { border-top: 1px solid var(--rule); }
.priority-list li .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.section-priorities .col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ── SECTION: JOIN / CTA (Home) ─────────────────────────────── */
.section-join-home {
  background: var(--white);
}

.section-join-home .container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Signup card */
.signup-card {
  background: var(--white);
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.signup-card h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 6px;
}
.signup-card .card-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #d4d0c8;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

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

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 0.82rem;
}

.legal-copy {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.5;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── EXPERIENCE GRID ───────────────────────────────────────── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.experience-item {
  padding: 28px 24px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.experience-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.experience-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1rem;
}

.experience-item h3 {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.3;
}

.experience-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Key dates */
.key-dates-card {
  background: var(--green);
  color: var(--white);
  padding: 44px 40px;
  height: 100%;
}

.key-dates-card h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.date-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-white);
}
.date-item:first-of-type { border-top: 1px solid var(--rule-white); }

.date-box {
  background: rgba(255,255,255,0.12);
  padding: 8px 10px;
  text-align: center;
  min-width: 52px;
  flex-shrink: 0;
}
.date-box .month {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}
.date-box .day {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.date-info .event-name {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}
.date-info .event-desc {
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: var(--white);
}

.footer-top {
  padding: 50px 28px 36px;
  border-bottom: 1px solid var(--rule-white);
}

.footer-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
}

.footer-donate { text-align: center; }

.footer-contact {
  text-align: right;
  font-size: 0.85rem;
  line-height: 1.9;
  opacity: 0.8;
}
.footer-contact a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-contact a:hover { opacity: 1; }

.footer-donate-btn {
  display: block;
}

.footer-social { display: flex; justify-content: flex-start; gap: 12px; }

.footer-social a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rule-white);
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.footer-bottom {
  padding: 20px 28px;
}
.footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.73rem;
  opacity: 0.65;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 70px;
}

.about-photos img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

.about-bio {
  max-width: 820px;
  margin: 0 auto;
}

.about-bio h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 24px;
}

.about-bio p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 22px;
}

/* ── PRIORITIES PAGE ─────────────────────────────────────────── */
.priority-section {
  padding: 80px 28px;
}
.priority-section:nth-child(even) { background: var(--off-white); }
.priority-section:nth-child(odd) { background: var(--white); }

.priority-section .num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -20px;
}

.priority-section h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 20px;
}

.priority-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.priority-section img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ── JOIN PAGE ───────────────────────────────────────────────── */
.join-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: var(--green);
}

.join-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.join-hero-text {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 60px 28px;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.join-hero-text h1 {
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.join-hero-text p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.7;
}

.join-content {
  background: var(--off-white);
  padding: 80px 28px;
}

.join-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.join-copy h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 22px;
}

.join-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.join-copy .ways {
  list-style: none;
  margin-top: 28px;
}

.join-copy .ways li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.join-copy .ways li:first-child { border-top: 1px solid var(--rule); }

.join-copy .ways li .way-icon {
  color: var(--green);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.join-copy .ways li strong { display: block; color: var(--green); margin-bottom: 3px; }

/* ── ENDORSEMENTS PAGE ───────────────────────────────────────── */
.endorsements-section {
  padding: 80px 28px;
  background: var(--white);
}

.endorsement-group {
  margin-bottom: 56px;
}

.endorsement-group:last-child { margin-bottom: 0; }

.endorsement-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 6px 20px;
  margin-bottom: 24px;
}

.endorsement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.endorsement-card {
  background: var(--off-white);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.endorsement-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
}

.endorsement-photo.endorsement-logo {
  border-radius: 0;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
}

.endorsement-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.endorsement-card-info strong {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.endorsement-card-info span {
  font-size: 0.8rem;
  color: var(--text-mid);
  opacity: 0.7;
}

/* ── EVENTS PAGE ─────────────────────────────────────────────── */
.events-section {
  padding: 80px 28px;
  background: var(--white);
}

.events-grid {
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.event-card:first-child { border-top: 1px solid var(--rule); }

.event-date-block {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 14px 18px;
  min-width: 70px;
  flex-shrink: 0;
}
.event-date-block .month {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  opacity: 0.8;
}
.event-date-block .day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.event-info h3 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 8px;
}

.event-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.event-meta span { display: flex; align-items: center; gap: 6px; }

.event-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PRIVACY PAGE ────────────────────────────────────────────── */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px;
}
.privacy-content h2 { font-size: 1.4rem; color: var(--green); margin: 32px 0 12px; }
.privacy-content p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }

/* ── BANNER STRIP ─────────────────────────────────────────────── */
.banner-strip {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 22px 28px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.banner-strip strong { font-weight: 700; }
.banner-strip a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ── SECTION HEADING STYLE ──────────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 10px;
}
.section-label.white { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 0.85rem;
  }

  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 52px 28px 40px;
    order: 1;
  }

  .hero-image {
    order: 2;
    height: 380px;
  }

  .hero-name { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.4rem; }
  .hero-image { padding: 20px 28px; }
  .hero-image img { height: 380px; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .two-col.reverse .col-img { grid-column: auto; }
  .two-col.reverse .col-text { grid-column: auto; }

  .section-about .col-img img { height: 360px; }
  .section-priorities .col-img img { height: 360px; }

  .about-photos { grid-template-columns: 1fr; }
  .about-photos img { height: 360px; }

  .join-inner { grid-template-columns: 1fr; }

  .footer-top-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact { text-align: center; }
  .footer-logo img { margin: 0 auto; }

  .section-pad { padding: 60px 28px; }
}

@media (max-width: 640px) {
  .header-right .btn { display: none; }
  .hero-name { font-size: 2.2rem; }
  .hero-tagline { font-size: 1.2rem; }
  .page-header h1 { font-size: 2rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .hero-contact { flex-direction: column; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .signup-card { padding: 28px 22px; }
  .key-dates-card { padding: 28px 22px; }
  .event-card { flex-direction: column; gap: 16px; }
  .priority-section img { height: 300px; }
}
