:root {
  --ink: #171819;
  --black: #090a0b;
  --charcoal: #151719;
  --charcoal-soft: #202326;
  --paper: #f4f0e7;
  --paper-deep: #e9e3d7;
  --muted: #c9c2b4;
  --muted-dark: #5a564e;
  --gold: #c89a36;
  --gold-deep: #7a5a1c;
  --red: #8e1f1f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(9, 10, 11, 0.12);
  --radius: 2px;
  --max-width: 1180px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, "Helvetica Neue", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: var(--gold-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--black);
  background: var(--gold);
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.25rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(9, 10, 11, 0.97);
  border-bottom: 1px solid rgba(200, 154, 54, 0.23);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(200, 154, 54, 0.7);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-kicker {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(244, 240, 231, 0.45);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--gold);
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
}

.nav-toggle-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  padding: 0.65rem 1.125rem 1rem;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(200, 154, 54, 0.35);
}

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

html.js .nav-toggle {
  display: inline-flex;
}

html.js .primary-nav {
  display: none;
}

html.js .primary-nav.is-open {
  display: block;
}

.nav-list {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  gap: 0.2rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.65rem 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.nav-link[aria-current="page"] {
  border-bottom: 2px solid var(--gold);
}

.hero,
.section-dark,
.site-footer {
  color: var(--paper);
  background: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 154, 54, 0.4);
}

.hero::after {
  position: absolute;
  right: -12rem;
  bottom: -13rem;
  width: 31rem;
  height: 31rem;
  content: "";
  border: 1px solid rgba(200, 154, 54, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 2.1rem rgba(200, 154, 54, 0.06), 0 0 0 4.2rem rgba(200, 154, 54, 0.04);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(44rem, calc(100vh - 5rem));
  align-items: center;
  gap: 3rem;
  padding-block: 4.5rem 5rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1.15rem;
}

.hero-lede {
  max-width: 38rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero-mission {
  max-width: 38rem;
  margin-bottom: 0;
  padding-left: 1.35rem;
  color: var(--paper);
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4;
}

.hero-mission strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--gold);
  font-weight: 400;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  color: var(--black);
  background: #e1b84e;
  border-color: #e1b84e;
}

.button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(244, 240, 231, 0.55);
}

.button-secondary:hover {
  color: var(--white);
  background: rgba(244, 240, 231, 0.08);
  border-color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  font-size: 1.05em;
  line-height: 1;
}

.text-link:hover {
  color: var(--white);
}

.hero-logo-panel {
  display: grid;
  max-width: 40rem;
  align-content: center;
  justify-items: center;
  margin-inline: auto;
  background: radial-gradient(circle at 50% 44%, rgba(200, 154, 54, 0.1), transparent 64%);
}

