@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Entanglemental Icons";
  src: url("../fonts/fa-solid-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

:root {
  --ent-dark: #051c2c;
  --ent-dark-2: #08283a;
  --ent-sticky: rgba(12, 39, 56, .94);
  --ent-accent: #20b6d4;
  --ent-accent-hover: #18a6c3;
  --ent-paper: #ffffff;
  --ent-soft: #f3f5f6;
  --ent-text: #051c2c;
  --ent-muted: #4f5d69;
  --ent-white: #ffffff;
  --ent-shell: 1356px;
  --ent-header-open: 132px;
  --ent-header-sticky: 110px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ent-text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.ent-menu-is-open { overflow: hidden; }
img, video, svg { max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--ent-accent); color: var(--ent-dark); }

.ent-shell {
  width: min(var(--ent-shell), calc(100% - 48px));
  margin-inline: auto;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.ent-skip-link {
  position: fixed; z-index: 10000; top: 12px; left: 12px;
  padding: 12px 18px; background: #fff; color: var(--ent-dark);
  transform: translateY(-160%); transition: transform .2s;
}
.ent-skip-link:focus { transform: translateY(0); }

/* Header: transparent over the hero, dark translucent after scrolling. */
.ent-site-header {
  position: absolute;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--ent-header-open);
  color: #fff;
  background: transparent;
  transition: height .26s ease, background .26s ease, box-shadow .26s ease, backdrop-filter .26s ease;
}
.ent-site-header.is-scrolled,
body:not(.ent-group-home) .ent-site-header {
  position: fixed;
  height: var(--ent-header-sticky);
  background: var(--ent-sticky);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.admin-bar .ent-site-header { top: 32px; }
.ent-header-inner {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}
.ent-brand {
  display: block;
  flex: 0 0 auto;
  width: min(414px, 31vw);
  margin-top: 22px;
  line-height: 0;
  transition: width .26s ease, margin .26s ease;
}
.ent-brand img { display: block; width: 100%; height: auto; }
.ent-site-header.is-scrolled .ent-brand,
body:not(.ent-group-home) .ent-site-header .ent-brand {
  width: min(342px, 27vw);
  margin-top: 17px;
}
.ent-header-desktop {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.ent-header-utility {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  transition: opacity .16s ease, height .24s ease, visibility .16s ease;
}
.ent-site-header.is-scrolled .ent-header-utility,
body:not(.ent-group-home) .ent-site-header .ent-header-utility {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.ent-social { display: flex; align-items: center; gap: 19px; }
.ent-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: currentColor;
  transition: color .18s ease, transform .18s ease;
}
.ent-social a:hover, .ent-social a:focus-visible { color: var(--ent-accent); transform: translateY(-1px); }
.ent-social svg { width: 100%; height: 100%; fill: currentColor; }
.ent-language-switcher { display: flex; align-items: center; gap: 17px; }
.ent-language-switcher a {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  transition: color .18s ease, opacity .18s ease;
}
.ent-language-switcher a:hover,
.ent-language-switcher a:focus-visible,
.ent-language-switcher a[aria-current="page"] { color: var(--ent-accent); }
.ent-header-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ent-header-nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(23px, 2.65vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.ent-header-nav li { position: relative; flex: 0 0 auto; }
.ent-header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease;
}
.ent-header-nav a:hover,
.ent-header-nav a:focus-visible,
.ent-header-nav a[aria-current="page"] { color: var(--ent-accent); }
.ent-header-home { width: 29px; justify-content: center; color: var(--ent-accent) !important; }
.ent-header-home svg { width: 22px; height: 22px; fill: currentColor; }
.ent-header-home::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ent-accent);
  transform: translateX(-50%);
}
.ent-site-header.is-scrolled .ent-header-nav,
body:not(.ent-group-home) .ent-site-header .ent-header-nav { height: 100%; }
.ent-site-header.is-scrolled .ent-header-nav a,
body:not(.ent-group-home) .ent-site-header .ent-header-nav a { min-height: var(--ent-header-sticky); }
.ent-site-header.is-scrolled .ent-header-home::before,
body:not(.ent-group-home) .ent-site-header .ent-header-home::before { top: 0; }
.ent-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px 0;
  margin-top: 23px;
  border: 0;
  background: transparent;
  color: #fff;
}
.ent-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0 6px auto;
  background: currentColor;
}
.ent-menu-toggle span:nth-of-type(3) { width: 21px; }

