/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --gray:      #363636;
  --orange:    #D9593C;
  --wine:      #803723;
  --terracota: #B75C3C;
  --cream:     #FAF7F4;
  --light:     #F3EDE7;
  --white:     #FFFFFF;
  --canela:    'Georgia', 'Times New Roman', serif;
  --poppins:   'Poppins', sans-serif;
  --max:       1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--poppins);
  color: var(--gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img  { display: block; width: 100%; }
a    { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── Fade animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  background: rgba(250,247,244,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(54,54,54,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header-logo {
  font-family: var(--canela);
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.2;
  white-space: nowrap;
}
.header-logo em {
  display: block;
  font-family: var(--poppins);
  font-style: normal;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-top: 2px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.header-nav a {
  font-size: .79rem;
  font-weight: 500;
  color: var(--gray);
  opacity: .65;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active { opacity: 1; color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.btn-donate {
  font-family: var(--poppins);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem 1.35rem;
  border-radius: 2px;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-donate:hover { background: var(--wine); }
.btn-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(54,54,54,.18);
  background: transparent;
  cursor: pointer;
  font-size: .85rem;
  color: var(--gray);
  opacity: .55;
  transition: opacity .2s, border-color .2s;
}
.btn-flag:hover { opacity: 1; border-color: var(--orange); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding-top: 68px;
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  min-height: calc(100vh - 68px);
}

/* Left: text */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 7vw, 6.5rem) clamp(1.25rem, 6vw, 5rem);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-title {
  font-family: var(--canela);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: normal;
  line-height: 1.06;
  color: var(--gray);
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--terracota);
}
.hero-subtitle {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  line-height: 1.78;
  color: var(--gray);
  opacity: .68;
  max-width: 420px;
  margin-bottom: 2.25rem;
}

/* Quick contact pills */
.hero-pills {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(54,54,54,.18);
  background: transparent;
  color: var(--gray);
  opacity: .65;
  transition: all .2s;
  cursor: default;
}
.hero-pill .pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .7;
  flex-shrink: 0;
}

/* Right: visual */
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual-inner {
  width: 100%; height: 100%;
  min-height: 560px;
  background: linear-gradient(155deg, #5c2718 0%, #2a1008 55%, #1a0804 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-visual-inner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 65% 30%, rgba(217,89,60,.26), transparent),
    radial-gradient(ellipse 40% 40% at 18% 80%, rgba(183,92,60,.16), transparent);
}
.hero-visual-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 48px,
    rgba(255,255,255,.016) 48px, rgba(255,255,255,.016) 49px
  );
  pointer-events: none;
}
.hero-visual-illustration {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: 260px;
  opacity: .09;
  pointer-events: none;
}
/* Live indicator pill */
.hero-live {
  position: absolute;
  top: 2.5rem; right: 2.5rem;
  z-index: 2;
  background: rgba(250,247,244,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.hero-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-live span {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.hero-visual-caption {
  position: relative;
  z-index: 2;
  padding: 2rem 2.5rem;
}
.hero-visual-caption p {
  font-family: var(--canela);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: .55rem;
}
.hero-visual-caption span {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracota);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.hero-visual-caption span::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--terracota);
}

/* ═══════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════ */
.contact-form-section {
  background: var(--white);
  padding: clamp(5rem, 9vw, 9rem) 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* Left: form intro */
.form-intro { position: sticky; top: 100px; }
.form-intro .section-tag {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: .9rem;
}
.form-intro h2 {
  font-family: var(--canela);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
  color: var(--gray);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.form-intro p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--gray);
  opacity: .65;
  margin-bottom: 2rem;
}
.form-intro-divider {
  width: 48px; height: 2px;
  background: var(--orange);
  margin-bottom: 2rem;
}

/* Response time badge */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--light);
  border-radius: 4px;
  padding: .75rem 1.1rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray);
}
.response-badge .rb-icon {
  font-size: .95rem;
}
.response-badge strong { color: var(--orange); }

/* Right: form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.field label {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: .65;
}

.field input,
.field select,
.field textarea {
  font-family: var(--poppins);
  font-size: .9rem;
  color: var(--gray);
  background: var(--cream);
  border: 1.5px solid rgba(54,54,54,.15);
  border-radius: 3px;
  padding: .85rem 1.1rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(54,54,54,.35); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(217,89,60,.08);
}

/* Select arrow */
.field-select { position: relative; }
.field-select::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(54,54,54,.4);
  pointer-events: none;
}
.field-select select { padding-right: 2.5rem; cursor: pointer; }
.field-select select option { font-family: var(--poppins); }

.field textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.65;
}

.field-note {
  font-size: .68rem;
  color: var(--gray);
  opacity: .4;
  margin-top: .1rem;
}

