:root {
  --ink: #071322;
  --navy: #091a2f;
  --navy-soft: #132844;
  --green: #2f7b22;
  --lime: #86bf25;
  --gold: #86bf25;
  --gold-soft: #a6d84a;
  --charcoal: #111817;
  --cream: #f4f1eb;
  --line: #d9e0da;
  --paper: #f6f8f4;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 19, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(7, 19, 34, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: padding 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(7, 19, 34, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.92rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.section,
.section-band {
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.section {
  background: var(--paper);
}

.section-band {
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding-top: 130px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.96) 0%, rgba(7, 19, 34, 0.82) 42%, rgba(7, 19, 34, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 19, 34, 0.82) 0%, rgba(7, 19, 34, 0) 44%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.section-band h2 {
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
}

.hero-line {
  margin: 20px 0 0;
  max-width: 680px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.hero-industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-industry-strip span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--gold);
}

.trust-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #455163;
}

.section h2,
.section-band h2 {
  max-width: 820px;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

.intro-copy {
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.leader-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(7, 19, 34, 0.06);
}

.service-card {
  position: relative;
  padding: 28px;
}

.service-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy-soft));
  border-radius: 8px;
  font-weight: 900;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.service-card h3,
.leader-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.service-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.service-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(200, 166, 77, 0.62);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card.is-featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: 0 28px 70px rgba(7, 19, 34, 0.2);
}

.service-card.is-featured h3,
.service-card.is-featured p,
.service-card.is-featured .pillar-list,
.service-card.is-featured .text-link {
  color: var(--white);
}

.service-card p,
.leader-card p {
  margin: 0 0 18px;
  color: #455163;
}

.service-card ul,
.leader-card ul {
  margin: 0;
  padding-left: 18px;
}

.service-card li,
.leader-card li {
  margin: 8px 0;
}

.offering-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.offering-list span {
  padding: 7px 10px;
  border: 1px solid #d7e6d2;
  border-radius: 4px;
  color: #173421;
  background: #f2f8ef;
  font-size: 0.86rem;
  font-weight: 800;
}

.pillar-list {
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(7, 19, 34, 0.12);
  list-style: none;
}

.pillar-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 18px;
  color: #455163;
  font-weight: 700;
}

.pillar-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}

.service-card.is-featured .pillar-list {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.service-card.is-featured .pillar-list li {
  color: rgba(255, 255, 255, 0.9);
}

.productivity {
  background: var(--cream);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: end;
}

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

.engagement-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(7, 19, 34, 0.14);
  background: rgba(255, 255, 255, 0.62);
}

.engagement-card span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  color: #8d6c12;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.engagement-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.1;
}

.engagement-card p {
  margin: 0;
  color: #455163;
}

.process-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  padding: 22px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.process-bar span:not(:last-child)::after {
  content: "->";
  float: right;
  color: var(--gold);
}

.approach {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.97), rgba(19, 40, 68, 0.96)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.approach h2,
.approach .section-kicker {
  color: var(--white);
}

.approach .section-kicker {
  color: var(--lime);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.approach-grid div {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.approach-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(134, 191, 37, 0.65);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 900;
}

.approach-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.approach-grid span {
  color: rgba(255, 255, 255, 0.82);
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.impact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.97), rgba(19, 40, 68, 0.96)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.impact h2,
.impact .section-heading p:not(.section-kicker) {
  color: var(--white);
}

.impact-clean {
  display: block;
}

.impact-clean .metric-grid {
  max-width: 920px;
  margin-left: auto;
}

.impact-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.impact-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.impact-image .button {
  width: fit-content;
  margin: 16px 18px 18px;
}

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

.metric {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-left: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.metric strong {
  color: var(--lime);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1;
}

.metric span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-transform: uppercase;
}

.projects {
  background:
    linear-gradient(135deg, rgba(246, 248, 244, 0.97), rgba(255, 255, 255, 0.98)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(7, 19, 34, 0.08);
}

.project-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--green);
  background: #eef7ea;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin: auto 0 12px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.18;
}

.project-card p {
  margin: 0;
  color: #455163;
  font-size: 0.96rem;
}

.industries {
  background: var(--white);
}

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

.industry-card {
  position: relative;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  align-items: end;
  border-radius: 8px;
  background-color: var(--navy);
  box-shadow: 0 18px 44px rgba(7, 19, 34, 0.14);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 19, 34, 0.08), rgba(7, 19, 34, 0.9)),
    linear-gradient(135deg, rgba(47, 123, 34, 0.2), rgba(9, 26, 47, 0));
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.industry-card div {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.industry-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: var(--white);
  background: rgba(47, 123, 34, 0.7);
  backdrop-filter: blur(8px);
}

.industry-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.industry-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.industry-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.articles-preview {
  background: var(--paper);
}

.article-preview-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.article-card,
.article-callout {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(7, 19, 34, 0.06);
}

.featured-article {
  min-height: 340px;
}

.article-card h3,
.article-callout h3 {
  margin: 14px 0 12px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.12;
}

.article-card p,
.article-callout p {
  margin: 0 0 22px;
  color: #455163;
}

.article-category {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--green);
  background: #eef7ea;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 22px 0;
  color: #5c6674;
  font-size: 0.92rem;
  font-weight: 800;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  align-items: center;
}

.article-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lime);
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--navy);
}

.service-link {
  display: inline-block;
  margin-top: 18px;
}

.article-callout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 244, 0.98)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.article-callout .button {
  width: fit-content;
}

.subpage-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  padding-top: 130px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.95), rgba(7, 19, 34, 0.76)),
    linear-gradient(0deg, rgba(7, 19, 34, 0.84), rgba(7, 19, 34, 0.08));
}

.subpage-hero-media {
  position: absolute;
  inset: 0;
}

.subpage-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.subpage-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.96), rgba(7, 19, 34, 0.72)),
    url("assets/industry-manufacturing.jpg") center / cover;
}

.service-hero > div {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.service-detail {
  background: var(--paper);
}

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

.stream-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 19, 34, 0.08);
}

.stream-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(134, 191, 37, 0.15), transparent 30%),
    linear-gradient(135deg, var(--navy), #111e22);
}

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

.package-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 19, 34, 0.08);
}

.package-card-featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.package-card h3 {
  margin: 12px 0 14px;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.15;
  text-wrap: balance;
}

.package-card p {
  margin: 0 0 22px;
  color: #455163;
}

.package-card .capability-list {
  margin-top: auto;
}

.package-card-featured h3,
.package-card-featured p {
  color: var(--white);
}

.package-card-featured .capability-list span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.finance-hero {
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.96), rgba(7, 19, 34, 0.72)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.stream-capability-areas {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stream-capability-areas div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.stream-capability-areas.heading-only div {
  align-items: center;
  min-height: 66px;
}

.stream-capability-areas span {
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
}

.stream-capability-areas strong {
  display: block;
  margin: 0;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.12;
}

.stream-capability-areas p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.packages-section {
  padding-top: clamp(62px, 7vw, 92px);
}

.finance-package-grid .package-card {
  min-height: 170px;
  justify-content: space-between;
}

.finance-package-grid .package-card h3 {
  margin-top: auto;
  font-size: 1.35rem;
}

.stream-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.stream-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
  text-wrap: balance;
}

