:root {
  --ink: #201426;
  --muted: #6b6270;
  --paper: #ffffff;
  --soft: #f6f2f7;
  --line: #e8dfea;
  --brand: #7c1689;
  --brand-strong: #5e0f68;
  --accent: #c89720;
  --teal: #147a7e;
  --shadow: 0 18px 45px rgba(36, 21, 43, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

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

.brand strong {
  display: block;
  font-size: clamp(0.98rem, 1.5vw, 1.2rem);
  line-height: 1.15;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
  background: var(--soft);
  outline: none;
}

.site-nav .nav-action {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  color: #fff;
  background: var(--brand-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(32, 20, 38, 0.84), rgba(32, 20, 38, 0.44) 48%, rgba(32, 20, 38, 0.18)),
    linear-gradient(0deg, rgba(32, 20, 38, 0.68), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 13vh 0 18vh;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-band h2,
.contact-cta h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary,
.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.quick-info {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -74px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-info article {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info span,
.news-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 680px;
}

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

.section-heading h2,
.feature-band h2,
.contact-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.text-link,
.news-card a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.news-card a:hover {
  text-decoration: underline;
}

.intro-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.careers-section {
  padding-top: 40px;
}

.career-groups {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  margin-top: 34px;
}

.career-group {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.career-group h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

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

.career-list a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.career-list a:hover,
.career-list a:focus-visible {
  color: var(--brand);
  border-color: rgba(124, 22, 137, 0.35);
  outline: none;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
  padding: 72px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--brand-strong);
}

.requirements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.requirements li {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.news-section {
  padding-bottom: 72px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(36, 21, 43, 0.08);
}

.news-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-card div {
  padding: 20px;
}

.news-card h3 {
  margin: 8px 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.news-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.contact-cta {
  width: min(var(--max), calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto 86px;
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  border-radius: var(--radius);
}

.contact-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #201426;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-credit-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-right: 92px;
  padding-top: 18px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-credit-row a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-credit-row a:hover,
.footer-credit-row a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.page-main {
  background:
    linear-gradient(180deg, rgba(246, 242, 247, 0.95), rgba(255, 255, 255, 0) 420px),
    #fff;
}

.page-hero {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: end;
  margin: 0 auto;
  padding: 72px 0 42px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-badge {
  justify-self: end;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(36, 21, 43, 0.08);
}

.page-badge span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-badge strong {
  color: var(--brand);
}

.content-shell {
  width: min(var(--max), calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
  margin: 0 auto;
  padding: 24px 0 92px;
}

.content-panel,
.side-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(36, 21, 43, 0.08);
}

.content-panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 44px);
}

.side-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.side-panel h2,
.side-panel h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
}

.side-panel nav,
.side-list {
  display: grid;
  gap: 8px;
}

.side-panel a,
.side-list a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.side-panel a:hover,
.side-list a:hover,
.side-panel a:focus-visible,
.side-list a:focus-visible {
  color: var(--brand);
  border-color: rgba(124, 22, 137, 0.28);
  outline: none;
}

.side-note {
  margin-top: 22px;
  padding: 16px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.legacy-content {
  color: var(--ink);
  font-size: 1rem;
}

.legacy-content h1,
.legacy-content h2,
.legacy-content h3 {
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: 0;
}

.legacy-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legacy-content h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.legacy-content h3 {
  font-size: 1.2rem;
}

.legacy-content p,
.legacy-content li {
  color: var(--muted);
  font-size: 1.02rem;
}

.legacy-content p {
  margin: 0 0 18px;
}

.legacy-content .extract_page {
  color: var(--muted);
  font-family: inherit;
  font-size: 1.04rem;
  line-height: 1.75;
  margin-top: 0;
  padding: 0;
  text-align: left;
  text-indent: 0;
}

.legacy-content .date {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
}

.legacy-content ul,
.legacy-content ol {
  padding-left: 1.2rem;
}

.legacy-content a {
  color: var(--brand);
  font-weight: 800;
}

.legacy-content img,
.legacy-content .pageimg {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 18px 0;
  border-radius: var(--radius);
}

.legacy-content p > img + img {
  margin-left: 0;
}

.legacy-content hr {
  height: 1px;
  margin: 24px 0;
  background: var(--line);
  border: 0;
}

.legacy-content table {
  width: 100%;
  border-collapse: collapse;
}

.legacy-content iframe {
  max-width: 100%;
}

.contact-form-card {
  margin-top: 34px;
  padding: clamp(20px, 4vw, 30px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-intro {
  max-width: 680px;
  margin-bottom: 22px;
}

.form-intro h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.form-intro p:not(.eyebrow),
.form-note {
  color: var(--muted);
}

.whatsapp-form {
  display: grid;
  gap: 16px;
}

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

.whatsapp-form label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.whatsapp-form label span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.whatsapp-form textarea {
  resize: vertical;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
  border-color: rgba(124, 22, 137, 0.55);
  outline: 3px solid rgba(124, 22, 137, 0.13);
}

.whatsapp-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-height: 54px;
  padding: 0;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  background: #1fa855;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20, 122, 126, 0.26);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-float span {
  display: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #168a45;
  outline: 3px solid rgba(31, 168, 85, 0.26);
  outline-offset: 3px;
  transform: translateY(-2px);
}

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

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-action {
    margin-left: 0;
    text-align: center;
  }

  .quick-info,
  .intro-grid,
  .career-groups,
  .feature-band,
  .news-grid,
  .page-hero,
  .content-shell {
    grid-template-columns: 1fr;
  }

  .page-badge {
    justify-self: stretch;
  }

  .side-panel {
    position: static;
  }

  .quick-info article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .contact-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-credit-row {
    flex-direction: column;
    gap: 6px;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    padding-bottom: 130px;
  }

  .quick-info {
    margin-top: -52px;
  }

  .section {
    padding: 68px 0;
  }

  .career-list,
  .requirements,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .contact-cta {
    padding: 32px 18px;
  }

}
