/* ============================================================
   VIBRANT HEALTH ADVOCATES – KEYSTONE
   Design System: Warm & Human Community
   ============================================================ */

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

:root {
  --cream:         #FDF6EC;
  --cream-deep:    #F5E6CC;
  --cream-border:  #E8D0A8;
  --terracotta:    #C45C38;
  --terra-light:   #D97A55;
  --terra-pale:    #FAEAE0;
  --purple:        #7B2D8B;
  --purple-mid:    #9B4DAA;
  --purple-light:  #F0D9F5;
  --brown:         #2C1A0D;
  --brown-mid:     #5A3520;
  --warm-white:    #FEFAF4;
  --shadow-sm:     0 2px 10px rgba(44,26,13,0.09);
  --shadow-md:     0 6px 28px rgba(44,26,13,0.14);
  --shadow-lg:     0 12px 48px rgba(44,26,13,0.20);
  --r-sm:          12px;
  --r-md:          24px;
  --r-lg:          36px;
  --r-pill:        9999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.78;
  font-size: 1.0625rem;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.18;
  color: var(--brown);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 88px 0; }
.section--terra  { background: var(--terra-pale); }
.section--deep   { background: var(--cream-deep); }
.section--warm   { background: var(--warm-white); }
.section--purple { background: var(--purple-light); }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-border);
  box-shadow: 0 2px 14px rgba(44,26,13,0.07);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__wordmark {
  height: 34px;
  width: auto;
  object-fit: contain;
  /* dark artwork on transparent — displayed as-is on light cream header */
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav__links a {
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-mid);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: var(--purple-light);
  color: var(--purple);
  text-decoration: none;
}

.nav__links .nav__cta {
  background: var(--terracotta);
  color: var(--warm-white) !important;
  margin-left: 6px;
}

.nav__links .nav__cta:hover {
  background: var(--terra-light);
  color: var(--warm-white) !important;
  text-decoration: none;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--brown);
  padding: 4px 8px;
  line-height: 1;
}

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 2px dotted var(--cream-border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 201;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 11px 16px; }
  .nav__links .nav__cta { margin-left: 0; text-align: center; }
  .nav__logo  { width: 38px; height: 38px; }
  .nav__wordmark { height: 28px; }
}

/* ============================================================
   HOME HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 660px;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,26,13,0.62) 0%,
    rgba(44,26,13,0.50) 50%,
    rgba(44,26,13,0.18) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 28px 140px;
}

.hero__label {
  display: inline-block;
  background: var(--terracotta);
  color: var(--warm-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}

.hero__title {
  color: var(--warm-white);
  text-shadow: 0 3px 14px rgba(44,26,13,0.45);
  max-width: 720px;
  margin-bottom: 22px;
}

.hero__sub {
  color: rgba(254,250,244,0.92);
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.72;
}

/* Pulled-up intro card overlapping hero bottom */
.hero-card-row {
  position: relative;
  z-index: 3;
}

.hero-card-row__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero-intro-card {
  background: var(--warm-white);
  border-radius: var(--r-lg);
  padding: 44px 52px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--cream-border);
  margin-top: -88px;
  max-width: 880px;
}

.hero-intro-card h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 18px;
  color: var(--brown);
}

.hero-intro-card p {
  color: var(--brown-mid);
  line-height: 1.82;
}

@media (max-width: 820px) {
  .hero { min-height: 500px; }
  .hero__content { padding: 70px 20px 120px; }
  .hero-intro-card { margin-top: -60px; padding: 30px 24px; }
}

/* ============================================================
   SQUIGGLE DIVIDERS
   ============================================================ */

.squiggle-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
  padding: 0;
}

.squiggle-wrap svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* ============================================================
   SECTION LABELS + INTRO COPY
   ============================================================ */

