/* ==========================================================================
   Shivganga — Home page redesign
   Scoped entirely under .sg-home so no other page is affected.
   ========================================================================== */

.sg-home {
  /* Palette */
  --sg-green:        #0E6B57;
  --sg-green-dark:   #0A5344;
  --sg-green-soft:   #A8C8BF;
  --sg-green-tint:   #E7F1ED;
  --sg-green-pale:   #DCEFE9;

  --sg-orange:       #E86A24;
  --sg-orange-dark:  #C4551A;
  --sg-orange-pale:  #FDEFE4;

  --sg-ink:          #15211D;
  --sg-ink-2:        #3D4B46;
  --sg-muted:        #5C6A64;
  --sg-muted-2:      #6B7A74;

  --sg-cream:        #EDE7DD;
  --sg-cream-2:      #E3DCD1;
  --sg-paper:        #FBF8F3;
  --sg-white:        #FFFFFF;

  /* Type */
  --sg-font-head: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --sg-font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --sg-font-quote: 'Lora', Georgia, serif;

  /* Rhythm */
  --sg-section-y: clamp(56px, 8vw, 104px);
  --sg-radius: 16px;
  --sg-radius-lg: 24px;
  --sg-shadow: 0 1px 2px rgba(21,33,29,.04), 0 8px 24px rgba(21,33,29,.06);
  --sg-shadow-lg: 0 2px 4px rgba(21,33,29,.05), 0 18px 48px rgba(21,33,29,.11);

  font-family: var(--sg-font-body);
  color: var(--sg-ink);
  background: var(--sg-paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Reset the global `p { font-size: 35px }` the old page shipped */
.sg-home p { font-size: 1rem; margin: 0 0 1rem; color: var(--sg-muted); }
.sg-home h1, .sg-home h2, .sg-home h3, .sg-home h4, .sg-home h5 {
  font-family: var(--sg-font-head);
  color: var(--sg-ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}
.sg-home img { max-width: 100%; }
.sg-home a { text-decoration: none; }

.sg-wrap { width: min(1180px, 92vw); margin-inline: auto; }
.sg-section { padding-block: var(--sg-section-y); }
.sg-section--tint  { background: var(--sg-green-tint); }
.sg-section--cream { background: var(--sg-cream); }
.sg-section--paper { background: var(--sg-paper); }

/* ---------- Section headers ---------- */
.sg-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sg-font-head);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sg-green); margin-bottom: 1rem;
}
.sg-eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--sg-orange); border-radius: 2px;
}
.sg-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.sg-head--center { margin-inline: auto; text-align: center; }
.sg-head--center .sg-eyebrow::before { display: none; }
.sg-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.sg-head p  { font-size: clamp(1rem, 1.4vw, 1.13rem); color: var(--sg-muted); margin-bottom: 0; }

