:root {
  --background: #f7f4ee;
  --foreground: #151515;
  --card: #ffffff;
  --card-foreground: #151515;
  --popover: #ffffff;
  --popover-foreground: #151515;
  --primary: #f26419;
  --primary-foreground: #ffffff;
  --secondary: #181818;
  --secondary-foreground: #ffffff;
  --muted: #eee9e0;
  --muted-foreground: #6b6965;
  --accent: #fff0e6;
  --accent-foreground: #b93d00;
  --destructive: #c8342f;
  --border: #dcd6cd;
  --input: #cbc5bc;
  --ring: #f26419;
  --radius: 0.75rem;
  --orange: #f26419;
  --orange-dark: #c74708;
  --ink: #151515;
  --charcoal: #242424;
  --warm-white: #f7f4ee;
  --warm-gray: #77736c;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: white;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  background: white;
}

.brand-mark img {
  width: 61px;
  height: 54px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 0.95;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.brand-name strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.brand-name b {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 24px);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 7px;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 999px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.header-contact:hover {
  background: white;
  color: var(--ink);
}

.header-contact svg {
  width: 15px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(850px, 100svh);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: #201b18;
}

.hero-video,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(13 10 8 / 84%) 0%, rgb(13 10 8 / 42%) 58%, rgb(13 10 8 / 22%) 100%),
    linear-gradient(0deg, rgb(13 10 8 / 72%) 0%, transparent 50%);
}

