:root {
  --maroon: #681b27;
  --maroon-deep: #43111a;
  --gold: #b28a3c;
  --beige: #f6f0e6;
  --beige-deep: #ede1cf;
  --paper: #ffffff;
  --charcoal: #262626;
  --muted: #6f6963;
  --line: #ded8cf;
  --placeholder: #eee9df;
  --placeholder-line: #cbc3b7;
  --shadow: 0 14px 38px rgba(67, 17, 26, 0.08);
  --radius: 8px;
  --container: 1160px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  color: var(--muted);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 16px clamp(18px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  color: var(--maroon);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  overflow-x: auto;
}

.main-nav a {
  border-radius: 999px;
  color: #4b4540;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 13px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: var(--beige);
  color: var(--maroon);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  background: var(--maroon);
  color: var(--paper);
}

.main-nav .nav-cta:hover {
  background: var(--maroon-deep);
  color: var(--paper);
}

.page-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-marker {
  background: var(--maroon-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px clamp(18px, 4vw, 48px);
  text-transform: uppercase;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 24px;
  width: 100%;
}

.container.narrow {
  max-width: 850px;
  text-align: center;
}

.section-panel {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-panel.beige,
.page-hero,
.trust-strip {
  background: var(--beige);
}

.hero {
  background:
    linear-gradient(90deg, rgba(246, 240, 230, 0.92), rgba(246, 240, 230, 0.5)),
    var(--beige);
  min-height: calc(100svh - var(--header-height) - 43px);
  padding: clamp(56px, 8vw, 96px) 0;
}

.hero-grid,
.two-column {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  color: var(--maroon);
  font-size: clamp(2.9rem, 7vw, 6.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
}

h2 {
  color: var(--maroon-deep);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  color: var(--maroon-deep);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero h2 {
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 600;
}

.hero p:not(.eyebrow) {
  font-size: 1.06rem;
  max-width: 620px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-row.center {
  justify-content: center;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--maroon);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon);
}

.button.light {
  background: var(--paper);
  color: var(--maroon);
}

.button.light-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--paper);
}

.placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      -45deg,
      var(--placeholder),
      var(--placeholder) 12px,
      #e4ddd2 12px,
      #e4ddd2 24px
    );
  border: 1px dashed var(--placeholder-line);
  border-radius: var(--radius);
  color: #7f756b;
  display: flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: center;
  min-height: 180px;
  padding: 20px;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease;
}

.placeholder:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 520px;
}

.map-placeholder,
.video-placeholder {
  min-height: 340px;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 780px;
}

.section-heading p:not(.eyebrow) {
  font-size: 1rem;
}

.quote-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 38px);
}

.quote-block p {
  color: var(--maroon-deep);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
}

.quote-block span,
.timeline-copy span,
.institution-grid span,
.story-grid span,
.event-grid span,
.media-list span,
.media-list strong {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.horizontal-steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 28px;
}

.horizontal-steps article,
.value-grid article,
.institution-grid article,
.counter-grid article,
.comparison-grid article,
.milestone-grid article,
.three-column article,
.story-grid article,
.event-grid article,
.media-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(67, 17, 26, 0.05);
  padding: 22px;
}

.horizontal-steps span {
  color: var(--gold);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.text-link {
  color: var(--maroon);
  display: inline-flex;
  font-weight: 700;
  margin-top: 18px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.value-grid,
.institution-grid,
.impact-grid,
.gallery-grid,
.milestone-grid,
.story-grid,
.archive-grid,
.event-grid,
.media-list {
  display: grid;
  gap: 18px;
}

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

.ecosystem {
  display: grid;
  gap: 26px;
}

.ecosystem-center {
  align-self: center;
  background: var(--maroon);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--paper);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 700;
  justify-self: center;
  max-width: 460px;
  padding: 26px 32px;
  text-align: center;
  width: 100%;
}

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

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

.impact-band {
  background: var(--maroon-deep);
}

.impact-band h2,
.impact-band .eyebrow,
.impact-band p {
  color: var(--paper);
}

.counter-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 28px;
}

.counter-grid article {
  text-align: center;
}

.counter-grid strong {
  color: var(--maroon);
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  line-height: 1.15;
  margin-bottom: 8px;
}

.counter-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.impact-band .counter-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.impact-band .counter-grid strong,
.impact-band .counter-grid span {
  color: var(--paper);
}

.impact-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-grid span,
.impact-chain span,
.flow-row span,
.contact-list span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--maroon-deep);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
}

.impact-band .impact-grid span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.clean-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.clean-list li {
  border-left: 4px solid var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  padding: 10px 0 10px 16px;
}

.signature-placeholder {
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 28px;
  padding-top: 18px;
  text-transform: uppercase;
}

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

