:root {
  --aav-black: #0b0b0b;
  --aav-dark: #151515;
  --aav-red: #d40000;
  --aav-red-dark: #a80000;
  --aav-white: #ffffff;
  --aav-gray: #6c757d;
  --aav-light: #f5f5f5;
  --aav-menu: #c40000;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #222;
  background: #fff;
  line-height: 1.6;
}

a { color: var(--aav-red); text-decoration: none; }
a:hover { color: var(--aav-red-dark); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 700;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
}

.site-topbar {
  background: #000;
  color: #fff;
  padding: .55rem 0;
}

.site-topbar-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  gap: 1rem;
}

.site-search {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: .35rem;
  max-width: 260px;
  width: 100%;
}
.site-search .form-control {
  border-radius: 0;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  font-size: .85rem;
}
.site-search .form-control::placeholder { color: #999; }
.btn-search {
  background: var(--aav-red);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: .28rem .7rem;
}
.btn-search:hover { background: var(--aav-red-dark); color: #fff; }
.site-search-mobile {
  position: static;
  transform: none;
  max-width: none;
  padding: 0 .5rem;
}
.site-search-mobile .form-control {
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.25);
}

.site-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.site-logo img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: min(480px, 78vw);
  margin: 0 auto;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .04em;
}

.social-top {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  gap: .75rem;
}
.social-top a {
  color: #fff;
  font-size: .95rem;
  opacity: .9;
}
.social-top a:hover { color: var(--aav-red); opacity: 1; }

/* Main nav */
.site-nav-wrap {
  background: transparent;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 200;
}

.site-nav {
  position: relative;
  background: transparent;
  padding: 0 1.5rem;
  margin: 0;
  overflow: visible;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--aav-menu);
  clip-path: polygon(1.5% 0, 100% 0, 98.5% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

.site-nav .navbar-nav,
.site-nav .navbar-toggler,
.site-nav .navbar-collapse {
  position: relative;
  z-index: 1;
}

.site-nav .navbar-nav .nav-link {
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .06em;
  padding: .95rem 1.1rem !important;
  text-transform: uppercase;
  font-size: .95rem;
}

.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link.active,
.site-nav .navbar-nav .nav-item.show > .nav-link,
.site-nav .navbar-nav .nav-item:hover > .nav-link,
.site-nav .navbar-nav .nav-item:hover .nav-link-dropdown-wrap {
  background: rgba(0,0,0,.18);
}

.site-nav .nav-item.dropdown {
  position: relative;
}

.site-nav .nav-link-dropdown-wrap {
  display: flex;
  align-items: stretch;
}

.site-nav .nav-link-dropdown-wrap .nav-link {
  padding-right: .45rem !important;
}

.site-nav .nav-dropdown-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 .85rem 0 .2rem;
  cursor: pointer;
  font-size: .7rem;
}

.site-nav .nav-item.dropdown.is-open > .dropdown-menu,
.site-nav .dropdown-menu.show,
.site-nav .nav-item.dropdown:hover > .dropdown-menu,
.site-nav .nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
}

.site-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  background: rgba(10, 10, 10, .94);
  border: 0;
  border-radius: 0;
  padding: .35rem 0;
  min-width: 240px;
  z-index: 1050;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.site-nav .dropdown-item {
  color: #fff;
  font-size: .95rem;
  padding: .7rem 1.15rem;
  border-left: 3px solid transparent;
}
.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
  background: #000;
  color: #fff;
  border-left-color: var(--aav-red);
}

