:root {
  --oa-green: #4a7c6f;
  --oa-green-dark: #2a5c4f;
  --oa-gold: #d4a574;
  --oa-blue: #6b8dc4;
  --oa-rust: #8a6c54;
  --oa-slate: #334155;
  --oa-ink: #111827;
  --oa-muted: #64748b;
  --oa-bg: #f8fafc;
  --oa-white: #ffffff;
  --oa-border: #dbe4ef;
  --oa-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  --container: 1200px;
  --radius: 18px;
  --ease: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--oa-ink);
  background: var(--oa-bg);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section-spacing {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--oa-green-dark);
}

.brand-name,
.brand-work {
  background: linear-gradient(90deg, var(--oa-green-dark), var(--oa-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-divider {
  display: inline-block;
  color: rgba(31, 63, 56, 0.58);
  font-weight: 400;
  font-size: 0.96em;
  line-height: 1;
  transform: scaleY(2.3);
  margin: 0 0.14rem;
  opacity: 0.8;
}

.brand-work {
  font-weight: 500;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.primary-nav .menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.9rem;
  border-radius: 999px;
  color: #3f4b63;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--ease), background var(--ease), transform var(--ease);
}

.primary-nav .menu a.menu-link-pill {
  border: 1px solid rgba(74, 124, 111, 0.4);
  background: #ffffff;
  color: var(--oa-green-dark);
  box-shadow: 0 6px 14px rgba(42, 92, 79, 0.08);
}

.primary-nav .menu a:hover,
.primary-nav .menu a:focus-visible {
  color: var(--oa-green-dark);
  background: rgba(74, 124, 111, 0.12);
  transform: translateY(-1px);
}

.primary-nav .menu a.menu-link-pill:hover,
.primary-nav .menu a.menu-link-pill:focus-visible {
  background: rgba(74, 124, 111, 0.1);
  border-color: rgba(74, 124, 111, 0.6);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-profile {
  position: relative;
  display: inline-flex;
}

.profile-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(74, 124, 111, 0.36);
  background: linear-gradient(135deg, rgba(74, 124, 111, 0.12), rgba(107, 141, 196, 0.12));
  color: #1f2f46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.profile-button:hover,
.profile-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(74, 124, 111, 0.58);
  box-shadow: 0 10px 24px rgba(42, 92, 79, 0.16);
}

.profile-button[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(74, 124, 111, 0.22), rgba(107, 141, 196, 0.2));
}

.profile-initials {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.profile-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, 92vw);
  border-radius: 16px;
  border: 1px solid var(--oa-border);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--oa-shadow);
  overflow: hidden;
  z-index: 90;
}

.profile-dropdown[hidden] {
  display: none;
}

.profile-dropdown-head {
  display: grid;
  gap: 0.16rem;
  padding: 0.82rem 0.92rem;
  border-bottom: 1px solid rgba(107, 141, 196, 0.18);
  background: linear-gradient(140deg, rgba(74, 124, 111, 0.08), rgba(107, 141, 196, 0.08));
}

.profile-dropdown-head strong {
  font-size: 0.86rem;
  color: #12243e;
}

.profile-dropdown-head span {
  font-size: 0.74rem;
  color: #4f627d;
}

.profile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.92rem 0.55rem;
}

.profile-meta-label {
  font-size: 0.74rem;
  color: #5d6f89;
}

.profile-meta-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: #223550;
}

.profile-links {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.92rem 0.62rem;
}

.profile-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--oa-green-dark);
}

.profile-links a:hover,
.profile-links a:focus-visible {
  text-decoration: underline;
}

.profile-note {
  margin: 0;
  padding: 0.65rem 0.92rem 0.86rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 0.7rem;
  color: #64748b;
}

.header-notifications {
  position: relative;
  display: inline-flex;
}

.notification-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(107, 141, 196, 0.35);
  background: #ffffff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.notification-button:hover,
.notification-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(74, 124, 111, 0.48);
  box-shadow: 0 10px 24px rgba(51, 65, 85, 0.12);
}

.notification-button[aria-expanded="true"] {
  background: rgba(74, 124, 111, 0.08);
  border-color: rgba(74, 124, 111, 0.55);
}

.notification-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.notification-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--oa-gold), #e9b87f);
  color: #1f2937;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.notification-badge.is-empty {
  opacity: 0.5;
}

