/* ================================================================
   VIBRANT HEALTH ADVOCATES — HIGHLANDS BRANCH
   Warm & Human Community Design System
   ================================================================ */

/* 1. VARIABLES
   ================================================================ */
:root {
  --cream:            #FFF8F0;
  --cream-mid:        #F5EDE0;
  --cream-border:     #E8D5BC;
  --cream-dark:       #DCCA9E;
  --terracotta:       #C4622D;
  --terracotta-lt:    #E09575;
  --terracotta-pale:  #FAE8DC;
  --brown:            #2C1810;
  --brown-mid:        #6B3A28;
  --brown-light:      #9C6040;
  --purple:           #7B2D8B;
  --purple-light:     #F0D9F5;
  --purple-mid:       #B87AC8;
  --warm-white:       #FFFCF8;
  --sand:             #F2E0C8;

  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container:  1200px;
  --radius:     24px;
  --radius-sm:  12px;
  --radius-xs:  8px;

  --shadow-soft: 0 4px 24px rgba(44,24,16,.09);
  --shadow-card: 0 8px 40px rgba(44,24,16,.14);
  --shadow-lift: 0 16px 56px rgba(44,24,16,.20);

  --section-gap: clamp(3.5rem, 7vw, 5.5rem);
}

/* 2. RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.78;
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
p { margin-bottom: 1.3em; }
p:last-child { margin-bottom: 0; }

/* 3. TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5 { font-weight: 900; line-height: 1.15; color: var(--brown); }
h1 { font-size: clamp(2.1rem,  5vw,  3.8rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.65rem); }
h4 { font-size: clamp(.95rem,  1.8vw, 1.2rem); }

.lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.68;
  color: var(--brown-mid);
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta);
  margin-bottom: .65rem;
}
.overline::before, .overline::after {
  content: '';
  display: inline-block;
  width: 18px; height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}
.overline--purple { color: var(--purple); }
.overline--white  { color: rgba(255,255,255,.8); }
.overline--white::before, .overline--white::after { background: rgba(255,255,255,.8); }

/* 4. LAYOUT
   ================================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.section            { padding-block: var(--section-gap); }
.section--cream     { background: var(--cream); }
.section--mid       { background: var(--cream-mid); }
.section--pale      { background: var(--terracotta-pale); }
.section--purple-bg { background: var(--purple-light); }
.section--dark      { background: var(--brown); color: #fff; }

/* 5. NAVIGATION
   ================================================================ */
.site-header {
  background: var(--warm-white);
  border-bottom: 2px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-logo     { height: 44px; width: auto; flex-shrink: 0; }
.brand-wordmark {
  height: 30px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.brand-wordmark--inverted { filter: brightness(0) invert(1); }

.main-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.main-nav a {
  color: var(--brown-mid);
  font-weight: 700;
  font-size: .9rem;
  padding: .44rem .85rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--purple-light);
  color: var(--purple);
  text-decoration: none;
}

.nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px; height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-btn span {
  display: block;
  height: 3px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .28s;
}

@media (max-width: 860px) {
  .nav-toggle-btn { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 2px solid var(--cream-border);
    flex-direction: column;
    padding: .75rem 1rem 1.25rem;
    gap: .2rem;
    box-shadow: 0 8px 32px rgba(44,24,16,.13);
    z-index: 199;
  }
  .main-nav a { width: 100%; padding: .65rem 1rem; }
  .nav-toggle-input:checked ~ .main-nav { display: flex; }
}

/* 6. FOOTER
   ================================================================ */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,.82);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 3.5rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.footer-brand .brand-lockup { margin-bottom: .75rem; }
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  margin-top: .5rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .42rem; }
.footer-nav a {
  color: rgba(255,255,255,.72);
  font-weight: 600;
  font-size: .9rem;
  transition: color .18s;
}
.footer-nav a:hover { color: var(--terracotta-lt); text-decoration: none; }
.footer-contact p {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  margin-bottom: .38em;
  line-height: 1.55;
}
.footer-contact a { color: var(--terracotta-lt); }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  padding-block: 1.2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* 7. HOMEPAGE HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 84vh;
  background: url('img/hero.jpg') center 28% / cover no-repeat;
  display: flex;
  align-items: flex-start;
  padding-bottom: 9rem; /* reserve room so overlap card never touches headline */
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(44,24,16,.73) 0%,
    rgba(44,24,16,.50) 42%,
    rgba(44,24,16,.20) 70%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(5rem, 13vw, 9.5rem);
  max-width: 700px;
  color: #fff;
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
  margin-bottom: 1.2rem;
}
.hero-content .lead {
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
  margin-bottom: 2rem;
}

