/* ============================================================
   UNTAMED VOICES — Global Stylesheet
   Colors: #000000 · #FDCF60 · #FFFFFF
   Font: Yellix
   ============================================================ */

/* FONTS */
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-THIN.TTF') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-LIGHT.TTF') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-REGULAR.TTF') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-MEDIUM.TTF') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-SEMIBOLD.TTF') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-BOLD.TTF') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-EXTRABOLD.TTF') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Yellix'; src: url('media/fonts/YELLIX-BLACK.TTF') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold: #FDCF60;
  --gold-dim: rgba(253, 207, 96, 0.15);
  --black: #000000;
  --dark: #0a0a0a;
  --mid: #111111;
  --mid2: #1a1a1a;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Yellix', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.t-display {
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.t-h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.t-h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

.t-gold { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: 'Yellix', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--black);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn--gold:hover { background: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(253, 207, 96, 0.4);
}
.btn--outline-gold:hover { border-color: var(--gold); background: var(--gold-dim); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--mid2);
}

.nav__logo img {
  height: 56px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 899;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-in-out);
  padding-top: var(--nav-h);
}
.nav__mobile-menu.open { opacity: 1; pointer-events: all; }

.nav__mobile-menu a {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.2s;
}
.nav__mobile-menu a:hover { color: var(--white); }
.nav__mobile-menu .btn { margin-top: 32px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.92) 100%
  );
}

@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, -1%); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 80px 90px;
  max-width: 1000px;
}

.hero__eyebrow {
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}
.hero__scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.4); opacity: 1; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: var(--nav-h);
  padding-bottom: 72px;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(30%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 16px;
}

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section { padding: 112px 80px; }
.section--dark  { background: var(--black); }
.section--mid   { background: var(--dark); }
.section--mid2  { background: var(--mid); }
.section--gold  { background: var(--gold); }

.section__header { margin-bottom: 64px; }
.section__header .t-eyebrow { margin-bottom: 20px; }

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__tagline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.intro__desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.intro__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 10px;
}
.intro__photo { overflow: hidden; }
.intro__photo:first-child { grid-row: 1 / 3; }
.intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.intro__photo:hover img { transform: scale(1.05); }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.service-card {
  padding: 40px 28px;
  background: var(--mid);
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.service-card:hover {
  border-top-color: var(--gold);
  background: #161616;
  transform: translateY(-5px);
}
.service-card__icon {
  font-size: 30px;
  margin-bottom: 22px;
  display: block;
  line-height: 1;
}
.service-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   IMPACT COUNTER
   ============================================================ */
.impact-section {
  background: var(--gold);
  padding: 88px 80px;
}

.impact-section__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.impact-stat { text-align: center; }

.impact-stat__number {
  font-size: clamp(72px, 11vw, 128px);
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  display: block;
  letter-spacing: -0.03em;
}

.impact-stat__suffix {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--black);
}

.impact-stat__label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 10px;
}

.impact-divider {
  width: 1px;
  height: 80px;
  background: rgba(0,0,0,0.18);
}

/* ============================================================
   INITIATIVES GRID (home preview)
   ============================================================ */
.initiatives-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 320px;
  gap: 6px;
}

.init-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.init-card:first-child { grid-row: 1 / 3; }

.init-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.init-card:hover .init-card__bg { transform: scale(1.06); }

.init-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.97) 100%);
  z-index: 1;
  transition: opacity 0.3s;
}

.init-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
}

.init-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.init-card__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0;
  transition: margin-bottom 0.35s var(--ease-out);
}

.init-card__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), margin-top 0.35s;
}

.init-card__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), margin-top 0.3s;
}

.init-card:hover .init-card__title { margin-bottom: 10px; }
.init-card:hover .init-card__desc  { max-height: 100px; margin-top: 0; }
.init-card:hover .init-card__link  { max-height: 36px; margin-top: 14px; }