.stream-card-featured h3,
.stream-card-featured p {
  color: var(--white);
}

.stream-card p,
.managed-service-copy p {
  color: #455163;
}

.capability-list,
.method-list,
.managed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.capability-list span,
.method-list span,
.managed-list span {
  padding: 8px 11px;
  border: 1px solid #d7e6d2;
  border-radius: 4px;
  color: #173421;
  background: #f2f8ef;
  font-size: 0.88rem;
  font-weight: 800;
}

.methods-section {
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.96), rgba(19, 40, 68, 0.92)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.methods-section h2,
.methods-section .section-heading p:not(.section-kicker) {
  color: var(--white);
}

.methods-section .method-list span {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.managed-service {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: start;
}

.managed-service-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.05;
}

.managed-list {
  margin-top: 0;
}

.managed-list span {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 19, 34, 0.06);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  padding-top: 150px;
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.98), rgba(19, 40, 68, 0.94)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.article-hero-workarounds {
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.98), rgba(19, 40, 68, 0.9)),
    url("assets/workarounds-clean-hero-option.png") center / cover;
}

.article-hero-inner {
  max-width: 920px;
}

.article-back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--lime);
}

.article-hero h1 {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.06;
  text-wrap: balance;
}

.article-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.article-hero .article-meta {
  color: rgba(255, 255, 255, 0.74);
}

.article-feature-image {
  max-width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 5vw, 56px) auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 24px 54px rgba(7, 19, 34, 0.16);
}

.article-feature-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  background: var(--paper);
}

.article-body p,
.article-body li {
  color: #2f3948;
  font-size: 1.08rem;
}

.article-body h2 {
  margin: 42px 0 12px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 26px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(7, 19, 34, 0.06);
  font-size: 1.28rem;
  font-weight: 800;
}

.bpo-visual {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(220px, 1.2fr) minmax(150px, 0.85fr) minmax(150px, 0.85fr);
  gap: 14px;
  align-items: stretch;
  width: min(1040px, calc(100vw - 40px));
  margin: 38px 0 44px;
  margin-left: 50%;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 19, 34, 0.08);
  transform: translateX(-50%);
}

.bpo-visual figcaption {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 900;
  line-height: 1.1;
}

.bpo-stage,
.bpo-gap,
.bpo-loop {
  border-radius: 8px;
}

.bpo-stage {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  color: var(--white);
  background: var(--navy);
}

.bpo-stage span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(134, 191, 37, 0.72);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 900;
}

.bpo-stage strong,
.bpo-gap strong,
.bpo-loop strong {
  display: block;
  font-size: 1rem;
  line-height: 1.18;
}

.bpo-stage p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}
.bpo-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.bpo-stage .bpo-icon,
.bpo-stage .bpo-step,
.bpo-loop-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin: 0;
}

.bpo-stage .bpo-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.bpo-stage .bpo-icon svg,
.bpo-gap-head svg,
.bpo-loop-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.bpo-stage .bpo-step {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(134, 191, 37, 0.72);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 900;
}

.bpo-target .bpo-icon {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.32);
}

.bpo-target .bpo-step {
  color: var(--navy);
  border-color: rgba(7, 19, 34, 0.28);
  background: rgba(255, 255, 255, 0.4);
}

.bpo-gap-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bpo-gap-head svg {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.bpo-current {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.bpo-improve {
  background: linear-gradient(135deg, var(--green), var(--navy-soft));
}

.bpo-target {
  background: linear-gradient(135deg, var(--lime), var(--green));
}

.bpo-target span {
  color: var(--navy);
  border-color: rgba(7, 19, 34, 0.28);
  background: rgba(255, 255, 255, 0.4);
}

.bpo-gap-stack {
  display: grid;
  gap: 8px;
}

.bpo-gap {
  min-height: 86px;
  padding: 16px;
  color: var(--white);
}

.bpo-gap span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.bpo-gap.capacity {
  background: #426fbd;
}

.bpo-gap.planning {
  background: #c92822;
}

.bpo-gap.execution {
  background: #b78a00;
}

.bpo-loop {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 48px minmax(180px, 0.55fr) 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-left: 5px solid var(--green);
  background: #f2f8ef;
}

.bpo-loop-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.bpo-loop strong {
  color: var(--navy);
}

.bpo-loop span {
  color: #455163;
  font-size: 0.96rem;
}

.presto-section {
  width: min(860px, calc(100vw - 40px));
  margin: 42px 0 46px;
  margin-left: 50%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 19, 34, 0.08);
  transform: translateX(-50%);
}

.presto-copy {
  max-width: 820px;
}

.presto-copy h2 {
  margin-top: 0;
}

.presto-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.presto-feature-grid article {
  padding: 18px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #f2f8ef;
}

.presto-feature-grid strong,
.presto-feature-grid span {
  display: block;
}

.presto-feature-grid strong {
  color: var(--navy);
  font-size: 1rem;
}

.presto-feature-grid span {
  margin-top: 8px;
  color: #455163;
  font-size: 0.94rem;
  line-height: 1.35;
}

.presto-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.presto-shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top left;
  background: var(--white);
}

.presto-shot figcaption {
  padding: 12px 14px 14px;
  color: #455163;
  font-size: 0.9rem;
  line-height: 1.35;
}

.article-cta {
  margin-top: 48px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.article-cta h2 {
  margin-top: 0;
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.82);
}

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

.leader-card {
  padding: 30px;
}

.leader-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--navy));
  border-radius: 50%;
  font-weight: 900;
}

.leader-photo {
  object-fit: cover;
  object-position: center 42%;
  border: 3px solid rgba(134, 191, 37, 0.32);
  background: var(--white);
}

.leader-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 40px;
  color: var(--white);
  background: var(--navy);
}

.contact h2 {
  color: var(--white);
}

.contact-details p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.contact-form .button {
  width: fit-content;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #040b14;
}

.site-footer img {
  width: min(220px, 48vw);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.footer-details {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-details span:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.not-found-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.96), rgba(19, 40, 68, 0.93)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.not-found {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 7vw, 90px);
}

.not-found .brand {
  margin-bottom: 22px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.8vw, 4.8rem);
  line-height: 1.05;
  text-wrap: balance;
}