/* 8. OVERLAP CARD
   ================================================================ */
.hero-overlap-wrap {
  position: relative;
  z-index: 10;
  margin-top: -5.5rem;
}
.hero-overlap-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-lift);
  border: 2px solid var(--cream-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.overlap-stat { text-align: center; padding: .4rem .75rem; }
.overlap-stat .stat-num {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1.1;
}
.overlap-stat .stat-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-top: .25rem;
}
.overlap-divider {
  width: 1px; height: 56px;
  background: var(--cream-border);
}
@media (max-width: 700px) {
  .hero-overlap-wrap { margin-top: 0; }
  .hero { min-height: 72vh; padding-bottom: 3rem; }
  .hero-content { padding-top: 3.5rem; }
  .overlap-divider { display: none; }
  .hero-overlap-card { flex-direction: column; gap: 1.25rem; }
}

/* 9. PAGE HERO (INNER PAGES)
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 370px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,.72) 0%, rgba(44,24,16,.28) 50%, rgba(44,24,16,.08) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.page-hero-label {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .28rem .8rem;
  border-radius: 100px;
  margin-bottom: .7rem;
}
.page-hero--plain {
  min-height: 230px;
  background: var(--terracotta-pale);
  align-items: flex-end;
}
.page-hero--plain::after { display: none; }
.page-hero--plain h1,
.page-hero--plain .page-hero-label { color: var(--brown); }
.page-hero--plain .page-hero-label { background: var(--terracotta); color: #fff; }

/* 10. SQUIGGLE DIVIDERS
   ================================================================ */
.squiggle-wrap {
  overflow: hidden;
  line-height: 0;
  padding: .25rem 0;
  background: var(--cream);
}
.squiggle-wrap--mid  { background: var(--cream-mid); }
.squiggle-wrap--pale { background: var(--terracotta-pale); }
.squiggle-wrap svg   { width: 100%; height: auto; display: block; }

/* 11. INTRO / SPLIT SECTIONS
   ================================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }

.photo-frame {
  position: relative;
}
.photo-frame-img {
  border-radius: var(--radius);
  width: 100%;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
}
.photo-frame-dots {
  position: absolute;
  inset: -14px;
  border: 3px dotted var(--terracotta-lt);
  border-radius: calc(var(--radius) + 14px);
  pointer-events: none;
  z-index: 1;
}
.photo-frame-stamp {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 3;
}
@media (max-width: 860px) {
  .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-layout--reverse { direction: ltr; }
  .photo-frame-img { height: 300px; }
  .photo-frame-stamp { position: static; margin-top: 1.5rem; display: flex; justify-content: center; }
}

/* 12. STAMP BADGE
   ================================================================ */
