/* CEJC — Site public */
:root {
  --rouge: #B9003A;
  --rouge-deep: #7A0026;
  --rouge-soft: #F8E8EE;
  --navy: #0C2340;
  --navy-soft: #1A3A5C;
  --gold: #C4A35A;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --ink: #1A1A1F;
  --muted: #5C5C68;
  --line: rgba(12, 35, 64, 0.1);
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(12, 35, 64, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 35, 64, 0.1);
  --shadow-lg: 0 24px 64px rgba(12, 35, 64, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 72px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rouge); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rouge-deep); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); }
.brand__logo {
  width: 92px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav a {
  color: var(--navy-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover,
.site-nav a.is-active {
  background: var(--rouge-soft);
  color: var(--rouge);
  text-decoration: none;
}
.site-nav__cta {
  background: var(--rouge) !important;
  color: #fff !important;
  margin-left: 0.5rem;
}
.site-nav__cta:hover {
  background: var(--rouge-deep) !important;
  color: #fff !important;
}

/* ── Main layout ────────────────────────────────────────────────────────── */
.site-main {
  flex: 1;
  animation: fadeUp 0.5s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--alt { background: var(--white); }

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rouge);
  margin-bottom: 0.6rem;
}
.section-head h1,
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--navy);
}
.section-head p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(480px, 72vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  transition: transform 8s var(--ease);
}
.hero:hover .hero__bg { transform: scale(1.06); }
.hero--image-only {
  min-height: clamp(420px, 58vh, 560px);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12, 35, 64, 0.82) 0%, rgba(122, 0, 38, 0.55) 55%, rgba(12, 35, 64, 0.4) 100%);
}
.hero--image-only .hero__overlay {
  background: linear-gradient(135deg, rgba(122, 0, 38, 0.35), rgba(12, 35, 64, 0.18));
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 3rem;
  align-items: end;
}
.hero--image-only .hero__content,
.hero:not(.hero--with-news) .hero__content {
  display: block;
}
.hero__intro {
  max-width: 780px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 780px;
  margin-bottom: 1.25rem;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  opacity: 0.92;
  font-weight: 300;
  line-height: 1.55;
}
.hero__btn {
  margin-top: 1.5rem;
}
.hero__news {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  padding: 1.35rem;
  backdrop-filter: blur(18px);
}
.hero__news .eyebrow {
  margin-bottom: 0.8rem;
}
.hero__news-main {
  display: block;
  color: var(--ink);
  padding: 0.25rem 0 1rem;
  border-bottom: 1px solid var(--line);
}
.hero__news-main:hover {
  color: var(--ink);
  text-decoration: none;
}
.hero__news-main span,
.hero__news-list span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  color: var(--muted);
}
.hero__news-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.28;
  color: var(--navy);
}
.hero__news-main small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.hero__news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.75rem;
}
.hero__news-list a {
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.hero__news-list a:hover {
  color: var(--rouge);
  text-decoration: none;
}
.hero__news-list strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
}
.hero__news-all {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rouge);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}
.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  color: var(--ink);
  text-decoration: none;
}
.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.quick-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rouge-soft);
  color: var(--rouge);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.quick-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.quick-card span { font-size: 0.85rem; color: var(--muted); }

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rouge), var(--gold));
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--rouge);
  line-height: 1;
}
.stat-card__label {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Cards grid ─────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.news-card,
.formation-card,
.expert-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  color: inherit;
  text-decoration: none;
}
.news-card:hover,
.formation-card:hover,
.expert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.news-card__img {
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  object-fit: cover;
  width: 100%;
}
.news-card__body,
.formation-card__body,
.expert-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rouge);
  margin-bottom: 0.5rem;
}
.news-card h3,
.formation-card h3,
.expert-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.news-card p,
.formation-card p {
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}
.news-card__date,
.formation-card__meta {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expert-card {
  flex-direction: row;
  align-items: stretch;
}
.expert-card__photo {
  width: 96px;
  min-height: 96px;
  background: var(--cream-dark);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}
.expert-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-card__spec {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ── Search & filters ───────────────────────────────────────────────────── */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: center;
}
.search-field {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.search-field input,
.search-field select,
.filter-select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-field input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(185, 0, 58, 0.12);
}
.search-field::before {
  content: '⌕';
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
  pointer-events: none;
}
.filter-select { padding-left: 1rem; min-width: 200px; border-radius: var(--radius-sm); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--rouge);
  color: #fff;
}
.btn--primary:hover { background: var(--rouge-deep); color: #fff; }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--navy);
}
.btn--outline:hover {
  border-color: var(--rouge);
  color: var(--rouge);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge--open { background: #E6F4EA; color: #1A6B35; }
.badge--past { background: var(--cream-dark); color: var(--muted); }

/* ── Article / detail pages ─────────────────────────────────────────────── */
.article-hero {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 0;
}
.article-hero .eyebrow { color: var(--gold); }
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
}
.article-hero__meta {
  margin-top: 1rem;
  opacity: 0.75;
  font-size: 0.9rem;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.article-body img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}
.article-body p,
.article-body li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.article-body blockquote {
  border-left: 3px solid var(--rouge);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
}

.profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.profile-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--cream-dark);
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--rouge);
  border: 3px solid var(--rouge-soft);
}
.profile-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-card h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
}
.profile-card__group {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.profile-details { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-block {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
}
.detail-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.detail-list { list-style: none; }
.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list__label { color: var(--muted); font-weight: 500; flex-shrink: 0; }
.spec-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.spec-tag {
  background: var(--rouge-soft);
  color: var(--rouge-deep);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── Static content pages ─────────────────────────────────────────────────── */
.prose {
  max-width: 720px;
}
.prose p { margin-bottom: 1rem; color: var(--ink); line-height: 1.75; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.board-member {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.board-member__role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rouge);
  font-weight: 600;
}
.board-member__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.25rem;
}
.board-member__spec {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.contact-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.contact-item__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.contact-item__value {
  margin-top: 0.35rem;
  font-weight: 500;
  color: var(--navy);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.subnav a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-soft);
  background: var(--white);
  border: 1px solid var(--line);
}
.subnav a.is-active,
.subnav a:hover {
  background: var(--rouge);
  color: #fff;
  border-color: var(--rouge);
  text-decoration: none;
}

.link-list { list-style: none; }
.link-list li { margin-bottom: 0.5rem; }
.link-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}
.link-list a::after { content: '→'; opacity: 0.5; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  margin-top: auto;
}
.site-footer a { color: rgba(255, 255, 255, 0.9); }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.site-footer__logo {
  width: 130px;
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}
.site-footer__brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.5; }
.site-footer__links { list-style: none; }
.site-footer__links li { margin-bottom: 0.45rem; font-size: 0.9rem; }
.site-footer__intranet {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--gold) !important;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* ── Utilities ──────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.loading {
  text-align: center;
  padding: 4rem;
  color: var(--muted);
}
.loading::after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin: 1rem auto 0;
  border: 3px solid var(--line);
  border-top-color: var(--rouge);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  color: var(--muted);
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 2rem; }
  .hero__news { max-width: 560px; }
  .quick-links { grid-template-columns: repeat(2, 1fr); margin-top: -2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-card { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a { width: 100%; text-align: center; }
  .site-nav__cta { margin-left: 0 !important; }
  .quick-links { grid-template-columns: 1fr; margin-top: 1.5rem; }
  .hero__content { padding: 3rem 0; }
  .hero__news { padding: 1rem; }
  .stats-grid,
  .card-grid,
  .card-grid--2,
  .board-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .expert-card { flex-direction: column; }
  .expert-card__photo { width: 100%; height: 120px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}
