@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --green:        #79BC42;
  --green-deep:   #4E8826;
  --green-mid:    #5B9830;
  --green-soft:   #EDF6E3;
  --green-faint:  #F5FAF0;
  --charcoal:     #1E2C2D;
  --text:         #2F3E3D;
  --muted:        #677877;
  --muted-light:  #8A9E9D;
  --line:         #D8E6D6;
  --bg:           #FAFCF7;
  --white:        #FFFFFF;
  --orange:       #D96E1A;
  --orange-deep:  #B85A13;
  --orange-soft:  #F6E8DB;

  --max:          1140px;
  --r:            18px;
  --r-sm:         10px;

  --sh-xs: 0 2px 8px rgba(30,44,45,.05);
  --sh-sm: 0 4px 18px rgba(30,44,45,.07);
  --sh:    0 10px 32px rgba(30,44,45,.09);
  --sh-lg: 0 20px 52px rgba(30,44,45,.11);

  --ease: cubic-bezier(.4,0,.2,1);
  --t: .18s var(--ease);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;

  --sp-xs: .5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 5rem;
}

/* ─── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { padding-left: 1.15rem; color: var(--muted); }
p   { color: var(--muted); margin: 0 0 .9rem; }
p:last-child { margin-bottom: 0; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .8rem;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 2.9vw, 2.55rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.05rem; font-family: var(--body); font-weight: 600; letter-spacing: .01em; }

.display { font-size: clamp(1.8rem, 3.6vw, 3.1rem); font-family: var(--display); font-weight: 600; color: var(--charcoal); line-height: 1.12; margin: 0 0 .8rem; }

/* ─── LAYOUT ──────────────────────────────────────────────────────── */
.container { width: min(var(--max), calc(100% - 2.8rem)); margin: 0 auto; }
.section   { padding: 80px 0; }
.section-sm { padding: 52px 0; }

/* ─── LABEL / EYEBROW ─────────────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .85rem;
}
.label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  margin-left: .55rem;
  vertical-align: middle;
  background: rgba(217,110,26,.55);
}
.eyebrow {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* ─── LEAD TEXT ───────────────────────────────────────────────────── */
.lead { font-size: 1.06rem; max-width: 700px; line-height: 1.78; color: var(--muted); }
.intro-narrow { max-width: 680px; }

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn-row { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  height: 44px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(121,188,66,.38); }
.btn-outline  { background: transparent; border-color: var(--green-mid); color: var(--green-mid); }
.btn-outline:hover { background: var(--green-soft); }
.btn-secondary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-secondary:hover { box-shadow: 0 6px 20px rgba(217,110,26,.32); }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--muted-light); }

/* ─── HEADER ──────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,252,247,.94);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(120,188,66,.13);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 48px; width: auto; }
nav.desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
nav.desktop-nav a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .01em;
  transition: color var(--t);
  position: relative;
}
nav.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--t);
}
nav.desktop-nav a:hover,
nav.desktop-nav a.active { color: var(--charcoal); }
nav.desktop-nav a:hover::after,
nav.desktop-nav a.active::after { transform: scaleX(1); }
.nav-cta {
  height: 36px;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
  font-size: .84rem;
  border: none;
  display: inline-flex;
  align-items: center;
  margin-left: .2rem;
  transition: opacity var(--t), transform var(--t);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green); opacity: .88; border-color: transparent; }
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--t);
}
.mobile-nav { display: none; border-top: 1px solid var(--line); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .93rem;
  font-weight: 500;
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero-banner {
  height: clamp(260px, 44vw, 580px);
  background: url('assets/Firefly.jpg') center 38% / cover no-repeat;
  border-bottom: 1px solid rgba(120,188,66,.12);
}
.hero-intro { margin-top: -20px; }
.hero-card {
  max-width: 780px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(120,188,66,.16);
  border-top: 3px solid rgba(217,110,26,.72);
  border-radius: 22px;
  padding: 2rem 2.1rem 1.8rem;
  box-shadow: var(--sh-lg);
}
.hero-card h1 {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  max-width: 18ch;
  margin-bottom: .7rem;
}
.hero-card > p { max-width: 54ch; margin-bottom: 1.4rem; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  gap: 0;
}
.hero-meta > div { padding-right: 1rem; border-right: 1px solid var(--line); }
.hero-meta > div:last-child { border-right: 0; }
.hero-meta strong { display: block; font-family: var(--display); font-size: 1.55rem; color: var(--green-mid); font-weight: 600; line-height: 1; margin-bottom: .25rem; }
.hero-meta span { font-size: .75rem; color: var(--muted-light); line-height: 1.3; display: block; }

/* ─── GRIDS ───────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.grid-2-wide { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.8rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }

/* ─── CARDS ───────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
}
.card-soft { background: var(--green-faint); border: 1px solid rgba(120,188,66,.18); border-radius: var(--r); padding: 1.5rem; }
.card h3, .card h4, .card-soft h3, .card-soft h4 { margin-bottom: .55rem; }
.card p:last-child, .card-soft p:last-child { margin-bottom: 0; }

/* ─── PILLARS (Home) ──────────────────────────────────────────────── */
.pillars-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-top: 1.4rem;
  align-items: stretch;
}
.pillar-card-sm {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(217,110,26,.6);
  border-radius: var(--r);
  padding: 1.6rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
}
.pillar-card-sm .pillar-num {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .6rem;
  display: block;
}
.pillar-card-sm h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--charcoal); }
.pillar-card-sm p  { font-size: .88rem; line-height: 1.62; color: var(--muted); margin: 0; }

