/* ══════════════════════════════════════════════════════ VARIABLES */
:root {
  --blue-deep:    #0d2545;
  --blue:         #1b3a6b;
  --blue-mid:     #254f8e;
  --blue-light:   #e8eef7;
  --gold:         #c49a2a;
  --gold-light:   #f0d98a;
  --white:        #ffffff;
  --grey-light:   #f5f7fa;
  --grey:         #e2e6ed;
  --grey-mid:     #9ca3b0;
  --text:         #1a1f2e;
  --text-light:   #4a5568;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow:       0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.16);
  --transition:   .25s ease;
  --container:    1160px;
  --header-h:     72px;
}

/* ══════════════════════════════════════════════════════ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════ TOPBAR */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  letter-spacing: .03em;
  padding: 7px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__email { display: flex; align-items: center; gap: 6px; color: var(--gold-light); transition: color var(--transition); }
.topbar__email:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════ HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 1px 0 var(--grey), var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }

.header__logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-mark--sm { width: 36px; height: 36px; font-size: 1.1rem; }
.header__logo-img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.footer__logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; border-radius: 50%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text__main { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1rem; color: var(--blue); }
.logo-text__sub { font-size: .68rem; color: var(--text-light); letter-spacing: .02em; text-transform: uppercase; }
.footer__logo .logo-text__main { color: var(--white); }
.footer__logo .logo-text__sub { color: rgba(255,255,255,.5); }

.nav { display: flex; gap: 4px; }
.nav__link {
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: .01em;
}
.nav__link:hover { color: var(--blue); background: var(--blue-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════════════════════════════════════ HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(13,37,69,.92) 0%, rgba(27,58,107,.80) 60%, rgba(196,154,42,.15) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231b3a6b" width="1200" height="800"/><g fill="none" stroke="rgba(255,255,255,.04)" stroke-width="1"><line x1="0" y1="0" x2="1200" y2="800"/><line x1="400" y1="0" x2="1200" y2="400"/><line x1="0" y1="400" x2="800" y2="800"/><line x1="600" y1="0" x2="0" y2="600"/></g></svg>') center/cover;
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.012) 40px,
    rgba(255,255,255,.012) 41px
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 100px 24px 80px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero__eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); }
.hero__title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 22px;
}
.hero__subtitle { font-size: 1.05rem; color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 580px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ══════════════════════════════════════════════════════ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.btn--primary:hover { background: #b8881e; border-color: #b8881e; }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn--sm { padding: 8px 16px; font-size: .8rem; }

/* ══════════════════════════════════════════════════════ PILLARS */
.pillars { background: var(--blue); padding: 64px 0; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar { text-align: center; color: var(--white); }
.pillar__icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar__title { font-family: 'Merriweather', serif; font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.pillar__text { font-size: .875rem; color: rgba(255,255,255,.72); line-height: 1.65; }

/* ══════════════════════════════════════════════════════ SECTIONS */
.section { padding: 96px 0; }
.section--alt { background: var(--grey-light); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header__title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.section-header__divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.section-header__desc { max-width: 560px; margin: 0 auto; color: var(--text-light); font-size: .9375rem; }

/* ══════════════════════════════════════════════════════ ABOUT */
.about__grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.about__text p { margin-bottom: 18px; color: var(--text-light); line-height: 1.8; }
.about__text strong { color: var(--text); }
.about__subtitle {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: var(--blue-deep);
  margin: 30px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}
.about__list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  margin-bottom: 10px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: .9rem;
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 14px; top: 18px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.about__list li strong { color: var(--text); }

.about__sidebar { display: flex; flex-direction: column; gap: 16px; }
.about__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--blue);
}
.about__card-icon { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--blue); }
.about__card-icon svg { width: 100%; height: 100%; }
.about__card-stat { font-family: 'Merriweather', serif; font-size: 2rem; font-weight: 700; color: var(--blue); }
.about__card-label { font-size: .78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.about__founded {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.about__founded-text { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.85); }
.about__founded-text strong { color: var(--white); }

/* ══════════════════════════════════════════════════════ STATUTO */
.statuto-section { background: var(--blue-deep); }
.statuto__inner { display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; }
.statuto__text .section-header__eyebrow { color: var(--gold-light); }
.statuto__title { font-family: 'Merriweather', serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); margin-bottom: 4px; }
.statuto__text p { color: rgba(255,255,255,.72); font-size: .9375rem; line-height: 1.8; margin-bottom: 14px; }
.statuto__btn { margin-top: 10px; background: var(--gold); border-color: var(--gold); color: var(--blue-deep); white-space: nowrap; }
.statuto__btn:hover { background: #b8881e; border-color: #b8881e; }
.statuto__visual { opacity: .85; flex-shrink: 0; width: 140px; }
.statuto__visual svg { width: 100%; height: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,.3)); }
@media (max-width: 768px) { .statuto__inner { grid-template-columns: 1fr; } .statuto__visual { display: none; } }

/* ══════════════════════════════════════════════════════ ASSOCIATIONS TABLE */
.assoc-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.assoc-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.assoc-table thead { background: var(--blue); color: var(--white); }
.assoc-table thead th {
  padding: 16px 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
}
.assoc-table thead th:first-child { width: 60px; text-align: center; }
.assoc-table thead th:last-child { width: 220px; }
.assoc-table tbody tr { border-bottom: 1px solid var(--grey); transition: background var(--transition); }
.assoc-table tbody tr:last-child { border-bottom: none; }
.assoc-table tbody tr:hover { background: var(--blue-light); }
.assoc-table td { padding: 16px 20px; font-size: .9375rem; color: var(--text); vertical-align: middle; }
.assoc-table td:first-child { text-align: center; color: var(--grey-mid); font-size: .8rem; font-weight: 700; }
.assoc-table__name { font-weight: 700; font-size: 1rem; color: var(--blue-deep); }
.assoc-table__link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: .85rem;
  font-weight: 600;
  transition: color var(--transition);
}
.assoc-table__link a:hover { color: var(--gold); }
.assoc-table__link svg { width: 13px; height: 13px; }
.assoc-table__loading { text-align: center; padding: 32px; color: var(--grey-mid); }