.not-found p {
  max-width: 520px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.not-found .button {
  width: fit-content;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 19, 34, 0.98);
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.88);
  }

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

  .site-nav a {
    padding: 13px;
  }

  .intro,
  .impact-layout,
  .contact,
  .article-preview-layout,
  .split-heading,
  .bpo-visual,
  .presto-feature-grid,
  .stream-grid,
  .package-grid,
  .managed-service {
    grid-template-columns: 1fr;
  }

  .bpo-loop {
    grid-template-columns: 1fr;
  }

  .presto-shot img {
    height: auto;
  }

  .service-grid,
  .approach-grid,
  .industry-grid,
  .package-grid,
  .engagement-grid,
  .project-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .section h2,
  .section-band h2 {
    font-size: clamp(1.9rem, 5.2vw, 3rem);
  }

  .subpage-hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  .trust-strip,
  .process-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .process-bar span:not(:last-child)::after {
    float: none;
    margin-left: 12px;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: min(180px, 56vw);
  }

  .hero {
    min-height: 700px;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .hero-line {
    font-size: 1.18rem;
  }

  .section h2,
  .section-band h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .subpage-hero {
    min-height: 420px;
  }

  .subpage-hero h1,
  .article-hero h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

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

  .button {
    width: 100%;
  }

  .service-grid,
  .approach-grid,
  .industry-grid,
  .package-grid,
  .engagement-grid,
  .project-grid,
  .article-grid,
  .leader-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .service-badge {
    position: static;
    display: inline-block;
    margin-bottom: 18px;
  }

  .engagement-card span {
    margin-bottom: 36px;
  }

  .article-meta {
    display: grid;
    gap: 8px;
  }

  .article-meta span::before {
    display: none;
  }

  .impact-image {
    min-height: 320px;
  }

  .stream-capability-areas div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

/* Operational Excellence page reset: compact, professional, page-specific layout. */
.page-operational .subpage-hero {
  min-height: 460px;
  align-items: center;
  padding: 118px clamp(24px, 5vw, 72px) 56px;
}

.page-operational .subpage-hero > div {
  width: min(100%, 920px);
  max-width: 920px;
}

.page-operational .subpage-hero h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 4.6vw, 4.35rem);
  line-height: 1.04;
}

.page-operational .subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.04rem;
  line-height: 1.65;
}

.page-operational .section,
.page-operational .section-band {
  padding: clamp(48px, 5.8vw, 78px) clamp(24px, 5vw, 72px);
}

.page-operational .stream-overview-section {
  padding-top: clamp(42px, 4vw, 58px);
  padding-bottom: clamp(46px, 5vw, 70px);
}

.page-operational .stream-overview-section .section-heading,
.page-operational .packages-section .section-heading {
  display: block;
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto clamp(22px, 3vw, 34px);
}

.page-operational .section-kicker {
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.page-operational .stream-overview-section h2,
.page-operational .packages-section h2,
.page-operational .methods-section h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  white-space: normal;
}

.page-operational .stream-grid {
  width: min(100%, 1180px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.page-operational .stream-card {
  min-height: auto;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: 6px;
}

.page-operational .stream-number {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  font-size: 0.78rem;
}

.page-operational .stream-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.page-operational .stream-card > p {
  max-width: none;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-operational .stream-capability-areas {
  margin-top: 20px;
}

.page-operational .stream-capability-areas.heading-only div {
  grid-template-columns: 34px 1fr;
  min-height: 46px;
  gap: 14px;
  padding: 10px 0;
}

.page-operational .stream-capability-areas span {
  font-size: 0.72rem;
}

.page-operational .stream-capability-areas strong {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

.page-operational .methods-section {
  padding-top: clamp(46px, 5vw, 70px);
  padding-bottom: clamp(46px, 5vw, 70px);
}

.page-operational .methods-section .section-heading {
  display: block;
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto 24px;
}

.page-operational .method-list {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.page-operational .packages-section {
  padding-top: clamp(46px, 5vw, 70px);
}

.page-operational .packages-section .section-heading p:not(.section-kicker) {
  max-width: 680px;
  margin: 16px 0 0;
}

.page-operational .package-grid {
  width: min(100%, 1180px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.page-operational .package-card {
  min-height: 300px;
  padding: 24px;
  border-radius: 6px;
}

.page-operational .package-card h3 {
  font-size: 1.18rem;
}

.page-operational .capability-list span {
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .page-operational .stream-grid,
  .page-operational .package-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .page-operational .subpage-hero {
    min-height: 420px;
  }

  .page-operational .stream-grid,
  .page-operational .package-grid {
    grid-template-columns: 1fr;
  }

  .page-operational .stream-card,
  .page-operational .package-card {
    min-height: auto;
  }
}

/* Operational Excellence stream overview: remove dead space and keep heading composed. */
.stream-overview-section {
  padding-top: clamp(58px, 6vw, 86px);
}

.stream-overview-section .section-heading {
  display: block;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto clamp(28px, 3vw, 42px);
}

.stream-overview-section .section-kicker {
  margin-bottom: 16px;
}

.stream-overview-section h2 {
  max-width: 1280px;
  font-size: clamp(2.2rem, 2.85vw, 3.35rem);
  line-height: 1.08;
}

.stream-overview-section .stream-grid {
  align-items: stretch;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.stream-overview-section .stream-card {
  min-height: 0;
}

@media (min-width: 1500px) {
  .stream-overview-section h2 {
    font-size: 3rem;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .stream-overview-section h2 {
    max-width: 820px;
    font-size: clamp(2rem, 6vw, 3rem);
    white-space: normal;
  }
}

/* Services section lock: match approved single-column heading and compact card start. */
#services {
  padding-top: clamp(58px, 6vw, 88px);
  background: #f7f8f4;
}

#services .section-heading {
  display: block;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto clamp(28px, 4vw, 46px);
}

#services .section-kicker {
  margin-bottom: 18px;
  color: var(--lime);
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

#services h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 5.05rem);
  font-weight: 900;
  line-height: 1.08;
}

#services .section-heading p:not(.section-kicker) {
  max-width: 620px;
  margin: 20px 0 0;
  color: #455163;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

#services .service-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

#services .service-card {
  min-height: 380px;
  padding: clamp(22px, 2.2vw, 30px);
  border-radius: 6px;
}

#services .service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

#services .service-icon svg {
  width: 30px;
  height: 30px;
}

#services .service-card h3 {
  max-width: 360px;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.15;
}

#services .service-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

#services .pillar-list {
  margin-top: 22px;
  padding-top: 20px;
}

#services .pillar-list li {
  margin: 9px 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  #services h2 {
    max-width: 760px;
    font-size: clamp(2.3rem, 7vw, 4rem);
  }

  #services .service-grid {
    grid-template-columns: 1fr;
  }

  #services .service-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  #services h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* Homepage approved dark-header scale. */
.site-header {
  min-height: 90px;
  padding: 18px clamp(24px, 6vw, 120px);
  color: var(--white);
  background: rgba(7, 19, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 34, 0.98);
}

.brand img {
  width: clamp(150px, 10vw, 210px);
  max-height: 58px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--lime);
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle span {
  background: var(--white);
}

main#top .hero {
  min-height: calc(100vh - 0px);
  padding: 118px clamp(28px, 3vw, 64px) 36px;
  align-items: center;
}

main#top .hero-content {
  width: min(100%, 720px);
  max-width: 720px;
}

main#top .hero .eyebrow {
  margin-bottom: clamp(18px, 2.2vw, 34px);
  font-size: clamp(0.98rem, 1.35vw, 1.35rem);
  line-height: 1.2;
}

main#top .hero h1 {
  max-width: 640px;
  font-size: clamp(4rem, 6.3vw, 6.45rem);
  line-height: 1.02;
}

main#top .hero-line {
  max-width: 660px;
  margin-top: clamp(28px, 3.2vw, 46px);
  font-size: clamp(1.42rem, 2.4vw, 2.55rem);
  line-height: 1.45;
}

main#top .hero-copy {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.32vw, 1.24rem);
  line-height: 1.55;
}

main#top .hero-actions {
  gap: 14px;
  margin-top: clamp(28px, 3vw, 42px);
}

main#top .hero .button {
  min-width: 0;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 4px;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
}

main#top .hero .button.primary {
  width: 222px;
}