.hero-content {
  padding-top: 190px;
  padding-bottom: clamp(110px, 16vh, 165px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.eyebrow-light::before {
  width: 38px;
  height: 3px;
  content: '';
  background: var(--orange);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(56px, 7.4vw, 112px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button svg {
  width: 17px;
}

.button-primary {
  background: var(--orange);
  color: white;
}

.button-primary:hover {
  background: #ff7b32;
}

.button-ghost-light {
  border-color: rgb(255 255 255 / 44%);
  color: white;
  backdrop-filter: blur(9px);
}

.button-ghost-light:hover {
  background: white;
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  right: 30px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
  color: rgb(255 255 255 / 65%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 64px;
  height: 1px;
  background: rgb(255 255 255 / 55%);
}

.stats-ribbon {
  background: var(--orange);
  color: white;
}

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

.stat {
  display: grid;
  min-height: 150px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgb(255 255 255 / 28%);
  padding: 28px;
}

.stat:first-child {
  border-left: 1px solid rgb(255 255 255 / 28%);
}

.stat > svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.6;
}

.stat-icon {
  font-size: 27px;
  line-height: 1;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 35px;
  line-height: 1;
}

.stat span {
  max-width: 145px;
  margin-top: 7px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(90px, 11vw, 160px);
}

.split-intro {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(50px, 8vw, 130px);
}

.split-intro h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.intro-copy {
  padding-top: 39px;
}

.intro-copy p {
  margin: 0 0 19px;
  color: #52504b;
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.text-link svg {
  width: 16px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.values-band {
  padding-block: 85px;
  background: var(--ink);
  color: white;
}

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

.values-grid article {
  min-height: 225px;
  border-left: 1px solid rgb(255 255 255 / 18%);
  padding: 15px clamp(30px, 4vw, 64px);
}

.values-grid article:last-child {
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.values-grid svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
  stroke-width: 1.5;
}

.value-symbol,
.pillar-symbol,
.impact-symbol {
  display: block;
  color: var(--orange);
  font-size: 33px;
  line-height: 1;
}

.value-symbol {
  margin-top: 75px;
}

.pillar-symbol {
  margin-bottom: 48px;
}

.impact-symbol {
  width: 48px;
  height: 48px;
  margin-bottom: 55px;
}

.values-grid h3 {
  margin: 42px 0 12px;
  font-size: 26px;
}

.values-grid p {
  max-width: 270px;
  margin: 0;
  color: rgb(255 255 255 / 66%);
  line-height: 1.6;
}

.site-footer {
  padding-top: 80px;
  background: #0e0e0e;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 50px;
  padding-bottom: 70px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-brand {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.footer-brand strong {
  color: var(--orange);
  font-weight: 900;
}

.footer-grid p {
  max-width: 310px;
  margin: 4px 0 0;
  color: rgb(255 255 255 / 52%);
  line-height: 1.55;
}

.footer-label {
  margin-bottom: 8px;
  color: rgb(255 255 255 / 42%);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-grid a:not(.footer-brand) {
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 17px;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 44%);
  font-size: 11px;
}

.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 175px 0 78px;
  background:
    radial-gradient(circle at 82% 30%, rgb(242 100 25 / 28%), transparent 24%),
    linear-gradient(135deg, #131313 0%, #28221f 100%);
  color: white;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -65%;
  width: 510px;
  height: 510px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: '';
}

.page-hero-orbit {
  position: absolute;
  z-index: -1;
  top: 95px;
  right: 12%;
  width: 260px;
  height: 260px;
  border: 46px solid rgb(242 100 25 / 8%);
  border-radius: 50%;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(54px, 6.8vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.page-hero-inner > div > p:last-child {
  max-width: 690px;
  margin: 27px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 18px;
  line-height: 1.6;
}

.page-hero-icon {
  display: grid;
  width: 102px;
  height: 102px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: rgb(255 255 255 / 5%);
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}

.page-hero-icon svg {
  width: 42px;
  height: 42px;
  color: var(--orange);
  stroke-width: 1.4;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading-wide {
  max-width: 870px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #5d5952;
  font-size: 17px;
  line-height: 1.7;
}

.impact-section {
  background: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.impact-grid article {
  min-height: 310px;
  border-right: 1px solid var(--border);
  padding: 48px;
}

.impact-grid article:first-child {
  border-left: 1px solid var(--border);
}

.impact-grid svg,
.impact-number {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 55px;
  color: var(--orange);
}

.impact-number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.impact-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.impact-grid p {
  margin: 0;
  color: #69645c;
  line-height: 1.65;
}

.gallery-preview {
  padding-block: 110px;
  background: #e9e4db;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 80px;
}

.gallery-preview h2 {
  margin: 0;
  font-size: clamp(39px, 4.2vw, 60px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.gallery-preview-grid > div:first-child > p:last-child {
  margin: 22px 0 0;
  color: #68635c;
  line-height: 1.7;
}

.gallery-placeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-placeholders span {
  aspect-ratio: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgb(21 21 21 / 13%);
  background: linear-gradient(145deg, rgb(255 255 255 / 62%), rgb(255 255 255 / 20%));
  color: #827b72;
}

.gallery-placeholders span:nth-child(2) {
  transform: translateY(28px);
}

.gallery-placeholders svg {
  width: 28px;
  stroke-width: 1.4;
}

.gallery-placeholders small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mission-section {
  background: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(50px, 9vw, 145px);
}

.mission-statement h2 {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: clamp(42px, 5.1vw, 70px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.mission-statement > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 0 17px;
  color: #56524c;
  font-size: 17px;
  line-height: 1.72;
}

.vision-card {
  position: relative;
  overflow: hidden;
  padding: 58px;
  background: var(--orange);
  color: white;
}

.vision-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 28px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: '';
}

.vision-card > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vision-card blockquote {
  position: relative;
  z-index: 1;
  margin: 62px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.values-section {
  background: var(--warm-white);
}

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

.value-cards article {
  min-height: 320px;
  border: 1px solid var(--border);
  border-right: 0;
  padding: 35px;
  background: white;
}

.value-cards article:last-child {
  border-right: 1px solid var(--border);
}

.value-cards .card-number {
  color: #aaa49b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-cards svg {
  display: block;
  width: 34px;
  height: 34px;
  margin-top: 75px;
  color: var(--orange);
  stroke-width: 1.5;
}

.value-cards h3 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.value-cards p {
  margin: 0;
  color: #69645c;
  line-height: 1.6;
}

.motto-band {
  padding-block: 95px;
  background: var(--orange);
  color: white;
  text-align: center;
}

.motto-band span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.motto-band p {
  max-width: 970px;
  margin: 26px auto 0;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.statutes-intro {
  background: white;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar-grid article {
  min-height: 250px;
  padding: 38px;
  border: 1px solid var(--border);
  background: var(--warm-white);
}

.pillar-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 48px;
  color: var(--orange);
  stroke-width: 1.5;
}

.pillar-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.pillar-grid p {
  margin: 0;
  color: #69645c;
  line-height: 1.65;
}

.document-reader-section {
  padding-block: clamp(80px, 10vw, 140px);
  background: #e9e4db;
}

.document-panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 30px;
}

.document-kicker {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.document-panel-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 51px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.document-panel-head p {
  max-width: 670px;
  margin: 0;
  color: #5d5952;
  line-height: 1.65;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #333;
}

.button-outline {
  border-color: #aaa39a;
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: white;
}

.pdf-frame {
  width: 100%;
  height: min(780px, 74vh);
  border: 1px solid #c7c0b5;
  background: white;
}

.normative-intro {
  background: white;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.document-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  padding: clamp(30px, 4vw, 48px);
  background: var(--warm-white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.document-card:hover {
  border-color: rgb(242 100 25 / 55%);
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgb(31 25 20 / 8%);
}

.document-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
}

.document-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.document-pages,
.document-type {
  color: #817a71;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.document-card .document-type {
  margin: 0 0 13px;
  color: var(--orange-dark);
}

.document-card h2 {
  max-width: 500px;
  margin: 0 0 17px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.document-card > p:not(.document-type) {
  max-width: 550px;
  margin: 0;
  color: #666159;
  line-height: 1.65;
}

.document-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: auto;
  padding-top: 34px;
}

.document-card-actions .button {
  min-height: 46px;
  padding-inline: 19px;
}

.document-download {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.document-download:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.normative-reader {
  padding-block: clamp(80px, 10vw, 140px);
  background: #e9e4db;
}

.reader-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  align-items: end;
  gap: 45px;
  margin-bottom: 26px;
}

.reader-toolbar h2 {
  margin: 13px 0 0;
  font-size: clamp(30px, 4vw, 51px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.reader-controls {
  display: grid;
  gap: 9px;
}

.reader-controls label {
  color: #5f5a53;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reader-controls select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #aaa39a;
  border-radius: 0;
  padding: 0 42px 0 16px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.reader-controls select:focus-visible {
  outline: 3px solid rgb(242 100 25 / 30%);
  outline-offset: 2px;
}

.reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.normative-frame {
  height: min(850px, 78vh);
}

.upcoming-section {
  background: white;
}

.upcoming-card {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 60px;
  background:
    radial-gradient(circle at center, rgb(242 100 25 / 10%), transparent 43%),
    var(--warm-white);
  text-align: center;
}

.baseball-emoji {
  margin-bottom: 34px;
  filter: grayscale(1) contrast(1.25);
  font-size: 78px;
  line-height: 1;
}

.upcoming-card h2 {
  margin: 0;
  font-size: clamp(37px, 5vw, 65px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.upcoming-card > p:last-child {
  max-width: 580px;
  margin: 22px auto 0;
  color: #656058;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    width: min(330px, calc(100vw - 48px));
    display: grid;
    padding: 12px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 22px 60px rgb(0 0 0 / 24%);
    color: var(--ink);
  }

  .mobile-menu nav a {
    padding: 11px 12px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu nav a:hover {
    background: var(--accent);
    color: var(--orange-dark);
  }

  .mobile-menu nav a.is-active {
    background: var(--accent);
    color: var(--orange-dark);
  }
}

@media (max-width: 840px) {
  .container {
    width: min(100% - 32px, 1240px);
  }

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .brand-mark {
    width: 49px;
    height: 49px;
  }

  .brand-name b {
    font-size: 16px;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 155px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .hero-copy {
    max-width: 500px;
    font-size: 16px;
  }

  .hero-scroll {
    display: none;
  }

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

  .stat {
    min-height: 132px;
    border-bottom: 1px solid rgb(255 255 255 / 28%);
    padding: 22px 15px;
  }

  .stat strong {
    font-size: 30px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .values-grid article,
  .values-grid article:last-child {
    min-height: auto;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    padding: 34px 8px;
  }

  .values-grid article:last-child {
    border-bottom: 0;
  }

  .values-grid h3 {
    margin-top: 24px;
  }

  .page-hero {
    min-height: 430px;
    padding: 145px 0 62px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero h1 {
    font-size: clamp(52px, 13vw, 78px);
  }

  .page-hero-icon {
    display: none;
  }

  .impact-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid article,
  .impact-grid article:first-child {
    min-height: auto;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    padding: 36px;
  }

  .impact-grid svg,
  .impact-number {
    margin-bottom: 32px;
  }

  .gallery-preview-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .value-cards {
    grid-template-columns: 1fr 1fr;
  }

  .value-cards article,
  .value-cards article:last-child {
    border: 1px solid var(--border);
  }

  .document-panel-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .documents-grid,
  .reader-toolbar {
    grid-template-columns: 1fr;
  }

  .reader-toolbar {
    align-items: start;
    gap: 28px;
  }

  .document-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  .eyebrow-light {
    align-items: flex-start;
    line-height: 1.5;
  }

  .eyebrow-light::before {
    margin-top: 7px;
  }

  .hero h1 {
    font-size: 51px;
  }

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

  .button {
    width: 100%;
  }

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

  .stat,
  .stat:first-child {
    min-height: 104px;
    border-right: 0;
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .page-hero h1 {
    font-size: 50px;
  }

  .page-hero-inner > div > p:last-child {
    font-size: 16px;
  }

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

  .gallery-placeholders span:last-child {
    display: none;
  }

  .vision-card,
  .upcoming-card {
    padding: 38px 24px;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

  .value-cards article {
    min-height: 270px;
  }

  .value-cards svg {
    margin-top: 45px;
  }

  .value-symbol {
    margin-top: 45px;
  }

  .document-actions,
  .document-actions .button {
    width: 100%;
  }

  .document-card {
    min-height: 380px;
  }

  .document-card-actions,
  .document-card-actions .button,
  .reader-actions,
  .reader-actions .button {
    width: 100%;
  }

  .pdf-frame {
    height: 520px;
  }
}

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

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

  .hero-video {
    display: none;
  }
}