.stamp-badge {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 4px dotted var(--purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .9rem;
  background: var(--purple-light);
  box-shadow: var(--shadow-soft);
}
.stamp-badge span {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.45;
}
.stamp-badge--terra {
  border-color: var(--terracotta);
  background: var(--terracotta-pale);
}
.stamp-badge--terra span { color: var(--terracotta); }

/* 13. HIGHLIGHT CARDS
   ================================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}
.highlight-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-soft);
}
.highlight-card:nth-child(2) {
  margin-top: -1.5rem;
  border-color: var(--purple-mid);
}
.highlight-card:nth-child(3) {
  margin-top: 1.75rem;
}
.highlight-card .card-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 1rem;
}
.highlight-card h3 { color: var(--terracotta); margin-bottom: .7rem; }
.highlight-card:nth-child(2) h3 { color: var(--purple); }
.highlight-card p  { color: var(--brown-mid); font-size: .9375rem; }
@media (max-width: 860px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card:nth-child(2),
  .highlight-card:nth-child(3) { margin-top: 0; }
}

/* 14. IMPACT STATS
   ================================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: center;
  justify-items: center;
}
.impact-circle {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 4px dotted var(--terracotta);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem;
  background: var(--warm-white);
  box-shadow: var(--shadow-soft);
}
.impact-circle--purple {
  border-color: var(--purple);
  background: var(--purple-light);
}
.impact-circle .big-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1.05;
}
.impact-circle--purple .big-num { color: var(--purple); }
.impact-circle .big-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--brown-mid);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: .3rem;
  line-height: 1.35;
}
@media (max-width: 700px) {
  .impact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* 15. POLAROID GALLERY
   ================================================================ */
.polaroid-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 1rem;
}
.polaroid {
  background: var(--warm-white);
  padding: 12px 12px 44px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  transform: rotate(-2.8deg);
  flex-shrink: 0;
  max-width: 270px;
  border: 1px solid var(--cream-border);
  transition: transform .25s, box-shadow .25s;
}
.polaroid:hover { transform: rotate(-1.5deg) scale(1.03); box-shadow: var(--shadow-lift); }
.polaroid:nth-child(2) { transform: rotate(1.8deg); margin-top: 1.75rem; }
.polaroid:nth-child(2):hover { transform: rotate(1deg) scale(1.03); }
.polaroid:nth-child(3) { transform: rotate(-1deg); margin-top: -.75rem; }
.polaroid:nth-child(3):hover { transform: rotate(-.3deg) scale(1.03); }
.polaroid img {
  width: 100%; height: 190px;
  object-fit: cover;
  border-radius: 2px;
}
.polaroid-caption {
  text-align: center;
  margin-top: 10px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--brown-mid);
  font-style: italic;
}
@media (max-width: 600px) {
  .polaroid:nth-child(2),
  .polaroid:nth-child(3) { margin-top: 0; }
}

/* 16. PROGRAMME CARDS
   ================================================================ */