main#top .hero .button.secondary {
  width: 190px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  main#top .hero {
    padding-top: 112px;
  }

  main#top .hero h1 {
    font-size: clamp(3.3rem, 10vw, 5.2rem);
  }
}

@media (max-width: 640px) {
  .brand img {
    width: min(150px, 52vw);
  }

  main#top .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  main#top .hero .button.primary,
  main#top .hero .button.secondary {
    width: 100%;
  }
}

/* Homepage hero reset to match the approved LuRea landing presentation. */
main#top .hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 110px clamp(28px, 6.5vw, 126px) 72px;
  background: var(--navy);
}

main#top .hero::before {
  display: none;
}

main#top .hero::after {
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.96) 0%, rgba(7, 19, 34, 0.82) 42%, rgba(7, 19, 34, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 19, 34, 0.78) 0%, rgba(7, 19, 34, 0.16) 100%);
}

main#top .hero-media img {
  opacity: 1;
  object-position: center;
}

main#top .hero-content {
  width: min(100%, 1120px);
  max-width: 1120px;
}

main#top .hero .eyebrow {
  margin: 0 0 clamp(32px, 4vw, 52px);
  color: var(--lime);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

main#top .hero h1 {
  max-width: 1040px;
  color: var(--white);
  font-size: clamp(4.6rem, 9.4vw, 9.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

main#top .hero h1 span {
  color: inherit;
  font-style: normal;
}

main#top .hero-line {
  max-width: 1020px;
  margin: clamp(42px, 5vw, 72px) 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

main#top .hero-copy {
  max-width: 930px;
  margin-top: clamp(26px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2.15vw, 2rem);
  line-height: 1.55;
}

main#top .hero-actions {
  gap: 22px;
  margin-top: clamp(34px, 5vw, 64px);
}

main#top .hero .button {
  min-width: clamp(220px, 26vw, 520px);
  min-height: clamp(58px, 7vw, 116px);
  justify-content: center;
  border-radius: 6px;
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

main#top .hero .button.primary {
  color: var(--white);
  background: var(--green);
}

main#top .hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 980px) {
  main#top .hero {
    padding-top: 118px;
  }

  main#top .hero h1 {
    font-size: clamp(3.7rem, 13vw, 6.8rem);
  }

  main#top .hero-line {
    font-size: clamp(1.55rem, 6vw, 3rem);
  }

  main#top .hero-copy {
    font-size: clamp(1rem, 3.4vw, 1.45rem);
  }
}

@media (max-width: 640px) {
  main#top .hero {
    min-height: 760px;
    padding: 104px 22px 54px;
  }

  main#top .hero .eyebrow {
    margin-bottom: 26px;
    font-size: 0.95rem;
  }

  main#top .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  main#top .hero-line {
    margin-top: 34px;
    font-size: clamp(1.3rem, 7vw, 2.05rem);
  }

  main#top .hero .button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 1.05rem;
  }
}

/* Draft-inspired professional presentation system. */
body {
  background: #f5f7f2;
}

.site-header {
  min-height: 76px;
  padding: 12px clamp(22px, 5vw, 76px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 19, 34, 0.1);
  box-shadow: 0 10px 30px rgba(7, 19, 34, 0.04);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.brand img {
  width: clamp(132px, 11vw, 178px);
  max-height: 46px;
  object-fit: contain;
}

.site-nav a {
  color: rgba(7, 19, 34, 0.78);
  font-size: 0.86rem;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-toggle {
  border-color: rgba(7, 19, 34, 0.22);
}

.nav-toggle span {
  background: var(--ink);
}

.hero {
  min-height: 820px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding-top: 118px;
  background:
    radial-gradient(circle at 76% 42%, rgba(134, 191, 37, 0.14), transparent 28%),
    linear-gradient(90deg, #101817 0%, #111b1d 52%, #1c2627 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  transform: perspective(600px) rotateX(55deg) translateY(120px);
  transform-origin: center bottom;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(16, 24, 23, 0.96) 0%, rgba(16, 24, 23, 0.88) 44%, rgba(16, 24, 23, 0.45) 100%),
    linear-gradient(0deg, rgba(16, 24, 23, 0.75), rgba(16, 24, 23, 0.1));
}

.hero-media img {
  opacity: 0.2;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(100%, 700px);
}

.hero h1 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  font-weight: 900;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--lime);
  font-style: italic;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.7;
}

.hero-panel {
  display: grid;
  min-height: 420px;
  align-content: center;
}

.hero-framework-card,
.hero-capability-card {
  border: 1px solid rgba(134, 191, 37, 0.34);
  background: rgba(16, 24, 23, 0.76);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.hero-framework-card {
  width: min(100%, 520px);
  padding: clamp(24px, 3vw, 36px);
}

.hero-framework-card span,
.hero-capability-card strong,
.hero-framework-card em {
  text-transform: uppercase;
}

.hero-framework-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-framework-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.1;
}

.hero-framework-card div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-framework-card em {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-capability-card {
  justify-self: end;
  width: min(100%, 360px);
  margin-top: 28px;
  padding: 22px;
}

.hero-capability-card span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(134, 191, 37, 0.16);
}

.hero-capability-card strong {
  color: var(--white);
  font-size: 0.88rem;
}

.button {
  min-height: 48px;
  border-radius: 0;
  padding: 13px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: transparent;
}

.section,
.section-band {
  background: #f7f8f4;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.6fr);
  gap: clamp(24px, 8vw, 120px);
  align-items: end;
  max-width: 1280px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p:not(.section-kicker) {
  align-self: end;
  max-width: 560px;
  margin-top: 0;
}

.section h2,
.section-band h2 {
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  line-height: 1.04;
}

.intro {
  align-items: start;
}

.intro h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}

.service-card,
.package-card {
  border-radius: 0;
  box-shadow: none;
}

.service-card {
  min-height: 440px;
  border-color: #d5ddd2;
}

.service-card.is-featured,
.stream-card-featured,
.package-card-featured {
  background:
    radial-gradient(circle at 18% 12%, rgba(134, 191, 37, 0.13), transparent 28%),
    linear-gradient(135deg, #111918, #142229);
}

.stream-card {
  border-radius: 0;
  box-shadow: none;
}

.stream-card-featured {
  border-color: rgba(134, 191, 37, 0.25);
}

.stream-capability-areas.heading-only div {
  grid-template-columns: 42px 1fr;
  min-height: 54px;
  padding: 13px 0;
}

.stream-capability-areas strong {
  font-size: 1rem;
}

.packages-section .section-heading {
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.65fr);
}

.package-card {
  min-height: 300px;
}

.finance-package-grid .package-card {
  min-height: 180px;
}

.approach,
.impact,
.methods-section,
.contact {
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.97), rgba(19, 40, 68, 0.94)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.approach-grid,
.metric-grid {
  gap: 1px;
}

.approach-grid {
  border-radius: 0;
}

.approach-grid div,
.metric {
  border-radius: 0;
}

.metric-grid {
  max-width: 1000px;
}

.metric {
  min-height: 170px;
  padding: clamp(24px, 3vw, 36px);
}

.metric strong {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
}

.industry-card {
  border-radius: 0;
}

.subpage-hero {
  min-height: 560px;
  align-items: center;
}

