/* ============================================
   Sarah Rand Strategies — Global Styles
   Colors: Policy Green #24422d, Deep Policy Green #15261a,
           Soft Coral #ffb8a4, Signal Red #e73d00,
           Soft Coral Light #f7dad5, Civic Linen #fffcf8
   Fonts:  Bogart (headlines), DM Sans (body)
   ============================================ */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --policy-green: #24422d;
  --deep-green: #15261a;
  --soft-coral: #ffb8a4;
  --signal-red: #e73d00;
  --coral-light: #f7dad5;
  --civic-linen: #fffcf8;
  --text-dark: #15261a;
  --text-light: #fffcf8;
  --font-headline: 'Bogart', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--civic-linen);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background: var(--signal-red);
  color: #fff;
  border-color: var(--signal-red);
}
.btn--primary:hover {
  background: #c63400;
  border-color: #c63400;
}
.btn--outline {
  background: transparent;
  color: var(--policy-green);
  border-color: var(--policy-green);
}
.btn--outline:hover {
  background: var(--policy-green);
  color: var(--civic-linen);
}
.btn--outline-light {
  background: transparent;
  color: var(--civic-linen);
  border-color: var(--civic-linen);
}
.btn--outline-light:hover {
  background: var(--civic-linen);
  color: var(--deep-green);
}

/* ============================================
   DECORATIVE SHAPES — Petal & Star motifs
   ============================================ */

/* Four-pointed star (the center of the logo icon / dot of the i) */
.deco-star {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--signal-red);
  clip-path: polygon(
    50% 0%, 62% 38%, 100% 50%, 62% 62%,
    50% 100%, 38% 62%, 0% 50%, 38% 38%
  );
  flex-shrink: 0;
}
.deco-star--coral { background: var(--soft-coral); }
.deco-star--linen { background: var(--civic-linen); }
.deco-star--green { background: var(--policy-green); }
.deco-star--sm { width: 10px; height: 10px; }
.deco-star--md { width: 20px; height: 20px; }
.deco-star--lg { width: 32px; height: 32px; }

/* Single petal shape (one of the four petals from the logo flower) */
.deco-petal {
  display: block;
  width: 60px;
  height: 60px;
  background: var(--signal-red);
  border-radius: 50% 50% 50% 0;
  opacity: 0.15;
  flex-shrink: 0;
}
.deco-petal--coral { background: var(--soft-coral); opacity: 0.3; }
.deco-petal--green { background: var(--policy-green); opacity: 0.12; }

/* Section divider with star */
.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.5rem 0;
}
.star-divider__line {
  width: 40px;
  height: 1.5px;
  background: var(--soft-coral);
}

/* Petal cluster — decorative background element */
.petal-cluster {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}
.petal-cluster--sm { width: 80px; height: 80px; }
.petal-cluster--lg { width: 160px; height: 160px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--civic-linen);
  border-bottom: 1px solid rgba(36,66,45,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(21,38,26,0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.site-header__logo img {
  height: 72px;
  width: auto;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-right a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--policy-green);
  transition: color 0.2s;
}
.header-right a:hover { color: var(--signal-red); }
.header-right .btn { padding: 0.6rem 1.8rem; font-size: 0.85rem; color: #fff; }

/* LinkedIn icon */
.linkedin-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.linkedin-link svg {
  width: 26px;
  height: 26px;
  fill: var(--policy-green);
  transition: fill 0.2s;
}
.linkedin-link:hover svg { fill: var(--signal-red); }

@media (max-width: 600px) {
  .site-header__inner { height: 90px; }
  .site-header__logo img { height: 70px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 10rem 0 6rem;
  background: var(--civic-linen);
  overflow: hidden;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-red);
  margin-bottom: 1rem;
}
.hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--deep-green);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--policy-green);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  max-width: 520px;
}
.hero__image {
  position: relative;
}
.hero__image img {
  width: 100%;
  object-fit: cover;
  max-height: 560px;
  border-radius: 16px;
}
.hero__image::before {
  display: none;
}