.notification-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, 92vw);
  border-radius: 16px;
  border: 1px solid var(--oa-border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--oa-shadow);
  overflow: hidden;
  z-index: 90;
}

.notification-dropdown[hidden] {
  display: none;
}

.notification-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(107, 141, 196, 0.2);
  background: linear-gradient(140deg, rgba(74, 124, 111, 0.08), rgba(107, 141, 196, 0.08));
  font-size: 0.84rem;
  color: #1f2f46;
}

.notification-list {
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  display: grid;
}

.notification-item {
  display: grid;
  padding: 0.68rem 0.9rem;
  gap: 0.2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.notification-item:last-child {
  border-bottom: 0;
}

.notification-item a {
  display: grid;
  gap: 0.2rem;
}

.notification-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f2937;
}

.notification-meta {
  font-size: 0.74rem;
  color: #64748b;
}

.notification-item.is-empty {
  background: rgba(248, 250, 252, 0.8);
}

.header-cta,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.header-cta-primary {
  color: var(--oa-white);
  background: linear-gradient(135deg, var(--oa-green-dark), var(--oa-green));
  box-shadow: 0 10px 25px rgba(42, 92, 79, 0.25);
}

.header-cta-secondary {
  color: #1f2f46;
  background: #ffffff;
  border-color: rgba(107, 141, 196, 0.35);
}

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

.button-primary {
  color: var(--oa-white);
  background: linear-gradient(140deg, #3b6b5e, #4a7c6f, #5a8c7f);
  border: 1px solid transparent;
  box-shadow: 0 14px 26px rgba(74, 124, 111, 0.2);
}

.button-secondary {
  color: var(--oa-ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--oa-border);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--oa-border);
  background: var(--oa-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #334155;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 9vw, 6.5rem);
  border-bottom: 1px solid rgba(74, 124, 111, 0.13);
  background: radial-gradient(circle at 18% 15%, rgba(74, 124, 111, 0.15), transparent 42%),
    radial-gradient(circle at 85% 78%, rgba(107, 141, 196, 0.18), transparent 38%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 251, 0.85));
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(to right, rgba(74, 124, 111, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74, 124, 111, 0.08) 1px, transparent 1px);
  background-size: 115px 115px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  pointer-events: none;
}

.hero-edge-media {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(24vw, 370px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.hero-edge-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0.5px) saturate(1.04) contrast(0.96);
  transform: scale(1.06);
}

.hero-edge-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-edge-left {
  left: 0;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 56%, transparent 100%);
}

.hero-edge-left::after {
  background: linear-gradient(to right, rgba(248, 250, 252, 0.22), rgba(248, 250, 252, 0.02) 56%, transparent);
}

.hero-edge-right {
  right: 0;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 56%, transparent 100%);
}

.hero-edge-right::after {
  background: linear-gradient(to left, rgba(248, 250, 252, 0.26), rgba(248, 250, 252, 0.02) 56%, transparent);
}

.hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 124, 111, 0.25);
  background: rgba(255, 255, 255, 0.78);
  color: var(--oa-green-dark);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4.8vw, 2.95rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #102038;
}

.hero h1 em {
  display: block;
  margin-top: 0.18em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #425778;
}

.hero-copy {
  max-width: 640px;
  margin: 1.15rem auto 0;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: #4f5f75;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-search,
.portal-search-form {
  margin: 1.3rem auto 0;
  display: flex;
  align-items: center;
  width: min(660px, 100%);
  gap: 0.35rem;
  padding: 0.35rem;
  border: 2px solid rgba(74, 124, 111, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
}

.hero-search input,
.portal-search-form .search-field {
  border: 0;
  background: transparent;
  width: 100%;
  min-height: 56px;
  padding: 0 1.1rem;
  font-size: 0.98rem;
  color: #1f2f46;
  border-radius: 999px;
}

.hero-search button,
.portal-search-form .search-submit {
  border: 0;
  background: linear-gradient(135deg, #334155, #475569);
  color: #fff;
  min-height: 56px;
  min-width: 142px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(51, 65, 85, 0.24);
}

.hero-search input:focus,
.portal-search-form .search-field:focus {
  outline: none;
}

.hero-floating-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float-card {
  position: absolute;
  width: min(320px, 38vw);
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--oa-shadow);
  backdrop-filter: blur(8px);
  animation: floatCard 8s ease-in-out infinite;
}

.float-card h3 {
  margin: 0.3rem 0;
  font-size: 1rem;
  color: #1c2f4c;
}

.float-card p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.45;
  color: #51627b;
}

.float-kicker {
  display: inline-flex;
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oa-green);
}