.subpage-hero h1,
.article-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
}

.finance-package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .site-header {
    color: var(--white);
    background: rgba(7, 19, 34, 0.96);
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-toggle {
    border-color: rgba(255, 255, 255, 0.24);
  }

  .nav-toggle span {
    background: var(--white);
  }

  .hero,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-capability-card {
    justify-self: start;
  }

  .section-heading p:not(.section-kicker) {
    margin-top: 0;
  }

  .finance-package-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: min(144px, 52vw);
  }

  .hero {
    min-height: 760px;
  }

  .hero h1,
  .subpage-hero h1,
  .article-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero-framework-card div,
  .finance-package-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

/* Final homepage lock: approved dark header and attached hero proportions. */
.site-header,
.site-header.is-scrolled {
  min-height: 90px;
  padding: 18px clamp(24px, 6vw, 120px);
  color: var(--white);
  background: rgba(7, 19, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.brand img {
  width: clamp(150px, 10vw, 210px);
  max-height: 58px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--lime);
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle span {
  background: var(--white);
}

main#top .hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 118px clamp(28px, 3vw, 64px) 36px;
  background: var(--navy);
}

main#top .hero::before,
main#top .hero-panel {
  display: none;
}

main#top .hero::after {
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.96) 0%, rgba(7, 19, 34, 0.82) 42%, rgba(7, 19, 34, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 19, 34, 0.78) 0%, rgba(7, 19, 34, 0.16) 100%);
}

main#top .hero-media img {
  opacity: 1;
  object-position: center;
}

main#top .hero-content {
  width: min(100%, 720px);
  max-width: 720px;
}

main#top .hero .eyebrow {
  margin: 0 0 clamp(18px, 2.2vw, 34px);
  color: var(--lime);
  font-size: clamp(0.98rem, 1.35vw, 1.35rem);
  line-height: 1.2;
}

main#top .hero h1 {
  max-width: 640px;
  color: var(--white);
  font-size: clamp(4rem, 6.3vw, 6.45rem);
  font-weight: 900;
  line-height: 1.02;
}

main#top .hero-line {
  max-width: 660px;
  margin-top: clamp(28px, 3.2vw, 46px);
  color: var(--white);
  font-size: clamp(1.42rem, 2.4vw, 2.55rem);
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

main#top .hero-copy {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.32vw, 1.24rem);
  line-height: 1.55;
}

main#top .hero-actions {
  gap: 14px;
  margin-top: clamp(28px, 3vw, 42px);
}

main#top .hero .button {
  min-width: 0;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 4px;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

main#top .hero .button.primary {
  width: 222px;
  color: var(--white);
  background: var(--green);
}

main#top .hero .button.secondary {
  width: 190px;
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 78px;
  }

  main#top .hero {
    padding-top: 112px;
  }

  main#top .hero h1 {
    font-size: clamp(3.3rem, 10vw, 5.2rem);
  }
}

@media (max-width: 640px) {
  .brand img {
    width: min(150px, 52vw);
  }

  main#top .hero {
    min-height: 760px;
    padding: 104px 22px 54px;
  }

  main#top .hero .eyebrow {
    margin-bottom: 26px;
    font-size: 0.95rem;
  }

  main#top .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  main#top .hero-line {
    margin-top: 34px;
    font-size: clamp(1.3rem, 7vw, 2.05rem);
  }

  main#top .hero .button.primary,
  main#top .hero .button.secondary {
    width: 100%;
  }
}

/* Presentation polish: keeps the site composed and prevents oversized display text. */
.section,
.section-band {
  padding: clamp(64px, 7vw, 104px) clamp(22px, 5vw, 72px);
}

.section-heading,
.intro,
.service-grid,
.approach-grid,
.impact-layout,
.industry-grid,
.article-preview-layout,
.stream-grid,
.package-grid,
.method-list {
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero {
  min-height: 820px;
  align-items: center;
}

.hero-content {
  width: min(100%, 720px);
  max-width: none;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 5.2vw, 4.7rem);
  line-height: 0.98;
}

.hero-line {
  max-width: 680px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.04rem;
}

.section h2,
.section-band h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-heading p:not(.section-kicker) {
  max-width: 640px;
  font-size: 1rem;
}

.service-card,
.stream-card,
.package-card,
.article-card,
.article-callout,
.metric {
  border-radius: 6px;
}

.service-card {
  min-height: 430px;
  padding: clamp(24px, 2.6vw, 34px);
}

.service-card h3,
.stream-card h3,
.package-card h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.14;
}

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

.stream-card {
  min-height: 540px;
  padding: clamp(26px, 3vw, 38px);
}

.stream-card > p {
  max-width: 620px;
  font-size: 0.98rem;
}

.stream-capability-areas {
  margin-top: 28px;
}

.stream-capability-areas.heading-only div {
  min-height: 58px;
  padding: 14px 0;
}

.stream-capability-areas strong {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.package-grid {
  gap: 18px;
}

.package-card {
  min-height: 360px;
  padding: clamp(24px, 2.5vw, 32px);
}

.finance-package-grid .package-card {
  min-height: 190px;
}

.subpage-hero {
  min-height: 500px;
  align-items: center;
}

.subpage-hero > div,
.subpage-hero-content {
  width: min(100%, 860px);
  max-width: none;
}

.subpage-hero h1,
.article-hero h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.approach h2,
.impact h2,
.methods-section h2 {
  color: var(--white);
}

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

.metric {
  min-height: 140px;
  background: rgba(255, 255, 255, 0.06);
}

.metric strong {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.industry-card {
  min-height: 300px;
}

.article-card h3,
.article-callout h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

@media (max-width: 980px) {
  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
  }

  .section h2,
  .section-band h2,
  .subpage-hero h1,
  .article-hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .service-grid,
  .stream-grid,
  .package-grid,
  .industry-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .stream-card,
  .package-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .section,
  .section-band {
    padding: 52px 20px;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.55rem);
    line-height: 1;
  }

  .hero-line {
    font-size: 1.1rem;
  }

  .section h2,
  .section-band h2,
  .subpage-hero h1,
  .article-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }
}

/* Final Operational Excellence page lock: compact section spacing and no dead heading space. */
.page-operational .subpage-hero {
  min-height: 440px;
  align-items: center;
  padding: 112px clamp(24px, 5vw, 72px) 50px;
}

.page-operational .subpage-hero > div {
  width: min(100%, 900px);
  max-width: 900px;
}

.page-operational .subpage-hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  line-height: 1.05;
}

.page-operational .subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.6;
}

.page-operational .stream-overview-section {
  padding-top: 44px;
  padding-bottom: 54px;
}

.page-operational .stream-overview-section .section-heading {
  display: block;
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto 24px;
}

.page-operational .stream-overview-section .section-kicker {
  margin-bottom: 10px;
}

.page-operational .stream-overview-section h2 {
  max-width: 980px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.08;
  white-space: normal;
}

