:root {
  --navy: #06233c;
  --navy-2: #031a31;
  --navy-3: #0c2d49;
  --ink: #10243b;
  --muted: #4f6070;
  --gold: #c99845;
  --gold-2: #d4aa62;
  --paper: #f7f4ef;
  --paper-2: #fffdf9;
  --line: #dcc9aa;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(7, 31, 54, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

img,
svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #031a31 0%, #072b49 55%, #041d35 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 12px 30px rgba(0, 19, 36, .18);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: max-content;
  color: var(--white);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-tagline {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .84);
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  padding: 26px 0 23px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #fff;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 21px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255, 255, 255, .32);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta svg,
.btn svg,
.small-link svg,
.footer-column svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  overflow: hidden;
  background: #e6edf0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center right;
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 246, .96) 0%, rgba(246, 248, 248, .82) 30%, rgba(245, 248, 248, .22) 54%, rgba(4, 18, 30, .08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(7,31,54,.1) 100%);
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 72px 0 84px;
}

.hero-copy {
  width: min(560px, 52%);
}

.hero-mobile-portrait {
  display: none;
}

.hero-mobile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(45px, 5vw, 67px);
  line-height: .98;
}

.hero p {
  max-width: 560px;
  margin: 28px 0 26px;
  font-size: 17px;
  color: #1d3042;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--navy-3);
  box-shadow: 0 14px 28px rgba(6, 35, 60, .2);
}

.btn-primary:hover {
  background: #0d395c;
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, .48);
  border-color: rgba(6, 35, 60, .55);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .72);
  border-color: var(--navy);
}

.intro-section {
  padding: 30px 0 28px;
  background: var(--paper-2);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-card {
  position: relative;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 15px 36px rgba(20, 38, 53, .11);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 152, 69, .95);
  box-shadow: 0 22px 50px rgba(20, 38, 53, .16);
}

.video-card img {
  width: 100%;
  max-height: 300px;
  aspect-ratio: 1200 / 525;
  object-fit: cover;
  border-radius: 5px;
  transition: transform .55s ease;
}

.video-card:hover img {
  transform: scale(1.018);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 28, 49, .88);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
  transition: transform .2s ease, background .2s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: var(--gold);
}

.play-button svg {
  width: 27px;
  height: 27px;
  margin-left: 4px;
  fill: currentColor;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.presentation-copy h2 {
  max-width: 410px;
  font-size: 31px;
  line-height: 1.07;
}

.presentation-copy p {
  max-width: 430px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.small-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 39px;
  padding: 0 17px;
  border: 1px solid #748596;
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease;
}

.small-link:hover {
  background: #fff;
  border-color: var(--navy);
}

.principles {
  padding: 0 0 24px;
  background: var(--paper-2);
}

.section-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 10px 0 19px;
}

.section-rule span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-rule h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(214, 194, 160, .75);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 14px 35px rgba(20, 38, 53, .08);
  overflow: hidden;
}

.principle-card {
  min-height: 165px;
  padding: 25px 24px 24px;
  text-align: center;
}

.principle-card + .principle-card {
  border-left: 1px solid rgba(214, 194, 160, .72);
}

.icon-frame {
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  color: var(--gold);
}

.icon-frame img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: transform .28s ease, filter .28s ease;
}

.principle-card:hover .icon-frame img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 9px 14px rgba(201, 152, 69, .24));
}

.icon-frame svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3 {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.1;
}

.principle-card p {
  margin: 0 auto;
  max-width: 210px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.projects {
  padding: 0 0 33px;
  background:
    radial-gradient(circle at 0 0, rgba(201, 152, 69, .08), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f8f5ef 100%);
}

.project-category {
  margin-top: 20px;
}

.content-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 18px;
}

.content-summary article {
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid rgba(215, 194, 159, .9);
  border-radius: 7px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 7px 16px rgba(20, 38, 53, .05);
}

.content-summary strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
}

.content-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.content-toolbar {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) minmax(190px, 250px);
  gap: 12px;
  align-items: center;
  margin: 0 0 15px;
  padding: 12px;
  border: 1px solid rgba(215, 194, 159, .88);
  border-radius: 7px;
  background: rgba(255, 255, 255, .72);
}

.content-tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(6, 35, 60, .22);
  border-radius: 5px;
  background: #f4efe6;
}

.content-tab {
  min-width: 112px;
  border: 0;
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.content-tab.is-active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 6px 14px rgba(6, 35, 60, .16);
}

.content-search input,
.content-toolbar select {
  width: 100%;
  height: 44px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(6, 35, 60, .22);
  border-radius: 5px;
  color: var(--ink);
  background: #fffdf9;
  outline: 0;
}

.content-search input:focus,
.content-toolbar select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 152, 69, .14);
}