.programme-list { display: grid; gap: 2rem; margin-top: 2.5rem; }
.programme-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 2px solid var(--cream-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .22s;
}
.programme-card:hover { box-shadow: var(--shadow-card); }
.programme-card:nth-child(even)  { border-color: var(--purple-mid); }
.programme-icon {
  background: var(--terracotta-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}
.programme-card:nth-child(even) .programme-icon { background: var(--purple-light); }
.programme-body { padding: 2rem 2rem 2rem 1.75rem; }
.programme-body h3 { color: var(--terracotta); margin-bottom: .45rem; }
.programme-card:nth-child(even) .programme-body h3 { color: var(--purple); }
.programme-body .prog-blurb {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .85rem;
  color: var(--brown);
}
.programme-body .prog-detail {
  font-size: .9375rem;
  color: var(--brown-mid);
  line-height: 1.72;
}
@media (max-width: 600px) {
  .programme-card { grid-template-columns: 1fr; }
  .programme-icon { padding: 1.25rem; font-size: 2rem; }
}

/* 17. BLOG / ARTICLE CARDS
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.5rem;
  align-items: start;
  margin-top: 3rem;
}
.article-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s;
}
.article-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.article-card:nth-child(2) { transform: translateY(1.75rem); }
.article-card:nth-child(2):hover { transform: translateY(calc(1.75rem - 4px)); }
.article-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
}
.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-tag {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .65rem;
  border-radius: 100px;
  margin-bottom: .85rem;
}
.article-card h3 {
  font-size: clamp(.975rem, 2vw, 1.2rem);
  margin-bottom: .5rem;
  color: var(--brown);
  line-height: 1.3;
}
.article-card .dek {
  font-size: .9375rem;
  color: var(--brown-mid);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.read-more {
  color: var(--purple);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  margin-top: auto;
}
.read-more::after { content: '→'; }
.read-more:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .article-card:nth-child(2) { transform: none; }
  .article-card:nth-child(2):hover { transform: translateY(-4px); }
}

/* 18. ARTICLE PAGE
   ================================================================ */
.article-wrap {
  max-width: 860px;
  margin-inline: auto;
  padding-block: 3rem 5rem;
}
.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 2.75rem;
}
.article-header { margin-bottom: 2.5rem; }
.article-header h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: .75rem;
  margin-top: .5rem;
}
.article-header .dek {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--brown-mid);
  font-weight: 500;
  line-height: 1.65;
  border-left: 4px solid var(--terracotta);
  padding-left: 1.25rem;
  margin-top: 1rem;
}
.article-body { max-width: 720px; }
.article-body p {
  margin-bottom: 1.55em;
  color: var(--brown);
  line-height: 1.82;
}
.article-back {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--cream-border);
}
.article-back a {
  color: var(--purple);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.article-back a::before { content: '←'; }
.article-back a:hover { text-decoration: underline; }

/* 19. WAYS TO GET INVOLVED
   ================================================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}
.way-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 3px dotted var(--cream-border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.way-card:hover { box-shadow: var(--shadow-card); }
.way-card:nth-child(2) {
  margin-top: 2.25rem;
  border-color: var(--purple-mid);
}
.way-card:nth-child(3) {
  margin-top: -1.25rem;
  border-color: var(--terracotta-lt);
}
.way-card .way-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.way-card h3 { color: var(--terracotta); margin-bottom: .7rem; }
.way-card:nth-child(2) h3 { color: var(--purple); }
.way-card p { color: var(--brown-mid); font-size: .9375rem; }
@media (max-width: 860px) {
  .ways-grid { grid-template-columns: 1fr; }
  .way-card:nth-child(2),
  .way-card:nth-child(3) { margin-top: 0; }
}

/* 20. TRUSTEES
   ================================================================ */
.trustees-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.75rem;
}
.trustee-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  min-width: 170px;
}
.trustee-avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  margin: 0 auto .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--terracotta);
  border: 3px dotted var(--terracotta-lt);
}
.trustee-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: .25rem; color: var(--brown); }
.trustee-role { font-size: .8rem; color: var(--purple); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

/* 21. CONTACT FORM
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: .85rem; margin-top: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .85rem 1rem;
  background: var(--cream-mid);
  border-radius: var(--radius-sm);
}
.ci-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.ci-text { font-size: .9375rem; color: var(--brown-mid); line-height: 1.55; }
.ci-text a { color: var(--purple); font-weight: 600; }

.form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--brown);
  margin-bottom: .38rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--brown);
  background: var(--cream);
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-light);
}
.form-group textarea { min-height: 145px; resize: vertical; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* 22. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: .975rem;
  padding: .88rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .01em;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196,98,45,.32);
}
.btn-primary:hover { background: var(--brown-mid); color: #fff; box-shadow: 0 6px 28px rgba(196,98,45,.40); }
.btn-secondary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 18px rgba(123,45,139,.30);
}
.btn-secondary:hover { background: #5C1870; color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--terracotta);
  box-shadow: var(--shadow-soft);
}
.btn-white:hover { background: var(--cream-mid); color: var(--terracotta); }
.btn-sm { font-size: .85rem; padding: .6rem 1.3rem; }

/* 23. CTA STRIP
   ================================================================ */
.cta-strip {
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  padding: var(--section-gap) 0;
}
.cta-strip h2 { color: #fff; margin-bottom: 1.25rem; }
.cta-strip p  { color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 2rem; }
.cta-strip--purple { background: var(--purple); }

/* 24. MISSION BOX
   ================================================================ */
.mission-box {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 3rem 3rem 3rem 4rem;
  border: 3px solid var(--purple-mid);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 1.25rem;
  font-size: 11rem;
  color: var(--purple-light);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  pointer-events: none;
  select: none;
}
.mission-box p {
  position: relative;
  z-index: 1;
  font-size: clamp(.9375rem, 1.8vw, 1.1rem);
  font-weight: 500;
  line-height: 1.8;
  color: var(--brown);
}

/* 25. STORY SECTION
   ================================================================ */
.story-text h2 { margin-bottom: 1.25rem; }
.story-text p   { color: var(--brown-mid); }

/* 26. WHAT WE DO PROSE
   ================================================================ */
.prose { max-width: 780px; }
.prose p { margin-bottom: 1.55em; color: var(--brown); line-height: 1.82; }

/* 27. UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.text-purple     { color: var(--purple); }
.text-white      { color: #fff; }
.mt-1 { margin-top: .5rem;  }
.mt-2 { margin-top: 1rem;   }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem;   }
.mt-6 { margin-top: 3rem;   }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* 28. SECTION HEADINGS WITH OVERLINE
   ================================================================ */
.section-header { margin-bottom: 1.5rem; }
.section-header h2 { margin-top: .25rem; }
.section-header--center { text-align: center; }
.section-header--center .overline {
  justify-content: center;
}

/* DOTTED BORDER BOX */
.dotted-box {
  border: 3px dotted var(--cream-border);
  border-radius: var(--radius);
  padding: 2rem;
}
.dotted-box--purple { border-color: var(--purple-mid); }
.dotted-box--terra  { border-color: var(--terracotta-lt); }