.page-operational .stream-overview-section .stream-grid {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.page-operational .stream-overview-section .stream-card {
  min-height: auto;
  padding: 26px;
}

.page-operational .stream-capability-areas {
  margin-top: 18px;
}

.page-operational .stream-capability-areas.heading-only div {
  min-height: 42px;
  padding: 9px 0;
}

.page-operational .methods-section,
.page-operational .packages-section {
  padding-top: 50px;
  padding-bottom: 56px;
}

.page-operational .methods-section .section-heading,
.page-operational .packages-section .section-heading {
  display: block;
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto 24px;
}

.page-operational .method-list,
.page-operational .package-grid {
  width: min(100%, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.page-operational .package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.page-operational .package-card {
  min-height: 280px;
  padding: 22px;
}

@media (max-width: 1100px) {
  .page-operational .stream-overview-section .stream-grid,
  .page-operational .package-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .page-operational .stream-overview-section .stream-grid,
  .page-operational .package-grid {
    grid-template-columns: 1fr;
  }
}

/* Align the two Operational Excellence stream cards row-for-row. */
.page-operational .stream-overview-section .stream-card {
  display: grid;
  grid-template-rows: auto auto minmax(72px, auto) auto;
}

.page-operational .stream-overview-section .stream-card > p {
  min-height: 72px;
}

.page-operational .stream-overview-section .stream-capability-areas {
  display: grid;
  grid-template-rows: repeat(6, 52px);
}

.page-operational .stream-overview-section .stream-capability-areas.heading-only div {
  min-height: 0;
  height: 52px;
  align-items: center;
}

@media (max-width: 760px) {
  .page-operational .stream-overview-section .stream-card {
    display: block;
  }

  .page-operational .stream-overview-section .stream-card > p {
    min-height: 0;
  }
}

/* Financial & Management Accounting page: mirror the managed-services card layout. */
.page-finance .subpage-hero {
  min-height: 440px;
  align-items: center;
  padding: 112px clamp(24px, 5vw, 72px) 50px;
}

.page-finance .subpage-hero > div {
  width: min(100%, 900px);
  max-width: 900px;
}

.page-finance .subpage-hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  line-height: 1.05;
}

.page-finance .subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.6;
}

.page-finance .finance-managed-section {
  padding-top: 44px;
  padding-bottom: 54px;
}

.page-finance .finance-managed-section .section-heading {
  display: block;
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto 24px;
}

.page-finance .finance-managed-section .section-kicker {
  margin-bottom: 10px;
}

.page-finance .finance-managed-section h2 {
  max-width: 980px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.08;
}

.page-finance .finance-managed-section .section-heading p:not(.section-kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: #455163;
  font-size: 1rem;
  line-height: 1.6;
}

.finance-managed-grid {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.finance-managed-card {
  display: grid;
  grid-template-rows: auto auto minmax(72px, auto) auto;
  min-height: auto;
  padding: 26px;
  border: 1px solid rgba(134, 191, 37, 0.25);
  border-radius: 6px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(134, 191, 37, 0.15), transparent 30%),
    linear-gradient(135deg, var(--navy), #111e22);
}

.finance-managed-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.14;
}

.finance-managed-card > p {
  min-height: 72px;
  max-width: none;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.finance-managed-card .stream-capability-areas {
  display: grid;
  grid-template-rows: repeat(6, 52px);
  margin-top: 18px;
}

.finance-managed-card .stream-capability-areas.heading-only div {
  grid-template-columns: 34px 1fr;
  min-height: 0;
  height: 52px;
  gap: 14px;
  padding: 9px 0;
  align-items: center;
}

.finance-managed-card .stream-capability-areas span {
  font-size: 0.72rem;
}

.finance-managed-card .stream-capability-areas strong {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

@media (max-width: 760px) {
  .finance-managed-grid {
    grid-template-columns: 1fr;
  }

  .finance-managed-card {
    display: block;
  }

  .finance-managed-card > p {
    min-height: 0;
  }
}

/* Final homepage approach lock: compact, balanced top section. */
#approach {
  padding: clamp(54px, 6vw, 76px) clamp(24px, 5vw, 72px);
}

#approach .approach-heading,
#approach .approach-grid {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

#approach .approach-heading {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(28px, 3vw, 40px);
}

#approach .approach-heading .section-kicker {
  margin-bottom: 14px;
  color: var(--lime);
}

#approach .approach-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 4.1vw, 4.7rem);
  line-height: 1.03;
}

#approach .approach-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.65;
}

#approach .approach-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

#approach .approach-grid div {
  min-height: 164px;
  padding: 24px;
}

#approach .approach-icon {
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  #approach .approach-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  #approach .approach-heading h2 {
    max-width: 860px;
    font-size: clamp(2.15rem, 7vw, 3.6rem);
  }

  #approach .approach-heading > p {
    max-width: 680px;
  }

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

@media (max-width: 640px) {
  #approach {
    padding: 46px 20px;
  }

  #approach .approach-grid {
    grid-template-columns: 1fr;
  }

  #approach .approach-grid div {
    min-height: auto;
  }
}

/* Final homepage impact lock: reduce dead space and align the proof points. */
#impact {
  padding: clamp(56px, 6vw, 78px) clamp(24px, 5vw, 72px);
}

#impact .impact-heading,
#impact .impact-layout {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

#impact .impact-heading {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(30px, 3.4vw, 44px);
}

#impact .impact-heading .section-kicker {
  margin-bottom: 14px;
  color: var(--lime);
}

#impact .impact-heading h2 {
  max-width: 740px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 4.45rem);
  line-height: 1.03;
}

#impact .impact-heading > p {
  max-width: 540px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.65;
}

#impact .impact-clean .metric-grid,
#impact .metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: none;
  margin: 0;
}

#impact .metric {
  min-height: 176px;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(134, 191, 37, 0.18);
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% 18%, rgba(134, 191, 37, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

#impact .metric strong {
  color: var(--lime);
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 0.95;
}

#impact .metric span {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  #impact .impact-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  #impact .impact-heading h2 {
    max-width: 860px;
    font-size: clamp(2.15rem, 7vw, 3.55rem);
  }

  #impact .impact-heading > p {
    max-width: 680px;
  }

  #impact .impact-clean .metric-grid,
  #impact .metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #impact {
    padding: 46px 20px;
  }

  #impact .metric {
    min-height: 140px;
  }
}

/* Final remaining-section cleanup: tighter, more deliberate homepage flow. */
.intro {
  width: min(100%, 1280px);
  max-width: 1280px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 0.78fr);
  align-items: start;
  gap: clamp(34px, 7vw, 96px);
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

.intro h2 {
  max-width: 720px;
  font-size: clamp(2.15rem, 3.4vw, 3.75rem);
  line-height: 1.05;
}

.intro-copy {
  max-width: 620px;
  padding-top: 32px;
}

.intro-copy p {
  margin: 0;
  color: #384556;
  font-size: clamp(0.98rem, 1vw, 1.07rem);
  line-height: 1.72;
}

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

.industries,
.articles-preview,
.article-index {
  padding: clamp(56px, 6vw, 80px) clamp(24px, 5vw, 72px);
}

.industries .section-heading,
.articles-preview .section-heading,
.article-index .section-heading {
  display: grid;
  width: min(100%, 1280px);
  max-width: 1280px;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-right: auto;
  margin-bottom: clamp(28px, 3vw, 40px);
  margin-left: auto;
}

.industries .section-heading h2,
.articles-preview .section-heading h2,
.article-index .section-heading h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.2rem, 3.7vw, 4.1rem);
  line-height: 1.04;
}