/* ---------- Buttons ---------- */
.sg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sg-font-head); font-weight: 600; font-size: .97rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  line-height: 1;
}
.sg-btn:hover { transform: translateY(-2px); text-decoration: none; }
.sg-btn:focus-visible { outline: 3px solid var(--sg-orange); outline-offset: 3px; }
.sg-btn--primary { background: var(--sg-orange); color: #fff; box-shadow: 0 6px 18px rgba(232,106,36,.28); }
.sg-btn--primary:hover { background: var(--sg-orange-dark); color: #fff; }
.sg-btn--green { background: var(--sg-green); color: #fff; }
.sg-btn--green:hover { background: var(--sg-green-dark); color: #fff; }
.sg-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.sg-btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.sg-btn--outline { background: transparent; color: var(--sg-green); border-color: var(--sg-green-soft); }
.sg-btn--outline:hover { background: var(--sg-green); color: #fff; border-color: var(--sg-green); }

/* ==========================================================================
   HERO — header + hero fill exactly one viewport
   ========================================================================== */
.sg-hero {
  --wave-h: clamp(76px, min(12vw, 15vh), 180px);
  position: relative;
  /* The header overlays the hero on the home page, so the hero itself is the
     full viewport; header + hero still occupy exactly one screen. */
  min-height: 100vh;
  background: #0A4E3F;
  overflow: hidden;
  /* Anchored to the bottom rather than centred: the copy then keeps a fixed
     distance above the water line at every viewport height, instead of
     drifting up and leaving a growing gap on tall screens. */
  display: flex; align-items: flex-end;
}

/* Photography sits at half opacity over the green, so the brand colour reads
   first and white type stays legible whatever the photograph is doing. */
.sg-hero__media { position: absolute; inset: 0; }
.sg-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.1s ease;
}
.sg-hero__img.is-active { opacity: .5; animation: sgZoom 16s ease-out forwards; }
@keyframes sgZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.sg-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,58,47,.94) 0%, rgba(8,58,47,.72) 46%, rgba(8,58,47,.34) 100%);
}

/* Water surface drifting along the bottom edge. Two sine paths are redrawn
   per frame in opposite directions; both are filled in the page colour so the
   hero dissolves into the section beneath it. */
/* Wave and clearance are sized against both axes: on a short window the
   viewport-height term wins, so the hero still fits one screen instead of
   being pushed past it by a wave scaled to the width. */
.sg-hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2;
  width: 100%; height: var(--wave-h); pointer-events: none;
}

.sg-hero__inner {
  position: relative; z-index: 3; width: 100%;
  padding-block: clamp(28px, 6vh, 96px) calc(var(--wave-h) + clamp(30px, 4.5vh, 72px));
}
.sg-hero__content { max-width: 730px; color: #fff; }
.sg-hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  color: #EAF6F2; font-family: var(--sg-font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: 999px;
}
.sg-hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #F5A25D; }
.sg-home .sg-hero h1 {
  color: #fff; font-size: clamp(2.25rem, 5.1vw, 4.25rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.025em; margin: 1.35rem 0 0;
}
.sg-hero h1 em { font-family: var(--sg-font-quote); font-style: italic; font-weight: 500; color: var(--sg-green-soft); }
.sg-hero__lede {
  font-size: clamp(1rem, 1.3vw, 1.19rem); color: #D3E7E0 !important;
  line-height: 1.62; max-width: 60ch; margin: 1.35rem 0 0;
}
.sg-hero__lede strong { color: #fff; font-weight: 700; }
.sg-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* Hero content lifts in on load */
.sg-hero__in { opacity: 0; transform: translateY(16px); animation: sgFadeUp .75s ease forwards; }
.sg-hero__in:nth-child(1) { animation-delay: .05s; }
.sg-hero__in:nth-child(2) { animation-delay: .15s; }
.sg-hero__in:nth-child(3) { animation-delay: .25s; }
.sg-hero__in:nth-child(4) { animation-delay: .35s; }
@keyframes sgFadeUp { to { opacity: 1; transform: none; } }

.sg-hero__dots {
  position: absolute; left: 0; right: 0; z-index: 4;
  bottom: clamp(58px, min(9vw, 12vh), 140px);
  display: flex; justify-content: center; gap: .5rem;
}
.sg-hero__dot {
  width: 30px; height: 3px; border-radius: 3px; border: 0; padding: 0;
  background: rgba(255,255,255,.35); cursor: pointer; transition: background .2s;
}
.sg-hero__dot.is-active { background: var(--sg-orange); }

@media (prefers-reduced-motion: reduce) {
  .sg-hero__img.is-active { animation: none; }
  .sg-hero__in { opacity: 1; transform: none; animation: none; }
}

/* ---------- Stat strip under hero ---------- */
.sg-stats { background: var(--sg-green); color: #fff; }
.sg-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
}
.sg-stats__item {
  padding: clamp(26px, 4vw, 46px) 1.2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}
.sg-stats__item:last-child { border-right: 0; }
.sg-stats__num {
  font-family: var(--sg-font-head); font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff;
}
.sg-stats__num .plus { color: var(--sg-orange); }
.sg-stats__label {
  font-size: .8rem; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.72) !important; margin: .6rem 0 0; font-weight: 600;
}
.sg-stats__foot {
  text-align: center; padding: 0 0 1.6rem; font-family: var(--sg-font-head);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.5) !important; margin: 0;
}
@media (max-width: 700px) {
  .sg-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .sg-stats__item:nth-child(2) { border-right: 0; }
  .sg-stats__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}

