:root {
  --navy: #09224b;
  --navy-900: #061a35;
  --teal: #0098a8;
  --teal-600: #007e8d;
  --teal-800: #005863;
  --ice: #eefbfc;
  --white: #fff;
  --ink: #13213a;
  --muted: #64748b;
  --line: #dce6ed;
  --shadow: 0 10px 28px rgb(9 34 75 / 8%);
  --radius: 10px;
  --shell: 1180px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --body-scale: 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: calc(16px * var(--body-scale)); }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Inter, Aptos, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
html.font-small { --body-scale: .9; }
html.font-large { --body-scale: 1.125; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-600); text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: var(--teal-800); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.18; margin: 0 0 .75rem; font-weight: 780; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
.site-shell { width: min(100% - (var(--gutter) * 2), var(--shell)); 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; }
.screen-reader-text:focus { z-index: 100000; top: 8px; left: 8px; width: auto; height: auto; clip: auto; padding: .75rem 1rem; background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.icon { width: 1.35em; height: 1.35em; flex: none; }

/* Header */
.site-header { position: relative; z-index: 50; background: var(--white); border-bottom: 1px solid transparent; }
.header-inner { min-height: 96px; display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: clamp(1rem, 3vw, 2rem); }
.brand, .custom-logo-link { display: inline-flex; align-items: center; gap: .8rem; color: var(--navy); text-decoration: none; }
.brand-mark, .custom-logo { width: 62px; height: 62px; object-fit: contain; border-radius: 50%; }
.brand-copy { display: grid; line-height: 1.05; text-transform: uppercase; }
.brand-copy strong { font-size: 1.45rem; letter-spacing: -.03em; }
.brand-copy small { margin-top: .28rem; font-size: .72rem; color: #284260; letter-spacing: .005em; white-space: nowrap; }
.primary-menu, .footer-menu { list-style: none; margin: 0; padding: 0; }
.primary-menu { display: flex; align-items: center; justify-content: center; gap: clamp(.65rem, 1.7vw, 1.7rem); }
.primary-menu a { position: relative; display: inline-flex; align-items: center; min-height: 46px; color: var(--navy-900); font-size: .87rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.primary-menu a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; transform: scaleX(0); background: var(--teal); transition: transform .2s ease; }
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after, .primary-menu .current_page_item > a::after { transform: scaleX(1); }
.primary-menu ul { position: absolute; display: none; min-width: 210px; padding: .5rem; list-style: none; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.primary-menu li { position: relative; }
.primary-menu li:hover > ul, .primary-menu li:focus-within > ul { display: block; }
.primary-menu ul a { width: 100%; min-height: 42px; padding: .4rem .65rem; }
.accessibility-tools { display: flex; align-items: center; gap: .55rem; }
.accessibility-toggle { width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 1.5px solid var(--teal); border-radius: 50%; background: var(--white); color: var(--teal-600); cursor: pointer; }
.text-size-controls { height: 42px; display: flex; align-items: center; padding-inline: .45rem; border: 1px solid var(--line); border-radius: 999px; }
.text-size-controls button { width: 28px; height: 34px; padding: 0; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
.text-size-controls button:nth-child(1) { font-size: .7rem; }.text-size-controls button:nth-child(3) { font-size: 1.08rem; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--navy); cursor: pointer; }
.menu-icon-close { display: none; }

/* Controls */
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: .72rem 1.25rem; border: 1px solid transparent; border-radius: 6px; font-size: .85rem; font-weight: 750; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--teal); color: var(--white); }.button-primary:hover { background: var(--teal-800); color: var(--white); }
.button-outline { border-color: rgb(255 255 255 / 78%); color: var(--white); }.button-outline:hover { background: var(--white); color: var(--navy); }
.surface-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 4px 14px rgb(9 34 75 / 3%); }
.category-label, .hero-category { display: inline-flex; padding: .18rem .45rem; border-radius: 4px; background: var(--teal-600); color: var(--white); font-size: .67rem; line-height: 1.25; font-weight: 800; text-transform: uppercase; }
.post-date { display: inline-flex; align-items: center; gap: .35rem; color: var(--muted); font-size: .78rem; }
.post-date .icon { width: 1rem; height: 1rem; }

