:root {
  --jgef-orange: #d86a41;
  --jgef-orange-dark: #c85d31;
  --jgef-ink: #171717;
  --jgef-charcoal: #242424;
  --jgef-gray: #979795;
  --jgef-mist: #f4f1ec;
  --jgef-paper: #fbfaf7;
  --jgef-white: #ffffff;
  --jgef-blue: #175f88;
  --jgef-green: #4b6d4f;
  --jgef-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --jgef-serif: "Rosarivo", Georgia, "Times New Roman", serif;
  --shadow-soft: 0 1.25rem 3rem rgba(0, 0, 0, 0.12);
  --shadow-focus: 0 0 0 0.25rem rgba(226, 113, 66, 0.25);
  --radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--jgef-sans);
  font-weight: 400;
  font-style: normal;
  color: #000;
  background: var(--jgef-paper);
  line-height: 1.2;
  font-size: 1.5em;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

h1 {
  font-family: var(--jgef-serif);
  font-size: 3em;
  color: var(--jgef-orange);
  letter-spacing: 0.5em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

h2 {
  font-family: var(--jgef-serif);
  font-size: 2.75em;
  color: var(--jgef-gray);
  letter-spacing: 0.5em;
  line-height: 1.2;
  text-transform: uppercase;
}

h3 {
  font-family: var(--jgef-serif);
  font-size: 2.5em;
  color: var(--jgef-gray);
  letter-spacing: 0.5em;
  line-height: 1.2;
  text-transform: uppercase;
}

h4 {
  font-family: var(--jgef-sans);
  font-weight: 700;
  font-size: 2.25em;
  color: var(--jgef-orange);
  letter-spacing: 0.5em;
  line-height: 1;
  text-transform: uppercase;
}

h5 {
  font-family: var(--jgef-sans);
  font-weight: 400;
  font-size: 2em;
  color: var(--jgef-orange);
  letter-spacing: 0.5em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rosarivo-regular {
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: normal;
}

.jost-regular {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  color: inherit;
}

a:hover {
  color: var(--jgef-orange);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: var(--shadow-focus);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--jgef-white);
  background: var(--jgef-ink);
  border-radius: 0.5rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  overflow-x: clip;
  position: relative;
}

.site-shell::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 8px;
  height: 100vh;
  background: var(--jgef-orange);
  z-index: 1030;
  pointer-events: none;
}

.container {
  max-width: 1460px;
}

.section-pad {
  padding: clamp(4rem, 4vw, 4rem) 0;
}

.section-heading {
  margin: 0;
  color: var(--jgef-gray);
  font-family: var(--jgef-serif);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--jgef-orange);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--jgef-white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
    url("../img/hero.jpg");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 28%, rgba(239, 137, 92, 0.22), transparent 24%),
    radial-gradient(circle at 59% 55%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.hero .container-fluid,
.hero .row {
  min-height: 100svh;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 3vw, 2.5rem);
}

.language-toggle {
  display: inline-flex;
  gap: 0;
  margin-bottom: clamp(2rem, 7vw, 8rem);
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.language-toggle .btn {
  min-width: 8.25rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.language-toggle .btn-primary {
  color: var(--jgef-ink);
  background: var(--jgef-white);
}

.language-toggle .btn-outline-light {
  color: var(--jgef-white);
  background: transparent;
}

.hero-copy p {
  margin: 0;
  line-height: 1.62;
}

.hero-side {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3rem);
}

.brand-lockup {
  max-width: min(26rem, 100%);
  filter: drop-shadow(0 0.5rem 1.2rem rgba(0, 0, 0, 0.22));
}

.brand-link {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero-nav {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1.1rem;
  margin-top: 4rem;
  padding: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  list-style: none;
}

.hero-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
  color: var(--jgef-white);
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.mobile-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(23, 23, 23, 0.92);
  backdrop-filter: blur(12px);
}

.mobile-nav .nav-link {
  color: var(--jgef-white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-intro {
  row-gap: 1.5rem;
}

.mission-title {
  color: var(--jgef-orange);
}

.mission-lead {
  margin: 0;
  line-height: 1.5;
}

.mission-caption {
  color: var(--jgef-gray);
  font-family: var(--jgef-serif);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.principles-grid > [class*="col-"] {
  display: flex;
}

.principles-grid--bleed {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.principle-card {
  position: relative;
  flex: 1 1 auto;
  min-height: 38rem;
  overflow: hidden;
  color: var(--jgef-white);
  background: #2d3c4c;
}

.principle-card::before,
.principle-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.principle-card::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.46)),
    var(--card-background, linear-gradient(160deg, #175f88, #25313f));
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.principle-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.54) 100%);
}

.principle-card > * {
  position: relative;
  z-index: 1;
}

.principle-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
}

.principle-card h3 {
  margin: 0 0 1rem;
  color: #ff925d;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle-card p {
  margin: 0;
  max-width: 35rem;
  font-size: 1.05rem;
}

.principle-card--accessibility {
  --card-background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("../img/accessibility-bg.jpg");
}

.principle-card--personalization {
  --card-background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("../img/personalization-bg.jpg");
}

.principle-card--commitment {
  --card-background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("../img/commitment-bg.jpg");
}

.leadership-divider {
  align-self: center;
  width: 100%;
  height: 2px;
  background: var(--jgef-orange);
}

#leadership-title {
  font-size: 2.5rem;
}