.industries .section-heading p:not(.section-kicker),
.articles-preview .section-heading p:not(.section-kicker),
.article-index .section-heading p:not(.section-kicker) {
  max-width: 540px;
  margin: 0 0 8px;
  color: #455163;
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  line-height: 1.65;
}

.industry-grid {
  width: min(100%, 1280px);
  max-width: 1280px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-right: auto;
  margin-left: auto;
}

.industry-card {
  min-height: 250px;
  border-radius: 6px;
}

.industry-card div {
  padding: 22px;
}

.industry-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.industry-icon svg {
  width: 26px;
  height: 26px;
}

.industry-card span:not(.industry-icon) {
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.12;
}

.industry-card p {
  max-width: 360px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.article-preview-layout,
.article-grid {
  width: min(100%, 1280px);
  max-width: 1280px;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
}

.article-preview-layout {
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 0.55fr);
}

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

.article-card,
.article-callout {
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 6px;
}

.article-card h3,
.article-callout h3 {
  font-size: clamp(1.28rem, 1.75vw, 1.9rem);
  line-height: 1.12;
}

.article-card p,
.article-callout p {
  font-size: 0.98rem;
  line-height: 1.62;
}

#contact {
  grid-template-columns: minmax(380px, 0.85fr) minmax(380px, 0.7fr);
  align-items: start;
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(58px, 6vw, 82px) clamp(24px, 5vw, 72px);
}

#contact .contact-details {
  max-width: 720px;
}

#contact h2 {
  max-width: 720px;
  font-size: clamp(2.15rem, 3.5vw, 3.8rem);
  line-height: 1.04;
}

#contact .contact-details p:not(.section-kicker) {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
}

#contact .contact-list {
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

#contact .contact-list span {
  grid-column: 1 / -1;
}

#contact .contact-form {
  max-width: 620px;
  justify-self: end;
}

.site-footer {
  padding: 22px clamp(24px, 5vw, 72px);
}

.site-footer img {
  width: min(180px, 44vw);
}

.footer-details {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

@media (max-width: 1100px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .intro,
  .industries .section-heading,
  .articles-preview .section-heading,
  .article-index .section-heading,
  .article-preview-layout,
  #contact {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .industries .section-heading,
  .articles-preview .section-heading,
  .article-index .section-heading {
    gap: 16px;
    align-items: start;
  }

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

  #contact .contact-list {
    grid-template-columns: 1fr;
  }

  #contact .contact-form {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .intro,
  .industries,
  .articles-preview,
  .article-index,
  #contact {
    padding: 46px 20px;
  }

  .industry-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 230px;
  }

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

  .footer-details {
    justify-items: start;
    text-align: left;
  }
}

/* Final articles page lock: remove the split-heading dead space. */
.article-index {
  padding-top: clamp(52px, 5.5vw, 74px);
}

.article-index .section-heading {
  display: block;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto clamp(28px, 3vw, 38px);
}

.article-index .section-kicker {
  margin-bottom: 12px;
}

.article-index .section-heading h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.35rem);
  line-height: 1.04;
}

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

.article-index .article-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.article-index .article-card p {
  flex: 1;
}

.article-index .article-card .text-link {
  margin-top: auto;
}

@media (max-width: 760px) {
  .article-index .article-grid {
    grid-template-columns: 1fr;
  }

  .article-index .article-card {
    min-height: auto;
  }
}

/* Final services heading lock: reduce wrapping and bring cards into view. */
#services {
  padding-top: clamp(52px, 5.5vw, 74px);
  padding-bottom: clamp(58px, 6vw, 82px);
}

#services .section-heading {
  display: block;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto clamp(28px, 3vw, 40px);
}

#services .section-kicker {
  margin-bottom: 14px;
}

#services .section-heading h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(2.45rem, 4.15vw, 4.85rem);
  line-height: 1.04;
}

#services .section-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #455163;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.62;
}

#services .service-grid {
  width: min(100%, 1280px);
  max-width: 1280px;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 760px) {
  #services .section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
}

/* Final services card rhythm lock: keep all three pillars aligned. */
#services .service-card {
  display: grid;
  grid-template-rows: auto auto minmax(62px, auto) minmax(94px, auto) auto auto;
  align-content: start;
}

#services .service-number {
  margin-bottom: 16px;
}

#services .service-icon {
  align-self: start;
}

#services .service-card h3 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

#services .service-card p {
  margin-bottom: 0;
}

#services .pillar-list {
  align-self: start;
  margin-top: 18px;
}

#services .pillar-list li {
  min-height: 22px;
  line-height: 1.38;
}

#services .service-link {
  align-self: end;
  margin-top: 18px;
}

@media (max-width: 980px) {
  #services .service-card {
    display: block;
  }
}

/* Final industries and leadership lock: compact headings and premium leadership cards. */
.industries {
  padding-top: clamp(50px, 5.5vw, 72px);
}

.industries .section-heading {
  display: block;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto clamp(26px, 3vw, 38px);
}

.industries .section-heading h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.65rem);
  line-height: 1.04;
}

.industries .industry-grid {
  gap: 16px;
}

.industries .industry-card {
  min-height: 236px;
}

.leadership {
  padding: clamp(58px, 6vw, 82px) clamp(24px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.98), rgba(18, 35, 42, 0.96)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.leadership-heading,
.leadership-grid {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.leadership-heading {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.leadership-heading .section-kicker {
  color: var(--lime);
}

.leadership-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 3.8vw, 4.35rem);
  line-height: 1.04;
}

.leadership-heading > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.65;
}

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

.leadership-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(86px, auto) auto;
  min-height: 420px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(134, 191, 37, 0.2);
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% 16%, rgba(134, 191, 37, 0.15), transparent 28%),
    rgba(255, 255, 255, 0.06);
}