/* Mobile navigation overlay */
.ent-menu-overlay {
  position: fixed;
  z-index: 500;
  inset: 0;
  overflow: auto;
  background: var(--ent-dark);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
}
.ent-menu-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.ent-menu-overlay__top { min-height: 104px; display: flex; align-items: center; justify-content: space-between; }
.ent-brand--overlay { width: 310px; margin: 0; }
.ent-menu-close { position: relative; width: 44px; height: 44px; background: transparent; border: 0; }
.ent-menu-close span { position: absolute; left: 8px; top: 21px; width: 28px; height: 2px; background: #fff; transform: rotate(45deg); }
.ent-menu-close span:last-child { transform: rotate(-45deg); }
.ent-menu-overlay__body { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 80px; align-items: end; padding-block: 50px 80px; }
.ent-primary-nav ul { list-style: none; padding: 0; margin: 0; }
.ent-primary-nav li { border-bottom: 1px solid rgba(255,255,255,.13); }
.ent-primary-nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 0;
  font-size: clamp(31px, 4.3vw, 61px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.035em;
  transition: color .18s ease, padding .18s ease;
}
.ent-primary-nav a span { width: 33px; flex: 0 0 33px; color: var(--ent-accent); font-size: 12px; letter-spacing: .12em; }
.ent-primary-nav a:hover, .ent-primary-nav a:focus-visible, .ent-primary-nav a[aria-current="page"] { color: var(--ent-accent); padding-inline-start: 8px; }
.ent-overlay-meta { display: flex; flex-direction: column; gap: 35px; padding-bottom: 10px; }
.ent-overlay-meta > a { color: var(--ent-accent); font-weight: 700; }
.ent-language-switcher--overlay { align-items: flex-start; flex-direction: column; gap: 11px; }
.ent-language-switcher--overlay a { font-size: 16px; }

/* Hero */
.ent-hero {
  position: relative;
  height: 100svh;
  min-height: 760px;
  max-height: 940px;
  overflow: hidden;
  background: var(--ent-dark);
  color: #fff;
}
.ent-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ent-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 28, 44, .30) 0%, rgba(5, 28, 44, .14) 28%, rgba(5, 28, 44, .52) 100%),
    linear-gradient(90deg, rgba(5, 28, 44, .12), rgba(5, 28, 44, .05));
}
.ent-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 122px;
  text-align: center;
}
.ent-hero-slides { position: relative; width: min(1020px, 92%); min-height: 190px; }
.ent-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .62s ease, visibility .62s ease, transform .62s ease;
}
.ent-hero-slide.is-active { opacity: 1; visibility: visible; transform: none; }
.ent-hero-slide p { margin: 0; text-wrap: balance; }
.ent-hero-lead { font-size: clamp(33px, 3.05vw, 46px); line-height: 1.12; font-weight: 600; letter-spacing: -.035em; }
.ent-hero-emphasis { font-size: clamp(37px, 3.45vw, 50px); line-height: 1.08; font-weight: 700; letter-spacing: -.025em; text-transform: uppercase; }
.ent-hero-support { max-width: 900px; margin-top: 12px !important; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.45; font-weight: 600; }
.ent-hero-dots { position: absolute; bottom: 24px; display: flex; gap: 11px; }
.ent-hero-dots button { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: rgba(0,0,0,.55); transition: background .18s ease, transform .18s ease; }
.ent-hero-dots button.is-active { background: var(--ent-accent); transform: scale(1.05); }
.ent-hero-scroll { display: none; }