/* ─── PILLAR CARDS (Initiatives detail) ──────────────────────────── */
.pillar-card-detail {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(217,110,26,.58);
  border-radius: var(--r);
  padding: 2rem 1.6rem 1.6rem;
  margin-bottom: 1.2rem;
}
.pillar-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: .22rem .8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--body);
}
.pillar-card-detail h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.pillar-card-detail .grid-2 { margin-top: 1.1rem; gap: 1.4rem; }
.pillar-card-detail .list-clean li { font-size: .9rem; padding: .5rem 0; }

/* ─── STATEMENTS (Mission/Vision) ────────────────────────────────── */
.statement-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.statement {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(217,110,26,.52);
  border-radius: var(--r);
  padding: 1.6rem 1.5rem;
}
.statement h3 { font-size: 1.6rem; margin-bottom: .6rem; }

/* ─── FEATURE BAND ────────────────────────────────────────────────── */
.feature-band { background: var(--green-faint); border-top: 1px solid rgba(120,188,66,.18); border-bottom: 1px solid rgba(120,188,66,.18); }
.feature-panel {
  background: var(--white);
  border: 1px solid rgba(120,188,66,.18);
  border-left: 3px solid rgba(217,110,26,.7);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--sh-sm);
}

/* ─── METRICS ─────────────────────────────────────────────────────── */
.metrics-row { display: grid; gap: 1rem; }
.metrics-2 { grid-template-columns: 1fr 1fr; }
.metrics-4 { grid-template-columns: repeat(4, 1fr); }
.metric { border-top: 2px solid rgba(217,110,26,.28); padding-top: .85rem; }
.metric strong { display: block; font-family: var(--display); font-size: 2rem; color: var(--green-mid); font-weight: 600; line-height: 1; margin-bottom: .3rem; }
.metric span   { font-size: .8rem; color: var(--muted-light); line-height: 1.4; display: block; }

/* ─── PAGE HERO ───────────────────────────────────────────────────── */
.page-hero {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 22ch; }
.page-hero p  { max-width: 56ch; font-size: .97rem; margin-top: .6rem; }

/* ─── CTA STRIP ───────────────────────────────────────────────────── */
.cta-strip {
  background: var(--charcoal);
  border-radius: 24px;
  padding: 2.2rem 2.4rem;
  color: #fff;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
.cta-strip p  { color: rgba(255,255,255,.7); }
.cta-strip .label { color: rgba(217,110,26,.92); }
.cta-strip .grid-2 { align-items: center; gap: 2rem; }

/* ─── LIST CLEAN ──────────────────────────────────────────────────── */
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: .68rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .95rem; line-height: 1.55; }
.list-clean li:last-child { border-bottom: 0; }
.list-clean li strong { color: var(--charcoal); }

/* ─── SECTION FLUSH (full-width image) ───────────────────────────── */
.section-flush { padding: 0; }
.photo-banner { position: relative; overflow: hidden; }
.photo-banner img { width: 100%; display: block; max-height: 500px; object-fit: cover; object-position: center; }
.photo-banner-caption {
  background: var(--charcoal);
  padding: .6rem 1.6rem;
}
.photo-banner-caption p {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-family: var(--body);
}

/* ─── PHOTO COMPONENTS ────────────────────────────────────────────── */
.photo-frame { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); }
.photo-frame img { width: 100%; display: block; object-fit: cover; }

.photo-portrait {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border-left: 3px solid var(--orange);
}
.photo-portrait img { width: 100%; display: block; object-fit: cover; object-position: center top; }

.board-photo {
  max-width: 240px;
  justify-self: start;
}
.board-photo img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 900px) {
  .board-photo {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .board-photo {
    max-width: 180px;
    margin-bottom: .6rem;
  }
}

.photo-inset { border-radius: var(--r-sm); overflow: hidden; margin-top: 1.2rem; }
.photo-inset img { width: 100%; display: block; object-fit: cover; max-height: 240px; }

.quote-photo { position: relative; border-radius: var(--r); overflow: hidden; }
.quote-photo img { width: 100%; display: block; object-fit: cover; max-height: 280px; object-position: center 20%; filter: brightness(.78) saturate(.88); }
.quote-photo-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(30,44,45,.7) 0%, transparent 55%);
}
.quote-photo-overlay blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 .45rem;
}
.quote-photo-overlay cite { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ─── SPONSOR TIERS ───────────────────────────────────────────────── */
.tier-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.tier-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: .22rem .8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--body);
  width: fit-content;
  margin-bottom: .4rem;
}
.tier-card h3 { font-size: 1.4rem; margin: 0 0 .3rem; }
.tier-card p  { font-size: .93rem; }
.tier-card ul { font-size: .9rem; color: var(--muted); padding-left: 1rem; }
.tier-card ul li { margin-bottom: .3rem; }