.gallery-grid .placeholder,
.archive-grid .placeholder {
  aspect-ratio: 4 / 3;
}

.closing-cta {
  background: var(--maroon);
  color: var(--paper);
  padding: clamp(56px, 8vw, 82px) 0;
  text-align: center;
}

.closing-cta h2 {
  color: var(--paper);
  margin: 0 auto;
  max-width: 850px;
}

.page-hero {
  padding: clamp(62px, 9vw, 112px) 0;
}

.page-hero h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin-bottom: 16px;
}

.page-hero p:not(.eyebrow) {
  color: var(--charcoal);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 12px;
}

.page-hero span {
  color: var(--muted);
  display: block;
}

.maroon-hero {
  background: var(--maroon-deep);
  color: var(--paper);
}

.maroon-hero h2,
.maroon-hero p:not(.eyebrow),
.maroon-hero span {
  color: var(--paper);
}

.timeline {
  display: grid;
  gap: 0;
  position: relative;
}

.timeline::before {
  background: var(--line);
  bottom: 30px;
  content: "";
  left: 50%;
  position: absolute;
  top: 30px;
  transform: translateX(-50%);
  width: 1px;
}

.timeline-item {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  padding: 34px 0;
  position: relative;
}

.timeline-item::before {
  background: var(--gold);
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-copy {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-image {
  grid-column: 1;
  grid-row: 1;
}

.timeline-copy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.timeline-image {
  min-height: 240px;
}

.comparison-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-grid .placeholder {
  margin-bottom: 18px;
  min-height: 280px;
}

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

.milestone-grid article {
  color: var(--maroon-deep);
  font-weight: 700;
  min-height: 118px;
}

.quote-section {
  background: var(--maroon);
  padding: clamp(62px, 8vw, 92px) 0;
  text-align: center;
}

.quote-section p {
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.24;
}

.quote-section span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 16px;
}

.counter-grid.prominent {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.counter-grid.prominent article {
  padding: 34px 22px;
}

.impact-chain {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-row {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.flow-row span {
  border-radius: var(--radius);
  min-height: 86px;
  position: relative;
}

.flow-row span:not(:last-child)::after {
  color: var(--gold);
  content: ">";
  font-weight: 700;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.three-column {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.trust-strip {
  padding: clamp(54px, 7vw, 78px) 0;
}

.trust-strip h2 {
  text-align: center;
}

.counter-grid.mini {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 0;
}

.counter-grid.mini article {
  padding: 18px 12px;
}

.counter-grid.mini strong {
  font-size: 1rem;
}

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

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

.event-grid .placeholder {
  margin-bottom: 18px;
  min-height: 190px;
}

.placeholder.small {
  min-height: 150px;
}

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

.media-list a {
  color: var(--maroon);
  display: inline-block;
  font-weight: 700;
  margin-top: 10px;
}

.official-connect {
  background: var(--maroon-deep);
}

.official-connect h2,
.official-connect p,
.official-connect .eyebrow {
  color: var(--paper);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list span {
  border-color: rgba(255, 255, 255, 0.18);
  justify-content: flex-start;
}

.form-wireframe {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 28px;
}

.form-wireframe span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.form-wireframe div {
  align-items: center;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  display: flex;
  font-size: 0.84rem;
  font-weight: 600;
  height: 48px;
  margin-bottom: 14px;
  padding: 0 14px;
}

.form-wireframe div:nth-of-type(3) {
  align-items: flex-start;
  height: 112px;
  padding-top: 14px;
}

.form-wireframe button {
  background: var(--maroon);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  min-height: 46px;
  padding: 12px 22px;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-grid,
  .two-column,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder {
    min-height: 420px;
  }

  .horizontal-steps,
  .value-grid,
  .institution-grid,
  .institution-grid.large,
  .counter-grid,
  .impact-grid.compact,
  .impact-chain,
  .flow-row,
  .counter-grid.mini,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-item {
    gap: 22px;
    padding-left: 42px;
  }

  .timeline-item::before {
    left: 14px;
  }

  .timeline-item:nth-child(even) .timeline-copy,
  .timeline-item:nth-child(even) .timeline-image {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-row span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 112px;
  }

  .container {
    padding: 0 18px;
  }

  .section-panel {
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 64px;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .brand {
    white-space: normal;
  }

  .main-nav a {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .horizontal-steps,
  .value-grid,
  .institution-grid,
  .institution-grid.large,
  .counter-grid,
  .counter-grid.prominent,
  .impact-grid.compact,
  .impact-chain,
  .flow-row,
  .three-column,
  .story-grid,
  .counter-grid.mini,
  .archive-grid,
  .event-grid,
  .media-list,
  .gallery-grid,
  .milestone-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder,
  .map-placeholder,
  .video-placeholder {
    min-height: 300px;
  }

  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }
}
