/* ============================================
   WELL SUITED PROGRAM — Landing Page Styles
   Palette: Navy + Gold + Cream + Ink
   ============================================ */

:root {
  --navy: #0e1a3a;
  --navy-deep: #08122a;
  --navy-soft: #1a2851;
  --gold: #c9a35b;
  --gold-bright: #e0bf7a;
  --gold-deep: #a47f3a;
  --cream: #f6f1e6;
  --ink: #1a1a1a;
  --gray: #5a5a5a;
  --light-gray: #ededed;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--gold-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

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

.gold { color: var(--gold); }
.light { color: var(--cream); }
.muted { color: var(--gray); font-size: .9rem; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  background: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--navy-deep); }
.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-deep); color: var(--gold); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.ws-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(14, 26, 58, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(201, 163, 91, 0.15);
}
.ws-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ws-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.ws-logo:hover { color: var(--gold); }
.ws-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .05em;
}
.ws-logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .02em;
  line-height: 1;
}
.ws-logo-text em {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  margin-top: 4px;
}
.ws-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.ws-nav a {
  color: var(--cream);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  position: relative;
  padding: 8px 0;
}
.ws-nav a:hover { color: var(--gold); }
.ws-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.ws-nav a:hover::after { transform: scaleX(1); }
.ws-header-cta { padding: 10px 24px; font-size: .85rem; }
.ws-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.ws-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
}
.ws-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201, 163, 91, 0.15);
}
.ws-mobile-nav.open { display: flex; }
.ws-mobile-nav a {
  color: var(--cream);
  font-weight: 500;
  padding: 8px 0;
}
.ws-mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.ws-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  overflow: hidden;
}
.ws-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,163,91,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,163,91,0.08) 0%, transparent 50%);
}
.ws-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 80px, rgba(201,163,91,0.02) 80px 81px);
}
.ws-hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
}
.ws-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.ws-hero-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 28px;
}
.ws-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
  color: rgba(246,241,230,0.85);
}
.ws-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.ws-hero-highlights {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid rgba(201,163,91,0.2);
  margin-top: 20px;
}
.ws-hero-highlights span {
  font-size: .9rem;
  letter-spacing: .03em;
  color: rgba(246,241,230,0.75);
}

/* ===== SECTIONS ===== */
.ws-section {
  padding: 100px 32px;
  background: var(--white);
}
.ws-section-light { background: var(--cream); }
.ws-section-dark { background: var(--navy-deep); color: var(--cream); }
.ws-section-navy { background: var(--navy); color: var(--cream); }
.ws-container {
  max-width: 1200px;
  margin: 0 auto;
}
.ws-label {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.ws-label.gold { color: var(--gold); }
.ws-section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.ws-section-title.light { color: var(--cream); }
.ws-body {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.75;
}
.ws-body.light { color: rgba(246,241,230,0.85); }

/* ===== SPLIT LAYOUT ===== */
.ws-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ws-split-content { max-width: 540px; }
.ws-split-img { display: flex; justify-content: center; }
.ws-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.ws-img-frame::before {
  content: '👔';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: .3;
}
.ws-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PILLARS ===== */
.ws-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.ws-pillar {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,163,91,0.2);
  transition: all .3s;
}
.ws-pillar:hover {
  background: rgba(201,163,91,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.ws-pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.ws-pillar h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.ws-pillar p {
  font-size: .95rem;
  color: rgba(246,241,230,0.75);
  line-height: 1.65;
}

/* ===== LEADING BY EXAMPLE ===== */
.ws-leading {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.ws-script {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  margin: 16px 0 24px;
  letter-spacing: -.01em;
}

/* ===== LIST ===== */
.ws-list {
  list-style: none;
  margin: 24px 0 32px;
}
.ws-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(14,26,58,0.08);
  font-weight: 500;
  color: var(--navy);
}

/* ===== MEETING CARD ===== */
.ws-meeting-card {
  background: var(--navy);
  color: var(--cream);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gold);
  position: relative;
}
.ws-meeting-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,163,91,0.3);
  pointer-events: none;
}
.ws-meeting-date {
  margin-bottom: 24px;
}
.ws-meeting-day {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.ws-meeting-month {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .4em;
  margin-top: 8px;
  color: var(--cream);
}
.ws-meeting-info h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.ws-meeting-info p { color: rgba(246,241,230,0.8); margin: 4px 0; }

/* ===== BENEFITS GRID ===== */
.ws-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.ws-benefit {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,163,91,0.25);
  color: var(--cream);
  font-weight: 500;
  text-align: center;
  transition: all .3s;
}
.ws-benefit:hover {
  background: rgba(201,163,91,0.1);
  border-color: var(--gold);
}

