:root {
  --navy: #0b1f33;
  --navy-2: #102b46;
  --gold: #c9a45f;
  --gold-soft: #e7d4ac;
  --white: #ffffff;
  --off-white: #f5f2ec;
  --ink: #18212a;
  --muted: #6e747b;
  --line: rgba(11, 31, 51, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}


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


html {
  scroll-behavior: smooth;
}


body {
  font-family: "DM Sans", sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.65;
}


img {
  width: 100%;
  display: block;
  object-fit: cover;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
select,
textarea {
  font: inherit;
}


.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


.narrow {
  width: min(840px, calc(100% - 40px));
  margin: 0 auto;
}



/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  background: var(--navy);
  transition: 0.3s ease;
}


.site-header.scrolled {
  background: rgba(11, 31, 51, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.brand {
  color: white;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}


.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
}


.brand-tag {
  font-size: 0.68rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}



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

.main-nav {
  display: flex;
  gap: 19px;
  align-items: center;
}


.main-nav a {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
}


.main-nav a:not(.nav-cta):not(.nav-meet)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}


.main-nav a:not(.nav-cta):not(.nav-meet):hover {
  color: var(--gold-soft);
}


.main-nav a:not(.nav-cta):not(.nav-meet):hover::after {
  width: 100%;
}


.nav-meet {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 9px 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}


.nav-meet:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
}


.nav-cta {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 15px;
  border-radius: 999px;
  transition: 0.3s ease;
}


.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 164, 95, 0.28);
}


.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}


.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 6px 0;
}



/* =========================================================
   HERO — SPLIT LAYOUT
   ========================================================= */

.hero {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding: 145px 0 90px;
}


.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}


.hero-copy {
  max-width: 700px;
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  font-size: 0.77rem;
  margin-bottom: 18px;
  color: var(--navy);
}


.gold {
  color: var(--gold);
}


.hero h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}


.hero h1 {
  font-size: clamp(4.1rem, 8vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--navy);
}


.hero-line {
  font-size: clamp(1.4rem, 2.25vw, 2.05rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 22px;
}


.hero-sub {
  max-width: 680px;
  color: #4f5861;
  font-size: 1.02rem;
  margin-top: 13px;
}


.hero-emphasis {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-top: 20px;
  margin-bottom: 10px;
}


.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}


.hero-photo-wrap {
  width: 100%;
}


.hero-photo-card {
  background: white;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(11, 31, 51, 0.14);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


.hero-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(11, 31, 51, 0.18);
}


.hero-photo {
  width: 100%;
  min-height: 650px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}


.hero-photo-card:hover .hero-photo {
  transform: scale(1.02);
  filter: brightness(1.02);
}



/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}


.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}


.btn-primary:hover {
  transform: translateY(-4px);
  background: #d8b66f;
  box-shadow: 0 12px 30px rgba(201, 164, 95, 0.38);
}


.btn-outline-dark {
  color: var(--navy);
  border: 1px solid rgba(11, 31, 51, 0.25);
  background: transparent;
}


.btn-outline-dark:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-3px);
}



/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 105px 0;
}


.section-light {
  background: var(--off-white);
}


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


.section-copy h2,
.section-heading h2,
.statement-section h2,
.contact-strip h2 {
  color: var(--navy);
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  line-height: 1.03;
  margin-bottom: 25px;
}


.section-copy p {
  font-size: 1.03rem;
  color: #50575e;
  margin-bottom: 16px;
}


.pull-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem !important;
  color: var(--navy) !important;
  margin-top: 30px;
}


.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}



/* =========================================================
   IMAGE CARDS
   ========================================================= */

.image-card {
  position: relative;
  padding: 16px 16px 58px;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.4s ease;
}


.image-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(11, 31, 51, 0.20);
}


.image-card img {
  aspect-ratio: 4 / 5;
  transition: 0.5s ease;
}


.image-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.03);
}


.image-note {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  padding: 17px 6px 0;
  font-size: 1.15rem;
}



/* =========================================================
   COMMUNITY
   ========================================================= */

.community-section {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: white;
}


.light-heading h2 {
  color: white;
}


.light-heading p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}


.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


.community-item {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}


