:root {
  --red: #b10f2e;
  --red-dark: #8c0b24;
  --red-deep: #6d081c;
  --red-light: #fef5f6;
  --red-muted: #f0d4d8;
  --red-glow: rgba(177, 15, 46, 0.12);
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f6f6f6;
  --gray-100: #ececec;
  --gray-200: #d4d4d4;
  --gray-400: #949494;
  --gray-600: #555555;
  --gray-800: #2b2b2b;
  --gray-900: #181818;
  --text: #2e2e2e;
  --text-light: #636363;
  --border: #e2e2e2;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --header-h: 5.25rem;
  --topbar-h: 2.35rem;
  --max-w: 78rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

/* ── Top bar ── */
.top-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.top-bar-jurisdiction {
  opacity: 0.9;
  font-weight: 500;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.top-bar-links a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-bar-links a:hover {
  opacity: 0.85;
}

.top-bar-apply {
  text-decoration: none !important;
  padding: 0.15rem 0.55rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  letter-spacing: 0.03em;
}

.top-bar-apply:hover {
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.top-bar-sep {
  opacity: 0.45;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), height 0.35s var(--ease);
}

.site-header.scrolled {
  height: 4.5rem;
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 201;
}

.brand img {
  height: 3.75rem;
  width: 3.75rem;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-900);
  line-height: 1.3;
}

.brand-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.12rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.site-nav a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).active {
  color: var(--red);
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn).active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.35rem;
  height: 2.35rem;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: var(--gray-800);
  transition: transform 0.3s, opacity 0.3s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.4rem;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 0.78rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px rgba(177, 15, 46, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

/* ── Typography ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.45rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.78;
  max-width: 40rem;
  margin-bottom: 2rem;
}

.body-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 1.5rem;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-intro {
  margin-bottom: 2rem;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: calc(100dvh - var(--topbar-h) - var(--header-h));
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  background:
    linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  overflow: hidden;
}

.hero-panel-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 2.5rem 3.5rem max(2.5rem, calc((100vw - var(--max-w)) / 2 + 2.5rem));
  width: 100%;
}

.hero-seal {
  margin-bottom: 1.5rem;
}

.hero-seal img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
}

.hero-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}

.hero-lead {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.78;
  max-width: 29rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-meta-item {
  padding-right: 0.5rem;
  border-right: 1px solid var(--gray-100);
}

.hero-meta-item:last-child {
  border-right: none;
}

.hero-meta-item strong {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.hero-meta-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  background: var(--gray-50);
  display: flex;
}

.hero-image-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24, 24, 24, 0.35) 100%);
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #22a559;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.35rem 1.65rem;
  background: rgba(255, 255, 255, 0.97);
  border-top: 3px solid var(--red);
  backdrop-filter: blur(8px);
}

.hero-image-caption img {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-image-caption span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-image-caption span:first-of-type {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-900);
}

.hero-image-caption span:last-of-type {
  color: var(--text-light);
}

/* ── Corporate bar ── */
.corporate-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.corporate-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.corporate-item {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--border);
}

.corporate-item:last-child {
  border-right: none;
}

.corporate-item strong {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.corporate-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.35;
}

/* ── Governance ── */
.governance {
  padding: 5.5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.governance-header {
  margin-bottom: 2.5rem;
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.governance-card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
}

.governance-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.65rem;
}

.governance-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.68;
}

.governance-notice {
  padding: 1.5rem 1.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
}

.governance-notice p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.72;
}

.governance-notice strong {
  color: var(--gray-800);
}

/* ── Contact section ── */
.contact-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.contact-address strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.72;
  max-width: 32rem;
}

.contact-panel {
  padding: 1.75rem 1.65rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
}

.contact-panel h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.contact-panel ul {
  list-style: none;
}

.contact-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.86rem;
}

.contact-panel li:last-child {
  border-bottom: none;
}

.contact-panel li span:first-child {
  color: var(--text-light);
  font-weight: 500;
}

.contact-panel li span:last-child {
  color: var(--gray-800);
  font-weight: 600;
  text-align: right;
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--border);
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--red);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-badge strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.trust-badge span {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--red);
  color: var(--white);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat:last-child {
  border-right: none;
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.65rem;
  opacity: 0.55;
}

.stat-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--white);
}

.stat-value {
  display: block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ── Quick access ── */
.quick-access {
  padding: 4.5rem 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.quick-card {
  display: flex;
  flex-direction: column;
  padding: 1.85rem 1.6rem;
  background: var(--white);
  transition: background 0.25s, transform 0.25s;
  position: relative;
}

.quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--red);
  transition: height 0.25s var(--ease);
}