/* ===== MOVEMENT / FORMS ===== */
.ws-movement { background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%); }
.ws-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gold);
  box-shadow: 0 20px 60px rgba(14,26,58,0.08);
}
.ws-form input,
.ws-form select {
  padding: 14px 18px;
  border: 1px solid rgba(14,26,58,0.15);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.ws-form input:focus,
.ws-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.ws-form select { cursor: pointer; }
.ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ws-form-note {
  font-size: .85rem;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}
.ws-form-compact { padding: 0; background: none; border: none; box-shadow: none; }
.ws-form-compact input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,163,91,0.3);
  color: var(--cream);
}
.ws-form-compact input::placeholder { color: rgba(246,241,230,0.5); }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

/* ===== DONATE GRID ===== */
.ws-donate-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.ws-donate-card {
  padding: 32px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,163,91,0.2);
  text-align: center;
  transition: all .3s;
}
.ws-donate-card:hover {
  background: rgba(201,163,91,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.ws-donate-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.ws-donate-card h3 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.ws-donate-card p {
  color: rgba(246,241,230,0.7);
  font-size: .9rem;
}

/* ===== WHO WE HELP ===== */
.ws-help-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.ws-help-card {
  padding: 32px 16px;
  background: var(--cream);
  border: 1px solid rgba(201,163,91,0.3);
  text-align: center;
  transition: all .3s;
}
.ws-help-card:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(14,26,58,0.08);
}
.ws-help-card span { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.ws-help-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.1rem;
}

/* ===== PARTNERS ===== */
.ws-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ws-partner-slot {
  aspect-ratio: 16/9;
  background: var(--white);
  border: 1px dashed rgba(14,26,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== FOUNDER ===== */
.ws-founder {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.ws-founder-img { display: flex; justify-content: center; }
.ws-founder-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  background: var(--navy);
  border: 2px solid var(--gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-founder-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,163,91,0.3);
  pointer-events: none;
}
.ws-founder-placeholder {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 5rem;
  color: var(--gold);
  letter-spacing: .05em;
}
.ws-signature {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(14,26,58,0.12);
}
.ws-signature-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}
.ws-signature-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.ws-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 80px 32px 32px;
}
.ws-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.ws-footer-brand p {
  color: rgba(246,241,230,0.7);
  font-size: .95rem;
  margin-bottom: 16px;
}
.ws-footer-brand .ws-location {
  font-weight: 500;
  color: var(--gold);
  font-size: .9rem;
}
.ws-footer-col h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.ws-footer-col ul { list-style: none; }
.ws-footer-col ul li { margin-bottom: 10px; }
.ws-footer-col ul a {
  color: rgba(246,241,230,0.7);
  font-size: .92rem;
  transition: color .2s;
}
.ws-footer-col ul a:hover { color: var(--gold); }
.ws-footer-newsletter p { color: rgba(246,241,230,0.7); font-size: .9rem; margin-bottom: 16px; }
.ws-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201,163,91,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(246,241,230,0.6);
  font-size: .85rem;
}
.ws-footer-bottom a { color: var(--gold); }

/* ===== MODAL ===== */
.ws-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ws-modal.open { display: flex; }
.ws-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 42, 0.85);
  backdrop-filter: blur(8px);
}
.ws-modal-card {
  position: relative;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: wsModalIn .35s cubic-bezier(.16,.84,.34,1.06);
}
@keyframes wsModalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ws-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ws-modal-close:hover { color: var(--gold-deep); }
.ws-modal-body { padding: 56px 48px 48px; }
.ws-modal-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: var(--navy);
  margin: 12px 0 16px;
}
.ws-modal-sub {
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.65;
}
.ws-modal-form {
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .ws-nav { display: none; }
  .ws-header-cta { display: none; }
  .ws-hamburger { display: flex; }
  .ws-split { grid-template-columns: 1fr; gap: 48px; }
  .ws-split-img { order: -1; }
  .ws-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-donate-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-help-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-partners-grid { grid-template-columns: repeat(3, 1fr); }
  .ws-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ws-form-row { grid-template-columns: 1fr; }
  .ws-modal-body { padding: 40px 24px 24px; }
}
@media (max-width: 600px) {
  .ws-section { padding: 70px 20px; }
  .ws-header-inner { padding: 14px 20px; }
  .ws-hero { padding: 100px 20px 60px; }
  .ws-pillar-grid,
  .ws-benefits-grid,
  .ws-donate-grid,
  .ws-help-grid { grid-template-columns: 1fr; }
  .ws-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-footer-grid { grid-template-columns: 1fr; }
  .ws-footer-bottom { flex-direction: column; }
  .ws-form { padding: 24px; }
}