.community-item img {
  height: 100%;
  min-height: 420px;
  filter: brightness(0.76);
  transition: 0.55s ease;
}


.community-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.88) contrast(1.04);
}


.community-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  transition: 0.4s ease;
}


.community-item:hover .community-caption {
  transform: translateY(-8px);
}


.community-caption h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}


.community-caption p {
  color: rgba(255, 255, 255, 0.82);
}


.work-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}


.work-list span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  transition: 0.25s ease;
}


.work-list span:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 95, 0.12);
  transform: translateY(-2px);
}


.center-callout {
  width: min(820px, 100%);
  margin: 55px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}


.gold-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  color: var(--gold-soft);
  margin-bottom: 12px;
}



/* =========================================================
   RECOGNITION
   ========================================================= */

.recognition-section {
  background: #ece6dc;
}


.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.recognition-card {
  background: var(--navy);
  color: white;
  padding: 48px;
  transition: 0.35s ease;
}


.recognition-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(11, 31, 51, 0.25);
}


.recognition-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}


.recognition-card h3 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin: 22px 0;
}


.recognition-card p {
  color: rgba(255, 255, 255, 0.76);
}



/* =========================================================
   PROFESSIONAL EXPERIENCE — TEXT ONLY
   ========================================================= */

.professional-section {
  background: var(--off-white);
  padding: 120px 0;
}


.professional-text-only {
  max-width: 1050px;
}


.professional-text-only .section-copy {
  max-width: 950px;
}


.professional-text-only .section-copy h2 {
  max-width: 900px;
}


.professional-text-only .section-copy p {
  max-width: 820px;
}



/* =========================================================
   WHY I'M RUNNING
   ========================================================= */

.statement-section {
  background: var(--navy);
  color: white;
  text-align: center;
}


.statement-section h2 {
  color: white;
}


.statement {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.14rem, 2vw, 1.5rem);
  margin: 0 auto 24px;
}


.statement.strong {
  color: var(--gold-soft);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}



/* =========================================================
   PRIORITIES
   ========================================================= */

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}


.priority-card {
  position: relative;
  overflow: hidden;
  background: white;
  padding: 34px;
  border: 1px solid var(--line);
  min-height: 320px;
  transition: 0.3s ease;
}


.priority-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(11, 31, 51, 0.15);
}


.priority-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--gold);
  transition: width 0.35s ease;
}


.priority-card:hover::after {
  width: 100%;
}


.card-number {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}


.priority-card h3 {
  color: var(--navy);
  font-size: 1.72rem;
  line-height: 1.1;
  margin: 22px 0 16px;
}


.priority-card p {
  color: var(--muted);
  margin-top: 12px;
}


.card-emphasis {
  font-weight: 700;
  color: var(--navy) !important;
}



/* =========================================================
   MOTHERHOOD
   ========================================================= */

.mother-section {
  background: #f2ede4;
}


.mother-highlight {
  font-family: "Playfair Display", serif;
  color: var(--navy) !important;
  font-size: 1.35rem !important;
}


.mother-questions {
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}


.mother-questions p {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 1.28rem;
  margin-bottom: 15px;
}



/* =========================================================
   FORMS
   ========================================================= */

.interaction-section {
  background: white;
}


.meet-section {
  background: #efe9de;
}


.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}


.secure-form {
  background: white;
  color: var(--ink);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(11, 31, 51, 0.09);
}


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


.secure-form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
}


.secure-form input,
.secure-form select,
.secure-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8d8d8;
  background: #fafafa;
  padding: 13px 14px;
  outline: none;
  transition: 0.25s ease;
}


.secure-form input:focus,
.secure-form select:focus,
.secure-form textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 164, 95, 0.12);
}


.full {
  width: 100%;
  border-radius: 0;
}


.hidden-field {
  position: absolute;
  left: -9999px;
}



/* =========================================================
   DONATION
   ========================================================= */

.donate-section {
  background: linear-gradient(145deg, #071827, var(--navy));
  color: white;
}


.donate-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}


.donate-section .section-copy h2 {
  color: white;
}


.donate-section .section-copy p {
  color: rgba(255, 255, 255, 0.76);
}