.quick-card:hover {
  background: var(--red-light);
}

.quick-card:hover::before {
  height: 3px;
}

.quick-icon {
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  border: 1px solid var(--red-muted);
  margin-bottom: 1.2rem;
  transition: background 0.25s, border-color 0.25s;
}

.quick-card:hover .quick-icon {
  background: var(--red);
  border-color: var(--red);
}

.quick-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--red);
  transition: stroke 0.25s;
}

.quick-card:hover .quick-icon svg {
  stroke: var(--white);
}

.quick-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.45rem;
}

.quick-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.58;
  flex: 1;
  margin-bottom: 1.1rem;
}

.quick-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Principles ── */
.principles {
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.principles-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.principle:last-child {
  border-right: none;
}

.principle-num {
  display: block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red-muted);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.principle h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.principle p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── About ── */
.about {
  padding: 5.5rem 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.about-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--gray-800);
  line-height: 1.55;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.about-facts li:last-child {
  border-bottom: none;
}

.about-facts svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--red);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-panel {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.35rem;
}

.info-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: var(--red);
  color: var(--white);
}

.info-panel-head h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-panel-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.info-panel dl {
  padding: 0.35rem 0;
}

.info-panel dl > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}

.info-panel dl > div:hover {
  background: var(--off-white);
}

.info-panel dl > div:last-child {
  border-bottom: none;
}

.info-panel dt {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-light);
}

.info-panel dd {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: right;
}

.institution-note {
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
}

.institution-note h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.65rem;
}

.institution-note p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.68;
  margin-bottom: 1rem;
}

.institution-note-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.institution-note-link:hover {
  color: var(--red-dark);
}

.service-card.service-card-link {
  display: flex;
  flex-direction: column;
}

.service-more {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.hq-thumb {
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hq-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hq-thumb-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.1rem;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
}

.hq-thumb-bar span:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-900);
}

.hq-thumb-bar span:last-child {
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 600;
}

/* ── Services ── */
.services {
  padding: 5.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.85rem 1.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: var(--red-muted);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
}

.service-icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--gray-400);
  transition: stroke 0.25s;
}

.service-card:hover .service-icon {
  stroke: var(--red);
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.68;
}

/* ── Heritage ── */
.heritage {
  padding: 0 0 5.5rem;
  background: var(--white);
}

.heritage-banner {
  position: relative;
  height: 14rem;
  overflow: hidden;
  margin-bottom: 4rem;
}

.heritage-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.heritage-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 24, 24, 0.72) 0%, rgba(24, 24, 24, 0.35) 55%, transparent 100%);
}

.heritage-banner-text {
  position: absolute;
  left: max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
  bottom: 2rem;
  color: var(--white);
}

.heritage-banner-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.heritage-banner-text strong {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.heritage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.timeline {
  border-left: 2px solid var(--red);
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2.25rem;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--white);
  border: 2px solid var(--red);
}

.timeline-year {
  display: block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.68;
}

/* ── Jurisdiction ── */
.jurisdiction {
  padding: 5.5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.jurisdiction-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: start;
}