/* SignoAI special card */
.init-card--signoai {
  background: var(--mid);
  border: 1px solid var(--mid2);
}
.init-card--signoai::before { display: none; }
.init-card--signoai .init-card__body {
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signoai-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.init-card--signoai .init-card__title { font-size: 36px; }
.init-card--signoai p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 10px;
  max-height: none;
  overflow: visible;
}
.init-card--signoai .init-card__link {
  max-height: 36px;
  margin-top: 20px;
  overflow: visible;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip { padding: 0 0 80px; overflow: hidden; }
.gallery-strip__label { padding: 0 80px; margin-bottom: 28px; }

.gallery-track {
  display: flex;
  gap: 6px;
  padding: 0 80px;
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.grabbing { cursor: grabbing; }

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(253,207,96,0.6));
}
.cta-section__title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 auto 48px;
}
.cta-section__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--mid2);
  padding: 80px 80px 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__logo img { height: 32px; margin-bottom: 20px; }

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__socials { display: flex; gap: 10px; }
.footer__social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--mid2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.footer__newsletter-form input {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--mid2);
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Yellix', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.footer__newsletter-form input:focus { border-color: var(--gold); }
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.footer__newsletter-form button {
  background: var(--gold);
  color: var(--black);
  padding: 12px;
  font-family: 'Yellix', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.footer__newsletter-form button:hover { background: var(--white); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--mid2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.vm-block {
  padding: 64px 64px;
  background: var(--dark);
}
.vm-block:first-child { border-right: 1px solid var(--mid2); }
.vm-block__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.vm-block__text {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.value-card {
  padding: 44px 32px;
  background: var(--mid);
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover { border-bottom-color: var(--gold); background: #161616; }
.value-card__num {
  font-size: 56px;
  font-weight: 900;
  color: var(--mid2);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card__title {
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.value-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Focus areas strip */
.focus-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.focus-strip::-webkit-scrollbar { display: none; }
.focus-item {
  flex: 1 0 220px;
  padding: 40px 32px;
  background: var(--mid);
  border-right: 1px solid var(--mid2);
  transition: background 0.3s;
}
.focus-item:last-child { border-right: none; }
.focus-item:hover { background: #161616; }
.focus-item__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.focus-item__label { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.4; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--mid);
  margin-bottom: 14px;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: transform 0.6s var(--ease-out);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__name { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.team-card__role { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   INITIATIVES PAGE
   ============================================================ */
.initiative-block {
  padding: 100px 80px;
}
.initiative-block:nth-child(even) { background: var(--dark); }
.initiative-block:nth-child(odd)  { background: var(--black); }

.initiative-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.initiative-block__inner.flipped { direction: rtl; }
.initiative-block__inner.flipped > * { direction: ltr; }

.initiative-block__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.initiative-block__media .img-span { grid-column: 1 / 3; height: 280px; overflow: hidden; }
.initiative-block__media .img-sub  { height: 190px; overflow: hidden; }
.initiative-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.initiative-block__media img:hover { transform: scale(1.04); }

.initiative-block__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 22px;
}
.initiative-block__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.phase-cards { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.phase-card {
  padding: 18px 20px;
  background: var(--mid);
  border-left: 3px solid var(--gold);
}
.phase-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.phase-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* SignoAI visual block */
.signoai-visual {
  background: var(--mid);
  border: 1px solid var(--mid2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px;
  text-align: center;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.signoai-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(253,207,96,0.07) 0%, transparent 70%);
}
.signoai-visual__icon { font-size: 72px; margin-bottom: 20px; }
.signoai-visual__word {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.signoai-visual__sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
}

/* ============================================================
   VOLUNTEER PAGE
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 52vh;
  min-height: 360px;
  margin-top: var(--nav-h);
}
.mosaic__cell { overflow: hidden; }
.mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: grayscale(20%);
}
.mosaic__cell:hover img { transform: scale(1.06); filter: grayscale(0%); }

.why-volunteer {
  padding: 100px 80px;
  background: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.why-card {
  padding: 40px 32px;
  background: var(--mid);
  transition: background 0.3s;
}
.why-card:hover { background: #161616; }
.why-card__icon { font-size: 32px; margin-bottom: 18px; display: block; }
.why-card__title { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.why-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.volunteer-section {
  padding: 100px 80px;
  background: var(--dark);
}
.volunteer-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.volunteer-section__text .t-h2 { margin: 20px 0 22px; }
.volunteer-section__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.volunteer-section__perks { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--mid);
}
.perk__icon { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.perk p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.55; }

/* ============================================================
   FORMS
   ============================================================ */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--mid2);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Yellix', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { resize: vertical; min-height: 130px; }

.file-upload-wrap { position: relative; }
.file-upload-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--mid);
  border: 1px dashed var(--mid2);
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.file-upload-wrap:hover .file-upload-label { border-color: var(--gold); color: rgba(255,255,255,0.65); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 100px 80px;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.contact-info__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 52px;
}
.contact-type { padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--mid2); }
.contact-type:last-child { border-bottom: none; }
.contact-type__label { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-type__email { font-size: 18px; font-weight: 600; color: var(--white); transition: color 0.2s; }
.contact-type__email:hover { color: var(--gold); }

/* FAQ */
.faq-section { padding: 80px 80px 100px; background: var(--dark); }
.faq-section__title { font-size: clamp(32px, 4vw, 48px); font-weight: 900; margin-bottom: 48px; }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--mid2); }
.faq-item__q {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  gap: 20px;
}
.faq-item__q:hover { color: var(--gold); }
.faq-toggle {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item__a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding-bottom 0.3s;
}
.faq-item.open .faq-item__a { max-height: 300px; padding-bottom: 24px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --nav-h: 68px; }
  .nav { padding: 0 40px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 80px 48px; }
  .hero__content { padding: 0 48px 72px; }
  .hero__scroll-hint { right: 48px; }

  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .initiatives-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 280px 280px;
  }
  .initiatives-grid .init-card:first-child { grid-row: 1 / 2; }

  .vm-grid { grid-template-columns: 1fr; }
  .vm-block:first-child { border-right: none; border-bottom: 1px solid var(--mid2); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }

  .initiative-block { padding: 80px 48px; }
  .initiative-block__inner { grid-template-columns: 1fr; gap: 48px; }
  .initiative-block__inner.flipped { direction: ltr; }

  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .volunteer-section { padding: 80px 48px; }
  .volunteer-section__inner { grid-template-columns: 1fr; gap: 48px; }

  .contact-section { grid-template-columns: 1fr; padding: 80px 48px; }
  .faq-section { padding: 60px 48px 80px; }

  .footer { padding: 64px 48px 36px; }
  .gallery-strip__label { padding: 0 48px; }
  .gallery-track { padding: 0 48px; }
  .page-hero { padding: 0 48px 64px; padding-top: var(--nav-h); }
  .cta-section { padding: 80px 48px; }

  .impact-section { padding: 72px 48px; }
  .initiatives-preview { padding: 80px 48px; }
  .initiatives-preview__header { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 700px) {
  .section { padding: 64px 24px; }
  .hero__content { padding: 0 24px 60px; }
  .hero__scroll-hint { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); height: 40vh; }

  .initiatives-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 300px);
  }
  .initiatives-grid .init-card:first-child { grid-row: auto; }

  .impact-divider { display: none; }
  .impact-section__inner { flex-direction: column; gap: 40px; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 48px 24px 28px; }

  .gallery-strip__label { padding: 0 24px; }
  .gallery-track { padding: 0 24px; }
  .gallery-item { width: 240px; height: 180px; }

  .page-hero { padding: 0 24px 52px; padding-top: var(--nav-h); }
  .cta-section { padding: 72px 24px; }
  .impact-section { padding: 64px 24px; }
  .initiatives-preview { padding: 64px 24px; }

  .vm-block { padding: 48px 24px; }
  .initiative-block { padding: 64px 24px; }
  .volunteer-section { padding: 64px 24px; }
  .why-volunteer { padding: 64px 24px; }
  .contact-section { padding: 64px 24px; }
  .faq-section { padding: 48px 24px 64px; }
}
