:root {
  /* Live site palette (wearelgbtqspiritual.org) */
  --deep: #216B60;
  --navy: #111111;
  --teal: #2a9d8f;
  --teal-light: #3dbfb0;
  --gold: #e9c46a;
  --coral: #e76f51;
  --pride-red: #e00020;
  --pride-orange: #e06000;
  --pride-purple: #600080;
  --pride-blue: #002060;
  --cream: #fdf8f2;
  --warm-white: #fffdf9;
  --text: #1a1a2e;
  --muted: #4a5568;
  --border: #e5e0d8;
  --hero-bg-url: url("images/Pride_People_Under_Flag.jpg");
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Poppins", "DM Sans", system-ui, sans-serif;
  --header-h: 4rem;
  --radius: 0.75rem;
  --shadow: 0 8px 32px rgba(15, 27, 45, 0.9);
  --transition: 0.2s ease;
}
<style>
  .bg-cream { background: #fdf8f2 !important; }
  .bg-white  { background: #ffffff !important; }
</style>

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

html {
  scroll-behavior: smooth;
}
section,


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background-color: var(--warm-white); /* fallback only */
  background-image: url('images/Pride_People_Under_Flag.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

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

a {
  color: var(--teal);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 27, 45, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 157, 143, 0.25);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-fallback {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo-fallback span {
  color: var(--teal-light);
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(253, 248, 242, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--teal-light);
}

.nav-cta {
  border: 1px solid var(--teal);
  padding: 0.4rem 1rem !important;
  border-radius: 2rem;
  color: var(--teal-light) !important;
}

.nav-cta:hover {
  background: var(--teal);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  opacity: 0.9;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--deep);
    border-bottom: 1px solid rgba(42, 157, 143, 0.9);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.is-open {
    max-height: 320px;
    padding-bottom: 1rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    gap: 0.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform 0.15s ease, border-color var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid rgba(253, 248, 242, 0.4);
  color: var(--cream);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-light {
  border: 1.5px solid rgba(253, 248, 242, 0.45);
  color: var(--cream);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--teal);
}

.btn-secondary:hover {
  background: rgba(42, 157, 143, 0.08);
}

.btn-pdf {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: rgba(233, 196, 106, 0.08);
}

.btn-pdf:hover {
  background: rgba(233, 196, 106, 0.18);
  border-color: #f5d98a;
  color: #f5d98a;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  background-image: url("images/Pride_People_Under_Flag.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
  position: relative;
  overflow: hidden;

  padding: clamp(4rem, 10vw, 6.5rem) 1.5rem clamp(3.5rem, 8vw, 5rem);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(224, 0, 32, 0.18),
      rgba(224, 96, 0, 0.18),
      rgba(233, 196, 106, 0.18),
      rgba(42, 157, 143, 0.18),
      rgba(96, 0, 128, 0.18)
    ),
    linear-gradient(
      rgba(0, 0, 0, 0.52),
      rgba(0, 0, 0, 0.52)
    );
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(42, 157, 143, 0.2);
  border: 1px solid var(--teal);
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  color: rgba(253, 248, 242, 0.82);
  max-width: 640px;
  margin: 0 auto 1rem;
  font-weight: 400;
}

.hero-statement {
  font-size: 0.98rem;
  color: rgba(253, 248, 242, 0.65);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-style: italic;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats */
.stats-bar {
  background: var(--navy);
  opacity: 1.0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid var(--teal);
}

.stat-item {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--teal-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(253, 248, 242, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.45rem;
  display: block;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stats-bar {
    grid-template-columns: 1fr;
    opacity: 0.9 ; 
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5rem) 1.5rem;
}

.container {
  max-width: 1020px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--deep);
}

.section-body {
  font-size: 1.05rem;
  color: #3d3d50;
  max-width: 680px;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  margin: 0 0 1.5rem;
  border-radius: 2px;
}

.prose {
  font-size: 1.05rem;
  color: #3d3d50;
  line-height: 1.85;
}

.prose p + p {
  margin-top: 1.15rem;
}

.prose strong {
  color: var(--deep);
}

/* Community welcome */
.community-section {
  background: var(--deep);
  color: var(--cream);
  padding: 0;
}

.community-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 320px;
}

.community-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.community-content {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-content .section-label {
  color: var(--teal-light);
}

.community-content .section-title {
  color: var(--cream);
}

.community-content .prose {
  color: rgba(253, 248, 242, 0.82);
}

.community-content .prose p + p {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-media {
    order: -1;
    max-height: 280px;
    overflow: hidden;
  }
}

/* Mission */
.mission-section {
  background: var(--cream);
}

/* Story */
.story-section {
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 3rem;
  align-items: start;
}

.story-highlight {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(42, 157, 143, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 0.4rem 0.4rem 0;
  color: var(--deep);
}

@media (max-width: 800px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Programs */
.programs-section {
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.program-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform 0.15s ease;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}

.program-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.program-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--deep);
  margin-bottom: 0.25rem;
}

.program-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.program-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Partners preview */
.partners-preview {
  background: white;
}

.logo-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0 2rem;
}

.logo-slot {
  aspect-ratio: 2.2 / 1;
  border: 2px dashed var(--border);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.logo-slot span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Support */
.support-section {
  background: var(--deep);
  color: var(--cream);
  text-align: center;
}

.support-inner .section-label {
  color: var(--teal-light);
}

.support-inner .section-title {
  color: var(--cream);
}

.support-inner .section-body,
.support-inner .tax-note {
  margin-left: auto;
  margin-right: auto;
  color: rgba(253, 248, 242, 0.78);
}

.tax-note {
  font-size: 0.95rem;
  margin: 1rem auto 2rem;
  max-width: 560px;
}

.support-inner .divider {
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: #090e18;
  color: rgba(253, 248, 242, 0.5);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-tagline {
  color: rgba(253, 248, 242, 0.72);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.site-footer a {
  color: var(--teal-light);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}

.footer-copy {
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

/* Donate page */
.donate-amounts {
  display: grid;
  opacity: 1;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
  max-width: 640px;
}

.donate-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--deep);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform 0.15s ease;
  opacity: 1;
}

.donate-amount:hover {
  border-color: var(--teal);
  background: rgba(42, 157, 143, 0.06);
  transform: translateY(-2px);
}

.donate-amount.featured {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.donate-amount.featured:hover {
  background: var(--teal-light);
}

.donate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.donate-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.donate-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.donate-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.donate-impact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.donate-impact-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: #3d3d50;
  display: flex;
  gap: 0.6rem;
}

.donate-impact-list li::before {
  content: "✦";
  color: var(--pride-purple);
  flex-shrink: 0;
}

/* Sponsors page extras */
.page-hero-compact {
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem 3rem;
}

.why-grid,
.tiers-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0.5rem 0 0.5rem;
  color: var(--deep);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

.tiers-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.tier-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: white;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15, 27, 45, 0.12);
}

.tier-card.featured {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(42, 157, 143, 0.2);
}

.tier-header {
  padding: 1.5rem 1.5rem 1rem;
}

.tier-card:nth-child(1) .tier-header {
  background: linear-gradient(135deg, #c8a97a, var(--gold));
}

.tier-card:nth-child(2) .tier-header {
  background: linear-gradient(135deg, var(--navy), #2a4a6b);
  color: white;
}

.tier-card:nth-child(3) .tier-header {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
}

.tier-card:nth-child(4) .tier-header {
  background: linear-gradient(135deg, #8b6f47, #a0835a);
  color: white;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.tier-price {
  font-size: 0.88rem;
  opacity: 0.9;
  margin-top: 0.2rem;
}

.tier-badge {
  display: inline-block;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  padding: 0.15rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-body {
  padding: 1.25rem 1.5rem 1.75rem;
}

.tier-body ul {
  list-style: none;
}

.tier-body li {
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  line-height: 1.5;
  color: #3d3d50;
}

.tier-body li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.tier-body li:last-child {
  border-bottom: none;
}

.tier-cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.7rem;
  border-radius: 0.4rem;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.tier-cta:hover {
  background: var(--teal-light);
}

.contact-section {
  background: var(--deep);
  color: var(--cream);
  text-align: center;
}

.contact-section .section-title {
  color: var(--cream);
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 520px;
  margin: 2rem auto 0;
  text-align: left;
}

.contact-field {
  margin-bottom: 1rem;
}

.contact-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.5);
  margin-bottom: 0.35rem;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-field textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 0.4rem;
  background: var(--teal);
  color: white;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
}

.contact-submit:hover {
  background: var(--teal-light);
}

.contact-alt {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(253, 248, 242, 0.55);
}

.bg-cream {
  background: var(--cream);
  opacity: 0.5;
}

.bg-white {
  background: white;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT US SECTION — paste into styles.css
   ═══════════════════════════════════════════════════════════════ */

.contact-us-section {
  background: var(--deep);
  color: var(--cream);
  text-align: center;
}

.contact-us-section .section-label {
  color: var(--teal);
}

.contact-us-section .section-title {
  color: var(--cream);
}

.contact-us-section .section-body {
  color: rgba(253, 248, 242, 0.72);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-us-section .divider {
  margin-left: auto;
  margin-right: auto;
}

/* Form card */
.contact-us-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 520px;
  margin: 2rem auto 0;
  text-align: left;
}

/* Fields */
.cu-field {
  margin-bottom: 1rem;
}

.cu-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.5);
  margin-bottom: 0.35rem;
}

.cu-field input,
.cu-field select,
.cu-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.cu-field input:focus,
.cu-field select:focus,
.cu-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.cu-field select option {
  background: var(--deep);
  color: var(--cream);
}

.cu-field textarea {
  min-height: 110px;
  resize: vertical;
}

/* Submit button */
.cu-submit {
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 0.4rem;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cu-submit:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.cu-submit:active {
  transform: translateY(0);
}

/* Success message */
.cu-success {
  margin-top: 1rem;
  background: rgba(42, 157, 143, 0.15);
  border: 1px solid var(--teal);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  text-align: center;
  color: var(--teal-light);
  font-size: 0.95rem;
}

/* Alt contact line */
.cu-alt {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(253, 248, 242, 0.5);
  text-align: center;
  line-height: 1.6;
}

.cu-alt a {
  color: var(--teal-light);
  text-decoration: none;
}

.cu-alt a:hover {
  text-decoration: underline;
}

/* Validation highlight */
.cu-field input:invalid:not(:placeholder-shown),
.cu-field select:invalid:not(:placeholder-shown),
.cu-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(231, 111, 81, 0.6);
}   

/* Founders */
.founders-section {
  background: var(--warm-white);
  text-align: center;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  justify-items: center;
}

.founder-card {
  max-width: 280px;
}

.founder-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 3px solid var(--border);
  margin-bottom: 1rem;
  background: var(--cream); /* placeholder color while image loads */
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* keeps faces in frame */
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.bg-cream {
  background: var(--cream);
}

.bg-white {
  background: #ffffff;
}