.leadership-grid {
  row-gap: 3rem;
}

.leader-card {
  height: 100%;
  padding-right: clamp(0rem, 2vw, 2rem);
}

.leader-card h3 {
  margin: 0;
  color: var(--jgef-orange);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leader-card h4 {
  margin: 0.35rem 0 1rem;
  color: var(--jgef-gray);
  font-family: var(--jgef-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 2rem;
}

.leader-card p {
  margin: 0;
  font-size: 1.02rem;
}

.team-grid {
  row-gap: 2rem;
}

.team-cards-grid {
  row-gap: 3rem;
}

.team-heading {
  color: var(--jgef-gray);
  font-family: var(--jgef-serif);
  line-height: 1;
  text-transform: uppercase;
  font-size: 2.5rem;
}

.team-card h3 {
  margin: 0;
  color: var(--jgef-orange);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card p {
  margin: 0.25rem 0 0;
  color: var(--jgef-gray);
  font-family: var(--jgef-serif);
  line-height: 1.1;
  text-transform: uppercase;
}

.summary-banner {
  position: relative;
  color: var(--jgef-white);
  min-height: 34rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../img/summary-background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.summary-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 20%, transparent 20%, transparent 40%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.06) 60%, transparent 60%, transparent 80%, rgba(255, 255, 255, 0.04) 80%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  mix-blend-mode: screen;
  opacity: 0.28;
}

.summary-banner .container-fluid {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 34rem;
  align-items: flex-end;
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.summary-banner .row {
  width: 100%;
}

.summary-title {
  margin: 0 0 1.75rem;
  font-family: var(--jgef-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.08;
  color: var(--jgef-white);
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
}

.btn-jgef {
  border: 0;
  border-radius: 0;
  padding: 1rem 2rem;
  color: var(--jgef-white);
  background: var(--jgef-orange);
  box-shadow: var(--shadow-soft);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-jgef:hover,
.btn-jgef:focus-visible {
  color: var(--jgef-white);
  background: var(--jgef-orange-dark);
}

.faq-section {
  background: #f8f5f0;
}

.faq-section .section-heading {
  text-align: center;
}

.faq-column .accordion-item {
  border: 0;
  border-top: 1px solid rgba(226, 113, 66, 0.9);
  border-radius: 0;
  background: transparent;
}

.faq-column .accordion-item:last-child {
  border-bottom: 1px solid rgba(226, 113, 66, 0.9);
}

.faq-column .accordion-button {
  padding: 1.35rem 0;
  color: var(--jgef-ink);
  background: transparent;
  box-shadow: none;
  font-size: 1.05rem;
  font-weight: 500;
}

.faq-column .accordion-button:not(.collapsed) {
  color: var(--jgef-orange-dark);
  background: transparent;
}

.faq-column .accordion-button::after {
  width: 1.2rem;
  height: 1.2rem;
  background-size: 1.2rem;
}

.faq-column .accordion-body {
  padding: 0 0 1.5rem;
  color: #434343;
}

.contact-section {
  color: var(--jgef-white);
  background: linear-gradient(90deg, #5b5b5b 0%, #444 24%, #2c2c2c 41.666%, #141414 70%, #040404 100%);
}

.contact-title {
  margin: 0;
  font-family: var(--jgef-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--jgef-white);
}

.contact-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.contact-copy a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-thickness: 0.08em;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 2rem;
}

.social-btn {
  display: inline-flex;
  width: 3.15rem;
  height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.45rem;
  color: var(--jgef-white);
  background: var(--jgef-orange);
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover,
.social-btn:focus-visible {
  color: var(--jgef-white);
  background: var(--jgef-orange-dark);
}

.social-btn svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.contact-form label {
  margin-bottom: 0.45rem;
  color: var(--jgef-orange);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form .form-control {
  border: 2px solid transparent;
  border-radius: 0;
  min-height: 3.35rem;
}

.contact-form textarea.form-control {
  min-height: 12rem;
}

.contact-form .form-control:focus {
  border-color: var(--jgef-orange);
  box-shadow: var(--shadow-focus);
}

.footer-meta {
  padding: 1.1rem 0;
  color: #1f1f1f;
  background: #b8b8b3;
  font-size: 0.96rem;
}

.footer-meta a {
  color: inherit;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero .container-fluid,
  .hero .row {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .hero-side {
    align-items: start;
    gap: 2rem;
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .brand-lockup {
    max-width: 19rem;
  }

  .brand-link {
    justify-content: flex-start;
  }

  .summary-title {
    text-align: left;
  }

  .contact-section {
    background: linear-gradient(180deg, #4d4d4d 0%, #333 32%, #070707 32%, #070707 100%);
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 3.5rem 0;
  }

  .hero-copy p,
  .mission-lead {
    font-size: 1.15rem;
  }

  .language-toggle .btn {
    min-width: 6.7rem;
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }

  .principle-card {
    min-height: 22rem;
  }

  .hero-nav {
    display: none;
  }

  .social-list {
    padding-top: 1.5rem;
  }
}
