@charset "utf-8";

:root {
  --bg: #f5ede4;
  --bg-soft: #f9f4ee;
  --surface: #fffdfb;
  --surface-alt: #f3ede6;
  --text: #142048;
  --text-soft: #425074;
  --line: rgba(20, 32, 72, 0.14);
  --line-strong: rgba(20, 32, 72, 0.28);
  --brand-navy: #1a0d62;
  --brand-navy-soft: #2d2282;
  --brand-orange: #d97a2c;
  --brand-orange-soft: #f3b782;
  --success: #22b35f;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 38px rgba(20, 32, 72, 0.1);
  --shadow-strong: 0 28px 54px rgba(20, 32, 72, 0.18);
  --max-width: 1220px;
  --section-gap: clamp(3.5rem, 8vw, 7rem);
  --section-gap-mobile: clamp(2.4rem, 9vw, 3.6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at 8% -12%, rgba(217, 122, 44, 0.22), transparent 45%),
    radial-gradient(circle at 92% 6%, rgba(45, 34, 130, 0.16), transparent 35%),
    linear-gradient(180deg, #f8f1e8 0%, #f3ebe1 38%, #f8f4ef 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.34;
  background-image: radial-gradient(rgba(20, 32, 72, 0.08) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-inner,
.header-inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(10px);
  background: linear-gradient(95deg, rgba(26, 13, 98, 0.95), rgba(45, 34, 130, 0.94) 60%, rgba(26, 13, 98, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.32s ease, background 0.32s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(17, 8, 66, 0.3);
  background: linear-gradient(95deg, rgba(24, 11, 93, 0.98), rgba(33, 22, 115, 0.98) 60%, rgba(24, 11, 93, 0.98));
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: clamp(140px, 22vw, 182px);
}

.main-nav {
  display: none;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.95rem;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.25rem 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.24s ease;
}

.nav-list .is-active a,
.nav-list a:hover {
  color: #ffffff;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), #ffd3ac);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-list a:hover::after,
.nav-list .is-active a::after {
  transform: scaleX(1);
}

#hamburger-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1300;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

#hamburger-icon div {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

#hamburger-icon.open .bar1 {
  transform: translateY(7px) rotate(45deg);
}

#hamburger-icon.open .bar2 {
  opacity: 0;
}

#hamburger-icon.open .bar3 {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 82px 0 auto;
  margin: 0;
  list-style: none;
  padding: 1.2rem 1.4rem 1.6rem;
  flex-direction: column;
  gap: 0.45rem;
  background: linear-gradient(180deg, rgba(20, 11, 79, 0.98), rgba(18, 10, 70, 0.97));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu li:last-child {
  border-bottom: 0;
}

.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  padding: 0.62rem 0.22rem;
  font-weight: 600;
}

.mobile-menu .is-active a {
  color: #ffd3ac;
}

main > section {
  scroll-margin-top: 108px;
}

.hero {
  position: relative;
  padding-top: clamp(1rem, 4vw, 2.4rem);
}

.hero .section-inner {
  width: min(100% - 1rem, 1330px);
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 260px;
  box-shadow: var(--shadow-strong);
}

.slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(20, 14, 63, 0.76) 12%, rgba(20, 14, 63, 0.26) 54%, rgba(20, 14, 63, 0.44) 100%);
  z-index: 1;
  pointer-events: none;
}

.slides {
  width: 600%;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 16.6666%;
  transition: 1.35s ease;
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  min-height: 260px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(18, 13, 57, 0.55) 0%, rgba(18, 13, 57, 0.2) 55%, rgba(18, 13, 57, 0.08) 100%);
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 5vw, 3.5rem);
  bottom: clamp(0.95rem, 3.8vw, 2.4rem);
  z-index: 4;
  max-width: 760px;
  color: #ffffff;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #ffe3ca;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 5.6vw, 3.65rem);
  line-height: 1.02;
  text-wrap: balance;
  max-width: 18ch;
  text-shadow: 0 6px 20px rgba(17, 11, 55, 0.35);
  animation: heroPanelIn 0.9s ease both;
}

.hero-controls {
  position: absolute;
  inset: auto 1rem 1rem auto;
  z-index: 5;
  display: flex;
  gap: 0.55rem;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(16, 12, 50, 0.6);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: rgba(16, 12, 50, 0.9);
  border-color: rgba(255, 255, 255, 0.88);
}

.navigation-manual {
  position: absolute;
  left: 50%;
  bottom: 1.05rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.manual-btn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s ease;
}

