.inner-page .site-header {
  background: rgba(255, 255, 255, 0.98);
}

.inner-page main {
  background: var(--surface-white);
}

.inner-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  color: var(--surface-white);
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.72)),
    var(--site-hero-image),
    linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  background-position: center;
  background-size: cover;
}

.inner-hero-content {
  padding-block: 150px 72px;
}

.inner-hero .section-label {
  color: var(--color-accent);
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  color: var(--surface-white);
  font-size: clamp(3rem, 8vw, 6.5rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.34);
}

.inner-hero p:not(.section-label) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.inner-intro-section {
  background: var(--surface-white);
  text-align: center;
}

.inner-intro {
  max-width: 860px;
}

.inner-intro p:not(.section-label) {
  max-width: 740px;
  margin-inline: auto;
  color: var(--color-text-secondary);
  font-size: 1.16rem;
}

.vision-mission-section {
  background: var(--surface-light);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
}

.editorial-panel {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  background: var(--surface-white);
  border-top: 5px solid var(--color-primary);
}

.editorial-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(201, 168, 76, 0.55);
  border-radius: 8px;
  margin-bottom: auto;
  color: var(--color-primary);
}

.editorial-icon span {
  position: relative;
  width: 36px;
  height: 36px;
  display: block;
}

.editorial-icon-vision span {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.editorial-icon-vision span::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.editorial-icon-vision span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 3px;
  height: 12px;
  background: currentColor;
  transform: translateX(-50%);
}

.editorial-icon-mission span {
  border: 3px solid currentColor;
  border-radius: 4px 4px 16px 16px;
  transform: rotate(45deg);
}

.editorial-icon-mission span::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.editorial-panel-vision {
  border-top-color: var(--color-primary);
}

.editorial-panel-mission {
  border-top-color: var(--color-secondary);
}

.editorial-panel h2 {
  max-width: 500px;
}

.editorial-panel p:not(.section-label) {
  max-width: 58ch;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1.08rem;
}

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

.values-heading {
  margin-bottom: var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.value-panel {
  min-height: 320px;
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface-white);
}

.value-panel small {
  display: block;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.value-mark {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(201, 168, 76, 0.58);
  border-radius: 8px;
  color: var(--color-primary);
}

.value-mark::before,
.value-mark::after {
  content: "";
  position: absolute;
}

.value-mark-excellence::before {
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  clip-path: polygon(50% 0, 62% 34%, 100% 36%, 69% 57%, 80% 100%, 50% 74%, 20% 100%, 31% 57%, 0 36%, 38% 34%);
}

.value-mark-resilience::before {
  bottom: 14px;
  width: 4px;
  height: 32px;
  border-radius: 999px;
  background: currentColor;
}

.value-mark-resilience::after {
  top: 18px;
  width: 34px;
  height: 24px;
  border-radius: 24px 24px 4px 24px;
  background: var(--color-accent);
  box-shadow: -18px 8px 0 -3px var(--color-secondary);
  transform: rotate(-24deg);
}

.value-mark-humility::before {
  width: 34px;
  height: 26px;
  border-radius: 0 0 22px 22px;
  background: var(--color-primary);
}

.value-mark-humility::after {
  top: 14px;
  width: 30px;
  height: 16px;
  border: 3px solid var(--color-accent);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.value-panel h3 {
  margin: 0 0 var(--space-md);
  font-size: 1.34rem;
}

.value-panel p {
  margin: 0;
  color: var(--color-text-secondary);
}

.disclosure-section {
  background:
    linear-gradient(180deg, rgba(26, 58, 107, 0.05), rgba(255, 255, 255, 0) 280px),
    var(--surface-white);
}

.disclosure-intro {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 5px solid var(--color-primary);
}

.disclosure-intro p:not(.section-label) {
  max-width: 680px;
  color: var(--color-text-secondary);
  font-size: 1.08rem;
}

.disclosure-table-heading {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0 0 var(--space-md);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.disclosure-table-wrap + .disclosure-table-heading {
  margin-top: var(--space-xl);
}

.disclosure-table-heading::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--color-primary);
}

.disclosure-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(26, 58, 107, 0.12);
  border-radius: 8px;
  background: var(--surface-white);
  box-shadow: 0 24px 60px rgba(26, 58, 107, 0.12);
}