.donation-card {
  background: white;
  color: var(--ink);
  padding: 38px;
  box-shadow: var(--shadow);
}


.donation-card h3 {
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin: 18px 0;
}


.donation-card p {
  color: var(--muted);
}


.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0;
}


.amount-grid button {
  padding: 14px 8px;
  border: 1px solid var(--line);
  background: #f8f6f1;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: 0.25s ease;
}


.amount-grid button:hover,
.amount-grid button.selected {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}


.donate-checks {
  margin: 22px 0;
  padding: 20px;
  background: #f5f2ec;
}


.donate-checks p + p {
  margin-top: 10px;
}



/* =========================================================
   DONATION POPUP
   ========================================================= */

.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 24, 39, 0.86);
  backdrop-filter: blur(8px);
}


.donation-modal.open {
  display: flex;
}


.donation-modal-card {
  position: relative;
  width: min(580px, 100%);
  background: white;
  padding: 45px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  text-align: center;
}


.donation-modal-card h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 22px;
}


.donation-modal-card p {
  color: var(--muted);
  margin-bottom: 18px;
}


.etransfer-address {
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 20px;
  margin: 22px 0;
  word-break: break-word;
}


.donation-modal-note {
  font-size: 0.9rem;
}


.donation-modal-close {
  position: absolute;
  right: 16px;
  top: 10px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 2.1rem;
  cursor: pointer;
}



/* =========================================================
   PRIVACY
   ========================================================= */

.privacy-section {
  background: white;
}


.privacy-section h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
}


.privacy-section p {
  color: var(--muted);
  margin-bottom: 16px;
}



/* =========================================================
   CONTACT
   ========================================================= */

.contact-strip {
  padding: 90px 0;
  background: #f1ece2;
}
    
.contact-simple {
  max-width: 1180px;
}
    
.contact-simple .eyebrow {
  margin-bottom: 24px;
}
    
.contact-simple h2 {
  max-width: 1180px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.98;
  margin-bottom: 28px;
  }
    
.contact-subline {
  font-size: 1rem;
  color: var(--muted);
  }



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

.site-footer {
  background: #071827;
  color: rgba(255, 255, 255, 0.72);
  padding: 36px 0;
}


.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 28px;
  align-items: start;
  font-size: 0.83rem;
}


.footer-inner strong {
  display: block;
  font-family: "Playfair Display", serif;
  color: white;
  font-size: 1.2rem;
}


.footer-inner span {
  color: var(--gold-soft);
}


.legal-note {
  color: rgba(255, 255, 255, 0.46);
}



/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

}



@media (max-width: 900px) {

  .main-nav {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 22px;
    display: none;
  }


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


  .nav-toggle {
    display: block;
  }


  .hero {
    min-height: auto;
    padding: 125px 0 75px;
  }


  .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }


  .hero-photo-wrap {
    max-width: 650px;
  }


  .hero-photo {
    min-height: 520px;
    aspect-ratio: 4 / 5;
    object-position: center 28%;
  }


  .two-col,
  .recognition-grid,
  .form-layout,
  .donate-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }


  .priority-grid {
    grid-template-columns: 1fr 1fr;
  }


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

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }


  .section {
    padding: 74px 0;
  }


  .brand-tag {
    display: none;
  }


  .hero {
    padding: 110px 0 60px;
  }


  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }


  .hero-line {
    font-size: 1.45rem;
  }


  .hero-emphasis {
    font-size: 1.6rem;
  }


  .hero-photo {
    min-height: 410px;
    aspect-ratio: 4 / 5;
    object-position: center 25%;
  }


  .two-col,
  .community-grid,
  .form-row,
  .priority-grid {
    grid-template-columns: 1fr;
  }


  .recognition-card,
  .secure-form,
  .donation-card,
  .donation-modal-card {
    padding: 26px;
  }


  .amount-grid {
    grid-template-columns: 1fr 1fr;
  }


  .hero-photo-card:hover,
  .priority-card:hover,
  .recognition-card:hover,
  .image-card:hover {
    transform: none;
  }


  .community-item:hover img,
  .hero-photo-card:hover .hero-photo,
  .image-card:hover img {
    transform: none;
  }

}



/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@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;
  }

}