:root {
  --brand-red: #c81e1e;
  --brand-green: #1f6f3d;
  --brand-gold: #e6b800;
  --text: #111111;
  --muted: #60656f;
  --line: #e8e8e8;
  --bg: #fafafa;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shell: 1200px;
}
/* Prevent text selection for the entire body */
body {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Old versions of Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard syntax */
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}
.narrow-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;

  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: -8px;
  height: 8px;
  background: var(--brand-red);
}

.header-inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: -16px;
  height: 8px;
  background: var(--brand-green);
}
.brand-logo {
  height: 84px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #222;
  font-size: 1.25rem;
  cursor: pointer;
}
.main-nav button {
  background: none;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
  color: #222;
}
.main-nav button.active,
.main-nav button:hover {
  color: var(--brand-red);
}
.lang-switch {
  border: 1px solid #f0d667;
  background: #fff8d0;
  color: #3a3200;
  padding: 10px 14px;
  border-radius: 999px;
}
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
  padding: 72px 0 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 14px;
}
.hero-copy h1,
.page-banner h1 {
  font-size: clamp(1.8rem, 5vw, 2.1rem);
  line-height: 1.05;
  margin: 0 0 18px;
  text-align: center;
  font-weight: 800;
}
.hero-copy p,
.section-text,
.section-head p,
.project-card p,
.contact-card label span {
  color: var(--muted);
}
.title-accent p {
  font-size: 1.08rem;

  margin: 10px 0 10px;
}
.hero-title {
  padding-top: 10px;
  width: 100%;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 29px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.nav-btn-primary {
  background: var(--brand-green) !important;
  color: #fff !important;
  transition: all 0.28s ease;
}
.nav-btn-primary:hover {
  background: var(--brand-gold) !important;
  color: #1d1d1d;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px !important;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-green) !important;
  color: #fff !important;
}
.btn-primary:hover {
  background: var(--brand-gold) !important;
  color: #1d1d1d !important;
}
.btn-secondary {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  color: #222 !important;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  width: min(100%, 470px);
  min-height: 380px;
  background: #fff;
  border-radius: 28px;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.stat-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  background: #fff8d0;
  color: #473d00;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px;
}
.stat-pill img {
  width: 40px;
  height: 40px;
}
.visual-circle {
  position: absolute;
  border-radius: 999px;
}
.circle-red {
  width: 240px;
  height: 240px;
  background: rgba(200, 30, 30, 0.88);
  right: -24px;
  top: 40px;
}
.circle-green {
  width: 220px;
  height: 220px;
  background: rgba(31, 111, 61, 0.88);
  left: 42px;
  bottom: 18px;
}
.circle-gold {
  width: 140px;
  height: 140px;
  background: rgba(230, 184, 0, 0.88);
  right: 120px;
  bottom: 56px;
}
.section {
  padding: 60px 0;
}
.section-soft {
  background: #f4f5f6;
}
.title-accent {
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-gold);
  margin: 18px auto 24px;
}
#contact .title-accent {
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-gold);
  margin: 18px 0px;
  margin-left: 29px;
}
.left-text {
  text-align: left;
}
.narrow-center h2,
.section-head h2,
.contact-grid h2 {
  font-size: clamp(2rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0;
}
.section-text {
  font-size: 1.03rem;
  margin: 0 auto;
  max-width: 62ch;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  margin: 0;
  max-width: 58ch;
  justify-self: end;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.member-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 22px 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}
.member-image-wrap {
  width: 148px;
  height: 148px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-green), var(--brand-gold));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  flex: 0 0 auto;
}
.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #fff;
}
.member-photo-1 { object-position: 72% 18%; }
.member-photo-2 { object-position: 50% 16%; }
.member-photo-9 { object-position: 50% 32%; }
.member-photo-10 { object-position: 36% 28%; }
.member-photo-14 { object-position: 50% 16%; }
.member-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #111;
}
.member-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}
.page-banner {
  padding: 72px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.projects-section {
  margin-bottom: 20px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.project-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  will-change: transform;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
}
.project-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.28s ease;
}
.project-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(31, 111, 62, 0.4),
    rgba(230, 184, 0, 0.4)
  );
}
.project-icon img {
  width: 45px;
  height: 45px;
}
.project-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}
.project-card p {
  margin: 0;
}
.resources-section {
  background: var(--bg);
}
.resources-head {
  margin-bottom: 28px;
}
.resources-head h2 {
  font-size: clamp(2rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 8px;
}
.resources-head .section-text {
  max-width: 72ch;
  margin: 0;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.resource-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 24px;
  will-change: transform;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
}
.resource-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.28s ease;
}
.resource-category {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.7rem;
  line-height: 1.2;
  color: var(--brand-red);
  letter-spacing: 0.03em;
}
.resource-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1;
  margin-top: 3px;
}
.resource-description {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.4;
}
.resource-link {
  color: var(--brand-green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.resource-link:hover {
  color: #155530;
}
.resource-url {
  margin: 6px 0 0;
  color: #828895;
  font-size: 0.93rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #ececec;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #2c2c2c;
  font-weight: 600;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  padding: 14px 16px;
  border-radius: 12px;
  outline: none;
}
.full-width {
  grid-column: 1 / -1;
}
.site-footer {
  background: var(--brand-green);
  color: #fff;
}
.footer-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  flex-direction: column;
  padding: 28px 0;
}
.footer-logo {
  height: 100px;
  width: 100px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.follow-us {
  margin: 3px 0 !important;
}
.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  transition: all 0.28s ease;
  box-shadow: 0px 1px 26px -2px rgba(255, 255, 255, 0.62);
  -webkit-box-shadow: 0px 1px 26px -2px rgba(255, 255, 255, 0.62);
  -moz-box-shadow: 0px 1px 26px -2px rgba(255, 255, 255, 0.62);
}

.footer-social-icon img {
  width: 22px;
  height: 22px;
}

@media (max-width: 1080px) {
  .members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .hero-grid,
  .section-head,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }
  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1020px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }
  .brand-logo {
    height: 70px;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-header.menu-open .main-nav {
    display: flex;
  }
  .main-nav button {
    width: 100%;
    text-align: left;
    border-radius: 10px;
    padding: 12px;
  }
  .lang-switch {
    width: 100%;
  }
  .hero-section,
  .section,
  .page-banner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero-grid,
  .section-head,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1,
  .page-banner h1 {
    max-width: none;
  }
  .resources-head {
    margin-bottom: 22px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .member-card,
  .project-card {
    padding: 24px 20px;
  }


/* Professional member photo layout */
@media (max-width: 1080px) {
  .members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
  .member-image-wrap {
    width: 136px;
    height: 136px;
  }
}
