/* ============================================================
   Treat People Special — Brand Stylesheet
   Colors: Terracotta & Linen | Fonts: Playfair Display + Karla
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Karla:wght@400;600;700&display=swap');

/* --- Variables --- */
:root {
  --terracotta: #C06040;
  --linen:      #F2E8D9;
  --clay:       #8B4A2F;
  --sage:       #9AA891;
  --charcoal:   #2E2E2E;
  --muted:      #7A6050;
  --pale:       #FAF4EC;
  --cream:      #EDE0CC;
  --white:      #FFFFFF;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Karla', 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--linen);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; }
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

/* --- Utility --- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.container { max-width: 960px; margin: 0 auto; }
.container--narrow { max-width: 680px; margin: 0 auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--charcoal);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--linen);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav__links a:hover { color: var(--linen); }
.nav__links a.active { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.nav__links .btn-donate {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  border-bottom: none !important;
  font-weight: 700;
  transition: background 0.15s !important;
}
.nav__links .btn-donate:hover { background: var(--clay) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn--primary:hover { background: var(--clay); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(46,46,46,0.4);
}
.btn--outline:hover { border-color: var(--charcoal); }
.btn--outline-terra {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn--outline-terra:hover { background: var(--terracotta); color: var(--white); }
.btn--linen {
  background: var(--linen);
  color: var(--terracotta);
}
.btn--linen:hover { background: var(--cream); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   IMAGE PLACEHOLDER (swap with <img> when photos are ready)
   ============================================================ */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, rgba(139,74,47,0.25), rgba(192,96,64,0.18), var(--cream));
  border: 1px dashed rgba(192,96,64,0.45);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-style: italic;
}
.img-placeholder::before { content: "📷"; font-size: 1.75rem; opacity: 0.5; font-style: normal; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  padding: 96px 60px 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terracotta);
}
.hero--linen { background: var(--linen); }
.hero--dark { background: var(--charcoal); }
.hero--dark h1 { color: var(--linen); }
.hero--dark .eyebrow { color: var(--terracotta); }
.hero--dark p { color: var(--sage); }
.hero__glow {
  position: absolute;
  right: -60px;
  top: 40%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,96,64,0.1), transparent 70%);
  pointer-events: none;
}
.hero__fade-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(192,96,64,0.1));
  pointer-events: none;
}
.hero__content { max-width: 640px; position: relative; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { color: var(--terracotta); font-style: italic; }
.hero p { font-size: 1.08rem; line-height: 1.85; margin-bottom: 40px; max-width: 520px; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
section { padding: 88px 60px; }
.section--linen { background: var(--linen); }
.section--pale   { background: var(--pale); }
.section--white  { background: var(--white); }
.section--terra  { background: var(--terracotta); }
.section--dark   { background: var(--charcoal); }
.section__header { text-align: center; margin-bottom: 52px; }
.section__header h2 { margin-top: 10px; }

/* ============================================================
   CARDS (How it works / Stories)
   ============================================================ */
.cards { display: grid; gap: 28px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.card--top-border { border-top: 4px solid var(--terracotta); padding: 32px 28px; }
.card--shadow { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.card__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(192,96,64,0.4);
  margin-bottom: 14px;
}
.card__label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.card__title { margin-bottom: 12px; }
.card__body { font-size: 0.875rem; line-height: 1.8; color: var(--muted); }
.card__content { padding: 24px 26px 30px; }

/* Story cards */
.card--story .card__title { font-size: 1.1rem; }

/* Stat cards */
.card--stat { text-align: center; padding: 36px 26px; }
.card__stat-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.card__stat-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 26px;
  border-left: 4px solid var(--terracotta);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.testimonial cite {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  font-style: normal;
}

/* ============================================================
   PULL QUOTE STRIP
   ============================================================ */
.quote-strip {
  background: var(--terracotta);
  padding: 72px 60px;
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--linen);
  max-width: 680px;
  margin: 0 auto 18px;
  line-height: 1.55;
}
.quote-strip cite {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(242,232,217,0.75);
  letter-spacing: 0.14em;
  font-style: normal;
}

/* ============================================================
   MISSION BOX
   ============================================================ */
.mission-box {
  background: var(--terracotta);
  border-radius: 10px;
  padding: 40px 44px;
  margin: 52px 0;
}
.mission-box .eyebrow { color: rgba(242,232,217,0.75); }
.mission-box blockquote {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--linen);
  line-height: 1.65;
}

/* ============================================================
   DONATE BOX
   ============================================================ */
.donate-box {
  background: var(--terracotta);
  border-radius: 12px;
  padding: 52px;
  text-align: center;
  margin-top: 56px;
}
.donate-box h3 { font-size: 2.1rem; color: var(--linen); margin-bottom: 14px; }
.donate-box p { font-size: 1rem; color: rgba(242,232,217,0.8); max-width: 440px; margin: 0 auto 36px; line-height: 1.75; }
.donate-box small { display: block; font-size: 0.75rem; color: rgba(242,232,217,0.55); margin-top: 18px; }

/* ============================================================
   TWO-COLUMN SPLIT
   ============================================================ */
.split {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.split__text { flex: 1; min-width: 280px; }
.split__text h2 { margin: 10px 0 18px; }
.split__text p { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-bottom: 28px; }
.split__image { flex: 1; min-width: 280px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid rgba(192,96,64,0.25);
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin-bottom: 10px; }
.faq-item p { font-size: 0.875rem; line-height: 1.85; color: var(--muted); }

/* ============================================================
   STORY BODY TEXT (About page paragraphs)
   ============================================================ */
.story-text { margin-bottom: 36px; }
.story-text h2 { color: var(--terracotta); margin-bottom: 14px; font-size: 1.65rem; }
.story-text p { font-size: 1.06rem; line-height: 1.95; }

/* ============================================================
   CTA STRIP (Stories page bottom)
   ============================================================ */
.cta-strip {
  background: var(--terracotta);
  padding: 72px 60px;
  text-align: center;
}
.cta-strip h2 { color: var(--linen); margin-bottom: 14px; }
.cta-strip p { font-size: 1rem; color: rgba(242,232,217,0.8); max-width: 440px; margin: 0 auto 36px; }

/* ============================================================
   PAGE HEADER (Stories)
   ============================================================ */
.page-header {
  background: var(--linen);
  padding: 80px 60px 60px;
  border-bottom: 4px solid var(--terracotta);
}
.page-header h1 { margin: 0 0 18px; }
.page-header p { font-size: 1.06rem; line-height: 1.85; color: var(--muted); max-width: 560px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 56px 60px 28px;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 48px;
}
.footer__brand { max-width: 300px; }
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--linen);
  margin-bottom: 14px;
}
.footer__brand p { font-size: 0.82rem; line-height: 1.8; color: var(--sage); }
.footer__col-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 0.82rem;
  color: var(--sage);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--linen); }
.footer__col p { font-size: 0.82rem; color: var(--sage); }
.footer__divider { height: 1px; background: rgba(192,96,64,0.35); margin-bottom: 24px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p, .footer__bottom span {
  font-size: 0.7rem;
  color: var(--muted);
}
.footer__bottom em { font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__logo-name { font-size: 0.85rem; }
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 0.7rem; }

  section, .hero, .page-header, .quote-strip, .cta-strip { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .cards--3 { grid-template-columns: 1fr; }
  .split { flex-direction: column; gap: 36px; }
  .footer { padding: 44px 24px 24px; }
  .donate-box { padding: 36px 24px; }
  .mission-box { padding: 30px 28px; }
}

@media (max-width: 768px) {
  .nav__logo-name {
    display: none;
  }
}