.content-status {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.content-library {
  display: grid;
  gap: 20px;
}

.project-area {
  display: grid;
  gap: 11px;
}

.area-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.area-heading strong {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.area-heading h3 {
  font-size: 22px;
  line-height: 1.15;
}

.card-kicker {
  display: block;
  margin: 1px 0 5px;
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .6px;
  line-height: 1.2;
  text-transform: uppercase;
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 11px;
}

.category-heading strong {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
  font-family: Georgia, "Times New Roman", serif;
}

.category-heading h3 {
  font-size: 22px;
  line-height: 1.15;
}

.project-grid {
  display: grid;
  gap: 12px;
}

.project-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid-small {
  grid-template-columns: repeat(4, 1fr);
}

.project-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 120px;
  gap: 14px;
  padding: 9px;
  border: 1px solid rgba(215, 194, 159, .9);
  border-radius: 7px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 7px 16px rgba(20, 38, 53, .05);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(201, 152, 69, .95);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  outline: none;
}

.project-card img {
  width: 112px;
  height: 102px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform .45s ease, filter .24s ease;
}

.project-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.03);
}

.project-card h4 {
  margin: 2px 0 6px;
  font-size: 15px;
  line-height: 1.13;
}

.project-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.32;
}

.project-card a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.project-card a:hover {
  color: var(--gold);
}

.card-action {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  pointer-events: none;
}

.project-card:hover .card-action,
.project-card:focus-visible .card-action {
  color: var(--gold);
}

.project-card button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.project-card button:hover {
  color: var(--gold);
}