/* ─── FORMS ───────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  padding: .82rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  font-family: var(--body);
  font-size: .93rem;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(121,188,66,.14);
}
textarea { min-height: 155px; resize: vertical; }

/* ─── NOTE / CALLOUT ──────────────────────────────────────────────── */
.note {
  background: var(--green-soft);
  border: 1px solid rgba(121,188,66,.2);
  border-radius: var(--r-sm);
  padding: .95rem 1.1rem;
  font-size: .9rem;
  color: var(--muted);
}

/* ─── SOCIAL ICONS ────────────────────────────────────────────────── */
.social-links { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(121,188,66,.1);
  border: 1px solid rgba(121,188,66,.2);
  color: var(--green-mid);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.social-link:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.4rem;
  padding: 52px 0 36px;
}
.footer-logo { height: 50px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: .9rem; color: var(--muted); max-width: 30ch; line-height: 1.6; margin-bottom: .4rem; }
.footer-meta { font-size: .83rem; color: var(--muted-light); margin-bottom: .3rem; }
.footer-meta a { color: inherit; transition: color var(--t); }
.footer-meta a:hover { color: var(--charcoal); }
.footer-col-title {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .95rem;
}
.footer-links a {
  display: block;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .55rem;
  transition: color var(--t);
}
.footer-links a:hover { color: var(--charcoal); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.5rem;
  font-size: .8rem;
  color: var(--muted-light);
}

/* ─── SDG CARDS (Financials) ──────────────────────────────────────── */
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.sdg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 1.2rem 1rem;
  text-align: center;
}
.sdg-card h3 { font-family: var(--display); font-size: 1.65rem; color: var(--green-mid); margin-bottom: .35rem; }
.sdg-card p  { font-size: .82rem; line-height: 1.45; margin: 0; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-2, .grid-2-wide, .statement-pair { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .pillars-home { grid-template-columns: 1fr 1fr; }
  .metrics-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta > div { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: .8rem; margin-bottom: .8rem; }
  .hero-meta > div:last-child { border-bottom: 0; }
}
@media (max-width: 680px) {
  nav.desktop-nav { display: none; }
  .menu-btn { display: flex; }
  .hero-banner { height: 220px; background-position: center 28%; }
  .hero-intro  { margin-top: -14px; }
  .hero-card   { padding: 1.3rem 1.2rem; border-radius: 16px; }
  .hero-card h1 { font-size: 1.7rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pillars-home { grid-template-columns: 1fr; }
  .metrics-2, .metrics-4 { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 1.6rem; }
  .cta-strip .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .header-inner { height: 68px; }
  .logo { height: 42px; }
}

/* ─── VIDEO GRID ──────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.video-wrap {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--r);
  background: #000;
  box-shadow: var(--sh);
  aspect-ratio: 16 / 9;
  max-height: 220px;
  object-fit: contain;
}
.video-caption {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-light);
  text-align: center;
  margin: 0;
}
@media (max-width: 680px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ─── FULL DISPLAY PHOTO (no height cap, no crop) ─────────────────── */
.photo-full-display {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.photo-full-display img {
  width: 100%;
  display: block;
  height: auto;
}

/* ─── PRESS CARDS ─────────────────────────────────────────────────── */
.press-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.press-source {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--body);
}
.press-link-btn {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: .6rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--t), gap var(--t);
  gap: .25rem;
}
.press-link-btn:hover {
  color: var(--orange-deep);
  gap: .5rem;
}


.press-link-btn.disabled{opacity:.65;cursor:default;pointer-events:none;}
.activities-list li{margin-bottom:.7rem;}


/* ─── ABOUT: MISSION / VISION ────────────────────────────────────── */
.section-purpose { padding-top: 32px; }
.purpose-wrap { max-width: 1120px; }
.purpose-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.2rem; align-items: start; }
.purpose-block { max-width: 620px; }
.purpose-block h2 { margin-bottom: .9rem; letter-spacing: -.02em; }
.purpose-block h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: rgba(217,110,26,.55);
  margin-top: .55rem;
}
.purpose-lead { font-size: 1.08rem; line-height: 1.82; color: var(--text); max-width: 620px; margin-bottom: 1rem; }
.purpose-support { font-size: .98rem; line-height: 1.84; color: var(--muted); max-width: 620px; margin-bottom: 0; }