.float-card-1 {
  top: 10%;
  left: max(1.8%, calc((100vw - 1200px) / 2 + 0.3rem));
}

.float-card-2 {
  top: 70%;
  left: max(3.5%, calc((100vw - 1200px) / 2 + 4.8rem));
  animation-delay: 1.3s;
}

.float-card-3 {
  top: 22%;
  right: max(2.4%, calc((100vw - 1200px) / 2 + 0.3rem));
  animation-delay: 0.8s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0.4deg);
  }
  50% {
    transform: translateY(-16px) rotate(-0.5deg);
  }
}

.metrics-band {
  position: relative;
  margin-top: -1.65rem;
  z-index: 10;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.6rem;
  border-radius: 18px;
  padding: 0.8rem;
  background: linear-gradient(125deg, #355e52, #4a7c6f);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 35px rgba(47, 83, 73, 0.32);
}

.metrics-grid .metric-card {
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  min-height: 168px;
  display: flex;
  flex-direction: column;
}

.metrics-grid .metric-kicker {
  margin: 0;
  color: #d9ebde;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metrics-grid .metric-title {
  margin: 0.38rem 0 0;
  color: #f3f8ec;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 700;
}

.metrics-grid .metric-body {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.section-head h1 {
  margin: 0.1rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #13233c;
}

.gradient-work-word {
  background: linear-gradient(90deg, #3b6b5e, #4a7c6f, #6b8dc4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p {
  margin-top: 0.8rem;
  color: #50627d;
  font-size: 1.03rem;
}

.simple-head {
  margin-bottom: 1.2rem;
}

.portal-services,
.open-roles {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(237, 243, 251, 0.65));
}

.service-columns {
  margin-top: 1.65rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-column {
  border-radius: var(--radius);
  border: 1px solid var(--oa-border);
  background: #fff;
  padding: 1.2rem;
  box-shadow: var(--oa-shadow);
}

.service-hr {
  border-top: 4px solid var(--oa-green);
}

.service-ops {
  border-top: 4px solid var(--oa-blue);
}

.service-header h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #1b2d47;
}

.service-header p {
  margin: 0.45rem 0 0;
  font-size: 0.93rem;
  color: #4f5f75;
}

.service-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.74rem;
}

.service-list a {
  display: block;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  padding: 0.78rem;
  background: linear-gradient(180deg, #fff, #f8fbff);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.service-list a span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #182840;
}

.service-list a small {
  display: block;
  margin-top: 0.25rem;
  color: #5a6b81;
  font-size: 0.84rem;
  line-height: 1.45;
}

.service-list a:hover,
.service-list a:focus-visible {
  border-color: rgba(74, 124, 111, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
}

.traits-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.trait-card {
  border: 1px solid #e6edf5;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  padding: 0.85rem 0.9rem;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.trait-card summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.93rem;
  font-weight: 700;
  color: #1a2f49;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trait-card summary::-webkit-details-marker {
  display: none;
}

.trait-card summary::after {
  content: "+";
  color: #3a5b7d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.trait-card[open] {
  border-color: rgba(74, 124, 111, 0.4);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.07);
}

.trait-card[open] summary::after {
  content: "−";
}

.trait-card p {
  margin: 0.55rem 0 0;
  color: #4f617b;
  font-size: 0.86rem;
  line-height: 1.5;
}

.jobs-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.job-card {
  border-radius: 16px;
  border: 1px solid var(--oa-border);
  background: #fff;
  box-shadow: var(--oa-shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.job-meta span {
  border: 1px solid rgba(107, 141, 196, 0.35);
  border-radius: 999px;
  padding: 0.26rem 0.55rem;
  font-size: 0.72rem;
  color: #3a5576;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.job-card h2,
.job-card h3 {
  margin: 0;
  color: #16263f;
  font-size: 1.15rem;
  line-height: 1.2;
}

.job-card h2 a:hover,
.job-card h3 a:hover,
.job-card h2 a:focus-visible,
.job-card h3 a:focus-visible {
  color: var(--oa-green-dark);
}

.job-card p {
  margin: 0;
  color: #4f617b;
  font-size: 0.9rem;
  line-height: 1.45;
}

.roles-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.culture {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(176, 196, 222, 0.15));
}

.culture-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.culture-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--oa-border);
  background: #fff;
  box-shadow: var(--oa-shadow);
}

.culture-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.culture-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.culture-card:hover .culture-card-media img {
  transform: scale(1.04);
}

.culture-card-body {
  padding: 0.95rem;
}

.culture-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
}

.culture-trait {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(74, 124, 111, 0.12);
  border: 1px solid rgba(74, 124, 111, 0.24);
  color: #2f536f;
  padding: 0.25rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.culture-date {
  color: #73839a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.culture-card-body h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #162740;
  line-height: 1.3;
}

.culture-card-body p {
  margin: 0.5rem 0 0;
  color: #4e6078;
  font-size: 0.88rem;
  line-height: 1.5;
}

.culture-read {
  display: inline-flex;
  margin-top: 0.7rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(107, 141, 196, 0.34);
  align-items: center;
  justify-content: center;
  color: #24578f;
  font-weight: 700;
  text-decoration: none;
}

.culture-read span {
  display: inline-block;
  transition: transform var(--ease);
}

.culture-card:hover .culture-read span,
.culture-card:focus-within .culture-read span {
  animation: cultureArrowBounce 650ms ease-in-out infinite alternate;
}

@keyframes cultureArrowBounce {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(5px);
  }
}

.knowledge {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(176, 196, 222, 0.12));
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.knowledge-panel,
.updates-panel {
  border-radius: var(--radius);
  border: 1px solid var(--oa-border);
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--oa-shadow);
}

