@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.dreamLead,
.footerBrand strong {
  font-family: "Poppins", Arial, sans-serif;
}

.nav {
  height: 84px;
  padding: 0 0 0 max(24px, 50vw - 590px);
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid #ded9d0;
  box-shadow: 0 2px 10px #17120e12;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.brand { flex: 0 0 auto; height: 84px; gap: 12px; color: var(--green); font-size: 20px; letter-spacing: -.02em; }
.brand img { width: 54px; height: 54px; border-radius: 50%; }
.nav nav { height: 84px; margin-left: auto; gap: clamp(18px, 2.1vw, 34px); }

.nav nav a {
  height: 84px;
  display: inline-flex;
  align-items: center;
  color: #313830;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease;
}

.nav nav a:hover { color: var(--rust); }

.nav nav::after {
  content: "";
  order: 1;
  width: 14px;
  height: 14px;
  margin: 0 4px 0 2px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 6px 6px 0 -5px var(--green);
  transform: translate(-2px, -2px);
  opacity: .8;
}

.nav .navCta {
  order: 2;
  align-self: stretch;
  height: 84px;
  min-width: 132px;
  padding: 0 24px;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: var(--rust);
  color: #fff;
  letter-spacing: .075em;
}

.nav .navCta:hover { background: #872c13; color: #fff; }
.nav a:focus-visible { outline: 3px solid var(--gold); outline-offset: -4px; }
.hero {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin-top: 84px;
  padding: 0;
  background: url("photo_5803048060614020791_y.jpg") center center / cover no-repeat;
}

.heroShade {
  display: block;
  background: linear-gradient(90deg, #12100dd9 0%, #17130eb5 35%, #17130e38 68%, transparent 100%);
}

.heroContent {
  display: block;
  width: min(1180px, 100% - 48px);
  margin: auto;
  padding: 0;
  position: relative;
  font-family: "Poppins", Arial, sans-serif;
}

.heroContent .eyebrow {
  margin-bottom: 14px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.heroContent h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.heroContent .heroText {
  max-width: 590px;
  margin-bottom: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.heroContent .actions { margin-top: 28px; align-items: center; }

.heroContent .button {
  min-height: 48px;
  padding: 14px 24px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.heroContent .primary { background: var(--rust); color: #fff; }
.heroContent .primary:hover { background: #872c13; }

.heroContent .ghost {
  min-height: auto;
  padding: 12px 10px;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.heroContent .button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.hero .scroll { display: none; }
html { scroll-padding-top: 84px; }

/* Editorial about section */
.about {
  position: relative;
  isolation: isolate;
  width: min(1280px, 100% - 48px);
  min-height: 860px;
  padding: 120px 0;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(70px, 8vw, 130px);
  row-gap: 24px;
  align-items: center;
}

.about::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / 3;
  width: min(100%, 520px);
  aspect-ratio: .82;
  justify-self: end;
  background: url("photo_5803048060614020792_y.jpg") center top / cover no-repeat;
  box-shadow: -38px 38px 0 #e8e9eb;
}

.about::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -230px;
  width: 420px;
  height: 420px;
  border: 46px solid #f2f3f3;
  border-radius: 50%;
}

.about > div:first-child {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.about .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  color: var(--rust);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.about .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--rust);
}

.about h2 {
  max-width: 650px;
  margin: 0;
  color: #17325b;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.aboutCopy {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  max-width: 640px;
  padding: 0;
  color: #334867;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.aboutCopy p { margin-bottom: 14px; }
.aboutCopy p:first-child { color: #334867; font-size: 17px; }
.aboutCopy p:last-child { color: #52627a; font-size: 15px; }

/* Image-led program cards */
.programSection {
  padding: 110px 0 120px;
  background: #f4f0e6;
  color: #17325b;
}

.programSection .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--rust);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.programSection .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--rust);
}

.programSection .sectionTitle {
  align-items: start;
  gap: 80px;
}

.programSection .sectionTitle h2 {
  flex: 1 1 55%;
  color: #17325b;
  font-family: "Poppins", Arial, sans-serif;
  max-width: 650px;
  font-size: 0;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.programSection .sectionTitle h2 br { display: none; }

.programSection .sectionTitle h2::after {
  content: "Programs rooted in dignity and self-reliance.";
  display: block;
  font-size: clamp(36px, 3.1vw, 46px);
}

.programSection .sectionTitle p {
  flex: 1 1 45%;
  max-width: 530px;
  padding-top: 10px;
  color: #52627a;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.programGrid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  border: 0;
}

.programGrid article {
  min-height: 440px;
  padding: 0 30px 34px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dedbd3;
  color: #17325b;
}

.programGrid article::before {
  content: "";
  width: calc(100% + 60px);
  height: 225px;
  margin: 0 -30px 28px;
  flex: 0 0 auto;
  background: linear-gradient(#15231126, #15231126), url("heroimage.jpg") center 52% / cover no-repeat;
}

.programGrid article:nth-child(2n)::before { background-position: center 44%; }
.programGrid article:nth-child(3n)::before { background-position: 62% center; }
.programGrid article:nth-child(1)::before {
  background-image: linear-gradient(#1523111f, #1523111f), url("photo_5803048060614020801_y.jpg");
  background-position: center 48%;
}
.programGrid article:nth-child(2)::before {
  background-image: linear-gradient(#1523111f, #1523111f), url("photo_5803048060614020795_y.jpg");
  background-position: center 48%;
}
.programGrid article:nth-child(3)::before {
  background-image: linear-gradient(#1523111f, #1523111f), url("photo_5803048060614020797_y.jpg");
  background-position: center 50%;
}
.programGrid article:nth-child(4)::before {
  background-image: linear-gradient(#1523111f, #1523111f), url("photo_5803048060614020794_y.jpg");
  background-position: center 50%;
}
.programGrid article:nth-child(5)::before {
  background-image: linear-gradient(#15231112, #15231112), url("photo_5812399711950934819_y.jpg");
  background-position: center 36%;
}
.programGrid article:nth-child(6)::before {
  background-image: linear-gradient(#1523111f, #1523111f), url("photo_5803048060614020799_y (1).jpg");
  background-position: center 58%;
}
.programGrid article span { display: none; }

.programGrid article h3 {
  margin: 0 0 12px;
  color: #17325b;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.18;
}

.programGrid article p {
  margin: 0;
  color: #52627a;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

/* Healing the Roots editorial feature */
.healingSection { background: #fffaf0; color: #17325b; }
.healingHero {
  width: 100%;
  height: clamp(460px, 58vw, 720px);
  object-fit: cover;
  object-position: center 42%;
}
.healingContent {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(70px, 9vw, 140px);
  padding-top: 110px;
  padding-bottom: 120px;
}
.healingHeading .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}
.healingHeading .eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--rust); }
.healingHeading h2 {
  margin: 0;
  color: #17325b;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.healingCopy { max-width: 700px; }
.healingCopy p { margin: 0 0 20px; color: #52627a; font-size: 15px; line-height: 1.85; }
.healingCopy .healingLead { color: #263e34; font-size: 19px; font-weight: 600; line-height: 1.7; }
.healingCopy blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  color: #17325b;
  background: #f1e2c5;
  border-left: 5px solid var(--rust);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.5;
}
.healingLink {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 15px 24px;
  color: #fff;
  background: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.healingLink:hover { background: #872c13; }
.healingLink:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (width <= 800px) {
  .healingHero { height: clamp(300px, 78vw, 480px); }
  .healingContent { grid-template-columns: 1fr; gap: 42px; padding-top: 78px; padding-bottom: 88px; }
  .healingHeading h2 { font-size: clamp(42px, 12vw, 58px); }
  .healingCopy .healingLead { font-size: 17px; }
  .healingCopy blockquote { padding: 22px 24px; }
}
/* Portrait composition: narrative left, book cover right */
.healingSection { padding: 112px 0 120px; }
.healingLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: center;
}
.healingContent {
  display: block;
  padding: 0;
}
.healingHeading { margin-bottom: 42px; }
.healingCopy { max-width: 720px; }
.healingVisual {
  position: relative;
  margin: 0;
  padding: 22px;
  background: #e6e8e2;
  box-shadow: 28px 28px 0 #f1e2c5;
}
.healingVisual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #ffffff66;
  pointer-events: none;
}
.healingVisual .healingHero {
  width: 100%;
  height: auto;
  max-height: 820px;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (width <= 800px) {
  .healingSection { padding: 78px 0 92px; }
  .healingLayout { grid-template-columns: 1fr; gap: 58px; }
  .healingContent { order: 1; padding: 0; }
  .healingVisual { order: 2; width: min(100%, 470px); justify-self: center; padding: 14px; box-shadow: 18px 18px 0 #f1e2c5; }
  .healingVisual .healingHero { height: auto; max-height: none; }
}
/* Future center editorial feature */
.dream {
  position: relative;
  padding: 130px 0 145px;
  background: #142b24;
  color: #fff;
  overflow: hidden;
}

.dream::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid #e3a62f33;
  border-radius: 50%;
}

.dreamInner {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(70px, 8vw, 125px);
  align-items: center;
}

.dreamMark {
  min-height: 560px;
  background: url("future1.jpg") center center / cover no-repeat;
  box-shadow: 0 28px 70px #06100c66;
}

.dreamMark img { display: none; }

.dreamMark::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22px;
  left: -22px;
  width: 72%;
  height: 68%;
  border: 2px solid #e3a62f99;
  border-radius: 0;
}

.dreamMark::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 62%;
  aspect-ratio: 16 / 9;
  background: url("future2.jpg") center center / cover no-repeat;
  border: 9px solid #142b24;
  box-shadow: 0 20px 48px #06100c80;
}

.dreamCopy { position: relative; z-index: 1; }

.dreamCopy .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #f1ba4e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.dreamCopy .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #f1ba4e;
}

.dreamCopy h2 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.dreamLead {
  max-width: 680px;
  margin-bottom: 20px;
  color: #f2d398;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.dreamCopy > p:not(.eyebrow, .dreamLead) {
  max-width: 680px;
  color: #d4ddd8;
  font-size: 15px;
  line-height: 1.8;
}

.dreamTags { gap: 10px; margin: 28px 0 34px; }
.dreamTags span { padding: 9px 14px; border-color: #ffffff38; background: #ffffff08; font-size: 11px; letter-spacing: .04em; }
.dreamCopy .button { border-radius: 2px; background: var(--rust); color: #fff; text-transform: uppercase; letter-spacing: .04em; }
.dreamCopy .button:hover { background: #872c13; }

@media (width <= 980px) {
  .brand span { font-size: 17px; }
  .nav nav { gap: 18px; }
  .nav nav a { font-size: 10px; }
  .nav .navCta { min-width: 110px; padding: 0 18px; }
  .programGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dreamInner { grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: 64px; }
  .dreamMark { min-height: 500px; }
  .dreamMark::after { right: -28px; width: 68%; }
}

@media (width <= 800px) {
  .nav { height: 116px; padding: 0; align-items: flex-start; }
  .brand { height: 68px; max-width: calc(100% - 106px); margin-left: 20px; }
  .brand span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 17px; }
  .brand img { width: 44px; height: 44px; }

  .nav nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    padding: 0 20px;
    gap: 25px;
    border-top: 1px solid #e8e2d8;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav nav::-webkit-scrollbar { display: none; }
  .nav nav a:not(.navCta) { display: inline-flex; height: 48px; }
  .nav nav::after { display: none; }

  .nav .navCta {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 6;
    width: 102px;
    min-width: 102px;
    height: 68px;
    padding: 0 12px;
  }

  .hero {
    height: auto;
    min-height: max(640px, calc(100svh - 116px));
    aspect-ratio: auto;
    margin-top: 116px;
    padding: 56px 0;
    background-position: 58% center;
  }
  .heroContent { width: calc(100% - 40px); padding: 0; }
  .heroContent .eyebrow { margin-bottom: 12px; font-size: 10px; line-height: 1.5; }
  .heroContent h1 { max-width: 520px; margin-bottom: 18px; font-size: clamp(32px, 9vw, 42px); line-height: 1.1; }
  .heroContent .heroText { max-width: 500px; font-size: 14px; line-height: 1.65; }
  .heroContent .actions { flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 24px; }
  .heroContent .button { min-height: 46px; padding: 13px 20px; font-size: 11px; }
  .heroContent .ghost { min-height: 42px; padding-left: 4px; }
  .heroShade { background: linear-gradient(90deg, #12100de8 0%, #17130e9e 70%, #17130e4d 100%); }
  html { scroll-padding-top: 116px; }

  .about {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 80px 0 90px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 42px;
  }

  .about::before {
    grid-column: 1;
    grid-row: 2;
    width: calc(100% - 20px);
    justify-self: start;
    box-shadow: 20px 20px 0 #e8e9eb;
  }

  .about::after { width: 220px; height: 220px; top: 20px; right: -140px; border-width: 28px; }
  .about > div:first-child { grid-column: 1; grid-row: 1; }
  .aboutCopy { grid-column: 1; grid-row: 3; }
  .about h2 { font-size: clamp(40px, 12vw, 58px); }

  .programSection { padding: 80px 0 90px; }
  .programSection .sectionTitle { display: block; }
  .programSection .sectionTitle h2 { font-size: 0; }
  .programSection .sectionTitle h2::after { font-size: clamp(32px, 8.8vw, 40px); }
  .programSection .sectionTitle p { padding-top: 18px; }
  .programGrid { margin-top: 42px; grid-template-columns: 1fr; gap: 22px; }
  .programGrid article { min-height: 410px; }

  .dream { padding: 90px 0 105px; }
  .dreamInner { grid-template-columns: 1fr; gap: 105px; }
  .dreamMark { width: 100%; min-height: 0; aspect-ratio: 4 / 3; }
  .dreamMark::before { top: -14px; left: -14px; }
  .dreamMark::after { right: -8px; bottom: -62px; width: 67%; border-width: 6px; }
  .dreamCopy h2 { font-size: clamp(38px, 10.5vw, 52px); }
  .dreamLead { font-size: 18px; }
}

@media (width <= 420px) { .brand span { font-size: 15px; } }

/* PayPal donation action */
.paypalButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 15px 28px;
  background: #ffc439;
  color: #172b22;
  box-shadow: 0 10px 24px #052f4d30;
  transition: background-color .18s ease, transform .18s ease;
}
.paypalButton:hover { background: #f2b72f; color: #172b22; transform: translateY(-1px); }
.paypalButton:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.paypalButton svg { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; }
/* Image-led participation cards */
.participate { padding: 110px 0 120px; }
.participate > h2 { max-width: 820px; color: #17325b; font-size: clamp(42px, 5vw, 66px); font-weight: 700; }
.participateGrid { gap: 28px; margin-top: 58px; }
.participateGrid article,
.participateGrid article:nth-child(2) {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dedbd3;
  border-top: 0;
  border-radius: 0;
  background: #fff;
}
.participatePhoto {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}
.participateGrid article:first-child .participatePhoto { object-position: center 42%; }
.participateGrid article:nth-child(2) .participatePhoto {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #ead7ad;
}
.participateBody { padding: 38px 42px 42px; }
.participateBody .number { color: var(--rust); font-weight: 700; }
.participateBody h3 { margin: 20px 0 14px; color: #17325b; font-size: clamp(26px, 2.3vw, 34px); font-weight: 700; }
.participateBody p { color: #52627a; font-size: 15px; line-height: 1.75; }
.participateBody a { display: inline-block; margin-top: 8px; }

@media (width <= 800px) {
  .participate { padding: 80px 0 90px; }
  .participateGrid { gap: 24px; margin-top: 40px; }
  .participatePhoto { height: 245px; }
  .participateBody { padding: 30px 26px 34px; }
}

/* Social and contact directory */
.socialSection { padding: 105px 0; background: #fff; color: #17325b; }
.socialInner { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr); gap: clamp(60px, 8vw, 120px); align-items: start; }
.socialIntro { position: sticky; top: 125px; }
.socialIntro .eyebrow { margin-bottom: 20px; }
.socialIntro h2 { margin-bottom: 20px; font-size: clamp(38px, 4vw, 56px); font-weight: 700; letter-spacing: -.045em; line-height: 1.08; }
.socialIntro > p:last-child { max-width: 480px; color: #5d6b63; font-size: 15px; line-height: 1.75; }
.socialGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #dde2dd; }
.socialLink { min-height: 108px; padding: 22px 18px; display: grid; grid-template-columns: 44px minmax(0, 1fr) 18px; gap: 14px; align-items: center; color: #17325b; border-right: 1px solid #dde2dd; border-bottom: 1px solid #dde2dd; text-decoration: none; transition: background-color .18s ease, color .18s ease; }
.socialLink:nth-child(2n) { border-right: 0; }
.socialLink:hover { color: var(--rust); background: #f8f5ee; }
.socialLink:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--gold); outline-offset: -3px; }
.socialMark { display: grid; width: 44px; height: 44px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: 18px; }
.socialLink:hover .socialMark { background: var(--rust); }
.socialLink strong, .socialLink small { display: block; overflow-wrap: anywhere; }
.socialLink strong { margin-bottom: 4px; font-size: 13px; font-weight: 700; }
.socialLink small { color: #758078; font-size: 10px; line-height: 1.45; }
.socialArrow { color: var(--rust); font-size: 16px; }

@media (width <= 800px) {
  .socialSection { padding: 78px 0; }
  .socialInner { grid-template-columns: 1fr; gap: 38px; }
  .socialIntro { position: static; }
  .socialGrid { grid-template-columns: 1fr; }
  .socialLink, .socialLink:nth-child(2n) { border-right: 0; }
}