.hero-logo {
  width: min(100%, 32.5rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.logo-caption {
  max-width: 20rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-light {
  background: var(--paper);
}

.section-paper-deep {
  background: var(--paper-deep);
}

.section-dark {
  background: var(--charcoal);
}

.section-header {
  display: grid;
  max-width: 48rem;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.section-header p,
.page-hero p {
  max-width: 42rem;
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.section-dark .section-header p,
.section-dark .section-header .eyebrow,
.section-dark .section-kicker,
.hero .section-header p {
  color: var(--muted);
}

.section-kicker {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--paper-deep);
  border-bottom: 1px solid rgba(139, 102, 34, 0.22);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.trust-item {
  display: grid;
  min-height: 8rem;
  align-content: center;
  gap: 0.3rem;
  padding: 1.25rem 0.9rem;
  border-right: 1px solid rgba(139, 102, 34, 0.22);
}

.trust-item:nth-child(even) {
  border-right: 0;
}

.trust-item:nth-child(n + 3) {
  border-top: 1px solid rgba(139, 102, 34, 0.22);
}

.trust-label {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.45;
}

.process-grid,
.card-grid,
.role-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.process-card {
  position: relative;
  min-height: 13.2rem;
  padding: 1.45rem;
  background: rgba(244, 240, 231, 0.04);
  border: 1px solid rgba(200, 154, 54, 0.27);
}

.process-number {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  margin-bottom: 2.25rem;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 700;
}

.process-card h3 {
  margin-bottom: 0.55rem;
  color: var(--paper);
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.service-card,
.value-card,
.contact-card,
.role-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(139, 102, 34, 0.22);
}

.section-dark .service-card,
.section-dark .role-card {
  background: rgba(244, 240, 231, 0.04);
  border-color: rgba(200, 154, 54, 0.27);
}

.service-card h3,
.value-card h3,
.contact-card h3,
.role-card h3 {
  margin-bottom: 0.65rem;
}

.service-card p,
.value-card p,
.contact-card p,
.role-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.section-dark .service-card p,
.section-dark .role-card p {
  color: var(--muted);
}

.service-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-deep);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-dark .service-card strong {
  color: var(--gold);
}

.callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--paper);
  background: var(--red);
  border-left: 5px solid var(--gold);
}

.callout h2,
.callout h3 {
  max-width: 14ch;
}

.callout p {
  max-width: 40rem;
  margin: 0;
  color: #f5dbd1;
}

.partner-intro {
  max-width: 44rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.partner-grid {
  display: grid;
  gap: 1rem;
}

.partner-group {
  padding: 1.5rem;
  background: #101113;
  border: 1px solid rgba(200, 154, 54, 0.24);
}

.partner-group h3 {
  margin-bottom: 0.6rem;
  color: var(--paper);
  font-size: 1.35rem;
}

.partner-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-names {
  margin-top: 1.2rem;
  padding-top: 1rem;
  color: var(--gold);
  border-top: 1px solid rgba(200, 154, 54, 0.18);
  font-size: 0.83rem;
  line-height: 1.65;
}

.partner-disclaimer {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.55;
}

.cta-band {
  padding-block: 3.5rem;
  color: var(--paper);
  background: var(--red);
}

.cta-band-inner {
  display: grid;
  gap: 1rem;
}

.cta-band h2 {
  max-width: 17ch;
}

.cta-band p {
  max-width: 44rem;
  margin: 0;
  color: #f5dbd1;
}

.cta-band .button-secondary {
  color: var(--paper);
  border-color: rgba(244, 240, 231, 0.68);
}

.cta-band p.closing-line {
  margin-top: 0.6rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.3;
}

.cta-band p.closing-line span {
  display: block;
  color: var(--white);
}

.cta-band p.creed {
  color: #f5dbd1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.mission-statement {
  background: var(--paper);
  border-bottom: 1px solid rgba(122, 90, 28, 0.2);
}

.mission-statement .container {
  max-width: 56rem;
}

.mission-statement h2 {
  margin-bottom: 1.5rem;
}

.mission-body {
  max-width: 46rem;
  color: #3f3d39;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.mission-close {
  max-width: 46rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
  color: var(--ink);
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.4;
}

.mission-close strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--gold-deep);
  font-weight: 400;
}

.mission-feature {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.mission-feature-copy p {
  color: var(--muted);
}

.mission-record {
  display: grid;
  gap: 0;
  margin: 0 0 1.75rem;
  padding: 0;
  border: 1px solid rgba(200, 154, 54, 0.3);
}

.mission-record div {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(200, 154, 54, 0.18);
}

.mission-record div:last-child {
  border-bottom: 0;
}

.mission-record dt {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-record dd {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.35;
}

.section-light .mission-record,
.section-paper-deep .mission-record {
  border-color: rgba(122, 90, 28, 0.28);
}

.section-light .mission-record div,
.section-paper-deep .mission-record div {
  border-bottom-color: rgba(122, 90, 28, 0.18);
}

.section-light .mission-record dt,
.section-paper-deep .mission-record dt {
  color: var(--gold-deep);
}

.section-light .mission-record dd,
.section-paper-deep .mission-record dd {
  color: var(--ink);
}

.story {
  max-width: 44rem;
}

.story-byline {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  color: var(--muted-dark);
  border-bottom: 1px solid rgba(122, 90, 28, 0.25);
  font-size: 0.9rem;
}

.story-byline strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.story p {
  color: #3f3d39;
  font-size: 1.06rem;
  line-height: 1.75;
}

.story p.story-open {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  line-height: 1.5;
}

.story p.story-beat {
  margin-block: 2rem;
  padding-left: 1.35rem;
  color: var(--ink);
  border-left: 4px solid var(--red);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.4;
}

.story-close {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(122, 90, 28, 0.25);
}

.story-close p {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.35;
}

.story-close p:last-child {
  color: var(--gold-deep);
}

.editor-note {
  margin-bottom: 2rem;
  padding: 1.1rem 1.2rem;
  color: var(--muted-dark);
  background: var(--paper-deep);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
  line-height: 1.6;
}

.editor-note p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.editor-note strong {
  color: var(--ink);
}

.page-hero {
  padding-block: 4rem 3.75rem;
  color: var(--paper);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(200, 154, 54, 0.35);
}

.page-hero h1 {
  max-width: 15ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.page-hero p {
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb-separator {
  color: rgba(244, 240, 231, 0.45);
}

.prose {
  max-width: 47rem;
}

.prose h2 {
  margin: 2.75rem 0 0.9rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.8rem 0 0.65rem;
}

.prose p {
  color: #3f3d39;
}

.prose .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.quote-mark {
  margin: 0;
  padding: 0.25rem 0 0.25rem 1.35rem;
  color: var(--gold-deep);
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.4;
}

.split-layout {
  display: grid;
  align-items: start;
  gap: 3rem;
}

.side-note {
  padding: 1.4rem;
  background: var(--paper-deep);
  border-top: 3px solid var(--gold);
}

.side-note h2,
.side-note h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.5rem;
}

.side-note p {
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.side-note p:last-child {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--paper-deep);
}

.value-card h3 {
  color: var(--gold-deep);
}

.principles-list,
.checklist,
.standards-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.principles-list li,
.checklist li,
.standards-list li {
  position: relative;
  padding-left: 1.6rem;
}

.principles-list li::before,
.checklist li::before,
.standards-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.standards-list li::before {
  background: var(--red);
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 0 0 2rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 700;
}

.timeline-step:not(:last-child) .timeline-marker::after {
  position: absolute;
  top: 2.2rem;
  left: calc(50% - 1px);
  width: 2px;
  height: calc(100% + 0.1rem);
  content: "";
  background: rgba(200, 154, 54, 0.42);
}

.timeline-step h3 {
  margin-bottom: 0.4rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted-dark);
}

.section-dark .timeline-step p {
  color: var(--muted);
}

.mission-gallery {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.gallery-item {
  margin: 0;
}

.gallery-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 54, 0.27);
  line-height: 0;
}

.gallery-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--charcoal);
  filter: saturate(0.92);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1);
}

