body {
      background:
        radial-gradient(1100px 600px at 85% -20%,
          rgba(0, 103, 128, 0.18),
          transparent 55%),
        radial-gradient(900px 520px at 10% -10%,
          rgba(208, 184, 163, 0.2),
          transparent 55%),
        var(--c-bg);
    }

    .skip {
      position: absolute;
      left: -999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .skip:focus {
      left: 16px;
      top: 16px;
      width: auto;
      height: auto;
      padding: 10px 12px;
      background: #fff;
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
      z-index: 100;
    }

    .topbar {
      padding: 10px 0;
      font-size: 13px;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 12px 0;
      border-bottom: 1px solid rgba(2, 6, 23, 0.08);
      background: rgba(245, 250, 252, 0.68);
      backdrop-filter: blur(14px);
    }

    html[data-a11y="1"] .header {
      background: #fff;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 172px;
    }

    .logo {
      width: 40px;
      height: 40px;
      border-radius: var(--r-md);
      background: linear-gradient(135deg, var(--c-primary), #0ea5b7);
      overflow: hidden;
      box-shadow: 0 10px 18px rgba(0, 103, 128, 0.18);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: #fff;
      font-weight: 900;
    }

    .brand h1 {
      margin: 0;
      font-size: 14px;
      letter-spacing: 0.02em;
      font-weight: 600;
    }

    .brand .sub {
      font-size: 12px;
      color: var(--c-muted);
      margin-top: 2px;
      font-weight: 300;
    }

    nav {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .navlink {
      padding: 10px 10px;
      border-radius: var(--r-md);
      border: 1px solid transparent;
      font-size: 13px;
    }

    .navlink:hover {
      text-decoration: none;
      border-color: var(--c-border);
      background: rgba(255, 255, 255, 0.8);
    }

    .navlink[aria-expanded="true"] {
      background: #fff;
      border-color: rgba(2, 6, 23, 0.16);
    }

    .menu-btn {
      display: none;
    }

    .mega {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: calc(100% + 10px);
      width: min(var(--container), calc(100vw - 40px));
      display: none;
    }

    .mega.open {
      display: block;
    }

    .mega .grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: var(--s-4);
    }

    .mega .col {
      padding: var(--s-4);
      border-radius: var(--r-md);
      border: 1px solid var(--c-border);
      background: rgba(255, 255, 255, 0.9);
    }

    .mega h3 {
      margin: 0 0 10px;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--c-muted);
      font-weight: 600;
    }

    /* Search modal */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(2, 6, 23, 0.55);
      display: none;
      z-index: 80;
    }

    .overlay.open {
      display: block;
    }

    .modal {
      width: min(760px, calc(100vw - 40px));
      margin: 80px auto 0;
      padding: var(--s-4);
      border-radius: 20px;
    }

    .searchbox {
      display: flex;
      gap: 10px;
      padding: 12px;
      border-radius: 16px;
      border: 1px solid var(--c-border);
      background: #fff;
    }

    .searchbox input {
      border: none;
      outline: none;
      width: 100%;
      font-size: 16px;
    }

    .kbd {
      padding: 2px 7px;
      border: 1px solid var(--c-border);
      border-bottom-width: 2px;
      border-radius: 8px;
      font-size: 12px;
      color: var(--c-muted);
      background: #fff;
    }

    main {
      padding: var(--s-4) 0 var(--s-7);
    }

    section.block {
      padding: var(--s-5) 0;
    }

    .section-head {
      display: flex;
      gap: 12px;
      align-items: baseline;
      justify-content: space-between;
      margin: 6px 0 12px 28px;
      flex-wrap: wrap;
    }

    .section-head h2 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
    }

    .section-head p {
      margin: 0;
      color: var(--c-muted);
      font-size: 13px;
      font-weight: 300;
    }

    .grid3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--s-4);
    }

    .tile {
      padding: var(--s-4);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      background: #fff;
      box-shadow: var(--shadow-sm);
      text-decoration: none;
      transition:
        transform var(--t-fast) var(--ease),
        box-shadow var(--t-fast) var(--ease);
    }

    .tile:hover {
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    .tile h3 {
      margin: 8px 0 6px;
      font-size: 14px;
      font-weight: 600;
    }

    .tile p {
      margin: 0;
      font-size: 12px;
      color: var(--c-muted);
    }

    /* News scroller */
    .scroller {
      display: flex;
      gap: var(--s-4);
      overflow: auto;
      scroll-snap-type: x mandatory;
      padding: 4px 2px 10px;
    }

    .news {
      min-width: min(360px, 85vw);
      scroll-snap-align: start;
      padding: var(--s-4);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      background: #fff;
      text-decoration: none;
      box-shadow: var(--shadow-sm);
    }

    .news .meta {
      font-size: 12px;
      color: var(--c-muted);
      font-weight: 300;
    }

    .news h3 {
      margin: 8px 0 6px;
      font-size: 14px;
      font-weight: 600;
    }

    .news p {
      margin: 0;
      color: var(--c-muted);
      font-size: 12px;
      font-weight: 300;
    }

    /* CTA */
    .cta {
      padding: var(--s-5);
      display: flex;
      gap: var(--s-4);
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--r-lg);
      background: linear-gradient(135deg,
          rgba(0, 103, 128, 0.95),
          rgba(14, 165, 183, 0.9));
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .cta h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .cta p {
      margin: 4px 0 0;
      opacity: 0.92;
      font-size: 13px;
      max-width: 60ch;
      font-weight: 300;
    }

    /* Footer */
    footer {
      padding: var(--s-6) 0 var(--s-6);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: var(--s-4);
    }

    .foot {
      padding: var(--s-4);
    }

    .foot h3 {
      margin: 0 0 10px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--c-muted);
      font-weight: 600;
    }

    .foot a {
      display: inline-flex;
      padding: 6px 0;
      text-decoration: none;
      font-weight: 300;
    }

    .foot a:hover {
      text-decoration: none;
    }

    .fine {
      margin-top: 12px;
      color: var(--c-muted);
      font-size: 12px;
      font-weight: 300;
    }

    @media (max-width: 980px) {
      nav {
        display: none;
      }

      .menu-btn {
        display: inline-flex;
      }

      .grid3 {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .mega {
        left: 20px;
        transform: none;
        width: calc(100vw - 40px);
      }

      .mega .grid {
        grid-template-columns: 1fr;
      }

      .brand {
        min-width: auto;
      }
    }

.sitemap {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .sitemapCol {
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(2, 6, 23, .10);
        background: rgba(255, 255, 255, .80);
    }

    .sitemapCol a {
        display: block;
        margin-top: 8px;
        text-decoration: none;
        color: rgba(2, 6, 23, .84);
        font-weight: 300;
    }

    .sitemapCol a:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    @media (max-width: 980px) {
        .sitemap {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 560px) {
        .sitemap {
            grid-template-columns: 1fr;
        }
    }

body.admin-bar .header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.has-gray-color {
  color: var(--c-muted);
}

.wp-block-table {
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
  padding: 12px;
  border: 1px solid rgba(2, 6, 23, 0.10);
  vertical-align: top;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background: rgba(2, 6, 23, 0.02);
}

.wp-block-table a {
  word-break: break-word;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4);
}

.contact-card {
  padding: var(--s-4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-card.contact-accent {
  background:
    radial-gradient(900px 320px at 100% 0, rgba(0, 103, 128, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(159, 213, 213, 0.16), #fff);
}

.contact-main {
  margin-top: 8px;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.25;
  font-weight: 600;
  word-break: break-word;
}

.contact-sub {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.map-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-4);
  align-items: stretch;
}

.map-card,
.map-visual {
  padding: var(--s-4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.map-visual {
  min-height: 280px;
  background:
    radial-gradient(900px 320px at 0 0, rgba(0, 103, 128, 0.18), transparent 55%),
    radial-gradient(900px 320px at 100% 100%, rgba(208, 184, 163, 0.20), transparent 55%),
    linear-gradient(135deg, rgba(245, 250, 252, 0.95), rgba(255, 255, 255, 1));
  position: relative;
  overflow: hidden;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.map-visual::before {
  width: 220px;
  height: 220px;
  right: -40px;
  top: -20px;
  background: rgba(0, 103, 128, 0.12);
}

.map-visual::after {
  width: 180px;
  height: 180px;
  left: -20px;
  bottom: -20px;
  background: rgba(208, 184, 163, 0.18);
}

@media (max-width: 980px) {
  .contact-grid,
  .map-shell {
    grid-template-columns: 1fr;
  }
}