/* Form footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: .25rem;
}

.form-privacy {
  font-size: .72rem;
  line-height: 1.6;
  color: var(--gray);
  opacity: .4;
  max-width: 280px;
}

.btn-send {
  font-family: var(--poppins);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .95rem 2.25rem;
  border-radius: 2px;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .22s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}
.btn-send:hover { background: var(--wine); transform: translateY(-1px); }
.btn-send:active { transform: translateY(0); }

/* ═══════════════════════════════════════
   ADDITIONAL WAYS TO CONNECT
═══════════════════════════════════════ */
.connect-section {
  background: var(--cream);
  padding: clamp(5rem, 9vw, 9rem) 0;
}
.connect-header {
  text-align: center;
  margin-bottom: 3rem;
}
.connect-header .section-tag {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: .85rem;
}
.connect-header h2 {
  font-family: var(--canela);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: normal;
  color: var(--gray);
  line-height: 1.1;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.connect-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.25rem 2rem 2.5rem;
  border-bottom: 3px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.connect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(54,54,54,.09);
}
.connect-card:nth-child(1) { border-bottom-color: var(--orange); }
.connect-card:nth-child(1):hover { border-bottom-color: var(--orange); }
.connect-card:nth-child(2) { border-bottom-color: var(--terracota); }
.connect-card:nth-child(2):hover { border-bottom-color: var(--terracota); }
.connect-card:nth-child(3) { border-bottom-color: var(--wine); }
.connect-card:nth-child(3):hover { border-bottom-color: var(--wine); }
.connect-card:nth-child(4) { border-bottom-color: var(--gray); }
.connect-card:nth-child(4):hover { border-bottom-color: var(--gray); }

.connect-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.ic-orange { background: rgba(217,89,60,.1); }
.ic-terra  { background: rgba(183,92,60,.1); }
.ic-wine   { background: rgba(128,55,35,.1); }
.ic-gray   { background: rgba(54,54,54,.07); }

.connect-card h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: .65rem;
  line-height: 1.3;
}
.connect-card p {
  font-size: .83rem;
  line-height: 1.72;
  color: var(--gray);
  opacity: .62;
  margin-bottom: 1.25rem;
}
.connect-card a {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s, color .2s;
}
.connect-card:nth-child(2) a { color: var(--terracota); }
.connect-card:nth-child(3) a { color: var(--wine); }
.connect-card:nth-child(4) a { color: var(--gray); }
.connect-card a:hover { gap: .7rem; }

/* ═══════════════════════════════════════
   CTA — GET INVOLVED
═══════════════════════════════════════ */
.cta-involved {
  background: var(--terracota);
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-involved::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 80% 50%, rgba(128,55,35,.35), transparent),
    radial-gradient(ellipse 50% 60% at 10% 60%, rgba(26,8,4,.25), transparent);
  pointer-events: none;
}
/* Decorative large text */
.cta-involved::after {
  content: 'TOGETHER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--canela);
  font-size: clamp(7rem, 18vw, 16rem);
  font-style: italic;
  color: rgba(255,255,255,.055);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.cta-involved-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-involved-text .cta-eyebrow {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.cta-involved-text h2 {
  font-family: var(--canela);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.cta-involved-text h2 em {
  font-style: italic;
  color: rgba(255,255,255,.75);
}
.cta-involved-text p {
  font-size: .93rem;
  line-height: 1.78;
  color: rgba(255,255,255,.72);
  max-width: 480px;
}

.cta-involved-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
  min-width: 220px;
}

.btn-partner {
  font-family: var(--poppins);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .95rem 2rem;
  border-radius: 2px;
  background: var(--white);
  color: var(--terracota);
  border: none;
  cursor: pointer;
  transition: background .22s, transform .15s;
  text-align: center;
  display: block;
}
.btn-partner:hover { background: var(--cream); transform: translateY(-1px); }

.btn-programs {
  font-family: var(--poppins);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .95rem 2rem;
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .15s;
  text-align: center;
  display: block;
}
.btn-programs:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #1a0a04;
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--canela);
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .8rem;
}
.footer-brand .footer-logo em {
  display: block;
  font-family: var(--poppins);
  font-style: normal;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-top: 4px;
}
.footer-tagline {
  font-size: .82rem;
  line-height: 1.72;
  color: rgba(255,255,255,.42);
  max-width: 220px;
  margin-bottom: 1.75rem;
}
.footer-social {
  display: flex;
  gap: .55rem;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; }

.footer-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a {
  font-size: .82rem;
  color: rgba(255,255,255,.52);
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: .72rem;
  color: rgba(255,255,255,.26);
  line-height: 1.6;
}
.footer-mission {
  font-family: var(--canela);
  font-size: .72rem;
  font-style: italic;
  color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .connect-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-involved-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-involved-btns { flex-direction: row; min-width: unset; }
  .btn-partner, .btn-programs { flex: 1; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-text { padding: 4rem 1.5rem 3.5rem; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-intro { position: static; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .btn-flag { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-involved-btns { flex-direction: column; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .btn-send { width: 100%; justify-content: center; }
}