.gallery-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(9, 10, 11, 0.55), rgba(9, 10, 11, 0) 45%);
  pointer-events: none;
}

.gallery-thumb-index {
  position: absolute;
  z-index: 1;
  bottom: 0.55rem;
  left: 0.7rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1;
}

.gallery-note {
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.lightbox {
  width: min(100% - 1.5rem, 78rem);
  max-width: none;
  max-height: calc(100vh - 1.5rem);
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(6, 7, 8, 0.93);
}

/* Narrow screens stack the controls under the photograph so the image gets
   the full width. Wider screens put the arrows either side. */
.lightbox-frame {
  position: relative;
  display: grid;
  align-items: center;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "figure figure"
    "prev next";
  justify-items: center;
}

.lightbox-figure {
  grid-area: figure;
}

.lightbox-prev {
  grid-area: prev;
  justify-self: end;
}

.lightbox-next {
  grid-area: next;
  justify-self: start;
}

.lightbox-figure {
  margin: 0;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.lightbox-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 14rem);
  margin: 0 auto;
  border: 1px solid rgba(200, 154, 54, 0.35);
}

.lightbox-figure figcaption {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0.5rem 0;
}

.lightbox-counter {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lightbox-caption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lightbox-nav,
.lightbox-close {
  display: grid;
  place-items: center;
  color: var(--paper);
  background: rgba(244, 240, 231, 0.06);
  border: 1px solid rgba(244, 240, 231, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(244, 240, 231, 0.14);
  border-color: var(--gold);
}

.lightbox-nav {
  width: 2.9rem;
  height: 2.9rem;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -3.1rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.4rem;
  line-height: 1;
}

.role-grid {
  margin-top: 2rem;
}

.role-card {
  background: var(--paper-deep);
}

.role-card h3 {
  color: var(--gold-deep);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
}

.faq-list details {
  background: var(--paper-deep);
  border: 1px solid rgba(139, 102, 34, 0.25);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.12rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--gold-deep);
  content: "+";
  font-family: var(--sans);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.notice {
  padding: 1.15rem 1.2rem;
  color: #4e2a22;
  background: #f2ded4;
  border-left: 4px solid var(--red);
}

.notice strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--red);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice p {
  margin: 0;
  font-size: 0.92rem;
}

.form-shell {
  max-width: 54rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid rgba(139, 102, 34, 0.24);
  box-shadow: var(--shadow);
}

.form-shell .notice {
  margin-bottom: 1.75rem;
}

.form-intro {
  max-width: 44rem;
  margin-bottom: 2rem;
  color: var(--muted-dark);
}

fieldset {
  min-width: 0;
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #8f887b;
  border-radius: var(--radius);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6b6459;
}

.field small {
  color: var(--muted-dark);
  font-size: 0.78rem;
  line-height: 1.4;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-actions .button {
  cursor: pointer;
}

.form-status {
  flex: 1 1 15rem;
  margin: 0;
  padding: 0.75rem 0.85rem;
  color: #164f35;
  background: #e0f0e6;
  border-left: 3px solid #2d8156;
  font-size: 0.9rem;
}

.form-status[hidden] {
  display: none;
}

.form-status:focus {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
}

.form-footnote {
  margin-top: 1.25rem;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.emblem-layout {
  display: grid;
  align-items: start;
  gap: 2.5rem;
}

.emblem-display {
  padding: clamp(1.2rem, 4vw, 3rem);
  background: var(--black);
  border: 1px solid rgba(200, 154, 54, 0.35);
}

.emblem-display img {
  width: min(100%, 31rem);
  margin-inline: auto;
}

.emblem-caption {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.symbol-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.symbol-list div {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(139, 102, 34, 0.25);
}

.symbol-list div:first-child {
  padding-top: 0;
}

.symbol-list dt {
  margin-bottom: 0.35rem;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.symbol-list dd {
  margin: 0;
  color: var(--muted-dark);
}

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

.contact-card {
  background: var(--paper-deep);
}

.contact-card .text-link {
  margin-top: 1rem;
}

.contact-status {
  max-width: 48rem;
  margin-top: 2rem;
  padding: 1.5rem;
  color: var(--paper);
  background: var(--charcoal);
  border-left: 4px solid var(--gold);
}

.contact-status h2 {
  margin-bottom: 0.6rem;
  font-size: 1.65rem;
}

.contact-status p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding-block: 3rem 1.25rem;
  border-top: 1px solid rgba(200, 154, 54, 0.25);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.footer-brand img {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(200, 154, 54, 0.65);
  border-radius: 50%;
}

.footer-brand strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.footer-column p,
.footer-column li,
.footer-column a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-column p {
  max-width: 30rem;
}

.footer-column h2 {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-status {
  max-width: 58rem;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1.05rem;
  color: var(--muted);
  background: rgba(244, 240, 231, 0.05);
  border-left: 3px solid var(--gold);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  color: var(--muted);
  border-top: 1px solid rgba(244, 240, 231, 0.14);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.muted-note {
  color: var(--muted-dark);
  font-size: 0.9rem;
}

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

/* Mission log card */
.mission-log-card {
  padding: 1.75rem;
  background: var(--paper-deep);
  border: 1px solid rgba(139, 102, 34, 0.28);
  border-top: 3px solid var(--gold);
}

.mission-log-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.mission-number-link {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.mission-number-link:hover {
  color: var(--red);
}

.mission-log-date {
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.mission-log-title {
  margin-bottom: 1rem;
}

.mission-log-card .mission-record {
  margin-top: 1.25rem;
}

/* Leadership contact team */
.leadership-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leadership-item {
  display: grid;
  gap: 0.3rem;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(139, 102, 34, 0.22);
  border-top: 3px solid var(--gold);
}

.leadership-role {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leadership-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.2;
}

.leadership-email {
  color: var(--gold-deep);
  font-size: 0.9rem;
  word-break: break-all;
  text-decoration: none;
}

.leadership-email:hover {
  color: var(--red);
}

/* Donate methods */
.donate-methods {
  display: grid;
  gap: 1rem;
}

.donate-method {
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(139, 102, 34, 0.22);
}

.donate-method-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.donate-method-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.coming-soon {
  flex: 0 0 auto;
  padding: 0.25rem 0.6rem;
  color: var(--muted-dark);
  background: var(--paper-deep);
  border: 1px solid rgba(139, 102, 34, 0.3);
  border-radius: var(--radius);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.donate-method p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.93rem;
}

@media (min-width: 600px) {
  .container {
    width: min(calc(100% - 4rem), var(--max-width));
  }

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

  .trust-item,
  .trust-item:nth-child(n + 3) {
    border-top: 0;
  }

  .trust-item:nth-child(even) {
    border-right: 1px solid rgba(139, 102, 34, 0.22);
  }

  .trust-item:last-child {
    border-right: 0;
  }

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

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

  .field-span-2 {
    grid-column: span 2;
  }

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

  .leadership-list,
  .donate-methods {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lightbox-frame {
    gap: 0.5rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "prev figure next";
  }

  .lightbox-prev,
  .lightbox-next {
    justify-self: center;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 9rem);
  }
}

@media (min-width: 860px) {
  .header-inner {
    min-height: 5.25rem;
  }

  .nav-toggle {
    display: none;
  }

  html.js .nav-toggle {
    display: none;
  }

  .primary-nav,
  .primary-nav.is-open {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
  }

  html.js .primary-nav,
  html.js .primary-nav.is-open {
    display: block;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .nav-link {
    padding: 0.55rem 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.95fr);
    gap: 3.5rem;
  }

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

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

  .callout {
    grid-template-columns: minmax(15rem, 0.55fr) minmax(0, 1fr);
    align-items: center;
  }

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

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

  .mission-feature {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.5fr);
    gap: 3.5rem;
  }

  .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  }

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

  .emblem-layout {
    grid-template-columns: minmax(20rem, 1fr) minmax(0, 1.1fr);
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.65fr 0.65fr;
  }
}

@media (min-width: 1100px) {
  .hero-grid {
    padding-block: 3.5rem 4rem;
  }

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

/* Leadership contacts - contact.html */
.leadership-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leadership-item {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--paper-deep);
  border: 1px solid rgba(139, 102, 34, 0.22);
  border-left: 3px solid var(--gold);
}

.leadership-role {
  color: var(--gold-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leadership-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.25;
}

.leadership-email {
  margin-top: 0.1rem;
  color: var(--gold-deep);
  font-size: 0.92rem;
  word-break: break-all;
}

/* Donate page placeholders */
.donate-methods {
  display: grid;
  gap: 1rem;
}

.donate-method {
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(139, 102, 34, 0.22);
}

.donate-method-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.donate-method-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.2;
}

.coming-soon {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  color: var(--paper);
  background: var(--muted-dark);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.donate-method p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

/* Mission log card - honor-missions.html */
.mission-log-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(139, 102, 34, 0.22);
}

.mission-log-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.mission-number-link {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.mission-number-link:hover {
  color: var(--red);
}

.mission-log-date {
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.mission-log-title {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.mission-log-card > p {
  max-width: 52rem;
  margin-bottom: 1.5rem;
  color: var(--muted-dark);
}

.mission-log-card .mission-record {
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .donate-methods {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Donor packet - donor-packet.html */
.packet-actions {
  margin-top: 1.75rem;
}

.packet-letter {
  max-width: 46rem;
  padding: 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(139, 102, 34, 0.22);
  border-left: 3px solid var(--gold);
}

.packet-letter p {
  margin: 0 0 1.1rem;
  color: var(--muted-dark);
}

.packet-letter p:last-child {
  margin-bottom: 0;
}

.packet-signature {
  display: grid;
  gap: 0.1rem;
  margin-top: 1.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(139, 102, 34, 0.22);
}

.packet-signature-name {
  margin-top: 0.5rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.2;
}

.packet-signature-role {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-dark .packet-letter {
  background: rgba(244, 240, 231, 0.04);
  border-color: rgba(200, 154, 54, 0.27);
  border-left-color: var(--gold);
}

.section-dark .packet-letter p {
  color: var(--muted);
}

.section-dark .packet-signature {
  border-top-color: rgba(200, 154, 54, 0.27);
}

.section-dark .packet-signature-name {
  color: var(--paper);
}

.section-dark .packet-signature-role {
  color: var(--gold);
}

.packet-subhead {
  margin: 0 0 0.9rem;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.packet-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.packet-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.packet-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.section-dark .packet-list li,
.section-dark .value-card .packet-list li {
  color: var(--muted);
}

.support-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-grid li {
  position: relative;
  padding: 0.95rem 1.1rem 0.95rem 2.3rem;
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(139, 102, 34, 0.2);
  font-size: 0.95rem;
}

.support-grid li::before {
  content: "";
  position: absolute;
  top: 1.35em;
  left: 1.1rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.tier-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: tier;
}

.tier-card {
  padding: 1.5rem 1.6rem;
  background: var(--charcoal-soft);
  border: 1px solid rgba(200, 154, 54, 0.28);
  border-top: 3px solid var(--gold);
}

.tier-card-lead {
  background: rgba(200, 154, 54, 0.1);
  border-color: rgba(200, 154, 54, 0.55);
}

.tier-range {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.tier-name {
  margin: 0 0 0.6rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.2;
}

.tier-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.faq-item {
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(139, 102, 34, 0.22);
}

.faq-item dt {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.3;
}

.faq-item dd {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.packet-facts {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1000px) {
  .tier-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media print {
  .site-header,
  .cta-actions,
  .no-print,
  .skip-link,
  .breadcrumb,
  .site-footer .footer-grid {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section,
  .page-hero,
  .cta-band {
    padding: 1.2rem 0;
    background: #fff !important;
  }

  .section-dark,
  .cta-band,
  .tier-card,
  .tier-card-lead {
    color: #000 !important;
    background: #fff !important;
  }

  .section-dark h2,
  .section-dark p,
  .cta-band h2,
  .cta-band p,
  .tier-name,
  .tier-note,
  .section-dark .packet-list li,
  .partner-intro {
    color: #000 !important;
  }

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

  .tier-card,
  .faq-item,
  .support-grid li,
  .packet-letter {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}

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

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