.chip {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.chip--terra  { background: var(--terra-pale);   color: var(--terracotta); }
.chip--purple { background: var(--purple-light);  color: var(--purple); }
.chip--cream  { background: var(--cream-border);  color: var(--brown-mid); }

.section-intro {
  max-width: 680px;
  color: var(--brown-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 52px;
}

/* ============================================================
   HIGHLIGHT CARDS (staggered grid)
   ============================================================ */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.highlights-grid .hcard:nth-child(2) { margin-top: 36px; }

.hcard {
  background: var(--warm-white);
  border-radius: var(--r-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-border);
}

.hcard__icon { font-size: 2.1rem; display: block; margin-bottom: 16px; }
.hcard__title { font-size: 1.15rem; font-weight: 900; margin-bottom: 10px; }
.hcard__blurb { color: var(--brown-mid); line-height: 1.72; margin: 0; }

@media (max-width: 860px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 20px; }
  .highlights-grid .hcard:nth-child(2) { margin-top: 0; }
}

/* ============================================================
   IMPACT STRIP
   ============================================================ */

.impact-strip {
  background: var(--terracotta);
  padding: 72px 28px;
  text-align: center;
}

.impact-strip h2 {
  color: var(--warm-white);
  margin-bottom: 48px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.impact-list {
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.impact-item__stat {
  display: block;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--warm-white);
  line-height: 1;
}

.impact-item__label {
  display: block;
  color: rgba(254,250,244,0.82);
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 9px;
}

/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip {
  background: var(--purple);
  padding: 88px 28px;
  text-align: center;
}

.cta-strip h2 {
  color: var(--warm-white);
  margin-bottom: 26px;
}

.cta-strip p {
  color: rgba(254,250,244,0.84);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.72;
}

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

.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  padding: 13px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
  line-height: 1;
  text-align: center;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--terra  { background: var(--terracotta); color: var(--warm-white); }
.btn--terra:hover  { background: var(--terra-light); color: var(--warm-white); }

.btn--purple { background: var(--purple); color: var(--warm-white); }
.btn--purple:hover { background: var(--purple-mid); color: var(--warm-white); }

.btn--white  { background: var(--warm-white); color: var(--purple); }
.btn--white:hover  { background: var(--cream); color: var(--purple); }

.btn--outline { background: transparent; border: 2px solid var(--terracotta); color: var(--terracotta); }
.btn--outline:hover { background: var(--terracotta); color: var(--warm-white); }

.btn--lg { padding: 17px 44px; font-size: 1.05rem; }

/* ============================================================
   POLAROID CARDS
   ============================================================ */

.polaroid-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 0 32px;
}

.polaroid {
  background: #fffef9;
  padding: 12px 12px 48px;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  flex: 0 0 220px;
  max-width: 240px;
  transition: transform 0.22s, box-shadow 0.22s;
}

.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(2.2deg); margin-top: 28px; }
.polaroid:nth-child(3) { transform: rotate(-1.4deg); margin-top: 8px; }
.polaroid:nth-child(4) { transform: rotate(2.8deg); margin-top: 20px; }

.polaroid:hover { transform: rotate(0) scale(1.04); box-shadow: var(--shadow-lg); z-index: 2; }

.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.polaroid__caption {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-mid);
  margin-top: 14px;
  padding: 0 4px;
}

/* ============================================================
   STAMP BADGE
   ============================================================ */

.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 3px dashed var(--purple);
  background: var(--purple-light);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.35;
  padding: 14px;
  transform: rotate(-9deg);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,26,13,0.68) 0%, rgba(44,26,13,0.22) 75%);
}

.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(28px, calc((100% - 1104px) / 2));
}

.page-hero__title {
  color: var(--warm-white);
  text-shadow: 0 2px 14px rgba(44,26,13,0.55);
  max-width: 600px;
  margin-bottom: 14px;
}

.page-hero__sub {
  color: rgba(254,250,244,0.9);
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.68;
}

@media (max-width: 820px) {
  .page-hero { height: 300px; }
  .page-hero__content { padding: 0 22px; }
}

/* ============================================================
   TWO-COLUMN SPLITS
   ============================================================ */

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

.split--start { align-items: start; }
.split--reversed { direction: rtl; }
.split--reversed > * { direction: ltr; }

.split__img {
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 6px solid #fff;
}

.split__img--tilt { transform: rotate(-1.8deg); }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .split--reversed { direction: ltr; }
}

/* ============================================================
   ABOUT / MISSION
   ============================================================ */

.mission-box {
  background: var(--purple-light);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  border: 3px dotted var(--purple);
  position: relative;
}

.mission-box__stamp {
  position: absolute;
  top: -38px;
  right: 48px;
}

@media (max-width: 820px) {
  .mission-box { padding: 36px 28px; }
  .mission-box__stamp { right: 20px; top: -28px; }
}

/* ============================================================
   TRUSTEES
   ============================================================ */

