/* =============================================
   ICON× — Homepage Stylesheet
   Font: Archivo
   Palette: #FFFFFF, #0A0A0A, #D4001A
   ============================================= */


:root {
  --red:   #D4001A;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --font:  'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  font-size: 19px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; touch-action: manipulation; }
img { display: block; max-width: 100%; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  z-index: 999;
}
.skip-link:focus { top: 1rem; }

/* =============================================
   × MOTIF — reusable SVG cross as background
   Built with CSS so it's scalable and colorable
   ============================================= */

.x-bg {
  position: absolute;
  pointer-events: none;
  user-select: none;
  color: var(--red);
  opacity: 1;
  line-height: 1;
}


/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3rem;
  background: var(--white);
  border-bottom: 1px solid rgba(10,10,10,0.1);
}

.site-header .nav__links {
  justify-content: center;
}

.nav__cta-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.nav__cta:hover { background: var(--red); }

.nav__burger:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.nav__links {
  list-style: none;
  display: flex;
  align-items: stretch;
  height: 60px;
}

.nav__links li { display: flex; }

.nav__links a {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.15s, color 0.15s;
}

.nav__links a:hover {
  background: var(--black);
  color: var(--white);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 85vh;
  padding-top: 60px;
  background: var(--red);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero__x-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 140%;
  width: auto;
  aspect-ratio: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}


.hero__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero__logo-img {
  width: 80%;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero__tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}



/* =============================================
   COUNTRIES STRIP
   ============================================= */

.strip {
  background: var(--black);
  color: var(--white);
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

/* Small × accent on strip */
.strip::after {
  content: '×';
  position: absolute;
  right: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  opacity: 0.6;
}

.strip__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.strip__countries {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* =============================================
   MISSION SECTION
   ============================================= */

.mission {
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Big × behind mission text */
.mission::before {
  content: '×';
  position: absolute;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(200px, 30vw, 440px);
  color: var(--red);
  opacity: 0.04;
  left: -0.1em;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

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

.mission__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.mission__left h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.mission__left h2 strong {
  color: var(--red);
  font-weight: 700;
}

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

.mission__right p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 0.15rem;
  transition: color 0.15s, border-color 0.15s;
}

.text-link:hover { color: var(--red); border-color: var(--red); }

/* =============================================
   PILLARS
   ============================================= */

.pillars {
  border-top: 1px solid rgba(10,10,10,0.1);
  position: relative;
  overflow: hidden;
}


.pillars__header {
  padding: 2.5rem 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillars__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
}

.pillars__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.pillar {
  padding: 2.5rem 2.5rem 3.5rem;
  border-left: 1px solid rgba(10,10,10,0.1);
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}

.pillar:first-child { border-left: none; }
.pillar:hover { background: var(--red); color: var(--white); }

.pillar__index {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #bbb;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.pillar:hover .pillar__index { color: rgba(255,255,255,0.5); }

.pillar h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
  transition: color 0.2s;
}

.pillar:hover p { color: rgba(255,255,255,0.75); }

/* =============================================
   NETWORK / COUNTRIES
   ============================================= */

.network-section {
  background: var(--black);
  color: var(--white);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}





.network-left,
.countries__list {
  position: relative;
  z-index: 1;
}

.network-left h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.network-left h2 span { color: var(--red); display: block; }

.network-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
  margin-bottom: 2.5rem;
}

.network-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 0.15rem;
  transition: color 0.15s, border-color 0.15s;
}

.network-link:hover { color: var(--white); border-color: var(--white); }

.countries__list {
  list-style: none;
  position: relative;
  z-index: 1;
}

.countries__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.2s;
}

.countries__item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.countries__item:hover { padding-left: 1rem; }

.countries__item-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.countries__item-name {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.countries__item-count {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   THEMES PREVIEW
   ============================================= */

.themes {
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}


.themes__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10,10,10,0.1);
  position: relative;
  z-index: 1;
}

.themes__header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.themes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.theme-item {
  padding: 2.5rem 3rem 2.5rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}

.theme-item:nth-child(n+4) { border-bottom: none; }