.empty-state {
  padding: 24px;
  border: 1px dashed rgba(6, 35, 60, .28);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.vision {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  min-height: 360px;
  overflow: hidden;
  background: #f2eee7;
  border-top: 1px solid rgba(218, 199, 169, .65);
}

.vision-image {
  position: relative;
}

.vision-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.vision-content {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 60px;
  align-items: center;
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 58px 64px;
}

.vision-copy h2 {
  max-width: 650px;
  font-size: 34px;
  line-height: 1.08;
}

.vision-copy p {
  max-width: 675px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.vision-list {
  display: grid;
  gap: 18px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  color: #26384b;
  font-size: 15px;
  font-weight: 700;
}

.vision-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 12px;
  align-items: center;
}

.vision-list svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta {
  position: relative;
  padding: 42px 0 46px;
  color: #fff;
  background-image:
    linear-gradient(rgba(4, 24, 42, .86), rgba(4, 24, 42, .9)),
    url("../img/final-cta.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(201, 152, 69, .55);
}

.cta-inner {
  position: relative;
}

.final-cta h2 {
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  font-size: 38px;
  line-height: 1.08;
}

.final-cta h2::after {
  content: "";
  width: 130px;
  height: 2px;
  display: block;
  margin: 22px auto 25px;
  background: var(--gold);
}

.cta-actions {
  justify-content: center;
}

.btn-gold {
  min-width: 235px;
  color: #fff;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.btn-dark-outline {
  min-width: 255px;
  color: #fff;
  border-color: rgba(255, 255, 255, .82);
  background: rgba(5, 22, 39, .38);
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.site-footer {
  padding: 33px 0 18px;
  color: rgba(255, 255, 255, .82);
  background: linear-gradient(180deg, #05233d, #03182d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1.15fr;
  gap: 48px;
  padding-bottom: 30px;
}

.brand-footer .brand-name {
  font-size: 26px;
}

.footer-brand p,
.footer-column p {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  gap: 11px;
  margin-top: 18px;
}

.social-links a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: 12px;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--gold);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.footer-column a {
  width: max-content;
  font-size: 13px;
  transition: color .2s ease;
}

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

.footer-column p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-column svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

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

body.modal-open {
  overflow: hidden;
}

.content-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.content-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal[hidden] {
  display: none;
}

.content-modal-backdrop,
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 29, .72);
  backdrop-filter: blur(4px);
}

.content-modal-panel {
  position: relative;
  width: min(900px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 30px;
  border: 1px solid rgba(215, 194, 159, .9);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.video-modal-panel {
  position: relative;
  width: min(420px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(215, 194, 159, .9);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.video-close {
  top: 12px;
  right: 12px;
}

.video-modal-panel h2 {
  max-width: calc(100% - 54px);
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.video-frame {
  width: min(100%, 360px);
  max-height: min(70vh, 640px);
  aspect-ratio: 478 / 850;
  justify-self: center;
  margin-top: 6px;
  border-radius: 8px;
  background: #03182d;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(3, 24, 45, .22);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #03182d;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 35, 60, .2);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  width: 17px;
  height: 2px;
  background: currentColor;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-eyebrow {
  display: block;
  max-width: calc(100% - 54px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  line-height: 1.25;
  text-transform: uppercase;
}

.content-modal-panel h2 {
  max-width: calc(100% - 54px);
  margin-top: 8px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.08;
}

.modal-meta {
  max-width: calc(100% - 54px);
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.modal-body {
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(215, 194, 159, .72);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(247, 244, 239, .8), rgba(255, 255, 255, .96) 92px),
    #fff;
  overflow: auto;
}

.modal-rich-text {
  max-width: 760px;
  padding: 26px 28px 32px;
  color: #23384b;
  font-family: Arial, Helvetica, sans-serif;
}

.modal-rich-text p,
.modal-rich-text li {
  color: #26384b;
  font-size: 15px;
  line-height: 1.68;
}

.modal-rich-text p {
  margin: 0 0 17px;
}

.modal-rich-text .modal-lead {
  margin-bottom: 22px;
  padding: 0 0 19px;
  border-bottom: 1px solid rgba(215, 194, 159, .58);
  color: #10243b;
  font-size: 16px;
  line-height: 1.72;
}

.modal-rich-text h3 {
  margin: 30px 0 13px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 5px;
  color: var(--navy);
  background: rgba(6, 35, 60, .055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.18;
}

.modal-rich-text h3:first-child {
  margin-top: 0;
}

.modal-rich-text h4 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
}

.modal-rich-text strong {
  color: var(--navy);
}

.modal-rich-text ul {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.modal-rich-text li {
  position: relative;
  padding-left: 24px;
}

.modal-rich-text li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .73em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .62s ease,
    transform .62s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(-12px, -6px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 210px 1fr auto;
    gap: 18px;
  }

  .primary-nav {
    gap: 22px;
  }

  .project-grid-small {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .content-tabs {
    grid-column: 1 / -1;
  }

  .vision {
    grid-template-columns: 38% 1fr;
  }

  .vision-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 34px, 720px);
  }

  .header-inner {
    min-height: 66px;
    display: flex;
    justify-content: space-between;
  }

  .brand-name {
    font-size: 25px;
  }

  .brand-tagline {
    font-size: 8.5px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 17px 18px;
    background: #041d35;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 630px;
  }

  .hero-bg {
    background-position: 76% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 248, 246, .95) 0%, rgba(247, 248, 246, .84) 48%, rgba(4, 18, 30, .12) 100%),
      linear-gradient(90deg, rgba(247, 248, 246, .9), rgba(247, 248, 246, .15));
  }

  .hero-copy {
    width: min(560px, 100%);
    padding-top: 12px;
  }

  .hero h1 {
    font-size: clamp(39px, 10vw, 56px);
  }

  .intro-grid,
  .content-summary,
  .vision-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .presentation-copy h2,
  .vision-copy h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(214, 194, 160, .72);
  }

  .principle-card:nth-child(4) {
    border-top: 1px solid rgba(214, 194, 160, .72);
  }

  .project-grid-small,
  .project-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-toolbar {
    grid-template-columns: 1fr;
  }

  .content-tabs {
    width: 100%;
  }

  .vision {
    grid-template-columns: 1fr;
  }

  .vision-content {
    width: min(100% - 34px, 720px);
    margin: 0 auto;
    padding: 42px 0;
  }

  .vision-image img {
    max-height: 430px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 480px);
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 34px;
  }

  .hero-bg {
    background-position: 86% top;
  }

  .hero-mobile-portrait {
    width: min(100%, 360px);
    height: 178px;
    display: block;
    margin: 0 0 24px;
    border: 1px solid rgba(6, 35, 60, .18);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(7, 31, 54, .14);
  }

  .hero h1 {
    max-width: 420px;
    font-size: clamp(32px, 11.6vw, 44px);
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intro-section {
    padding-top: 24px;
  }

  .intro-grid {
    gap: 28px;
  }

  .video-card img {
    max-height: 260px;
    aspect-ratio: 1200 / 525;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .section-rule {
    gap: 10px;
  }

  .section-rule h2 {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .principle-grid,
  .project-grid-small,
  .project-grid-large {
    grid-template-columns: 1fr;
  }

  .content-tab {
    min-width: 0;
  }

  .content-summary article {
    min-height: 0;
  }

  .principle-card + .principle-card,
  .principle-card:nth-child(3),
  .principle-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(214, 194, 160, .72);
  }

  .category-heading h3 {
    font-size: 19px;
  }

  .project-card {
    grid-template-columns: 94px 1fr;
    min-height: 116px;
  }

  .project-card img {
    width: 94px;
    height: 98px;
  }

  .content-modal {
    padding: 14px;
  }

  .video-modal {
    padding: 12px;
  }

  .content-modal-panel {
    max-height: calc(100vh - 28px);
    padding: 22px;
  }

  .video-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 18px;
  }

  .content-modal-panel h2 {
    font-size: 25px;
  }

  .video-modal-panel h2 {
    font-size: 21px;
  }

  .video-frame {
    width: min(100%, 330px);
    max-height: 72vh;
  }

  .modal-rich-text {
    padding: 20px 18px 24px;
  }

  .modal-rich-text p,
  .modal-rich-text li {
    font-size: 14px;
    line-height: 1.62;
  }

  .modal-rich-text h3 {
    padding: 13px 14px;
    font-size: 20px;
  }

  .project-card h4 {
    font-size: 14px;
  }

  .vision-content {
    width: min(100% - 28px, 480px);
    padding: 36px 0;
  }

  .vision-image img {
    min-height: 300px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