.knowledge-panel h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #172840;
}

.knowledge-panel p {
  margin: 0.6rem 0 0;
  color: #4e6078;
}

.knowledge-panel ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.52rem;
}

.knowledge-panel li {
  position: relative;
  padding-left: 1.2rem;
  color: #3e546f;
  font-size: 0.9rem;
}

.knowledge-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--oa-gold), var(--oa-green));
}

.knowledge-panel .button {
  margin-top: 1rem;
}

.updates-panel h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #1a2e4c;
}

.updates-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.68rem;
}

.updates-list li a {
  display: block;
  border: 1px solid #e7edf6;
  border-radius: 13px;
  padding: 0.8rem;
  background: linear-gradient(180deg, #fff, #f9fbff);
  transition: border-color var(--ease), transform var(--ease);
}

.updates-list li a strong {
  display: block;
  font-size: 0.97rem;
  color: #152641;
}

.updates-list li a span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.77rem;
  color: #73839a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.updates-list li a p {
  margin: 0.38rem 0 0;
  font-size: 0.85rem;
  color: #4f617b;
}

.updates-list li a:hover,
.updates-list li a:focus-visible {
  border-color: rgba(107, 141, 196, 0.45);
  transform: translateY(-2px);
}

.updates-empty {
  margin-top: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(250px, 1fr);
  gap: 1rem;
}

.narrow-content {
  width: min(850px, 100%);
}

.content-single,
.post-card,
.sidebar-area {
  border-radius: var(--radius);
  border: 1px solid var(--oa-border);
  background: #fff;
  box-shadow: var(--oa-shadow);
}

.content-single,
.sidebar-area {
  padding: 1.2rem;
}

.post-list {
  display: grid;
  gap: 0.8rem;
}

.post-card {
  padding: 1rem;
}

.post-card h2 {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.2;
}

.post-card h2 a:hover,
.post-card h2 a:focus-visible {
  color: var(--oa-green-dark);
}

.post-meta {
  margin: 0.4rem 0;
  color: #6f8097;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.post-card p {
  margin: 0.3rem 0 0;
  color: #4d5f78;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content a {
  color: #255ab2;
  text-decoration: underline;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: #182a44;
}

.post-navigation-wrap {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px solid var(--oa-border);
  background: #fff;
  padding: 0.85rem;
}

.job-single .job-meta {
  margin-top: 0.75rem;
}