/* ══════════════════════════════════════════════════════ NEWS */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card__image { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-card__image-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--grey) 100%);
  display: flex; align-items: center; justify-content: center;
}
.news-card__image-placeholder svg { width: 48px; height: 48px; color: var(--blue); opacity: .35; }
.news-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.news-card__date {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.news-card__title {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-card__excerpt { font-size: .875rem; color: var(--text-light); line-height: 1.65; flex: 1; }
.news-card__footer { padding: 0 24px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.news-card__read {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.news-card__read svg { width: 14px; height: 14px; }
.news-card__attachment {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  color: var(--text-light);
  background: var(--grey-light);
  padding: 4px 10px;
  border-radius: 20px;
}
.news-card__attachment svg { width: 12px; height: 12px; }
.news-loading { text-align: center; padding: 48px; color: var(--grey-mid); font-size: .9rem; grid-column: 1/-1; }

/* ══════════════════════════════════════════════════════ EVENTS */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--gold);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card__image { width: 100%; height: 180px; object-fit: cover; display: block; }
.event-card__body { padding: 22px 24px 14px; flex: 1; display: flex; gap: 18px; align-items: flex-start; }
.event-card__date {
  flex-shrink: 0;
  width: 62px;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 8px 4px 6px;
  line-height: 1;
}
.event-card__day { display: block; font-family: 'Merriweather', serif; font-size: 1.5rem; font-weight: 700; }
.event-card__month { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; opacity: .9; margin-top: 2px; }
.event-card__content { flex: 1; min-width: 0; }
.event-card__title { font-family: 'Merriweather', serif; font-size: 1rem; font-weight: 700; color: var(--blue-deep); line-height: 1.35; margin-bottom: 8px; }
.event-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.event-card__location svg { width: 12px; height: 12px; flex-shrink: 0; }
.event-card__excerpt { font-size: .85rem; color: var(--text-light); line-height: 1.6; }
.event-card__footer { padding: 0 24px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.modal-event-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.modal-event-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: 20px;
}
.modal-event-meta__item svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════ CONTACTS */
.contact__grid { display: flex; justify-content: center; }
.contact__info { max-width: 560px; width: 100%; text-align: center; }
.contact__items { justify-content: center; align-items: center; }
.contact__item { justify-content: center; }
.contact__subtitle { text-align: center; }
.contact__subtitle { font-family: 'Merriweather', serif; font-size: 1.05rem; color: var(--blue-deep); margin-bottom: 14px; }
.contact__info p { color: var(--text-light); font-size: .9375rem; line-height: 1.75; margin-bottom: 24px; }
.contact__items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact__item {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--text);
}
.contact__item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact__item a:hover { color: var(--blue); }
.contact__social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--blue); color: var(--white); }
.social-link svg { width: 17px; height: 17px; }

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.contact__form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--text); letter-spacing: .02em; }
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--grey);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--grey-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,58,107,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: .75rem; color: var(--grey-mid); margin-top: 12px; }

/* ══════════════════════════════════════════════════════ FOOTER */
.footer { background: var(--blue-deep); color: var(--white); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__tagline { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 240px; }
.footer__heading { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__admin-link { margin-top: 8px; color: var(--gold-light) !important; font-weight: 600; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner { padding: 18px 0; text-align: center; font-size: .75rem; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════════════ MODAL */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--grey-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  transition: background var(--transition);
}
.modal__close:hover { background: var(--grey); }
.modal__close svg { width: 16px; height: 16px; }
.modal__content { padding: 40px; }
.modal__content img { width: 100%; border-radius: var(--radius); margin-bottom: 24px; max-height: 360px; object-fit: cover; }
.modal__content .modal-date { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal__content h2 { font-family: 'Merriweather', serif; font-size: 1.4rem; color: var(--blue-deep); line-height: 1.35; margin-bottom: 20px; }
.modal__content p { color: var(--text-light); line-height: 1.85; margin-bottom: 14px; font-size: .9375rem; }
.modal__attachment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--grey-light);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--grey);
  transition: background var(--transition);
}
.modal__attachment:hover { background: var(--blue-light); }
.modal__attachment svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__sidebar { display: grid; grid-template-columns: repeat(3, 1fr); }
  .about__founded { grid-column: 1 / -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .pillars__grid { grid-template-columns: 1fr; gap: 24px; }
  .about__sidebar { grid-template-columns: 1fr; }
  .about__founded { grid-column: auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .nav { display: none; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--white); padding: 12px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav__link { padding: 10px 16px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .modal__content { padding: 28px 20px; }
  .hero__cta { flex-direction: column; }
  .btn { justify-content: center; }
}