.leadership-card-featured {
  background:
    radial-gradient(circle at 18% 16%, rgba(134, 191, 37, 0.2), transparent 28%),
    linear-gradient(135deg, #111918, #142229);
}

.leadership-avatar {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(134, 191, 37, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: rgba(134, 191, 37, 0.26);
  font-weight: 900;
}

.leadership-role {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.leadership-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.leadership-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.62;
}

.leadership-card ul {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.leadership-card li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

@media (max-width: 980px) {
  .leadership-heading,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-heading {
    gap: 18px;
    align-items: start;
  }

  .industries .section-heading h2,
  .leadership-heading h2 {
    font-size: clamp(2.1rem, 7vw, 3.6rem);
  }
}

@media (max-width: 640px) {
  .leadership {
    padding: 46px 20px;
  }

  .leadership-card {
    display: block;
    min-height: auto;
  }
}

/* Final positioning and spacing pass across homepage and service pages. */
.intro-copy {
  padding-top: 18px;
}

.intro-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.intro-expertise span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(64, 117, 49, 0.16);
  border-radius: 4px;
  color: var(--green);
  background: rgba(134, 191, 37, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro,
#services,
#approach,
#impact,
.industries,
.leadership,
.articles-preview,
#contact {
  scroll-margin-top: 96px;
}

.articles-preview {
  padding-top: clamp(52px, 5.5vw, 74px);
}

.articles-preview .section-heading {
  margin-bottom: clamp(26px, 2.8vw, 36px);
}

.articles-preview .article-card,
.articles-preview .article-callout {
  min-height: 300px;
}

#contact {
  min-height: auto;
}

.page-operational .site-nav a,
.page-finance .site-nav a,
.article-page .site-nav a {
  white-space: nowrap;
}

.page-operational .subpage-hero,
.page-finance .subpage-hero {
  min-height: 410px;
}

.page-operational .methods-section,
.page-operational .packages-section,
.page-finance .finance-managed-section {
  padding-top: clamp(46px, 5vw, 66px);
  padding-bottom: clamp(50px, 5.5vw, 72px);
}

.page-operational .methods-section .section-heading,
.page-operational .packages-section .section-heading,
.page-finance .finance-managed-section .section-heading {
  margin-bottom: clamp(22px, 2.5vw, 32px);
}

.page-operational .package-card {
  min-height: 260px;
}

.page-operational main > .contact,
.page-finance main > .contact {
  grid-template-columns: minmax(380px, 0.85fr) minmax(360px, 0.62fr);
  padding-top: clamp(46px, 5vw, 66px);
  padding-bottom: clamp(46px, 5vw, 66px);
}

.page-operational main > .contact .article-callout,
.page-finance main > .contact .article-callout {
  align-self: stretch;
  min-height: auto;
}

@media (max-width: 980px) {
  .page-operational main > .contact,
  .page-finance main > .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .intro-copy {
    padding-top: 0;
  }

  .intro-expertise span {
    width: 100%;
  }
}

/* Final articles and contact quality pass before xneelo upload. */
.articles-preview {
  padding-top: clamp(54px, 5.5vw, 76px);
  padding-bottom: clamp(54px, 5.5vw, 76px);
}

.articles-preview .section-heading {
  display: grid;
  width: min(100%, 1280px);
  max-width: 1280px;
  grid-template-columns: minmax(420px, 0.9fr) minmax(340px, 0.58fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  margin-right: auto;
  margin-bottom: clamp(26px, 3vw, 38px);
  margin-left: auto;
}

.articles-preview .section-heading h2 {
  max-width: 860px;
  font-size: clamp(2.2rem, 3.6vw, 4.05rem);
  line-height: 1.04;
}

.articles-preview .section-heading p:not(.section-kicker) {
  max-width: 540px;
  margin: 0 0 8px;
  line-height: 1.65;
}

.articles-preview .article-preview-layout {
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.55fr);
  align-items: stretch;
}

.articles-preview .article-card,
.articles-preview .article-callout,
.article-index .article-card {
  display: flex;
  flex-direction: column;
}

.articles-preview .article-card p,
.article-index .article-card p {
  flex: 1;
}

.articles-preview .article-card .text-link,
.article-index .article-card .text-link {
  margin-top: auto;
}

.articles-preview .article-callout {
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.88), rgba(18, 35, 42, 0.86)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.articles-preview .article-callout h3 {
  color: var(--white);
}

.articles-preview .article-callout p {
  color: rgba(255, 255, 255, 0.78);
}

.articles-index-page .subpage-hero {
  min-height: 380px;
  padding-top: 120px;
}

.articles-index-page .article-index {
  padding-top: clamp(50px, 5vw, 68px);
  padding-bottom: clamp(56px, 6vw, 78px);
}

#contact {
  gap: clamp(34px, 6vw, 84px);
}

#contact .contact-details {
  display: grid;
  align-content: start;
}

#contact .contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

#contact .contact-item {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(134, 191, 37, 0.2);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

#contact .contact-item span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

#contact .contact-item strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.35;
}

#contact a.contact-item:hover {
  border-color: rgba(134, 191, 37, 0.55);
  background: rgba(134, 191, 37, 0.12);
}

#contact .contact-address {
  grid-column: 1 / -1;
}

#contact .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
}

#contact .contact-form label:nth-of-type(4),
#contact .contact-form label:nth-of-type(5),
#contact .contact-form .button {
  grid-column: 1 / -1;
}

#contact .contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

#contact .contact-form .button {
  width: fit-content;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .articles-preview .section-heading,
  .articles-preview .article-preview-layout,
  #contact .contact-form {
    grid-template-columns: 1fr;
  }

  .articles-preview .section-heading {
    gap: 16px;
    align-items: start;
  }

  #contact .contact-form label:nth-of-type(4),
  #contact .contact-form label:nth-of-type(5),
  #contact .contact-form .button {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  #contact .contact-list {
    grid-template-columns: 1fr;
  }

  #contact .contact-item {
    min-height: auto;
  }
}

/* Privacy-safe visual lock: remove old brochure/card images with readable personal details. */
.approach,
.impact,
.leadership,
#contact,
.methods-section,
.not-found-page {
  background:
    radial-gradient(circle at 18% 14%, rgba(134, 191, 37, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(7, 19, 34, 0.99), rgba(18, 35, 42, 0.97));
}

.projects,
.article-hero,
.articles-index-page .subpage-hero {
  background:
    linear-gradient(135deg, rgba(7, 19, 34, 0.97), rgba(18, 35, 42, 0.94)),
    url("assets/lurea-value-proposition-web.jpg") center / cover;
}

.articles-index-page .subpage-hero {
  background:
    radial-gradient(circle at 16% 18%, rgba(134, 191, 37, 0.15), transparent 30%),
    linear-gradient(135deg, #071322 0%, #111e22 58%, #091a2f 100%);
}

.articles-index-page .subpage-hero-media {
  display: none;
}

.articles-preview .article-callout {
  background:
    radial-gradient(circle at 18% 18%, rgba(134, 191, 37, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(7, 19, 34, 0.98), rgba(18, 35, 42, 0.96));
}

/* Final image-free lock for the homepage Approach section. */
#approach.approach {
  background-color: #071322;
  background-image:
    radial-gradient(circle at 14% 16%, rgba(134, 191, 37, 0.14), transparent 30%),
    linear-gradient(135deg, #071322 0%, #111e22 58%, #091a2f 100%);
  background-position: center;
  background-size: cover;
}

#approach.approach::before,
#approach.approach::after {
  background-image: none;
}

/* Final leadership contact link lock. */
.leadership-card {
  grid-template-rows: auto auto auto minmax(86px, auto) auto auto;
}

.leadership-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.leadership-links a {
  color: var(--lime);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.leadership-links a:hover {
  color: var(--white);
}

/* Final leadership parallel-row lock. */
.leadership-card {
  grid-template-rows: 76px 34px 72px 112px auto 44px;
}

.leadership-card .leadership-avatar {
  align-self: start;
}

.leadership-card .leadership-role {
  min-height: 24px;
  margin-bottom: 0;
}

.leadership-card h3 {
  display: flex;
  align-items: start;
  margin-bottom: 0;
}

.leadership-card p {
  min-height: 0;
}

.leadership-card ul {
  display: grid;
  grid-template-rows: repeat(4, 58px);
  margin-top: 0;
}

.leadership-card li {
  display: flex;
  align-items: center;
  padding: 0;
}

.leadership-links {
  align-self: end;
  min-height: 34px;
  margin-top: 10px;
}

.leadership-links-empty {
  visibility: hidden;
}

@media (max-width: 980px) {
  .leadership-card {
    grid-template-rows: 76px auto auto auto auto auto;
  }
}