.job-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.comments-area {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px solid var(--oa-border);
  background: #fff;
  padding: 0.9rem;
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: 2rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(160deg, #233345, #2c425d);
}

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

.footer-brand {
  margin-bottom: 0.6rem;
}

.footer-brand .brand-text {
  color: #9ec2b9;
}

.footer-brand .brand-name,
.footer-brand .brand-work {
  background: linear-gradient(90deg, #9ec2b9, #d4a574, #9bb8e4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand .brand-divider {
  color: rgba(212, 223, 239, 0.72);
  opacity: 0.82;
}

.footer-grid h2,
.footer-grid h3,
.widget-title {
  margin: 0;
  font-size: 1rem;
  color: #f2f6fc;
}

.footer-about p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-grid ul {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.3rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #d4e8ff;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.81rem;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
  color: #d4e8ff;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.81rem;
}

.page-template-page-account-photo .content-single,
.page-template-page-account-password .content-single {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.page-template-page-account-photo .section-head.simple-head,
.page-template-page-account-password .section-head.simple-head {
  display: none;
}

.oa-account-page {
  padding: clamp(2rem, 5vw, 4rem) 0;
  min-height: 62vh;
}

.oa-account-card {
  width: min(680px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(74, 124, 111, 0.2);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.96));
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.oa-account-card h1 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #102640;
}

.oa-account-subtitle {
  margin: 0.35rem 0 0.95rem;
  color: #4f627d;
  font-size: 0.94rem;
}

.oa-account-notice {
  border-radius: 12px;
  padding: 0.62rem 0.78rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.oa-account-notice.is-success {
  background: #edfdf2;
  border: 1px solid #b7f0c8;
  color: #1c6a3f;
}

.oa-account-notice.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.oa-account-avatar-wrap {
  margin: 0.2rem 0 1rem;
}

.oa-account-avatar {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 2px solid rgba(74, 124, 111, 0.22);
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oa-account-avatar-fallback {
  background: linear-gradient(140deg, rgba(74, 124, 111, 0.14), rgba(107, 141, 196, 0.16));
  color: #1f2f46;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.oa-account-form {
  display: grid;
  gap: 0.36rem;
  margin: 0;
}

.oa-account-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a3b55;
}

.oa-account-form input[type="file"],
.oa-account-form input[type="password"] {
  border: 1px solid #cfdae7;
  border-radius: 12px;
  padding: 0.62rem 0.68rem;
  font-size: 0.9rem;
  background: #fff;
}

.oa-account-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.oa-account-button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--oa-green), var(--oa-blue));
  color: #fff;
  padding: 0.56rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.oa-account-button:hover,
.oa-account-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30, 64, 107, 0.14);
}

.oa-account-button-secondary {
  background: #fff;
  color: #2a3b55;
  border-color: #d2dce8;
}

.oa-account-form-inline {
  margin-top: 0.65rem;
}

.page-template-page-strong-currents .site-header,
.page-template-page-strong-currents .site-footer,
.error404 .site-header,
.error404 .site-footer {
  display: none;
}

.strong-currents-page {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(135deg, #f0f4f2 0%, #ffffff 55%, #f5f2ee 100%);
}

.strong-currents-wave-layers {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.strong-currents-wave-layers .wave {
  width: 100%;
  display: block;
}

.strong-currents-wave-layers .wave-one {
  height: 11rem;
  opacity: 0.08;
}

.strong-currents-wave-layers .wave-one path {
  fill: #4a7c6f;
}

.strong-currents-wave-layers .wave-two {
  height: 9rem;
  margin-top: -5rem;
  opacity: 0.06;
}

.strong-currents-wave-layers .wave-two path {
  fill: #6b8dc4;
}

.strong-currents-wave-layers .wave-three {
  height: 7rem;
  margin-top: -4rem;
  opacity: 0.05;
}

.strong-currents-wave-layers .wave-three path {
  fill: #d4a574;
}

.strong-currents-grid-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  pointer-events: none;
  opacity: 0.04;
}

.strong-currents-grid-accent line {
  stroke: #4a7c6f;
  stroke-width: 1;
}

.strong-currents-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 42rem;
}