.trustees-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trustee-card {
  flex: 1;
  min-width: 170px;
  background: var(--warm-white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.trustee-card__initials {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.trustee-card__name { font-weight: 900; font-size: 1rem; margin-bottom: 4px; }
.trustee-card__role { font-size: 0.875rem; color: var(--brown-mid); font-weight: 700; }

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.prog-card {
  background: var(--warm-white);
  border-radius: var(--r-md);
  padding: 38px 34px;
  border: 2px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}

.prog-card__icon { font-size: 2.2rem; display: block; margin-bottom: 16px; }
.prog-card__title { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; }
.prog-card__blurb { color: var(--terracotta); font-weight: 700; font-size: 0.93rem; margin-bottom: 16px; line-height: 1.6; }
.prog-card__detail { color: var(--brown-mid); line-height: 1.78; font-size: 0.95rem; margin: 0; }

@media (max-width: 820px) {
  .programmes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WAYS (GET INVOLVED)
   ============================================================ */

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.ways-grid .way-card:nth-child(1) { margin-top: 24px; }
.ways-grid .way-card:nth-child(3) { margin-top: 44px; }

.way-card {
  background: var(--warm-white);
  border-radius: var(--r-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-border);
}

.way-card__icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.way-card__title { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.way-card__blurb { color: var(--brown-mid); line-height: 1.74; margin-bottom: 24px; }

@media (max-width: 860px) {
  .ways-grid { grid-template-columns: 1fr; gap: 20px; }
  .ways-grid .way-card:nth-child(1),
  .ways-grid .way-card:nth-child(3) { margin-top: 0; }
}

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.blog-grid .blog-card:nth-child(2) { margin-top: 28px; }

.blog-card {
  background: var(--warm-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  text-decoration: none;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 9px;
  line-height: 1.32;
}

.blog-card__dek {
  color: var(--brown-mid);
  font-size: 0.9rem;
  line-height: 1.68;
  flex: 1;
  margin-bottom: 18px;
}

.blog-card__read {
  display: inline-block;
  background: var(--terracotta);
  color: var(--warm-white);
  font-size: 0.79rem;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid .blog-card:nth-child(2) { margin-top: 0; }
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: var(--brown);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--cream-border);
  border-radius: var(--r-sm);
  background: var(--warm-white);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.18s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple); }

.form-group textarea { resize: vertical; min-height: 148px; }

.contact-info-panel {
  background: var(--terra-pale);
  border-radius: var(--r-md);
  padding: 38px 34px;
  border: 3px dotted var(--terracotta);
}

.contact-info-panel h3 { color: var(--terracotta); margin-bottom: 22px; font-size: 1.3rem; }
.contact-info-panel p  { color: var(--brown-mid); font-size: 0.93rem; line-height: 1.68; }
.contact-info-panel a  { color: var(--purple); font-weight: 700; word-break: break-all; }
.contact-info-panel a:hover { color: var(--terracotta); text-decoration: none; }

@media (max-width: 820px) {
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
}

/* ============================================================
   ARTICLE PAGES
   ============================================================ */

.article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.article-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,13,0.15) 40%, rgba(44,26,13,0.65) 100%);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 28px 96px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown-mid);
  margin-bottom: 36px;
  transition: color 0.15s;
}

.article-back:hover { color: var(--terracotta); text-decoration: none; }

.article-body h1 { margin-bottom: 18px; }

.article-dek {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.6;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 2px dotted var(--cream-border);
}

.article-text p {
  line-height: 1.88;
  color: var(--brown);
  font-size: 1.05rem;
  margin-bottom: 1.5em;
}

.article-text p:last-child { margin-bottom: 0; }

@media (max-width: 820px) {
  .article-hero { height: 280px; }
  .article-body  { padding: 44px 20px 72px; }
}

/* ============================================================
   STORY BLOCK
   ============================================================ */

.story-block {
  background: var(--cream-deep);
  border-radius: var(--r-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.story-block::before {
  content: "\201C";
  position: absolute;
  top: -40px; left: 20px;
  font-size: 18rem;
  color: var(--terracotta);
  opacity: 0.08;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  pointer-events: none;
}

.story-block p { color: var(--brown-mid); line-height: 1.84; font-size: 1.02rem; }

@media (max-width: 820px) {
  .story-block { padding: 36px 26px; }
}

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

.footer {
  background: var(--brown);
  color: var(--cream-deep);
}

.footer__top {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr;
  gap: 56px;
  border-bottom: 1px solid rgba(245,230,204,0.18);
}

.footer__brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__logo {
  width: 42px; height: 42px;
  object-fit: contain;
}

.footer__wordmark {
  height: 30px; width: auto;
  object-fit: contain;
  filter: invert(1) brightness(10);
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(245,230,204,0.65);
  line-height: 1.65;
}

.footer__col h4 {
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__col ul li { margin-bottom: 9px; }

.footer__col ul a {
  color: rgba(245,230,204,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s;
}

.footer__col ul a:hover { color: var(--warm-white); text-decoration: none; }

.footer__col p {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 11px;
  color: rgba(245,230,204,0.65);
}

.footer__col a.email-link {
  color: var(--terra-light);
  font-weight: 700;
  word-break: break-all;
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer__col a.email-link:hover { color: var(--warm-white); text-decoration: none; }

.footer__base {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 28px;
  font-size: 0.79rem;
  color: rgba(245,230,204,0.42);
  text-align: center;
}

@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   UTILITY HELPERS
   ============================================================ */

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.mt-s  { margin-top: 16px; }
.mt-m  { margin-top: 32px; }
.mt-l  { margin-top: 48px; }
.mb-s  { margin-bottom: 16px; }
.mb-m  { margin-bottom: 32px; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-row-gap { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* pull-quote style */
.pull-quote {
  border-left: 4px solid var(--terracotta);
  padding: 12px 24px;
  margin: 32px 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--terracotta);
  font-style: italic;
  line-height: 1.6;
}