/* ==========================================================================
   FEATURE / EVENT BANNER  (Navkumbh · Halma)
   ========================================================================== */
.sg-feature {
  position: relative; border-radius: var(--sg-radius-lg); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end; box-shadow: var(--sg-shadow-lg);
}
.sg-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sg-feature__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,32,26,.95) 0%, rgba(12,62,50,.88) 38%, rgba(14,107,87,.42) 72%, rgba(21,33,29,.35) 100%);
}
.sg-feature__body { position: relative; padding: clamp(30px, 5vw, 56px); color: #fff; max-width: 640px; }
.sg-feature__body h3 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: .5rem; }
.sg-feature__date {
  display: inline-block; font-family: var(--sg-font-quote); font-style: italic;
  color: var(--sg-green-soft) !important; font-size: 1.05rem; margin-bottom: 1.3rem;
}
.sg-feature__desc { color: rgba(255,255,255,.85) !important; margin-bottom: 1.5rem; }

/* ==========================================================================
   PROGRAMS
   ========================================================================== */
.sg-programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 28px); }
@media (max-width: 980px) { .sg-programs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sg-programs { grid-template-columns: 1fr; } }

.sg-program {
  position: relative; display: flex; flex-direction: column;
  background: var(--sg-white); border: 1px solid var(--sg-cream-2);
  border-radius: var(--sg-radius); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sg-program:hover { transform: translateY(-5px); box-shadow: var(--sg-shadow-lg); border-color: var(--sg-green-soft); }
/* The source artwork is square, with the programme name baked in below the
   icon. Crop to the top ~64% so only the line-art icon shows and the card's
   own typographic title isn't duplicated. */
/* The source artwork is square, with the programme name set into the image
   below a line-art icon. Each icon sits at a slightly different scale and
   offset, so the view passes per-image --iw / --im (measured from the art) to
   render every icon at one size and keep the baked-in label outside the box —
   the card supplies its own typographic title instead. */
.sg-program__media {
  aspect-ratio: 100 / 46; overflow: hidden;
  background: var(--sg-green-tint);
  border-bottom: 1px solid var(--sg-cream-2);
}
.sg-program__media img {
  width: var(--iw, 67%); height: auto; display: block; margin: var(--im, 0) auto 0;
  transition: transform .45s ease;
}
.sg-program:hover .sg-program__media img { transform: scale(1.06); }
.sg-program__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.sg-program__num {
  font-family: var(--sg-font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; color: var(--sg-orange); margin-bottom: .5rem;
}
.sg-program__body h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.sg-program__body p { font-size: .95rem; flex: 1; margin-bottom: 1.1rem; }
.sg-program__link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--sg-font-head); font-weight: 600; font-size: .93rem; color: var(--sg-green);
}
.sg-program__link i { transition: transform .2s ease; }
.sg-program:hover .sg-program__link i { transform: translateX(4px); }
.sg-program__link::after { content: ""; position: absolute; inset: 0; } /* full-card click target */

/* ==========================================================================
   APPROACH (Holistic rural development)
   ========================================================================== */