/* Content foundations */
.ent-main { overflow: clip; }
body:not(.ent-group-home) .ent-main { padding-top: var(--ent-header-sticky); }
.ent-section { padding: 105px 0; margin: 0; }
.ent-section--light { background: #fff; color: var(--ent-text); }
.ent-section--dark { background: var(--ent-dark); color: #fff; }
.ent-section--accent { background: var(--ent-accent); color: var(--ent-dark); }
.ent-copy-narrow { max-width: 980px; }
.ent-copy-wide { max-width: 1120px; }
.ent-copy-narrow > :first-child, .ent-copy-wide > :first-child { margin-top: 0; }
.ent-copy-narrow > :last-child, .ent-copy-wide > :last-child { margin-bottom: 0; }
.ent-display-title,
.ent-page-heading {
  margin: 0 0 30px;
  font-size: clamp(38px, 3.45vw, 52px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.ent-display-title { color: var(--ent-accent); }
.ent-page-heading { color: var(--ent-dark); font-size: clamp(44px, 5vw, 72px); }
.ent-page-heading--light { color: #fff; }
.ent-lead { margin: 0 0 34px; font-size: 18px; line-height: 2.02; font-weight: 400; letter-spacing: -.012em; }
.ent-lead--dark { color: var(--ent-dark); font-size: 21px; line-height: 1.8; }
.ent-section-intro { max-width: 760px; margin: 0 auto 72px; font-size: 18px; line-height: 2.05; }
.ent-text-center { text-align: center; }
.ent-eyebrow { margin: 0 0 12px; font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.ent-section p { max-width: 78ch; }
.ent-section .wp-block-buttons { margin-top: 34px; }
.ent-section .wp-block-buttons.is-content-justification-center,
.ent-home-intro .wp-block-buttons,
.ent-entanglement-story .wp-block-buttons { justify-content: center; }
.ent-button-wrap .wp-block-button__link,
.ent-inline-button {
  min-width: 205px;
  min-height: 63px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 2px solid var(--ent-accent);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  transition: background .18s ease, color .18s ease;
}
.ent-button-wrap .wp-block-button__link:hover,
.ent-button-wrap .wp-block-button__link:focus-visible,
.ent-inline-button:hover,
.ent-inline-button:focus-visible { background: var(--ent-accent); color: var(--ent-dark); }
.ent-section--light .ent-button-wrap .wp-block-button__link { color: var(--ent-dark); }

/* Home intro */
.ent-home-intro {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 155px 0 112px;
}
.ent-home-intro .ent-copy-narrow { margin-inline: auto; }
.ent-home-intro .ent-display-title { margin-bottom: 24px; }
.ent-home-intro .ent-lead { max-width: 930px; margin-inline: auto; color: #fff; }

/* Home topics */
.ent-home-services { padding: 105px 0 125px; }
.ent-home-services .ent-display-title { margin-bottom: 18px; }
.ent-service-grid,
.ent-level-grid,
.ent-finance-grid {
  display: grid !important;
  margin: 0 !important;
}
.ent-service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px; }
.ent-service-grid > .wp-block-column,
.ent-level-grid > .wp-block-column,
.ent-finance-grid > .wp-block-column { margin: 0 !important; min-width: 0; }
.ent-service-card {
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 46px 37px 42px;
  border: 2px solid var(--ent-accent);
  background: #fff;
  color: var(--ent-dark);
  text-align: center;
  transition: background .18s ease, color .18s ease;
}
.ent-service-card:hover,
.ent-service-card:focus-visible { background: #f9fdfe; }
.ent-service-icon {
  width: 61px;
  height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  color: var(--ent-accent);
}
.ent-service-icon svg { display: none; }
.ent-service-icon::before {
  font-family: "Entanglemental Icons";
  font-size: 54px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.ent-service-grid > :nth-child(1) .ent-service-icon::before { content: ""; }
.ent-service-grid > :nth-child(2) .ent-service-icon::before { content: ""; }
.ent-service-grid > :nth-child(3) .ent-service-icon::before { content: ""; }
.ent-service-grid > :nth-child(4) .ent-service-icon::before { content: ""; }
.ent-service-card h3 { margin: 0 0 22px; color: var(--ent-accent); font-size: 25px; line-height: 1.35; font-weight: 700; letter-spacing: -.025em; }
.ent-service-card p { margin: 0; color: var(--ent-dark); font-size: 18px; line-height: 1.82; }
.ent-service-index, .ent-card-link { display: none; }

/* Entanglement */
.ent-section--image {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--ent-dark);
}
.ent-section--image::before { content: ""; position: absolute; inset: 0; background-position: center; background-size: cover; }
.ent-section--image::after { content: ""; position: absolute; inset: 0; background: rgba(3, 31, 59, .52); }
.ent-entanglement-story::before { background-image: url("../images/entanglement-bg.jpg"); }
.ent-section--image > .ent-shell { position: relative; z-index: 2; margin-inline: auto; }
.ent-entanglement-story .ent-display-title { color: #fff; margin-bottom: 48px; font-size: clamp(39px, 3.35vw, 51px); }
.ent-story-copy { max-width: 1100px !important; margin-inline: auto; color: #fff; font-size: 17px; line-height: 1.78; }
.ent-entanglement-story .wp-block-buttons { margin-top: 44px; }

/* Levels */
.ent-home-levels { padding: 125px 0 135px; }
.ent-home-levels .ent-display-title { color: #fff; margin-bottom: 22px; }
.ent-home-levels .ent-section-intro { margin-bottom: 75px; color: #fff; font-size: 20px; line-height: 1.5; }
.ent-level-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px; }
.ent-level-card {
  height: 100%;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px 38px;
  color: #fff;
  text-align: center;
}
.ent-level-card--initial { background: #20b6d4; }
.ent-level-card--proficiency { background: #2c74aa; }
.ent-level-card--senior { background: #244366; }
.ent-level-card--master { background: #1f2d42; }
.ent-level-card h3 { margin: 0 0 2px; color: #fff; font-size: clamp(37px, 3vw, 48px); line-height: 1.3; font-weight: 700; letter-spacing: -.04em; }
.ent-level-kicker { margin: 0 !important; color: #fff; font-size: 24px; line-height: 1.45; font-weight: 400; }
.ent-level-chevron { width: 10px; height: 10px; margin: 24px 0 65px; border-right: 3px solid #b9dded; border-bottom: 3px solid #b9dded; transform: rotate(45deg); }
.ent-level-card > p:last-child { margin: 0; color: #fff; font-size: 18px; line-height: 1.72; }

/* Internal pages */
.ent-main--page .ent-section:first-child { padding-top: 105px; }
.ent-two-column { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: center; gap: 80px; }
.ent-iso-visual { min-height: 380px; background: url("../images/iso.png") center / contain no-repeat; }
.ent-values-intro { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 80px; margin: 0 0 85px !important; }
.ent-values-intro > .wp-block-column { margin: 0 !important; }
.ent-values-intro p:last-child { margin: 0; font-size: 20px; line-height: 1.7; }
.ent-value-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 42px; }
.ent-value-list span { padding: 15px 22px; border: 1px solid rgba(5,28,44,.4); font-size: 14px; font-weight: 700; }
.ent-finance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.ent-detail-card { height: 100%; min-height: 270px; padding: 32px; border: 1px solid rgba(255,255,255,.18); }
.ent-detail-card > span { color: var(--ent-accent); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.ent-detail-card h2 { margin: 30px 0 15px; color: #fff; font-size: 25px; line-height: 1.2; }
.ent-detail-card p { margin: 0; color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.7; }
.ent-closing-statement { max-width: 1000px !important; margin: 0; font-size: clamp(25px, 3vw, 40px); line-height: 1.38; letter-spacing: -.03em; font-weight: 500; }
.ent-image-band { min-height: 510px; margin: 0; background-position: center; background-size: cover; }
.ent-image-band--ma { background-image: linear-gradient(rgba(5,28,44,.10), rgba(5,28,44,.20)), url("../images/golden-gate.jpg"); }
.ent-image-band--public { background-image: linear-gradient(rgba(5,28,44,.16), rgba(5,28,44,.28)), url("../images/public-affairs.webp"); }

/* Map */
.ent-map-section { position: relative; background: #eef2f4; }
.ent-world-map { width: 100%; height: 470px; z-index: 1; }
.ent-world-map .leaflet-control-attribution { font-size: 9px; }
.ent-world-map .ent-map-label {
  padding: 4px 7px;
  border: 0;
  border-radius: 2px;
  background: rgba(5,28,44,.9);
  color: #fff;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 600;
}
.ent-world-map .ent-map-label::before { display: none; }

/* News */
.ent-news-section { padding: 105px 0 64px; background: var(--ent-dark); color: #fff; }
.ent-news-section .ent-shell { width: min(1240px, calc(100% - 48px)); }
.ent-news-header { margin-bottom: 48px; }
.ent-news-header h2 { margin: 0; line-height: 0; }
.ent-news-header img { width: 258px; height: auto; display: block; }
.ent-news-track-wrap { overflow: hidden; }
.ent-news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.ent-news-track::-webkit-scrollbar { display: none; }
.ent-news-card { min-height: 355px; background: #fff; color: var(--ent-dark); scroll-snap-align: start; overflow: hidden; }
.ent-news-card > a { display: flex; flex-direction: column; height: 100%; }
.ent-news-card__image { height: 165px; flex: 0 0 165px; background: #e7eaec center / cover no-repeat; }
.ent-news-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 20px 24px; }
.ent-news-card__category { color: var(--ent-accent); font-size: 13px; line-height: 1.25; font-weight: 500; text-transform: uppercase; }
.ent-news-card h3 { margin: 12px 0 0; color: var(--ent-dark); font-size: 18px; line-height: 1.42; font-weight: 700; letter-spacing: -.025em; }
.ent-news-card time { display: none; }
.ent-news-state { grid-column: 1; margin: 35px 0; color: rgba(255,255,255,.8); }
.ent-news-pagination { min-height: 12px; display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 25px; }
.ent-news-pagination button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #8695a0; }
.ent-news-pagination button.is-active { width: 26px; border-radius: 10px; background: var(--ent-accent); }
.ent-news-controls { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 27px; }
.ent-news-arrow,
.ent-news-more {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ent-accent);
  background: transparent;
  color: #fff;
  transition: background .18s ease, color .18s ease;
}
.ent-news-arrow { width: 50px; font-size: 31px; line-height: 1; }
.ent-news-arrow:disabled { opacity: .25; cursor: default; }
.ent-news-arrow:not(:disabled):hover,
.ent-news-arrow:not(:disabled):focus-visible,
.ent-news-more:hover,
.ent-news-more:focus-visible { background: var(--ent-accent); color: var(--ent-dark); }
.ent-news-more { min-width: 156px; gap: 24px; margin-inline-start: 9px; padding: 0 22px; font-size: 16px; font-weight: 700; }
.ent-news-more span { font-size: 25px; font-weight: 300; }

/* Contact page */
.ent-contact-section { padding-block: 115px; }
.ent-contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr); gap: 90px; align-items: start; }
.ent-contact-email { color: var(--ent-accent); font-size: 20px; font-weight: 700; }
.ent-contact-form-wrap { padding: 44px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.15); }
.ent-contact-form { position: relative; }
.ent-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.ent-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.ent-field { display: flex; flex-direction: column; gap: 8px; }
.ent-field--full { grid-column: 1 / -1; }
.ent-field > span { font-size: 13px; font-weight: 700; }
.ent-field small { color: rgba(255,255,255,.55); font-weight: 400; }
.ent-field input, .ent-field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); border-radius: 0; padding: 12px 0; background: transparent; color: #fff; outline: 0; }
.ent-field input:focus, .ent-field textarea:focus { border-color: var(--ent-accent); }
.ent-field textarea { resize: vertical; min-height: 135px; }
.ent-form-privacy { margin: 22px 0; color: rgba(255,255,255,.56); font-size: 12px; }
.ent-submit { min-height: 52px; padding: 13px 23px; display: inline-flex; align-items: center; gap: 18px; border: 1px solid var(--ent-accent); background: var(--ent-accent); color: var(--ent-dark); font-weight: 700; }
.ent-submit:hover, .ent-submit:focus-visible { background: transparent; color: var(--ent-accent); }
.ent-submit:disabled { opacity: .6; cursor: wait; }
.ent-form-response { min-height: 26px; margin-top: 18px; font-size: 14px; }
.ent-form-response.is-success { color: #7ee2a2; }
.ent-form-response.is-error { color: #ffb8b8; }

/* Footer */
.ent-site-footer { min-height: 620px; display: flex; align-items: center; background: #fff; color: var(--ent-dark); }
.ent-footer-main { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 112px 0 70px; text-align: center; }
.ent-footer-brand { width: min(370px, 76vw); margin-bottom: 40px; }
.ent-footer-brand img { display: block; width: 100%; }
.ent-footer-cta {
  min-width: 205px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 31px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--ent-accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: background .18s ease, transform .18s ease;
}
.ent-footer-cta:hover, .ent-footer-cta:focus-visible { background: var(--ent-accent-hover); transform: translateY(-1px); }
.ent-footer-email { margin-bottom: 18px; color: var(--ent-dark); font-size: 20px; font-weight: 700; }
.ent-footer-offices { max-width: 940px; color: var(--ent-dark); font-size: 18px; line-height: 1.75; }
.ent-social--footer { margin-top: 26px; gap: 22px; }
.ent-social--footer a { width: 19px; height: 19px; color: var(--ent-dark); }
.ent-footer-legal { width: 100%; display: flex; justify-content: center; gap: 22px; margin-top: 62px; color: rgba(5,28,44,.48); font-size: 10px; }
.ent-back-to-top {
  position: fixed;
  z-index: 90;
  right: 32px;
  bottom: 0;
  width: 52px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px 28px 0 0;
  background: #0c4d6c;
  color: #fff;
  font-size: 21px;
  line-height: 1;
}

:where(a, button, input, textarea):focus-visible { outline: 2px solid var(--ent-accent); outline-offset: 3px; }

/* RTL */
.rtl .ent-primary-nav a { letter-spacing: 0; }
.rtl .ent-news-more span { transform: rotate(180deg); }

@media (max-width: 1220px) {
  .ent-brand { width: min(350px, 29vw); }
  .ent-header-nav a { font-size: 14px; }
  .ent-header-nav ul { gap: 24px; }
  .ent-service-grid { gap: 22px; }
  .ent-level-grid { gap: 22px; }
}

@media (max-width: 1040px) {
  .ent-site-header,
  .ent-site-header.is-scrolled,
  body:not(.ent-group-home) .ent-site-header { height: 90px; }
  body:not(.ent-group-home) .ent-main { padding-top: 90px; }
  .ent-header-inner { align-items: center; }
  .ent-brand,
  .ent-site-header.is-scrolled .ent-brand,
  body:not(.ent-group-home) .ent-site-header .ent-brand { width: min(300px, 62vw); margin-top: 0; }
  .ent-header-desktop { display: none; }
  .ent-menu-toggle { display: block; margin-top: 0; }
  .ent-service-grid, .ent-level-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ent-finance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ent-news-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .ent-contact-grid { grid-template-columns: 1fr 1.2fr; gap: 55px; }
}

@media (max-width: 782px) {
  .admin-bar .ent-site-header { top: 46px; }
  .ent-shell { width: min(var(--ent-shell), calc(100% - 34px)); }
  .ent-hero { min-height: 650px; max-height: none; }
  .ent-hero__content { padding-top: 90px; }
  .ent-hero-slides { min-height: 245px; width: 96%; }
  .ent-hero-lead { font-size: clamp(26px, 7.1vw, 37px); }
  .ent-hero-emphasis { font-size: clamp(31px, 8.4vw, 44px); }
  .ent-hero-support { max-width: 94%; font-size: 15px; }
  .ent-menu-overlay__body { grid-template-columns: 1fr; gap: 50px; padding-block: 30px 60px; }
  .ent-primary-nav a { font-size: clamp(28px, 8vw, 45px); gap: 13px; }
  .ent-section { padding: 78px 0; }
  .ent-home-intro { min-height: 580px; padding: 110px 0 85px; }
  .ent-display-title, .ent-page-heading { font-size: clamp(35px, 10vw, 52px); }
  .ent-lead { font-size: 17px; line-height: 1.8; }
  .ent-section-intro { margin-bottom: 45px; font-size: 17px; line-height: 1.8; }
  .ent-service-grid, .ent-level-grid, .ent-finance-grid { grid-template-columns: 1fr; }
  .ent-service-card { min-height: 400px; }
  .ent-section--image { min-height: 700px; }
  .ent-entanglement-story .ent-display-title br,
  .ent-home-levels .ent-display-title br { display: none; }
  .ent-entanglement-story .ent-display-title { margin-bottom: 30px; }
  .ent-story-copy { font-size: 16px; line-height: 1.72; }
  .ent-level-card { min-height: 465px; }
  .ent-two-column, .ent-values-intro { grid-template-columns: 1fr; gap: 35px; }
  .ent-iso-visual { min-height: 260px; order: -1; }
  .ent-image-band { min-height: 360px; }
  .ent-world-map { height: 420px; }
  .ent-news-section { padding: 70px 0 58px; }
  .ent-news-header img { width: 225px; }
  .ent-news-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .ent-contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .ent-contact-form-wrap { padding: 30px 23px; }
  .ent-form-grid { grid-template-columns: 1fr; }
  .ent-field--full { grid-column: auto; }
  .ent-site-footer { min-height: 560px; }
  .ent-footer-main { padding: 85px 0 55px; }
  .ent-footer-offices { font-size: 16px; }
  .ent-footer-legal { flex-direction: column; gap: 5px; margin-top: 45px; }
  .ent-back-to-top { right: 18px; }
}

@media (max-width: 620px) {
  .ent-shell { width: calc(100% - 28px); }
  .ent-brand,
  .ent-site-header.is-scrolled .ent-brand,
  body:not(.ent-group-home) .ent-site-header .ent-brand { width: min(245px, 72vw); }
  .ent-brand--overlay { width: 240px; }
  .ent-service-card, .ent-level-card, .ent-detail-card { padding-inline: 25px; }
  .ent-news-track { grid-auto-columns: 100%; }
  .ent-news-header { margin-bottom: 32px; }
  .ent-news-more { min-width: 138px; }
  .ent-news-controls { gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ent-hero__video { display: none; }
  .ent-hero { background: var(--ent-dark) url("../images/hero-poster.jpg") center / cover no-repeat; }
}

/* Core block layout fallbacks */
.wp-block-buttons{display:flex;flex-wrap:wrap;gap:.75rem}
.wp-block-button{display:inline-block}