.disclosure-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface-white);
  color: var(--color-text-primary);
  font-size: 0.96rem;
  text-transform: uppercase;
}

.disclosure-table th,
.disclosure-table td {
  border: 0;
  border-right: 1px solid rgba(26, 58, 107, 0.12);
  border-bottom: 1px solid rgba(26, 58, 107, 0.12);
  padding: 15px 18px;
  vertical-align: top;
}

.disclosure-table th:last-child,
.disclosure-table td:last-child {
  border-right: 0;
}

.disclosure-table tbody tr:last-child td {
  border-bottom: 0;
}

.disclosure-table th {
  background: var(--color-secondary);
  color: var(--surface-white);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

.disclosure-table th:first-child {
  background: var(--color-primary);
}

.disclosure-table th:nth-child(2) {
  background: linear-gradient(90deg, var(--color-secondary), #234B86);
}

.disclosure-table th:first-child,
.disclosure-table td:first-child {
  width: 72px;
  text-align: center;
  color: var(--color-primary);
  font-weight: 800;
}

.disclosure-table th:nth-child(2) {
  width: 44%;
}

.disclosure-table td {
  min-height: 42px;
  background: var(--surface-white);
}

.disclosure-table td:nth-child(2) {
  color: var(--color-secondary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.disclosure-table td:nth-child(3):empty::after {
  content: "To be updated";
  color: rgba(85, 85, 85, 0.58);
  font-style: italic;
  text-transform: none;
}

.disclosure-document-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(139, 0, 0, 0.22);
  border-radius: 4px;
  background: var(--surface-red);
  color: var(--color-primary);
  padding: 7px 14px;
  font-weight: 900;
  text-decoration: none;
}

.disclosure-document-link:hover,
.disclosure-document-link:focus-visible {
  background: var(--color-primary);
  color: var(--surface-white);
}

.disclosure-table tbody tr:nth-child(even) td {
  background: rgba(240, 244, 250, 0.58);
}

.disclosure-table tbody tr:hover td {
  background: var(--surface-red);
}

@media (max-width: 900px) {
  .inner-hero {
    min-height: 480px;
  }

  .inner-hero-content {
    padding-block: 130px 56px;
  }

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

  .disclosure-table-wrap {
    margin-inline: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .disclosure-table {
    min-width: 0;
    font-size: 0.88rem;
    background: transparent;
  }

  .disclosure-table,
  .disclosure-table thead,
  .disclosure-table tbody,
  .disclosure-table tr,
  .disclosure-table th,
  .disclosure-table td {
    display: block;
  }

  .disclosure-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .disclosure-table tr {
    overflow: hidden;
    border: 1px solid rgba(26, 58, 107, 0.14);
    border-left: 5px solid var(--color-primary);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    background: var(--surface-white);
    box-shadow: 0 14px 34px rgba(26, 58, 107, 0.1);
  }

  .disclosure-table td {
    min-height: 0;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: var(--space-md);
    border: 0;
    border-bottom: 1px solid rgba(26, 58, 107, 0.1);
    padding: 10px 12px;
    text-align: left;
    background: var(--surface-white);
  }

  .disclosure-table td:last-child {
    border-bottom: 0;
  }

  .disclosure-table td::before {
    content: attr(data-label);
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .disclosure-table td:first-child {
    width: auto;
    background: var(--color-secondary);
    color: var(--surface-white);
    text-align: left;
  }

  .disclosure-table td:first-child::before {
    color: rgba(255, 255, 255, 0.78);
  }

  .disclosure-table td:nth-child(2) {
    background: rgba(240, 244, 250, 0.72);
    font-weight: 700;
  }

  .disclosure-table tbody tr:nth-child(even) td,
  .disclosure-table tbody tr:hover td {
    background: var(--surface-white);
  }

  .disclosure-table tbody tr:nth-child(even) td:first-child,
  .disclosure-table tbody tr:hover td:first-child {
    background: var(--color-secondary);
  }

  .disclosure-table tbody tr:nth-child(even) td:nth-child(2),
  .disclosure-table tbody tr:hover td:nth-child(2) {
    background: rgba(240, 244, 250, 0.72);
  }

  .editorial-panel,
  .value-panel {
    min-height: auto;
    padding: var(--space-lg);
  }
}

@media (max-width: 420px) {
  .disclosure-table td {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .disclosure-table td::before {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }
}