.manual-btn:hover {
  background: rgba(255, 255, 255, 0.75);
}

.navigation-auto {
  display: none;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -16.6666%;
}

#radio3:checked ~ .first {
  margin-left: -33.3333%;
}

#radio4:checked ~ .first {
  margin-left: -50%;
}

#radio5:checked ~ .first {
  margin-left: -66.6666%;
}

#radio6:checked ~ .first {
  margin-left: -83.3333%;
}

.hero-thumbs {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 32, 72, 0.1);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  backdrop-filter: blur(4px);
  animation: heroThumbsIn 1s ease both;
  animation-delay: 0.2s;
}

.hero-thumb {
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.hero-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-thumb:hover img,
.hero-thumb.is-active img {
  transform: scale(1.04);
}

.hero-thumb:not(.is-active) img {
  filter: saturate(0.76);
}

.hero-thumb.is-active {
  border-color: rgba(26, 13, 98, 0.5);
}

.section-divider {
  width: min(100% - 2rem, var(--max-width));
  height: 2px;
  margin-inline: auto;
  background: linear-gradient(90deg, rgba(26, 13, 98, 0), rgba(26, 13, 98, 0.24), rgba(217, 122, 44, 0.65), rgba(26, 13, 98, 0.24), rgba(26, 13, 98, 0));
}

.leaders,
.leadership,
.recognition,
.overview,
.direct-group,
.leaders-grid,
.leader-callout,
.benefits,
.join,
.closing-image {
  padding: var(--section-gap-mobile) 0;
}

.section-title,
.overview-content h2,
.direct-group h2,
.callout-title,
.join .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 0.98;
  margin: 0 0 0.9rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.section-title--secondary {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.section-lead,
.section-sublead {
  margin: 0;
  color: var(--text-soft);
  max-width: 920px;
}

.section-sublead {
  margin-top: 0.78rem;
}

.profile-grid {
  display: grid;
  gap: 1.15rem;
}

.profile-card,
.leadership-card,
.leader-row,
.benefit-card,
.contact-row,
.overview-content,
.leadership-copy,
.frame,
.leader-note {
  border: 1px solid var(--line);
}

.profile-card {
  background: linear-gradient(170deg, #fffefd 0%, #f7f1ea 100%);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.1rem;
  text-align: center;
}

.profile-image {
  width: 146px;
  height: 146px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 5px rgba(45, 34, 130, 0.2), 0 14px 24px rgba(20, 32, 72, 0.18);
  margin-inline: auto;
}

.profile-body {
  min-width: 0;
}

.profile-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.profile-eyebrow span {
  color: var(--brand-orange);
}

.profile-name {
  margin: 0.4rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 0.95;
  color: var(--brand-navy);
}

.profile-details p {
  margin: 0.28rem 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.profile-details {
  max-width: 34ch;
  margin-inline: auto;
}

.leadership .section-title {
  max-width: 24ch;
}

.leadership-copy {
  margin-top: 0.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f1e8 100%);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.leadership .section-sublead {
  font-weight: 700;
  color: var(--text);
}

.leadership-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.leadership-card {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: #fffefc;
  box-shadow: var(--shadow-soft);
}

.leadership-card h3 {
  margin: 0 0 0.65rem;
  color: var(--brand-navy);
  font-size: 1.08rem;
}

.leadership-card p {
  margin: 0.42rem 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  padding: 0.38rem 0.58rem;
  border-radius: 9px;
  background: rgba(227, 238, 255, 0.42);
}

.recognition {
  position: relative;
}

.recognition-inner {
  text-align: center;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  background: linear-gradient(165deg, #ffffff 0%, #f8f2ea 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.profile-recognition {
  margin-top: 0.35rem;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.logo-strip img {
  max-height: 72px;
}

.overview-inner {
  display: grid;
  gap: 1.1rem;
}

.frame {
  background: linear-gradient(175deg, #ffffff 0%, #f4ecdf 100%);
  border-radius: var(--radius-lg);
  padding: 11px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.frame::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 13, 98, 0.45), rgba(217, 122, 44, 0.76), rgba(26, 13, 98, 0.45));
}

.frame img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(20, 32, 72, 0.18);
}

.frame--hero {
  margin-inline: auto;
  max-width: 980px;
}

.overview-content {
  background: linear-gradient(180deg, #fffdfb 0%, #f9f2ea 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}

.overview-content p {
  margin: 0 0 0.72rem;
  color: var(--text-soft);
}

.overview-content p:last-child {
  margin-bottom: 0;
}

.direct-group {
  text-align: center;
}

.direct-group h2 {
  display: inline-block;
  margin-bottom: 1.3rem;
  color: var(--brand-navy);
}

.leaders-grid {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.leaders-grid::before {
  content: "";
  position: absolute;
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 34, 130, 0.11), rgba(45, 34, 130, 0));
  top: -240px;
  right: -190px;
  pointer-events: none;
}

.leader-row {
  position: relative;
  background: #fffefc;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.leader-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-navy), var(--brand-orange));
}

.leader-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1.05rem 1rem 0.65rem;
}

.leader-card img {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(45, 34, 130, 0.22);
}

.leader-info {
  min-width: 0;
}

.leader-info p {
  margin: 0.15rem 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.leader-name {
  margin-bottom: 0.35rem;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--text);
}

.leader-group {
  padding: 0 1rem 0.95rem;
}

.leader-group-title {
  margin: 0 0 0.52rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.leader-group img {
  border-radius: 13px;
  max-height: 275px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.28s ease;
}

.leader-row:hover .leader-group img {
  transform: scale(1.025);
}

.leader-note {
  margin: 1.65rem 0;
  border-left: 5px solid var(--brand-orange);
  border-radius: var(--radius);
  padding: 1rem 1.2rem 1.05rem;
  background: linear-gradient(180deg, #fff8ef 0%, #ffefd9 100%);
  box-shadow: var(--shadow-soft);
}

.leader-note p {
  margin: 0;
  line-height: 1.6;
}

.leader-row > .leader-note {
  order: 3;
  grid-column: 1 / -1;
  margin: 0 1rem 1rem;
  border-top: 1px solid rgba(217, 122, 44, 0.18);
}

.leader-callout {
  background: linear-gradient(155deg, #fff1e4 0%, #ffe3cc 48%, #f7ddd6 100%);
}

.callout-title {
  text-align: center;
  color: var(--brand-navy);
}

.invoke-grid,
.badge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  justify-items: center;
}

.invoke-grid img,
.badge-grid img {
  width: min(100%, 280px);
  transition: transform 0.24s ease, filter 0.24s ease;
}

.invoke-grid img:hover,
.badge-grid img:hover {
  transform: translateY(-4px) scale(1.02);
}

.badge-grid {
  margin-top: 1rem;
}

.benefits-grid {
  display: grid;
  gap: 0.9rem;
}

.benefit-card {
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.05rem 1.2rem;
  background: #fffefc;
  box-shadow: var(--shadow-soft);
}

.benefit-card h3 {
  margin: 0 0 0.62rem;
  color: var(--brand-orange);
  font-size: 1.07rem;
}

.benefit-card p {
  margin: 0.32rem 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.join {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.contact-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.72rem;
}

.contact-row {
  border-radius: var(--radius);
  background: #fffefc;
  box-shadow: var(--shadow-soft);
  padding: 0.92rem 1rem;
  display: grid;
  gap: 0.18rem;
}

.contact-name {
  margin: 0;
  font-weight: 800;
}

.contact-email {
  margin: 0;
  color: var(--text-soft);
}

.contact-phone {
  margin-top: 0.36rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: var(--success);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(34, 179, 95, 0.32);
}

.contact-phone i {
  font-size: 1.24rem;
}

.closing-image {
  padding-top: clamp(2.2rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.footer-basic {
  background: linear-gradient(150deg, #1a0d62 0%, #271880 56%, #180d5d 100%);
  color: #ffffff;
  padding: 2.9rem 0 2.15rem;
  position: relative;
  overflow: hidden;
}

.footer-basic::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 122, 44, 0), rgba(217, 122, 44, 0.8), rgba(217, 122, 44, 0));
}

.footer-inner {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  grid-template-areas:
    "brand"
    "nav"
    "copyright";
}

.footer-brand {
  display: grid;
  gap: 0.95rem;
  justify-items: center;
  text-align: center;
  grid-area: brand;
}

.footer-logo img {
  width: clamp(138px, 26vw, 172px);
}

.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.icon p {
  margin: 0;
}

.icon i {
  font-size: 1.22rem;
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.95rem;
  justify-items: center;
  text-align: center;
  grid-area: nav;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.25;
}

.footer-nav .is-active a {
  color: #ffd8b5;
}

.copyright {
  margin: 0.35rem 0 0;
  font-size: 0.87rem;
  opacity: 0.82;
  text-align: center;
  grid-area: copyright;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.64s ease, transform 0.64s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.profile-card,
.leadership-card,
.leader-row,
.benefit-card,
.contact-row,
.overview-content,
.leadership-copy,
.frame,
.recognition-inner {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.profile-card:hover,
.leadership-card:hover,
.leader-row:hover,
.benefit-card:hover,
.contact-row:hover,
.overview-content:hover,
.frame:hover,
.recognition-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(20, 32, 72, 0.16);
  border-color: var(--line-strong);
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroThumbsIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 580px) {
  .hero-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hero-thumb img {
    height: 76px;
  }

  .invoke-grid,
  .badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-row {
    grid-template-columns: 0.75fr 1.5fr auto;
    align-items: center;
  }

  .contact-phone {
    justify-self: end;
    margin-top: 0;
  }
}

@media (min-width: 760px) {
  .section-inner,
  .header-inner {
    width: min(100% - 3rem, var(--max-width));
  }

  .leaders,
  .leadership,
  .recognition,
  .overview,
  .direct-group,
  .leaders-grid,
  .leader-callout,
  .benefits,
  .join,
  .closing-image {
    padding: var(--section-gap) 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      "brand nav"
      "copyright copyright";
    align-items: start;
    gap: 1.45rem 2.3rem;
  }

  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .icon-container {
    justify-content: flex-start;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: end;
    justify-items: end;
    text-align: right;
    gap: 0.72rem 2rem;
  }

  .copyright {
    grid-column: 1 / -1;
    margin-top: 0.2rem;
  }
}

@media (min-width: 760px) and (max-width: 1079px) {
  .leadership .section-title {
    font-size: clamp(2.05rem, 4.2vw, 2.9rem);
  }

  .overview-inner {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin-inline: auto;
  }

  .overview-content {
    order: 1;
  }

  .overview-inner .frame {
    order: 2;
  }
}

@media (min-width: 1080px) {
  .main-nav {
    display: block;
    flex: 1;
  }

  #hamburger-icon {
    display: none;
  }
}

@media (min-width: 980px) {
  .nav-list {
    gap: 1.15rem;
  }

  .nav-list a {
    font-size: 0.92rem;
    padding-inline: 0.45rem;
  }

  .hero-panel {
    bottom: 2rem;
  }

  .hero-controls {
    inset: 50% 1.1rem auto auto;
    transform: translateY(-50%);
    flex-direction: column;
  }

  .benefits-grid,
  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .overview-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .overview-content,
  .overview-inner .frame {
    order: initial;
  }

  .leadership-grid {
    gap: 1.1rem;
  }

  .leader-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
    row-gap: 1rem;
  }

  .leader-card {
    align-items: flex-start;
    padding: 1.2rem;
    border-right: 1px solid var(--line);
  }

  .leaders-grid .leader-row:nth-of-type(even) .leader-card {
    order: 2;
    border-right: 0;
    border-left: 1px solid var(--line);
  }

  .leaders-grid .leader-row:nth-of-type(even) .leader-group {
    order: 1;
  }

  .leader-card img {
    width: 132px;
    height: 132px;
  }

  .leader-group {
    padding: 1.2rem;
  }

  .leader-row > .leader-note {
    margin: 0 1.2rem 1.2rem;
    padding: 1.1rem 1.3rem 1.15rem;
  }

  .leader-group img {
    height: 100%;
    max-height: 100%;
    min-height: 240px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.45rem;
  }

  .profile-grid > .profile-recognition {
    grid-column: 1 / 3;
  }

  .profile-card {
    grid-template-columns: auto 1fr;
    align-items: center;
    text-align: left;
  }

  .profile-image {
    margin-inline: 0;
  }

  .profile-details {
    max-width: none;
    margin-inline: 0;
  }

  .leadership .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 1.2rem 1.8rem;
    align-items: start;
  }

  .leadership .section-title {
    margin-top: 0.35rem;
    margin-bottom: 0;
  }

  .leadership-copy {
    margin-top: 0;
  }

  .leadership-grid {
    grid-column: 1 / -1;
    margin-top: 0.1rem;
  }

  .join .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 1.3rem 2rem;
    align-items: start;
  }

  .join .section-title,
  .join .section-sublead {
    grid-column: 1;
  }

  .join .contact-grid {
    grid-column: 2;
    margin-top: 0.15rem;
  }

  .profile-image {
    width: 168px;
    height: 168px;
  }

  .section-title,
  .overview-content h2,
  .direct-group h2,
  .callout-title,
  .join .section-title {
    font-size: clamp(2.3rem, 3.2vw, 3.55rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,  
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-panel,
  .hero-thumbs {
    animation: none !important;
  }
}