@media (max-width: 900px) {
  .hero { padding: 7rem 0 4rem; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero__tagline { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__image { order: -1; max-width: 400px; margin: 0 auto; }
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
  background: var(--deep-green);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.pull-quote__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(36,66,45,0.4);
  border-radius: 32px 32px 32px 4px;
}
.pull-quote::before,
.pull-quote::after,
.pull-quote__inner::before,
.pull-quote__inner::after,
.pull-quote__text::before,
.pull-quote__text::after {
  display: none !important;
  content: none !important;
}
.pull-quote__text {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--civic-linen);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.2rem;
}
.pull-quote__highlight {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  color: var(--soft-coral);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.pull-quote__attribution {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--soft-coral);
  font-weight: 500;
}

/* ============================================
   CONTENT SECTIONS (alternating)
   ============================================ */
.section {
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.section--linen { background: var(--civic-linen); }
.section--green { background: var(--policy-green); color: var(--civic-linen); }
.section--coral-light { background: var(--coral-light); }
.section--deep-green { background: var(--deep-green); color: var(--civic-linen); }

.section__header {
  margin-bottom: 2rem;
}
.section__title {
  font-family: var(--font-headline);
  margin-bottom: 0.5rem;
}
/* Accent line under section titles — spans width of text */
.section__title--accent {
  display: inline-block;
  border-bottom: 3px solid var(--signal-red);
  padding-bottom: 0.6rem;
}
.section__title--accent::after {
  display: none;
}
.section--green .section__title--accent,
.section--deep-green .section__title--accent {
  border-bottom-color: var(--soft-coral);
}

.section__body {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
}
.section--green .section__body,
.section--deep-green .section__body {
  color: rgba(255,252,248,0.9);
}

/* Two-column layout */
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .section__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Section background petal decorations */
.section__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section__content {
  position: relative;
  z-index: 1;
}

/* ============================================
   SERVICES SNAPSHOT
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--civic-linen);
  border-radius: 12px;
  padding: 2rem 2rem 2rem 2.2rem;
  border-left: 4px solid var(--signal-red);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(21,38,26,0.08);
}
.service-card__title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
}
.service-card__desc {
  font-size: 0.92rem;
  color: var(--policy-green);
  line-height: 1.65;
}

/* ============================================
   WORK / CASE HIGHLIGHTS
   ============================================ */
.work-list {
  margin-top: 2rem;
}
.work-item {
  padding: 1.5rem 0;
  padding-left: 2rem;
  border-bottom: 1px solid rgba(255,252,248,0.15);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,252,248,0.9);
  position: relative;
}
/* Star bullet for work items */
.work-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.85rem;
  width: 10px;
  height: 10px;
  background: var(--soft-coral);
  clip-path: polygon(
    50% 0%, 62% 38%, 100% 50%, 62% 62%,
    50% 100%, 38% 62%, 0% 50%, 38% 38%
  );
}
.work-item:last-child { border-bottom: none; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 5.5rem 0;
  background: var(--civic-linen);
}
.testimonials__title {
  text-align: center;
  margin-bottom: 3rem;
}
/* Center the Kind Words title accent */
.testimonials__title.section__title--accent {
  display: block;
  border-bottom: none;
}
.testimonials__title.section__title--accent span {
  display: inline-block;
  border-bottom: 3px solid var(--signal-red);
  padding-bottom: 0.6rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* Testimonial cards — petal / chat-bubble shape from the logo */
.testimonial-card {
  background: #fff;
  border-radius: 24px 24px 24px 4px;
  padding: 2.2rem 2.2rem 2rem;
  box-shadow: 0 2px 16px rgba(21,38,26,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
/* Small petal "tail" to reinforce the speech-bubble feel */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 0 0 0 12px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--policy-green);
  margin-bottom: 1.2rem;
  font-style: italic;
  flex-grow: 1;
}
.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-green);
}
.testimonial-card__role {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--policy-green);
  opacity: 0.75;
}

/* Three-card row layout */
.testimonials__grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .testimonials__grid,
  .testimonials__grid--three {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 5.5rem 0;
  background: var(--coral-light);
  position: relative;
  overflow: hidden;
}
.contact-section__deco {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: var(--soft-coral);
  border-radius: 50% 50% 50% 0;
  opacity: 0.25;
  transform: rotate(-30deg);
  pointer-events: none;
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info h2 {
  font-family: var(--font-headline);
  color: var(--deep-green);
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 1.05rem;
  color: var(--policy-green);
  line-height: 1.75;
}
.contact-info__links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--deep-green);
  transition: color 0.2s;
}
.contact-info__link:hover { color: var(--signal-red); }
.contact-info__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--civic-linen);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(21,38,26,0.06);
}
.contact-form h3 {
  font-family: var(--font-headline);
  color: var(--deep-green);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--policy-green);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid rgba(36,66,45,0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--policy-green);
  box-shadow: 0 0 0 3px rgba(36,66,45,0.08);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .btn {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--deep-green);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative petals in CTA */