.navbar-toggler {
  border-color: rgba(255,255,255,.5);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Home: menu colado por cima do banner */
.is-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-home .site-topbar {
  background: rgba(0, 0, 0, .82);
}

.is-home .hero-slider {
  margin-top: 0;
}

.is-home .hero-slide,
.is-home .hero-slider {
  min-height: 100vh;
}

.is-home .hero-content {
  padding: 11rem 0 5rem;
}

.is-home main > .flash,
.is-home .message,
.is-home [class*="flash"] {
  position: relative;
  z-index: 110;
}

/* Hero */
.hero-slider {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  background: #111;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 68vh;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-slide.active { display: block; }

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
  max-width: 760px;
}

.hero-kicker {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  opacity: .95;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span { color: var(--aav-red); }

.btn-aav {
  background: var(--aav-red);
  color: #fff;
  border: 2px solid var(--aav-red);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .7rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
}
.btn-aav:hover { background: var(--aav-red-dark); border-color: var(--aav-red-dark); color: #fff; }

.btn-aav-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .7rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
}
.btn-aav-outline:hover { background: #fff; color: #111; }

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
}
.hero-nav.prev { left: 1rem; }
.hero-nav.next { right: 1rem; }

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .35rem;
}

.section-title .line {
  width: 48px;
  height: 3px;
  background: var(--aav-red);
  margin: .5rem auto;
}

.section-title .subtitle {
  color: var(--aav-red);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.person-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.person-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
  flex-shrink: 0;
  background: #ddd;
}

.person-photo-placeholder {
  display: grid;
  place-items: center;
  color: #999;
  font-size: 1.8rem;
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .35rem;
}

.person-bio {
  color: var(--aav-gray);
  font-size: .95rem;
}

.board-card,
.member-card {
  height: 100%;
}

.board-role {
  color: var(--aav-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .9rem;
}

.transparency-card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #eee;
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: #222;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.transparency-card:hover {
  color: #111;
  transform: translateY(-4px);
  border-color: #ddd;
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
}
.transparency-card i {
  font-size: 1.8rem;
  color: var(--aav-red);
  margin-bottom: .85rem;
}
.transparency-card h2 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.transparency-card p {
  margin: 0;
  color: var(--aav-gray);
  font-size: .9rem;
}

.transparency-box {
  height: 100%;
  background: #fff;
  border: 1px solid #ececec;
  padding: 1.4rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}
.transparency-box-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .65rem;
}
.transparency-box-head i {
  color: var(--aav-red);
  font-size: 1.35rem;
}
.transparency-box-head h2 {
  font-size: 1.05rem;
  margin: 0;
}
.transparency-box-desc {
  color: var(--aav-gray);
  font-size: .92rem;
  min-height: 2.8rem;
}
.transparency-box-links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .9rem;
}
.btn-doc {
  background: #1a1a1a;
  color: #fff !important;
  border: 0;
  border-radius: 0;
  font-size: .78rem;
  padding: .4rem .7rem;
  text-transform: none;
  letter-spacing: 0;
}
.btn-doc:hover { background: var(--aav-red); color: #fff !important; }
.transparency-box-more {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border: 0;
  margin-bottom: .75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-item .accordion-button {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: #111;
  background: #fff;
  box-shadow: none !important;
}
.faq-item .accordion-button:not(.collapsed) {
  color: var(--aav-red);
  background: #fff;
}
.faq-item .accordion-button::after {
  filter: none;
}
.faq-item .accordion-body {
  color: #555;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.search-results {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results li {
  padding: .85rem 0;
  border-bottom: 1px solid #eee;
}
.search-results a {
  color: #111;
  font-weight: 600;
}
.search-results a:hover { color: var(--aav-red); }

.docs-list {
  max-width: 860px;
  margin: 0 auto;
}

.doc-item-info {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.doc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #f8eaea;
  color: var(--aav-red);
  flex-shrink: 0;
}

/* Events section */
.events-section {
  position: relative;
  color: #fff;
  background: #111 center/cover no-repeat;
}

.events-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.events-section .container { position: relative; z-index: 1; }

.event-featured {
  background: rgba(20,20,20,.78);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.event-featured img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: .55;
}

.event-featured-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-list-item {
  background: rgba(230,230,230,.88);
  color: #111;
  padding: 1rem 1.15rem;
  margin-bottom: .75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.event-date-box {
  font-family: var(--font-display);
  font-weight: 700;
  min-width: 64px;
  text-align: center;
  line-height: 1.1;
}
.event-date-box .day { font-size: 1.4rem; display: block; }
.event-date-box .month { font-size: .85rem; text-transform: uppercase; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, #111 0%, #2a0000 100%);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.page-hero h1 { margin: 0; }

/* Cards content */
.news-card, .member-card, .gallery-card {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover, .member-card:hover, .gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.news-card img, .gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.content-box {
  background: #fff;
  padding: 1.5rem;
}

.mvv-box {
  border-left: 4px solid var(--aav-red);
  background: var(--aav-light);
  padding: 1.25rem 1.4rem;
  height: 100%;
}

.doc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

/* Footer */
.site-footer {
  background: #1b1b1b;
  color: #ddd;
  padding-top: 3.5rem;
}

.site-footer h5 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 1.2rem;
}

.site-footer a { color: #ccc; }
.site-footer a:hover { color: #fff; }

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: #2a2a2a;
  color: #fff;
  margin-right: .4rem;
}
.footer-social a:hover { background: var(--aav-red); color: #fff; }

.newsletter-form .form-control {
  border-radius: 0;
  background: #fff;
  border: 0;
  margin-bottom: .65rem;
}

/* Honeypot anti-spam: oculto para humanos, visível para bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2.5rem;
  padding: 1rem 0;
  font-size: .9rem;
  color: #aaa;
}

/* Accessibility tools */
.accessibility-widget {
  --a11y-blue: #087ff5;
  --a11y-navy: #122751;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3000;
  color: var(--a11y-navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}

.accessibility-trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--a11y-blue);
  color: #fff;
  box-shadow: 0 0 0 1px #10284f, 0 8px 24px rgba(0, 0, 0, .28);
  font-size: 29px;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.accessibility-trigger:hover {
  background: #006bd4;
  color: #fff;
  transform: translateY(-2px);
}

.accessibility-trigger:focus-visible,
.accessibility-panel button:focus-visible,
.accessibility-panel input:focus-visible {
  outline: 3px solid #ffcc00;
  outline-offset: 3px;
}

.accessibility-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(360px, calc(100vw - 30px));
  max-height: calc(100vh - 118px);
  overflow-y: auto;
  padding: 18px 17px 16px;
  border: 1px solid #dfe3eb;
  border-radius: 16px;
  background: #fff;
  color: var(--a11y-navy);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  scrollbar-width: thin;
}

.accessibility-panel[hidden] { display: none; }

.accessibility-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.accessibility-panel-header h2 {
  margin: 0;
  color: var(--a11y-navy);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: normal;
  text-transform: none;
}

.accessibility-close {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--a11y-navy);
  cursor: pointer;
}

.accessibility-close:hover { background: #edf1f7; }

.accessibility-font-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 17px;
}

.accessibility-font-controls button {
  min-width: 42px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #dce2ec;
  border-radius: 9px;
  background: #f2f4f8;
  color: var(--a11y-navy);
  font-weight: 700;
  cursor: pointer;
}

.accessibility-font-controls button:hover,
.accessibility-options button:hover {
  border-color: #9fc9f6;
  background: #eaf4ff;
}

.accessibility-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.accessibility-options button {
  min-height: 36px;
  padding: 7px 9px;
  border: 1px solid #d9dee8;
  border-radius: 11px;
  background: #f3f4f7;
  color: #243b67;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.accessibility-options button.is-active {
  border-color: var(--a11y-blue);
  background: var(--a11y-blue);
  color: #fff;
}

.accessibility-range-list {
  display: grid;
  gap: 14px;
}

.accessibility-range {
  display: block;
  margin: 0;
  cursor: pointer;
}

.accessibility-range > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  font-size: 16px;
}

.accessibility-range output {
  flex: 0 0 auto;
  color: var(--a11y-navy);
  font-size: 14px;
  font-weight: 700;
}

.accessibility-range input[type="range"] {
  --range-percent: 25%;
  display: block;
  width: 100%;
  height: 7px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(to right, var(--a11y-blue) 0 var(--range-percent), #e4e8ee var(--range-percent) 100%);
  cursor: pointer;
}

.accessibility-range input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: var(--a11y-blue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.accessibility-range input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  background: var(--a11y-blue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.accessibility-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 16px;
  padding: 9px 12px;
  border: 1px solid #d9dee8;
  border-radius: 10px;
  background: #fff;
  color: #243b67;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.accessibility-reset:hover { background: #f3f4f7; }

/* The widget is excluded so its controls remain predictable while the page changes. */
html[data-a11y-color="invert"] body {
  background: #000;
}

html[data-a11y-color="invert"] body > :not(.accessibility-widget) {
  filter: invert(1) hue-rotate(180deg);
}

html[data-a11y-color="invert"] body > :not(.accessibility-widget) img,
html[data-a11y-color="invert"] body > :not(.accessibility-widget) video {
  filter: invert(1) hue-rotate(180deg);
}

html[data-a11y-color="monochrome"] body > :not(.accessibility-widget) { filter: grayscale(1); }
html[data-a11y-color="low-saturation"] body > :not(.accessibility-widget) { filter: saturate(.35); }
html[data-a11y-color="high-saturation"] body > :not(.accessibility-widget) { filter: saturate(1.8); }

html[data-a11y-color="dark"] body,
html[data-a11y-color="dark"] body > :not(.accessibility-widget),
html[data-a11y-color="dark"] body > :not(.accessibility-widget) * {
  border-color: #fff !important;
  background-color: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
}

html[data-a11y-color="dark"] body > :not(.accessibility-widget) a {
  color: #ffeb3b !important;
  text-decoration: underline !important;
}

html[data-a11y-color="light"] body,
html[data-a11y-color="light"] body > :not(.accessibility-widget),
html[data-a11y-color="light"] body > :not(.accessibility-widget) * {
  border-color: #111 !important;
  background-color: #fff !important;
  color: #000 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

html[data-a11y-color="light"] body > :not(.accessibility-widget) a {
  color: #0000c8 !important;
  text-decoration: underline !important;
}

html.a11y-highlight-links body > :not(.accessibility-widget) a {
  outline: 2px solid #111 !important;
  outline-offset: 2px !important;
  background: #ffeb3b !important;
  color: #000 !important;
  text-decoration: underline !important;
}

html.a11y-highlight-titles body > :not(.accessibility-widget) :is(h1, h2, h3, h4, h5, h6) {
  outline: 2px solid #111 !important;
  outline-offset: 3px !important;
  background: #ffeb3b !important;
  color: #000 !important;
}

html[data-a11y-content-size] body > :not(.accessibility-widget) {
  zoom: var(--a11y-content-size);
}

html[data-a11y-text-size] body > :not(.accessibility-widget) {
  font-size: var(--a11y-text-size);
}

html[data-a11y-line-height] body > :not(.accessibility-widget),
html[data-a11y-line-height] body > :not(.accessibility-widget) * {
  line-height: var(--a11y-line-height) !important;
}

html[data-a11y-letter-spacing] body > :not(.accessibility-widget),
html[data-a11y-letter-spacing] body > :not(.accessibility-widget) * {
  letter-spacing: var(--a11y-letter-spacing) !important;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }

@media (max-width: 991px) {
  .site-nav {
    clip-path: none;
    padding: 0 .75rem;
  }
  .site-nav::before {
    clip-path: none;
  }
  .site-nav .dropdown-menu,
  .site-nav .nav-item.dropdown:hover > .dropdown-menu,
  .site-nav .nav-item.dropdown:focus-within > .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,.25);
    min-width: 100%;
  }
  .site-nav .dropdown-menu.show,
  .site-nav .nav-item.dropdown.is-open > .dropdown-menu {
    display: block;
  }
  .site-nav .nav-link-dropdown-wrap {
    width: 100%;
    justify-content: space-between;
  }
  .site-nav .nav-link-dropdown-wrap .nav-link {
    flex: 1;
  }
  .site-logo img {
    max-height: 40px;
    max-width: min(280px, 72vw);
  }
  .hero-content { padding: 5rem 0 3.5rem; }
  .is-home .hero-content { padding: 9.5rem 0 4rem; }
  .is-home .hero-slide,
  .is-home .hero-slider { min-height: 85vh; }
  .person-card { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 575px) {
  .accessibility-widget {
    right: 15px;
    bottom: 15px;
  }

  .accessibility-trigger {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .accessibility-panel {
    position: fixed;
    right: 15px;
    bottom: 82px;
    width: calc(100vw - 30px);
    max-height: calc(100vh - 98px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .accessibility-trigger,
  .accessibility-options button { transition: none; }
}