.sg-approach { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); counter-reset: step; }
@media (max-width: 900px) { .sg-approach { grid-template-columns: 1fr; } }
.sg-step {
  position: relative; background: var(--sg-white); border-radius: var(--sg-radius);
  padding: clamp(26px, 3vw, 38px); border: 1px solid var(--sg-cream-2);
}
.sg-step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--sg-font-head); font-size: 2.6rem; font-weight: 800;
  color: var(--sg-green-tint); line-height: 1; display: block; margin-bottom: .6rem;
}
.sg-step h3 { font-size: 1.24rem; margin-bottom: .7rem; }
.sg-step p { font-size: .96rem; margin-bottom: 0; }
.sg-step__rule { width: 34px; height: 3px; background: var(--sg-orange); border-radius: 3px; margin-bottom: 1.1rem; }

/* ==========================================================================
   IMPACT — the five J's (replaces the flat Stats-1.png export)
   ========================================================================== */
.sg-five {
  background: var(--sg-ink);
  border-radius: var(--sg-radius-lg);
  box-shadow: var(--sg-shadow-lg);
  overflow: hidden;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1080px) { .sg-five { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .sg-five { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .sg-five { grid-template-columns: 1fr; } }

.sg-j {
  padding: clamp(24px, 2.6vw, 36px) clamp(18px, 2vw, 28px);
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column;
}
.sg-j:last-child { border-right: 0; }
/* Trailing hairlines look like mistakes once the grid rewraps; the JS-free
   fix is to let the container clip them. */
.sg-five { border-bottom: 0; }

.sg-j__icon {
  width: 46px; height: 46px; margin-bottom: 1rem;
  color: var(--sg-green-soft); flex: 0 0 auto;
}
.sg-j__icon svg { width: 100%; height: 100%; display: block; }

.sg-home .sg-j__name {
  font-family: var(--sg-font-head); font-size: 1.5rem; font-weight: 700;
  color: #fff; line-height: 1; letter-spacing: -0.01em; margin: 0;
}
.sg-j__en {
  font-size: .74rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sg-green-soft) !important; margin: .4rem 0 0; font-weight: 600;
  line-height: 1.35;
  /* "Water structures" wraps to two lines; reserving the space keeps every
     column's divider and first figure on the same baseline. */
  min-height: 2.7em;
}
.sg-j__rule { height: 1px; background: rgba(255,255,255,.12); margin: 1.15rem 0; }

.sg-j__stat { margin-bottom: .9rem; }
.sg-j__stat:last-child { margin-bottom: 0; }
.sg-j__num {
  font-family: var(--sg-font-head); font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.02em;
  display: block;
}
.sg-j__label {
  font-size: .82rem; color: rgba(255,255,255,.62) !important;
  margin: .3rem 0 0; line-height: 1.45;
}
.sg-j__sub {
  display: block; font-size: .76rem; color: var(--sg-green-soft) !important;
  margin-top: .15rem;
}

/* ==========================================================================
   GET INVOLVED
   ========================================================================== */
.sg-involve { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: clamp(18px, 2.2vw, 26px); }
@media (max-width: 980px) { .sg-involve { grid-template-columns: 1fr; } }

.sg-involve__card {
  position: relative; border-radius: var(--sg-radius); padding: clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px;
  border: 1px solid var(--sg-cream-2); background: var(--sg-white);
  transition: transform .22s ease, box-shadow .22s ease;
}
.sg-involve__card:hover { transform: translateY(-4px); box-shadow: var(--sg-shadow-lg); }
.sg-involve__card--feature {
  background: linear-gradient(135deg, var(--sg-green) 0%, var(--sg-green-dark) 100%);
  border-color: transparent; color: #fff;
}
.sg-involve__card--feature h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.sg-involve__card--feature p { color: rgba(255,255,255,.82) !important; }
.sg-involve__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sg-orange-pale); color: var(--sg-orange-dark); font-size: 1.35rem; margin-bottom: auto;
}
.sg-involve__card--feature .sg-involve__icon { background: rgba(255,255,255,.16); color: #fff; }
.sg-involve__card h3 { font-size: 1.3rem; margin: 1.6rem 0 .4rem; }
.sg-involve__card p { font-size: .95rem; margin-bottom: 1.2rem; }

/* ==========================================================================
   LOGO MARQUEE (partners · interns)
   ========================================================================== */
.sg-marquee { position: relative; overflow: hidden; padding: .5rem 0; }
.sg-marquee::before, .sg-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.sg-marquee::before { left: 0;  background: linear-gradient(to right, var(--sg-paper), transparent); }
.sg-marquee::after  { right: 0; background: linear-gradient(to left,  var(--sg-paper), transparent); }
.sg-marquee--on-tint::before { background: linear-gradient(to right, var(--sg-green-tint), transparent); }
.sg-marquee--on-tint::after  { background: linear-gradient(to left,  var(--sg-green-tint), transparent); }
.sg-marquee__track { display: flex; gap: clamp(28px, 4vw, 56px); width: max-content; animation: sgMarquee 46s linear infinite; }
.sg-marquee:hover .sg-marquee__track { animation-play-state: paused; }
@keyframes sgMarquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.sg-marquee__item {
  flex: 0 0 auto; width: clamp(84px, 9vw, 112px); height: 66px;
  display: flex; align-items: center; justify-content: center;
  padding: 4px 0;
}
/* Sizing the image box explicitly and letting object-fit letterbox inside it
   is what prevents clipping: a percentage max-height against an auto-height
   box does not resolve, so tall crests used to overflow and get cut off by
   the marquee's own overflow:hidden. */
.sg-marquee__item img {
  /* shivganga.css carries a global `img { object-fit: cover !important }`,
     which crops these marks to a letterbox slice. Only !important beats it. */
  width: 100%; height: 100%; object-fit: contain !important;
  /* Many partner logos ship on an opaque white plate; multiply drops that
     rectangle into the section colour instead of showing a white box. */
  mix-blend-mode: multiply;
  filter: grayscale(1); opacity: .62; transition: filter .25s ease, opacity .25s ease;
}
.sg-marquee__item:hover img { filter: grayscale(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .sg-marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; } }

/* ==========================================================================
   TESTIMONIALS — one lead endorsement, then supporting voices
   ========================================================================== */
.sg-voices { display: grid; gap: clamp(18px, 2.2vw, 28px); }

.sg-voice-lead {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--sg-green) 0%, var(--sg-green-dark) 100%);
  border-radius: var(--sg-radius-lg);
  padding: clamp(30px, 4.2vw, 62px);
  box-shadow: var(--sg-shadow-lg);
}
/* Oversized closing mark, kept faint so it reads as texture, not content */
.sg-voice-lead::before {
  content: "\201D";
  position: absolute; right: clamp(10px, 3vw, 54px); top: 0;
  font-family: var(--sg-font-quote); font-size: clamp(10rem, 18vw, 18rem);
  line-height: 1; color: rgba(255,255,255,.09); pointer-events: none;
}
.sg-voice-lead__chip {
  position: relative;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.26);
  color: #EAF6F2; font-family: var(--sg-font-head); font-weight: 600;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .42rem .95rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.sg-voice-lead blockquote {
  position: relative; margin: 0 0 1.9rem; max-width: 44ch;
  font-family: var(--sg-font-quote); font-style: italic;
  font-size: clamp(1.18rem, 2.05vw, 1.72rem); line-height: 1.5; color: #fff;
}