.strong-currents-brand {
  width: fit-content;
  margin: 0 auto 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.strong-currents-brand .brand-text {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.strong-currents-brand .brand-name {
  background: linear-gradient(90deg, #2a5c4f, #4a7c6f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.strong-currents-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: clamp(1.65rem, 3vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
  backdrop-filter: blur(24px);
}

.strong-currents-card-wave {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12rem;
  height: 12rem;
  opacity: 0.07;
  pointer-events: none;
}

.strong-currents-card-wave path {
  fill: #4a7c6f;
}

.strong-currents-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0 auto 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 124, 111, 0.14), rgba(212, 165, 116, 0.14));
}

.strong-currents-icon svg path:first-child {
  stroke: #4a7c6f;
  stroke-width: 2.5;
}

.strong-currents-icon svg path:last-child {
  stroke: #d4a574;
  stroke-width: 2;
  opacity: 0.7;
}

.strong-currents-card h1 {
  margin: 0;
  text-align: center;
  color: #1f2937;
  font-size: clamp(1.7rem, 3.6vw, 2.15rem);
  font-weight: 300;
}

.strong-currents-kicker {
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a7c6f;
}

.strong-currents-copy {
  margin: 0.4rem auto 0;
  max-width: 23rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #6b7280;
}

.strong-currents-code-wrap {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.strong-currents-code {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  color: #9ca3af;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.76rem;
  padding: 0.3rem 0.65rem;
}

.strong-currents-actions {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.strong-currents-actions-single {
  grid-template-columns: 1fr;
}

.sc-btn {
  min-height: 3rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.sc-btn:hover,
.sc-btn:focus-visible {
  transform: translateY(-1px);
}

.sc-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #3b6b5e, #4a7c6f);
  box-shadow: 0 10px 24px rgba(74, 124, 111, 0.24);
}

.sc-btn-secondary {
  color: #374151;
  border-color: #e5e7eb;
  background: #ffffff;
}

.sc-btn-secondary:hover,
.sc-btn-secondary:focus-visible {
  background: #f9fafb;
}

.sc-btn-tertiary {
  color: #2f6f61;
  border-color: rgba(74, 124, 111, 0.3);
  background: rgba(74, 124, 111, 0.06);
}

.sc-btn-tertiary-gold {
  color: #8a6c54;
  border-color: rgba(212, 165, 116, 0.4);
  background: rgba(212, 165, 116, 0.08);
}

.strong-currents-help {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
}

.strong-currents-help a {
  color: #4a7c6f;
}

.strong-currents-tagline {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  letter-spacing: 0.02em;
}

.widget {
  margin: 0;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.not-found {
  text-align: center;
}

.not-found .portal-search-form {
  margin-inline: auto;
}

.pagination,
.nav-links {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nav-links .page-numbers,
.nav-links a,
.nav-links span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--oa-border);
  background: #fff;
}

.nav-links .current {
  color: #fff;
  background: linear-gradient(130deg, var(--oa-green), #5a8c7f);
  border-color: transparent;
}

@media (max-width: 1180px) {
  .hero-floating-cards {
    display: none;
  }
}

@media (max-width: 1100px) {
  .knowledge-grid,
  .content-grid,
  .culture-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0.9rem;
    border: 1px solid var(--oa-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--oa-shadow);
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }

  .primary-nav .menu,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-notifications {
    width: 100%;
  }

  .header-profile {
    width: 100%;
  }

  .profile-button {
    width: 100%;
    border-radius: 12px;
  }

  .profile-dropdown {
    left: 0;
    right: auto;
    width: 100%;
  }

  .notification-button {
    width: 100%;
    justify-content: center;
  }

  .notification-dropdown {
    left: 0;
    right: auto;
    width: 100%;
  }

  .primary-nav .menu a,
  .header-cta {
    justify-content: center;
    width: 100%;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .metrics-grid,
  .service-columns,
  .footer-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .metrics-band {
    margin-top: 0;
    padding-top: 1rem;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .hero-edge-media {
    display: none;
  }

  .strong-currents-actions {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-search button,
  .portal-search-form .search-submit {
    min-height: 48px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search,
  .portal-search-form {
    flex-direction: column;
    border-radius: 22px;
    overflow: visible;
  }

  .hero-search button,
  .portal-search-form .search-submit {
    width: 100%;
    border-left: 0;
    border-top: 0;
  }

  .hero-copy {
    font-size: 0.99rem;
  }

  .section-head p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .strong-currents-card {
    padding: 1.35rem;
  }
}