/* Home hero */
.front-page { padding-top: .25rem; }
.hero { padding-block: 0 1.8rem; }
.hero-stage { position: relative; min-height: 465px; overflow: hidden; border-radius: 14px; background: var(--navy-900); color: var(--white); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(2 20 35 / 82%) 0%, rgb(2 20 35 / 28%) 49%, rgb(2 20 35 / 5%) 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: min(54%, 640px); padding: clamp(2rem, 5vw, 4rem); padding-right: 1rem; }
.hero-content h1 { max-width: 570px; margin-top: 1rem; color: var(--white); font-size: clamp(2rem, 4.1vw, 3.35rem); line-height: 1.12; }
.hero-content h1 span { display: block; color: #12bfd0; }
.hero-content p { max-width: 460px; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.55rem; }
.hero-news { position: absolute; z-index: 3; inset: 0 0 0 auto; width: 31%; display: flex; flex-direction: column; justify-content: center; padding: 1.1rem 2rem; background: rgb(0 46 57 / 87%); border-left: 1px solid rgb(255 255 255 / 14%); backdrop-filter: blur(8px); }
.hero-news-item { min-height: 118px; display: grid; grid-template-columns: 104px 1fr; gap: .9rem; align-items: center; padding-block: .75rem; color: var(--white); text-decoration: none; border-bottom: 1px solid rgb(255 255 255 / 28%); }
.hero-news-item:last-child { border-bottom: 0; }.hero-news-item:hover { color: var(--white); }
.hero-thumb { width: 104px; height: 82px; object-fit: cover; border-radius: 8px; }
.hero-news-item span { display: grid; gap: .55rem; }.hero-news-item strong { line-height: 1.35; font-size: .9rem; }.hero-news-item time { font-size: .73rem; opacity: .84; }

/* Home sections and cards */
.home-section { padding-block: 1.05rem 1.35rem; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; }
.section-heading h2 { margin: 0; color: var(--teal-600); font-size: 1.4rem; text-transform: uppercase; }
.section-heading > a { display: inline-flex; align-items: center; gap: .35rem; min-height: 44px; font-size: .83rem; font-weight: 700; text-decoration: none; }
.section-heading .icon { width: 1.1rem; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.45rem; }
.content-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 9px; transition: transform .2s ease, box-shadow .2s ease; }
.content-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { display: block; overflow: hidden; background: #dfeef1; }
.card-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .35s ease; }.content-card:hover .card-image { transform: scale(1.025); }
.card-body { padding: .75rem .85rem .9rem; }.card-title { margin: .45rem 0 .5rem; font-size: .97rem; line-height: 1.35; }.card-title a { color: var(--navy); text-decoration: none; }.card-title a:hover { color: var(--teal-600); }
.card-body p { color: #43516a; font-size: .86rem; }
.home-promises { margin-block: .55rem; background: linear-gradient(90deg, #edfafd, #f5fdfe); border-block: 1px solid #d9eff2; }
.promise-grid { min-height: 108px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.promise-grid > div { min-height: 62px; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; align-content: center; padding-inline: 1.1rem; border-right: 1px solid #8fd8df; }
.promise-grid > div:last-child { border-right: 0; }.promise-grid .icon { grid-row: 1/3; width: 38px; height: 38px; color: var(--teal-600); }.promise-grid strong { font-size: .88rem; color: var(--navy); }.promise-grid span { color: #35516a; font-size: .72rem; }
.project-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: center; }
.project-logo-card { min-width: 0; min-height: 128px; display: flex; align-items: center; justify-content: center; gap: .8rem; padding: 1.25rem; text-align: center; border: 1px solid var(--line); border-radius: 7px; color: var(--navy); background: var(--white); }
.project-logo-card img { display: block; width: auto; max-width: 100%; height: auto; max-height: 76px; object-fit: contain; }
.project-logo-card--gsb img { width: min(100%, 196px); }
.project-logo-card--erasmus img, .project-logo-card--solidarity img { width: min(100%, 225px); }
.project-logo-card--local { flex-direction: column; gap: .55rem; }
.project-logo-card--local img { width: 60px; height: 40px; border-radius: 2px; box-shadow: 0 0 0 1px rgb(0 0 0 / 8%); }
.project-logo-card--local strong { font-size: .88rem; }
.stats-band { margin-top: .65rem; color: var(--white); background: linear-gradient(115deg, var(--teal-600), #00a9b8); }
.stats-grid { min-height: 104px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }.stats-grid div { display: grid; padding: .5rem 2rem; border-right: 1px solid rgb(255 255 255 / 25%); }.stats-grid div:last-child { border-right: 0; }.stats-grid strong { font-size: 1.65rem; }.stats-grid span { font-size: .78rem; }

/* Shared banners and layouts */
.page-banner { margin-bottom: 2.3rem; padding-block: 2.4rem; color: var(--white); background: linear-gradient(120deg, #008fa0, #005461); }
.page-banner h1 { margin: 0 0 .25rem; color: var(--white); font-size: 2rem; text-transform: uppercase; }.page-banner p { display: flex; align-items: center; gap: .65rem; margin: 0; font-size: .9rem; }.page-banner a { color: var(--white); }
.breadcrumb-band { margin-bottom: 1.8rem; padding-block: 1.35rem; color: var(--white); background: linear-gradient(120deg, #0097a8, #00626f); }.breadcrumb-band .site-shell { display: flex; align-items: center; gap: .65rem; overflow: hidden; font-size: .82rem; white-space: nowrap; }.breadcrumb-band a { color: var(--white); }.breadcrumb-band span:last-child { overflow: hidden; text-overflow: ellipsis; }
.archive-tools { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.category-filter { display: flex; flex-wrap: wrap; gap: .65rem; }.category-filter a { min-height: 42px; display: inline-flex; align-items: center; padding: .45rem .85rem; color: var(--navy); border: 1px solid var(--line); border-radius: 6px; text-decoration: none; font-size: .8rem; }.category-filter a:hover, .category-filter .is-active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.search-form { position: relative; width: min(100%, 300px); }.search-field { width: 100%; min-height: 44px; padding: .65rem 3rem .65rem .8rem; color: var(--ink); border: 1px solid var(--line); border-radius: 7px; background: var(--white); }.search-submit { position: absolute; inset: 0 0 0 auto; width: 46px; display: grid; place-items: center; padding: 0; color: var(--navy); border: 0; background: transparent; cursor: pointer; }
.archive-layout, .content-sidebar-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3rem; padding-bottom: 3rem; }.archive-results { min-width: 0; }
.archive-item { display: grid; grid-template-columns: 325px minmax(0, 1fr); gap: 1.4rem; padding-block: 0 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line); }.archive-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; }.archive-item h2 { margin: .4rem 0; font-size: 1.15rem; }.archive-item h2 a { color: var(--navy); text-decoration: none; }.archive-item p { color: #3e4a60; font-size: .9rem; }.archive-item-footer { display: flex; align-items: center; justify-content: space-between; gap: .7rem; }.read-more { display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; font-weight: 700; text-decoration: none; }.read-more .icon { width: 1rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }.page-numbers { min-width: 42px; height: 42px; display: inline-grid; place-items: center; padding-inline: .65rem; border: 1px solid var(--line); border-radius: 6px; color: var(--navy); text-decoration: none; }.page-numbers.current { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* Sidebar */
.sidebar { display: grid; align-content: start; gap: 1.5rem; }.widget { overflow: hidden; }.widget-title { margin: 0; padding: .85rem 1rem; color: var(--white); background: linear-gradient(100deg, var(--teal-600), var(--teal)); font-size: 1.05rem; text-transform: uppercase; }.widget > ul, .widget > div:not(.textwidget), .widget > p, .widget > form { margin: 0; padding: 1rem; }.category-widget ul { list-style: none; margin: 0; padding: .65rem 1rem 1rem; }.category-widget li { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; color: var(--muted); font-size: .75rem; }.category-widget li > a { width: auto; min-height: 40px; display: flex; flex: 1; align-items: center; justify-content: space-between; color: var(--ink); font-size: .8rem; text-decoration: none; }.category-widget .children { flex-basis: 100%; padding: 0 0 .35rem .75rem; border-left: 1px solid var(--line); }.category-widget .children li > a { min-height: 34px; color: var(--muted); }.newsletter-widget label { display: block; margin-bottom: .35rem; font-size: .8rem; font-weight: 700; }.newsletter-widget input { width: 100%; min-height: 44px; margin-bottom: .7rem; padding: .6rem .75rem; border: 1px solid var(--line); border-radius: 6px; }.newsletter-widget .button { width: 100%; }

/* Single */
.single-column { min-width: 0; }.single-article { border-bottom: 1px solid var(--line); }.entry-header { margin-bottom: 1.35rem; }.entry-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; }.entry-header h1 { max-width: 800px; font-size: clamp(2rem, 4vw, 3rem); }.entry-lead { color: #394960; font-size: 1.1rem; }.entry-media { overflow: hidden; margin-bottom: 1rem; border-radius: 9px; }.single-image { width: 100%; max-height: 540px; object-fit: cover; }.entry-content { font-size: 1rem; }.entry-content > * { max-width: 760px; }.entry-content > .alignwide { max-width: 100%; }.entry-content h2 { margin-top: 1.7rem; color: var(--teal-600); font-size: 1.25rem; }.entry-content blockquote { margin: 1.5rem 0; padding: .85rem 1rem; border-left: 4px solid var(--teal); border-radius: 6px; background: var(--ice); color: var(--teal-800); font-weight: 700; }.entry-content img { border-radius: 8px; }.entry-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; }.share-row { display: flex; align-items: center; gap: .5rem; }.share-row a, .social-links a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--white); text-decoration: none; font-size: .82rem; font-weight: 800; }.post-navigation { display: flex; gap: 1.5rem; font-size: .8rem; }.related-posts { padding-block: 1.7rem 2.5rem; }.card-grid-three { grid-template-columns: repeat(3, 1fr); }
.comments-area { padding-block: 1.5rem; }.comment-list { padding-left: 1.5rem; }.comment-body { margin-bottom: 1rem; padding: 1rem; background: var(--ice); border-radius: 8px; }.comment-form label { display: block; font-weight: 700; }.comment-form input:not([type=checkbox]), .comment-form textarea { width: 100%; padding: .7rem; border: 1px solid var(--line); border-radius: 6px; }

/* Static page */
.page-banner-corporate { padding-block: 1.9rem; }.page-banner-corporate p { display: block; }.page-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr) 230px; align-items: start; gap: 2rem; padding-bottom: 3rem; }.page-side-menu { overflow: hidden; }.page-side-menu h2, .quick-links .surface-card h2 { margin: 0; padding: .85rem 1rem; color: var(--teal-600); font-size: 1rem; text-transform: uppercase; }.page-side-menu ul, .quick-links ul { list-style: none; margin: 0; padding: 0 0 .75rem; }.page-side-menu a, .quick-links a:not(.button) { min-height: 42px; display: flex; align-items: center; padding: .45rem 1rem; color: var(--navy); text-decoration: none; font-size: .8rem; }.page-side-menu .current_page_item > a, .page-side-menu a:hover { background: var(--teal); color: var(--white); }.page-section-title { color: var(--teal-600); font-size: 1.25rem; text-transform: uppercase; }.page-feature-image { position: relative; overflow: hidden; margin-bottom: 1rem; border-radius: 9px; }.page-feature-image img { width: 100%; aspect-ratio: 16/5; object-fit: cover; }.page-default-media > div { position: absolute; top: 50%; right: 5%; display: grid; transform: translateY(-50%); color: var(--white); text-align: right; font-size: 1.4rem; font-weight: 800; line-height: 1.35; }.page-default-media span { color: #12c6d6; }.page-article .entry-content { font-size: .92rem; }.page-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-block: 1.2rem; }.page-stats > div { display: grid; justify-items: center; padding: 1rem .5rem; border: 1px solid var(--line); border-radius: 7px; text-align: center; }.page-stats strong { color: var(--teal-600); font-size: 1.6rem; }.page-stats span { color: #40506a; font-size: .75rem; }.values-detail { margin-top: 1.5rem; }.values-detail > h2 { color: var(--teal-600); font-size: 1.2rem; text-transform: uppercase; }.values-detail > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }.values-detail h3 { font-size: .9rem; }.values-detail p { color: #46556d; font-size: .75rem; }.quick-links { display: grid; gap: 1.4rem; }.support-card { padding: 1.2rem; border: 1px solid #d6edf0; border-radius: var(--radius); background: linear-gradient(135deg, #f6fdfe, #e9f9fb); }.support-card h2 { color: var(--teal-600); font-size: 1.1rem; text-transform: uppercase; }.support-card p { font-size: .82rem; }

.legacy-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-block: 1.5rem; }.legacy-gallery figure { margin: 0; }.legacy-gallery img { width: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: 8px; object-fit: cover; }.entry-content img { max-width: 100%; height: auto; }.entry-content iframe { width: 100%; max-width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 8px; }

/* Footer */
.values-strip { background: linear-gradient(90deg, #edfafd, #f7fdfe); border-block: 1px solid #d8eef1; }.value-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }.value-item { min-height: 65px; display: grid; grid-template-columns: 52px 1fr; align-items: center; padding-inline: 1.2rem; border-right: 1px solid #8fd8df; }.value-item:last-child { border-right: 0; }.value-item > .icon { width: 39px; height: 39px; color: var(--teal-600); }.value-item div { display: grid; }.value-item strong { color: var(--navy); font-size: .85rem; }.value-item span { color: #36526a; font-size: .72rem; }
.site-footer { color: var(--white); background: linear-gradient(115deg, #00737f, #004a58); }.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr 1.1fr; gap: 3rem; padding-block: 2.1rem 1.7rem; }.site-footer .brand { color: var(--white); }.site-footer .brand-copy small { color: #d9f7fa; }.footer-brand p { max-width: 290px; margin-top: .8rem; font-size: .85rem; }.site-footer h2 { color: var(--white); font-size: .9rem; text-transform: uppercase; }.footer-menu a { min-height: 29px; display: inline-flex; align-items: center; color: var(--white); text-decoration: none; font-size: .84rem; }.social-links { display: flex; gap: .55rem; }.social-links a { border: 1px solid rgb(255 255 255 / 50%); background: transparent; }.contact-list { list-style: none; display: grid; gap: .75rem; margin: 0; padding: 0; }.contact-list li { display: flex; gap: .7rem; font-size: .84rem; }.contact-list a { color: var(--white); text-decoration: none; }.footer-bottom { border-top: 1px solid rgb(255 255 255 / 18%); }.footer-bottom .site-shell { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .72rem; }.footer-bottom nav { display: flex; gap: 2rem; }.footer-bottom a { color: var(--white); text-decoration: none; }
.error-404 { min-height: 60vh; display: grid; place-items: center; align-content: center; gap: .7rem; text-align: center; }.error-404 > span { color: var(--teal); font-size: clamp(5rem, 15vw, 10rem); font-weight: 900; line-height: 1; }.error-404 .search-form { margin-block: 1rem; }
.no-results { padding: 2rem; }

/* Branches */
.branches-banner { position: relative; overflow: hidden; margin-bottom: 0; padding-block: 2.25rem 2.4rem; background: linear-gradient(105deg, #008a9a, #005565 72%, #003f4d); }
.branches-banner::after { content: ""; position: absolute; inset: 0 0 0 auto; width: 38%; background: linear-gradient(135deg, transparent 15%, rgb(25 204 219 / 14%) 15% 29%, transparent 29% 43%, rgb(255 255 255 / 5%) 43%); pointer-events: none; }
.branches-banner .site-shell { position: relative; z-index: 1; }
.branches-banner h1 { max-width: 850px; margin: .35rem 0 .45rem; color: var(--white); font-size: clamp(2rem, 4vw, 3.1rem); }
.branches-banner p { max-width: 710px; margin: 0; color: #e8fbfd; font-size: 1rem; }
.branches-banner .breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; color: #d5f6f9; font-size: .78rem; }
.branches-banner .breadcrumb a { color: var(--white); }
.branches-content { padding-block: 2.6rem 3.5rem; }
.branches-intro { max-width: 780px; margin-bottom: 1.8rem; color: #3b4f64; font-size: 1.02rem; }
.branch-list { display: grid; gap: 1.35rem; }
.branch-list-item { display: grid; grid-template-columns: minmax(280px, 390px) minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 12px 34px rgb(1 50 62 / 7%); transition: transform .2s ease, box-shadow .2s ease; }
.branch-list-item:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgb(1 50 62 / 12%); }
.branch-list-image { display: block; min-height: 240px; background: #dceff1; }
.branch-list-image img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.branch-list-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 1.8rem 2rem; }
.branch-kicker, .branch-banner-kicker { color: var(--teal-600); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.branch-list-copy h2 { margin: .35rem 0 .55rem; color: var(--navy); font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.branch-list-copy h2 a { color: inherit; text-decoration: none; }
.branch-list-copy p { max-width: 650px; margin: 0 0 1rem; color: #40536a; }
.branch-more { display: inline-flex; align-items: center; gap: .55rem; padding-bottom: .18rem; border-bottom: 2px solid var(--teal); color: var(--teal-600); font-size: .8rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.branch-more:hover, .branch-more:focus-visible { color: var(--navy); }
.branch-detail-banner .branch-banner-kicker { display: inline-block; margin-top: 1.15rem; color: #a8f0f5; }
.branch-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; align-items: start; gap: 2rem; padding-block: 2.6rem 3.5rem; }
.branch-detail-article { min-width: 0; }
.branch-detail-image { overflow: hidden; margin: 0 0 1.8rem; border-radius: 14px; background: #dceff1; box-shadow: 0 14px 38px rgb(1 50 62 / 10%); }
.branch-detail-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.branch-entry-content { color: #26394d; font-size: 1rem; line-height: 1.75; }
.branch-entry-content > * { max-width: 820px; }
.branch-entry-content h2 { margin-top: 2rem; color: var(--teal-600); font-size: 1.35rem; }
.branch-entry-content ul { padding-left: 1.2rem; }
.branch-entry-content li { margin-bottom: .5rem; }
.branch-side-nav { position: sticky; top: 1rem; overflow: hidden; }
.branch-side-nav h2 { margin: 0; padding: 1rem 1.15rem; color: var(--white); background: linear-gradient(100deg, var(--teal-600), var(--teal)); font-size: 1rem; text-transform: uppercase; }
.branch-side-nav ul { list-style: none; margin: 0; padding: .6rem 0; }
.branch-side-nav a { display: flex; align-items: center; justify-content: space-between; gap: .75rem; min-height: 46px; padding: .6rem 1.15rem; color: var(--navy); font-size: .84rem; font-weight: 700; text-decoration: none; }
.branch-side-nav li.current-branch a, .branch-side-nav li a:hover, .branch-side-nav li a:focus-visible { color: var(--white); background: var(--teal); }
.branch-side-nav .branch-all-link { margin-top: .2rem; border-top: 1px solid var(--line); color: var(--teal-600); }
.branch-cta { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 2.2rem; padding: 1.5rem; border: 1px solid #ccebee; border-radius: 12px; background: linear-gradient(135deg, #f4fcfd, #e6f8fa); }
.branch-cta span { color: var(--teal-600); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.branch-cta h2 { margin: .2rem 0 .35rem; color: var(--navy); font-size: 1.35rem; }
.branch-cta p { margin: 0; color: #3d5267; font-size: .85rem; }
.branch-cta .button { flex: 0 0 auto; }

/* High contrast */
body.high-contrast { --navy: #000; --navy-900: #000; --teal: #005fcc; --teal-600: #005fcc; --teal-800: #003e8a; --ink: #000; --muted: #252525; --line: #555; --ice: #fff; }
body.high-contrast a { text-decoration: underline; }
body.high-contrast .hero-stage::after { background: linear-gradient(90deg, #000 0%, rgb(0 0 0 / 85%) 53%, rgb(0 0 0 / 25%) 100%); }

@media (max-width: 920px) {
  .header-inner { grid-template-columns: 220px auto auto; min-height: 82px; }
  .brand-mark, .custom-logo { width: 54px; height: 54px; }.brand-copy strong { font-size: 1.2rem; }.brand-copy small { font-size: .62rem; }
  .menu-toggle { display: grid; justify-self: end; }.primary-navigation { grid-column: 1/-1; display: none; }.site-header.menu-open .primary-navigation { display: block; }.site-header.menu-open .menu-icon-open { display: none; }.site-header.menu-open .menu-icon-close { display: block; }
  .primary-menu { display: grid; gap: 0; padding: .5rem 0 1rem; }.primary-menu a { width: 100%; min-height: 48px; padding: .5rem; }.primary-menu ul { position: static; display: block; box-shadow: none; border: 0; padding-left: 1rem; }
  .accessibility-tools { justify-self: end; }
  .hero-content { width: 67%; }.hero-news { display: none; }
  .page-layout { grid-template-columns: 200px minmax(0, 1fr); }.quick-links { grid-column: 2; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 921px) and (max-width: 1100px) {
  .header-inner { grid-template-columns: 205px 1fr auto; gap: .8rem; }
  .brand-mark, .custom-logo { width: 52px; height: 52px; }
  .brand-copy strong { font-size: 1.1rem; }
  .brand-copy small { font-size: .57rem; }
  .primary-menu { gap: .7rem; }
  .primary-menu a { font-size: .74rem; }
  .accessibility-toggle { width: 42px; height: 42px; }
  .text-size-controls { padding-inline: .25rem; }
}

@media (max-width: 800px) {
  .header-inner { grid-template-columns: 1fr auto; gap: .6rem; }.accessibility-tools { grid-column: 1/-1; justify-self: stretch; justify-content: flex-end; padding-bottom: .65rem; }.menu-toggle { grid-column: 2; grid-row: 1; }
  .hero-stage { min-height: 530px; }.hero-image { object-position: 62% center; }.hero-stage::after { background: linear-gradient(90deg, rgb(1 19 33 / 88%), rgb(1 19 33 / 35%)), linear-gradient(0deg, rgb(1 19 33 / 88%) 0%, transparent 65%); }.hero-content { width: 100%; padding: 2rem; align-self: end; }.hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .card-grid, .card-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }.promise-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }.promise-grid > div:nth-child(2), .value-item:nth-child(2) { border-right: 0; }.promise-grid > div, .value-item { border-bottom: 1px solid #8fd8df; }.promise-grid > div:nth-last-child(-n+2), .value-item:nth-last-child(-n+2) { border-bottom: 0; }
  .project-logos, .stats-grid { grid-template-columns: repeat(2, 1fr); }.stats-grid div:nth-child(2) { border-right: 0; }.stats-grid div { min-height: 84px; }
  .archive-tools { align-items: stretch; flex-direction: column; }.search-form { width: 100%; }.archive-layout, .content-sidebar-layout { grid-template-columns: 1fr; }.sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }.archive-item { grid-template-columns: 260px minmax(0, 1fr); }
  .page-layout { grid-template-columns: 1fr; }.page-side-menu, .quick-links { grid-column: auto; }.quick-links { grid-template-columns: repeat(2, 1fr); }.page-stats, .values-detail > div { grid-template-columns: repeat(2, 1fr); }
	.legacy-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.branch-list-item { grid-template-columns: minmax(220px, 36%) minmax(0, 1fr); }
	.branch-list-copy { padding: 1.35rem; }
	.branch-detail-layout { grid-template-columns: 1fr; }
	.branch-side-nav { position: static; }
}

@media (max-width: 560px) {
  .brand-copy strong { font-size: 1rem; }.brand-copy small { font-size: .54rem; }.brand-mark, .custom-logo { width: 48px; height: 48px; }.text-size-controls { display: none; }
  .hero { width: 100%; padding-bottom: .75rem; }.hero-stage { min-height: 540px; border-radius: 0; }.hero-content { padding: 1.35rem var(--gutter) 1.8rem; }.hero-content p { font-size: .96rem; }.hero-actions { gap: .7rem; }.hero-actions .button { flex: 1; }
  .section-heading { align-items: flex-end; }.section-heading h2 { font-size: 1.2rem; }.section-heading > a { font-size: .73rem; }
  .card-grid, .card-grid-three { grid-template-columns: 1fr; }
  .content-card { display: grid; grid-template-columns: 42% minmax(0, 1fr); align-items: stretch; }
  .content-card .card-media { position: relative; min-height: 9rem; }
  .content-card .card-image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
  .card-body { padding: .65rem; }.card-body p { display: none; }.card-title { font-size: .88rem; }
  .promise-grid, .value-grid, .project-logos, .stats-grid { grid-template-columns: 1fr; }.promise-grid > div, .value-item, .stats-grid div { border-right: 0; border-bottom: 1px solid rgb(0 126 141 / 25%); }.promise-grid > div:nth-child(2), .value-item:nth-child(2) { border-right: 0; }.promise-grid > div:nth-last-child(-n+2), .value-item:nth-last-child(-n+2) { border-bottom: 1px solid rgb(0 126 141 / 25%); }.promise-grid > div:last-child, .value-item:last-child, .stats-grid div:last-child { border-bottom: 0; }.promise-grid > div, .value-item { min-height: 90px; }.project-logo-card { min-height: 112px; padding: 1rem; }
  .archive-item { grid-template-columns: 1fr; }.archive-image-link { display: block; }.archive-item p { margin-bottom: .7rem; }.archive-item-footer { align-items: flex-end; }
  .sidebar { grid-template-columns: 1fr; }.entry-footer { align-items: flex-start; flex-direction: column; }.post-navigation { width: 100%; justify-content: space-between; }.entry-header h1 { font-size: 2rem; }
  .page-banner { margin-bottom: 1.4rem; padding-block: 1.6rem; }.page-banner h1 { font-size: 1.55rem; }.page-default-media img { aspect-ratio: 16/8; }.page-default-media > div { right: 1rem; font-size: 1rem; }.page-stats, .values-detail > div, .quick-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.7rem; }.footer-bottom .site-shell { align-items: flex-start; flex-direction: column; padding-block: .8rem; }.footer-bottom nav { flex-wrap: wrap; gap: .8rem 1.2rem; }
	.branches-banner { padding-block: 1.7rem 1.9rem; }.branches-content, .branch-detail-layout { padding-block: 1.6rem 2.5rem; }.branch-list-item { grid-template-columns: 1fr; }.branch-list-image, .branch-list-image img { min-height: 0; aspect-ratio: 16 / 9; }.branch-list-copy { padding: 1.2rem; }.branch-cta { align-items: flex-start; flex-direction: column; }.branch-cta .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .values-strip, .sidebar, .share-row, .post-navigation, .menu-toggle { display: none !important; }
  body { color: #000; background: #fff; }.site-shell, .entry-content > * { width: 100%; max-width: none; }.content-sidebar-layout { display: block; }.entry-media img { max-height: 400px; }
}