.sg-voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 28px); }
@media (max-width: 940px) { .sg-voice-grid { grid-template-columns: 1fr; } }

.sg-voice {
  background: var(--sg-white); border: 1px solid var(--sg-cream-2);
  border-radius: var(--sg-radius); padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sg-voice:hover { transform: translateY(-4px); box-shadow: var(--sg-shadow-lg); border-color: var(--sg-green-soft); }
.sg-voice blockquote {
  margin: 0 0 1.5rem; flex: 1;
  font-family: var(--sg-font-quote); font-style: italic;
  font-size: 1rem; line-height: 1.72; color: var(--sg-ink-2);
}

/* Attribution: a monogram stands in for portraits we do not have */
.sg-voice__by { display: flex; align-items: center; gap: .85rem; position: relative; }
.sg-mono {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sg-font-head); font-weight: 700; font-size: .92rem; letter-spacing: .03em;
}
.sg-voice-lead .sg-mono { width: 54px; height: 54px; font-size: 1.02rem; background: rgba(255,255,255,.18); color: #fff; }
.sg-voice .sg-mono { background: var(--sg-green-tint); color: var(--sg-green); }

.sg-voice__name { font-family: var(--sg-font-head); font-weight: 700; display: block; line-height: 1.25; }
.sg-voice__role { font-size: .84rem; display: block; margin-top: .12rem; line-height: 1.4; }
.sg-voice-lead .sg-voice__name { color: #fff; font-size: 1.08rem; }
.sg-voice-lead .sg-voice__role { color: var(--sg-green-soft); }
.sg-voice .sg-voice__name { color: var(--sg-ink); }
.sg-voice .sg-voice__role { color: var(--sg-muted); }

/* ==========================================================================
   AWARDS
   ========================================================================== */
.sg-awards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 26px); }
@media (max-width: 940px) { .sg-awards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sg-awards { grid-template-columns: 1fr; } }
.sg-award {
  background: var(--sg-white); border: 1px solid var(--sg-cream-2);
  border-radius: var(--sg-radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.sg-award:hover { transform: translateY(-4px); box-shadow: var(--sg-shadow-lg); }
.sg-award__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sg-cream); }
/* Every award photograph is taller than this box, and one is portrait, so a
   centred crop cut the heads off and left chests and hands. These are
   ceremony shots with the faces near the top, so anchor the crop there. */