.cta-band__deco-left {
  position: absolute;
  bottom: -10px;
  left: 6%;
  width: 80px;
  height: 80px;
  background: var(--policy-green);
  border-radius: 50% 50% 50% 0;
  opacity: 0.35;
  transform: rotate(90deg);
}
.cta-band__deco-right {
  position: absolute;
  top: -10px;
  right: 8%;
  width: 60px;
  height: 60px;
  background: var(--policy-green);
  border-radius: 50% 50% 50% 0;
  opacity: 0.25;
  transform: rotate(-45deg);
}
.cta-band__headline {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--civic-linen);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-band__sub {
  font-size: 1.1rem;
  color: rgba(255,252,248,0.85);
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   CLIENT LIST
   ============================================ */
.client-list__heading {
  margin-top: 2.5rem;
  margin-bottom: 0.1rem !important;
  padding-bottom: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-coral);
}
.client-list {
  margin-top: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,252,248,0.9);
  line-height: 1;
}
.client-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.client-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--soft-coral);
  clip-path: polygon(
    50% 0%, 62% 38%, 100% 50%, 62% 62%,
    50% 100%, 38% 62%, 0% 50%, 38% 38%
  );
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--deep-green);
  color: rgba(255,252,248,0.7);
  padding: 3.5rem 0 2rem;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-footer__logo img {
  height: 56px;
  margin-bottom: 1rem;
}
.site-footer__tagline {
  font-size: 0.85rem;
  max-width: 420px;
  line-height: 1.6;
  white-space: nowrap;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
.site-footer__links a {
  font-size: 0.88rem;
  color: rgba(255,252,248,0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__links a:hover { color: var(--soft-coral); }
.site-footer__links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.site-footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,252,248,0.1);
}

@media (max-width: 600px) {
  .site-footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .site-footer__links { align-items: center; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* Header nav link */
.header-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--policy-green);
  transition: color 0.2s;
}
.header-nav-link:hover { color: var(--signal-red); }

/* Opening hook */
.about-hook {
  padding: 10rem 0 5rem;
  background: var(--civic-linen);
}
.about-hook__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-hook__headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-hook__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--policy-green);
  max-width: 520px;
}
.about-hook__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-hook { padding: 7rem 0 3rem; }
  .about-hook__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hook__image { order: -1; max-width: 500px; margin: 0 auto; }
}

/* Bio layout — text left, photo right */
.about-bio {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}
.about-bio__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-bio { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-bio__image { max-width: 400px; }
}

/* Credentials list */
.credentials-list {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.credentials-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,252,248,0.9);
  position: relative;
}
.credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--soft-coral);
  clip-path: polygon(
    50% 0%, 62% 38%, 100% 50%, 62% 62%,
    50% 100%, 38% 62%, 0% 50%, 38% 38%
  );
}

/* Network accordion — native details/summary */
.network-accordion {
  border: none;
}
.network-accordion__toggle {
  cursor: pointer;
  list-style: none;
}
.network-accordion__toggle::-webkit-details-marker {
  display: none;
}
.network-accordion__toggle::marker {
  display: none;
  content: '';
}
.network-accordion__plus {
  color: var(--policy-green);
  font-weight: 300;
  margin-right: 0.3rem;
}
/* Network section accent override — policy green instead of red */
.section--coral-light .section__title--accent {
  border-bottom-color: var(--policy-green);
}
.network-accordion[open] .network-accordion__plus::after {
  content: '';
}
.network-accordion__content {
  padding-top: 0.5rem;
}

/* Network member list */
.network-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem 2rem;
}
.network-member {
  padding: 1rem 0;
}
@media (max-width: 600px) {
  .network-list { grid-template-columns: 1fr; }
}
.network-member__name {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: var(--deep-green);
  margin-bottom: 0.15rem;
}
.network-member__role {
  font-size: 0.9rem;
  color: var(--policy-green);
  opacity: 0.75;
  margin-bottom: 0.5rem;
}
.network-member__links {
  display: flex;
  gap: 1rem;
}
.network-member__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--policy-green);
  text-decoration: underline;
  text-decoration-color: var(--policy-green);
  transition: color 0.2s;
}
.network-member__links a:hover {
  color: var(--deep-green);
}

/* Strengths — 3 top row, 2 centered bottom row */
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.strengths-grid .strength-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 240px;
}
@media (max-width: 768px) {
  .strengths-grid .strength-card {
    flex: 1 1 100%;
  }
}
.strength-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border-top: 4px solid var(--signal-red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.strength-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(21,38,26,0.08);
}
.strength-card__title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
}
.strength-card__desc {
  font-size: 0.92rem;
  color: var(--policy-green);
  line-height: 1.65;
}

/* About the brand — closing section */
.about-brand {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.about-brand__logo {
  height: 140px;
  width: auto;
  margin: 0 auto 2rem;
}
.about-brand__dedication {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,252,248,0.15);
  font-size: 0.95rem;
  color: rgba(255,252,248,0.8);
  font-style: italic;
  line-height: 1.7;
}
.about-brand__names {
  margin-top: 0.5rem;
  font-weight: 600;
  font-style: normal;
  color: var(--soft-coral);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