.theme-item__num {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.theme-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.theme-item p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--black);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__left img {
  height: 22px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__credit {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0.4rem 0.9rem;
  transition: color 0.15s;
}

.footer__nav a:hover { color: var(--white); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 960px) {
  .hero__inner { gap: 2.5rem; padding: 4rem 2rem; }
  .mission { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
  .pillars__list { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(odd) { border-left: none; }
  .network-section { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
  .themes__grid { grid-template-columns: 1fr 1fr; padding: 0; }
  .site-header { padding: 0 2rem; }
  .strip { padding: 1rem 2rem; }
  .themes { padding: 3rem 2rem; }
}

/* =============================================
   HAMBURGER / MOBILE MENU
   ============================================= */

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 0.75rem;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Animate to × when open */
.site-header.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.site-header.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(10,10,10,0.1);
    flex-direction: column;
    height: auto;
    z-index: 199;
  }
  .nav__links li { display: block; }
  .nav__links a {
    padding: 1.1rem 2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(10,10,10,0.06);
  }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header .nav__links { display: none; }
  .site-header.nav--open .nav__links { display: flex; }
  .pillars__list { grid-template-columns: 1fr; }
  .themes__grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   INNER PAGES — SHARED HERO
   ============================================= */

.page-hero {
  padding-top: 60px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '×';
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(180px, 28vw, 400px);
  font-weight: 700;
  color: var(--red);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 3rem 4rem;
  position: relative;
  z-index: 1;
}

.page-hero__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

/* =============================================
   INNER PAGES — SHARED UTILITIES
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.8rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn:hover { background: var(--red); }

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

.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 6rem;
}

.about-nav {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.about-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  transition: color 0.15s;
}

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

.about-block {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}

.about-block:first-child { padding-top: 0; }
.about-block:last-child { border-bottom: none; }

.about-block h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-block h2 em { color: var(--red); font-style: normal; }

.about-block p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1rem;
}

.about-block p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .about-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.25rem 0; }
}

/* =============================================
   NETWORK PAGE
   ============================================= */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgba(10,10,10,0.1);
  padding: 0 3rem;
}

.filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  padding: 1rem 1.2rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.filter-btn:hover { color: var(--black); }
.filter-btn.active { color: var(--red); border-bottom-color: var(--red); }

.members-list { padding: 0 3rem; }

.member-row {
  display: grid;
  text-decoration: none;
  color: inherit;
  grid-template-columns: 72px 1fr 2fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  transition: padding-left 0.2s;
}

.member-row:hover { padding-left: 0.75rem; }
.member-row:hover .member-row__arrow { color: var(--red); }

.member-row__country {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.5;
}

.member-row h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.member-row__abbr { font-size: 0.72rem; color: #999; }

.member-row p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
}

.member-row__arrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccc;
  white-space: nowrap;
  transition: color 0.15s;
}

.join-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 3rem;
  border-top: 1px solid rgba(10,10,10,0.1);
}

.join-cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.join-cta h2 em { color: var(--red); font-style: normal; }

@media (max-width: 960px) {
  .filter-bar { padding: 0 2rem; }
  .members-list { padding: 0 2rem; }
  .member-row { grid-template-columns: 60px 1fr; }
  .member-row p, .member-row__arrow { display: none; }
  .join-cta { flex-direction: column; align-items: flex-start; padding: 3rem 2rem; }
}

/* =============================================
   PROJECTS PAGE
   ============================================= */

.projects-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 4rem;
}

.project-row {
  display: grid;
  grid-template-columns: 160px 1fr 160px auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.1);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.2s;
}

.project-row:first-child { border-top: 1px solid rgba(10,10,10,0.1); }
.project-row:hover { padding-left: 0.75rem; }
.project-row:hover h3 { color: var(--red); }
.project-row:hover .project-row__arrow { color: var(--red); }

.project-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.project-row__type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.project-row__year { font-size: 0.72rem; color: #999; }

.project-row h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.project-row p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
}

.project-row__members {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #999;
  text-transform: uppercase;
}

.project-row__arrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccc;
  white-space: nowrap;
  transition: color 0.15s;
}

@media (max-width: 960px) {
  .projects-list { padding: 0 2rem 3rem; }
  .project-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .project-row__members, .project-row__arrow { display: none; }
}

/* =============================================
   THEMES PAGE
   ============================================= */

.themes-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 4rem;
}

.theme-row {
  display: grid;
  grid-template-columns: 72px 1fr 2fr;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}

.theme-row:first-child { border-top: 1px solid rgba(10,10,10,0.08); }
.theme-row:last-child { border-bottom: none; }

.theme-row__num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
}

.theme-row__title {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.theme-row__desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 960px) {
  .themes-list { padding: 0 2rem 3rem; }
  .theme-row { grid-template-columns: 48px 1fr; }
  .theme-row__desc { grid-column: 2; }
}

@media (max-width: 600px) {
  .theme-row { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.contact-email {
  display: inline-block;
  margin-top: 2rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  border-bottom: 3px solid var(--red);
  padding-bottom: 0.1em;
  transition: color 0.15s;
}

.contact-email:hover { color: var(--red); }

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}

.contact-info__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: block;
}

.contact-info h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.contact-info h2 em { color: var(--red); font-style: normal; }

.contact-info p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 2rem;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  border-top: 1px solid rgba(10,10,10,0.1);
  padding-top: 2rem;
}

.contact-meta__item-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.4rem;
}

.contact-meta__item-val {
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
}

.form-field input,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10,10,10,0.15);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus { border-color: var(--black); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
  .page-hero__inner { padding: 4rem 2rem 3rem; }
}

/* =============================================
   NEWS PAGE
   ============================================= */

.news-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 6rem;
}

.news-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.1);
  text-decoration: none;
  color: inherit;
}

.news-item:first-child { border-top: 1px solid rgba(10,10,10,0.1); }
.news-item:last-child { border-bottom: none; }
.news-item:hover .news-item__title { color: var(--red); }
.news-item:hover .news-item__arrow { background: var(--red); }

.news-item__date {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.85rem;
}

.news-item__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.2rem 0.55rem;
}

.news-item__title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  transition: color 0.15s;
}

.news-item__excerpt {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 620px;
}

.news-item__detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(10,10,10,0.08);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  font-size: 0.85rem;
  color: #777;
}

.news-item__detail strong { font-weight: 600; color: var(--black); }

.news-item__arrow {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

@media (max-width: 960px) {
  .news-list { padding: 0 2rem 4rem; }
  .news-item { grid-template-columns: 140px 1fr; }
  .news-item__arrow { display: none; }
}

@media (max-width: 600px) {
  .news-item { grid-template-columns: 1fr; gap: 0.75rem; }
  .news-item__meta { display: flex; align-items: center; gap: 1rem; }
}