.sg-award__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.sg-award__body { padding: 1.35rem 1.4rem 1.6rem; }
.sg-award__body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.sg-award__body p { font-size: .9rem; margin-bottom: 0; }
.sg-award__tag {
  display: inline-block; font-family: var(--sg-font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sg-orange-dark);
  background: var(--sg-orange-pale); padding: .3rem .7rem; border-radius: 999px; margin-bottom: .7rem;
}

/* ==========================================================================
   SOCIAL VENTURES
   ========================================================================== */
.sg-ventures { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 26px); }
@media (max-width: 780px) { .sg-ventures { grid-template-columns: 1fr; } }
.sg-venture {
  background: var(--sg-white); border: 1px solid var(--sg-cream-2); border-radius: var(--sg-radius);
  padding: clamp(26px, 3vw, 36px); text-align: center; display: flex; flex-direction: column;
  align-items: center; transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.sg-venture:hover { transform: translateY(-4px); box-shadow: var(--sg-shadow-lg); border-color: var(--sg-green-soft); }
.sg-venture__logo { height: 92px; display: grid; place-items: center; margin-bottom: 1.2rem; }
.sg-venture__logo img { max-height: 92px; width: auto; max-width: 190px; object-fit: contain !important; }
.sg-venture h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.sg-venture p { font-size: .9rem; margin-bottom: 1.1rem; }
.sg-venture__link { font-family: var(--sg-font-head); font-weight: 600; font-size: .9rem; color: var(--sg-green); }

/* ==========================================================================
   CLOSING CTA
   ========================================================================== */
.sg-cta {
  background: linear-gradient(135deg, var(--sg-ink) 0%, #1C302A 55%, var(--sg-green-dark) 100%);
  color: #fff; text-align: center;
}
.sg-cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 20ch; margin-inline: auto; }
.sg-cta p { color: rgba(255,255,255,.78) !important; max-width: 56ch; margin: 0 auto 2rem; font-size: 1.06rem; }
.sg-cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ---------- Reveal on scroll ---------- */
.sg-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.sg-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .sg-reveal { opacity: 1; transform: none; transition: none; } }