.jurisdiction-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.flag-panama {
  width: 7rem;
  height: 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.flag-q1 { background: #ffffff; }
.flag-q2 { background: #da121a; }
.flag-q3 { background: #072357; }
.flag-q4 { background: #ffffff; }

.flag-q1::after,
.flag-q4::after {
  content: '★';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.9rem;
}

.flag-q1::after { color: #072357; }
.flag-q4::after { color: #da121a; }

.jurisdiction-card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
}

.jurisdiction-card h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.jurisdiction-card p {
  font-size: 0.85rem;
  color: var(--gray-800);
  line-height: 1.65;
}

.jurisdiction-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.jurisdiction-point {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}

.jurisdiction-point:hover {
  box-shadow: var(--shadow-md);
}

.jurisdiction-point strong {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.45rem;
}

.jurisdiction-point p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── CTA band ── */
.cta-band {
  position: relative;
  background: var(--red);
  color: var(--white);
  padding: 4rem 0;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.03) 20px,
      rgba(255, 255, 255, 0.03) 21px
    );
  pointer-events: none;
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-content {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
}

.cta-lock {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.cta-lock svg {
  stroke: var(--white);
}

.cta-eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.45rem;
}

.cta-layout h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.cta-layout p {
  font-size: 0.92rem;
  opacity: 0.88;
  max-width: 30rem;
  line-height: 1.65;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 50%, var(--red) 100%);
}

.footer-main {
  padding: 3.75rem 0 2.75rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.35fr 2fr;
  gap: 3.5rem;
}

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

.footer-brand img {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-name {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.footer-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer-desc {
  font-size: 0.84rem;
  line-height: 1.68;
  max-width: 22rem;
  margin-bottom: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-contact span,
.footer-contact a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact a:hover,
.contact-address a:hover,
.contact-panel a:hover {
  color: var(--gold);
}

.contact-address a,
.contact-panel a {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 600;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links-grid h4 {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-grid a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
}

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

.footer-legal {
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.85rem 0;
}

.footer-legal-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-legal p {
  font-size: 0.71rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 0.75rem;
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.48);
}

.footer-copy {
  margin-bottom: 0 !important;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Mobile ── */
@media (max-width: 1100px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta-item {
    border-right: none;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .hero-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-panel-inner {
    padding: 3rem 2rem;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .corporate-bar-inner,
  .governance-grid,
  .contact-layout,
  .trust-strip-inner,
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-item:nth-child(2),
  .governance-card:nth-child(2) {
    border-right: none;
  }

  .corporate-item:nth-child(1),
  .corporate-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .trust-badge:nth-child(2),
  .stat:nth-child(2) {
    border-right: none;
  }

  .trust-badge:nth-child(1),
  .trust-badge:nth-child(2),
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

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

  .principle:nth-child(2) {
    border-right: none;
  }

  .principle:nth-child(1),
  .principle:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .about-layout,
  .heritage-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .jurisdiction-points {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .top-bar-left .top-bar-jurisdiction {
    display: none;
  }

  .site-header {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: calc(var(--topbar-h) + var(--header-h));
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a:not(.btn) {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
  }

  .site-nav .btn {
    margin-top: 1.25rem;
    width: 100%;
  }

  .section-inner {
    padding: 0 1.25rem;
  }

  .hero-panel-inner {
    padding: 2.5rem 1.25rem;
  }

  .hero-image-badge {
    display: none;
  }

  .corporate-bar-inner,
  .governance-grid,
  .contact-layout,
  .trust-strip-inner,
  .stats-inner,
  .quick-grid,
  .principles-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .corporate-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .corporate-item:last-child {
    border-bottom: none;
  }

  .trust-badge,
  .stat,
  .principle {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

  .trust-badge:last-child,
  .stat:last-child,
  .principle:last-child {
    border-bottom: none;
  }

  .quick-access {
    padding: 3.5rem 0;
  }

  .about,
  .services,
  .jurisdiction {
    padding: 3.75rem 0;
  }

  .heritage {
    padding-bottom: 3.75rem;
  }

  .heritage-banner {
    height: 10rem;
    margin-bottom: 2.5rem;
  }

  .heritage-banner-text {
    left: 1.25rem;
    bottom: 1.25rem;
  }

  .jurisdiction-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .jurisdiction-aside {
    flex-direction: row;
    align-items: flex-start;
  }

  .cta-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-content {
    flex-direction: column;
  }

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

  .info-panel dl > div {
    grid-template-columns: 1fr;
  }

  .info-panel dd {
    text-align: left;
  }
}

/* ── Service subpages ── */
.subpage main {
  padding-bottom: 0;
}

.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 2rem 0;
  font-size: 0.78rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  transition: color 0.2s;
}

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

.breadcrumb span[aria-current] {
  color: var(--text);
  font-weight: 600;
}

.breadcrumb-sep {
  margin: 0 0.45rem;
  opacity: 0.45;
}

.page-hero {
  position: relative;
  background: var(--red);
  color: var(--white);
  margin-top: 1.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.25rem 2rem 3.5rem;
}

.page-hero-num {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero-intro {
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.72;
  opacity: 0.92;
}

.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
}

.page-section {
  margin-bottom: 2.75rem;
}

.page-section:last-child {
  margin-bottom: 0;
}

.page-section h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--red-muted);
}

.page-section p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.page-section p:last-child {
  margin-bottom: 0;
}

.page-features ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.page-features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.65;
}

.page-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--red);
}

.other-services {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  padding: 4rem 0 5rem;
}

.other-services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.other-services h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.75rem;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card-link {
  display: block;
  padding: 1.65rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card-link:hover {
  border-color: var(--red-muted);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-link .service-num {
  display: block;
  margin-bottom: 0.65rem;
}

.service-card-link h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.45rem;
}

.service-card-link p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-hero-inner {
    padding: 2.5rem 1.25rem 2.75rem;
  }

  .page-content {
    padding: 2.5rem 1.25rem 3rem;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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

  .badge-dot {
    animation: none;
  }
}
