:root {
    --color-bg: #020E10;
    --color-bg-alt: #041417;
    --color-bg-footer: #07191C;
    --color-text: #E6E3DF;
    --color-accent: #8CA030;

    --page-padding-desktop: 60px;
    --page-padding-tablet: 40px;
    --page-padding-mobile: 30px;

    --section-padding-desktop: 90px var(--page-padding-desktop);
    --section-padding-mobile: 60px var(--page-padding-mobile);
}

html, body {
    min-height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(
        to bottom,
        var(--color-bg) 0%,
        #040807 100%
    );
    color: var(--color-text);
    overflow-x: hidden;
}

main {
    flex: 1;
}

section {
    padding: var(--section-padding-desktop);
    border-bottom: 2px solid rgba(230, 227, 223, 0.14);
}

section:nth-of-type(even) {
    background: var(--color-bg-alt);
}

.text-body {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.section-kicker {
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.kicker-line {
    width: 42px;
    height: 2px;
    background: var(--color-accent);
    margin-bottom: 24px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(230, 227, 223, 0.08);
}

header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--color-text);
    opacity: 0.85;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 13px;
}

.logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.btn {
    border: 1px solid var(--color-accent);
    padding: 10px 18px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 0 var(--page-padding-desktop);
    overflow: hidden;
    background: var(--color-bg);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: min(68vw, 1050px);
    background-image:
        linear-gradient(
            to right,
            var(--color-bg) 0%,
            rgba(7,19,18,0.95) 18%,
            rgba(7,19,18,0.55) 42%,
            rgba(7,19,18,0.08) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(7,19,18,0) 0%,
            rgba(7,19,18,0.15) 58%,
            var(--color-bg) 100%
        ),
        url("img/hero.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;

    background-image:
        linear-gradient(135deg, transparent 0 63%, rgba(140,160,48,0.95) 63% 63.25%, transparent 63.25%),
        linear-gradient(45deg, transparent 0 71%, rgba(140,160,48,0.95) 71% 71.25%, transparent 71.25%),
        linear-gradient(135deg, transparent 0 59%, rgba(230,227,223,0.65) 59% 59.15%, transparent 59.15%),
        linear-gradient(45deg, transparent 0 75%, rgba(230,227,223,0.55) 75% 75.15%, transparent 75.15%),
        linear-gradient(135deg, transparent 0 78%, rgba(140,160,48,0.65) 78% 78.15%, transparent 78.15%),
        linear-gradient(45deg, transparent 0 83%, rgba(140,160,48,0.45) 83% 83.12%, transparent 83.12%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.accent {
    color: var(--color-accent);
}

.hero p {
    color: var(--color-text);
    opacity: 0.7;
    margin-bottom: 30px;
}


.client-fit-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.client-fit-copy {
    max-width: 520px;
}

.client-fit-copy h2,
.situations-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 22px;
}

.client-fit-copy p:not(.section-kicker),
.situations-intro p:not(.section-kicker) {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.client-fit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.fit-card {
    padding: 26px 24px;
    background: rgba(230, 227, 223, 0.025);
    border: 1px solid rgba(230, 227, 223, 0.08);
}

.fit-card h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.fit-card p {
    color: var(--color-text);
    opacity: 0.65;
    font-size: 14px;
    line-height: 1.65;
}

.situations-intro {
    max-width: 680px;
    margin-bottom: 54px;
}

.situations-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.situation-item {
    position: relative;
    padding: 0 24px;
}

.situation-item:first-child {
    padding-left: 0;
}

.situation-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8%;
    right: 0;
    width: 1px;
    height: 84%;
    background: rgba(230, 227, 223, 0.12);
}

.situation-item span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.situation-item h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.situation-item p {
    color: var(--color-text);
    opacity: 0.65;
    font-size: 14px;
    line-height: 1.65;
}


.landing-contact-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 18px;
}


.services-intro {
    max-width: 640px;
    margin-bottom: 38px;
}

.services-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
}

.services-copy {
    max-width: 620px;
    margin-bottom: 40px;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    min-height: 260px;
    padding: 28px 24px 24px;
    background: rgba(230, 227, 223, 0.025);
    border: 1px solid rgba(230, 227, 223, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card svg {
    width: 42px;
    height: 42px;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    margin-bottom: 28px;
}

.service-card h3 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 18px;
}

.service-card p {
    color: var(--color-text);
    opacity: 0.65;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-line {
    width: 34px;
    height: 2px;
    background: var(--color-accent);
    margin-bottom: 20px;
}

.service-card a {
    margin-top: auto;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.service-card a span {
    margin-left: 6px;
}


.approach {
    position: relative;
}

.approach-intro {
    max-width: 640px;
    margin-bottom: 64px;
}

.approach-intro-text {
    max-width: 620px;
    margin-bottom: 40px;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.75;
}

.approach-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
}

.approach-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.approach-flow::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(230, 227, 223, 0.14);
}

.approach-step {
    position: relative;
    padding-top: 74px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 1.4px;
}

.step-dot {
    position: absolute;
    top: 35px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    background: var(--color-bg);
    z-index: 2;
}

.step-dot::after {
    content: "";
    position: absolute;
    inset: 5px;
    background: var(--color-accent);
    border-radius: 50%;
}

.approach-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.approach-step p {
    max-width: 260px;
    color: var(--color-text);
    opacity: 0.65;
    font-size: 14px;
    line-height: 1.65;
}

.approach-step:hover .step-dot {
    transform: scale(1.15);
}

.step-dot {
    transition: transform 0.2s ease;
}


.about-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    border-bottom: 1px solid rgba(230, 227, 223, 0.12);
    background: var(--color-bg);
}

.about-left h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 34px;
}

.about-copy {
    max-width: 430px;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
}

.about-feature {
    padding: 0 48px 38px 0;
    border-bottom: 1px solid rgba(230, 227, 223, 0.08);
}

.about-feature:nth-child(odd) {
    border-right: 1px solid rgba(230, 227, 223, 0.08);
}

.about-feature:nth-child(even) {
    padding-left: 42px;
}

.about-feature:nth-child(3),
.about-feature:nth-child(4) {
    padding-top: 38px;
    border-bottom: none;
}

.about-feature svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    stroke: var(--color-accent);
    margin-bottom: 20px;
}

.about-feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}


.oe-pillars-intro {
    max-width: 720px;
    margin-bottom: 60px;
}

.oe-pillars-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 18px;
}

.oe-pillars-copy {
    max-width: 560px;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.oe-pillars-copy:last-child {
    margin-bottom: 0;
}

.oe-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(230, 227, 223, 0.12);
    border-left: 1px solid rgba(230, 227, 223, 0.12);
}

.oe-pillar {
    min-height: 230px;
    padding: 28px 24px;
    border-right: 1px solid rgba(230, 227, 223, 0.12);
    border-bottom: 1px solid rgba(230, 227, 223, 0.12);
}

.oe-pillar span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.oe-pillar svg {
    width: 34px;
    height: 34px;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    margin-bottom: 22px;
}

.oe-pillar h3 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 12px;
}

.oe-pillar p {
    color: var(--color-text);
    opacity: 0.65;
    font-size: 14px;
    line-height: 1.65;
}

.oe-pillars-cta {
    margin-top: 36px;
}


.oe-method {
    padding: var(--section-padding-desktop);
}

.oe-method-intro {
    max-width: 760px;
    margin-bottom: 56px;
}

.oe-method-intro h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 400;
}

.oe-experience-callout {
    width: 100%;
    margin: 0 0 70px 0;
    padding: 36px 40px;
    background: rgba(230, 227, 223, 0.025);
    border: 1px solid rgba(230, 227, 223, 0.08);
    border-left: 2px solid var(--color-accent);
}

.oe-callout-text,
.oe-callout-content {
    max-width: 760px;
}

.oe-experience-callout h3 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 20px;
}

.oe-callout-text {
    color: var(--color-text);
    opacity: 0.72;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.oe-callout-content {
    margin-top: 28px;
}

.oe-callout-content h4 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.oe-callout-content ul,
.oe-pillar-content ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.oe-callout-content li,
.oe-pillar-content li {
    position: relative;
    padding-left: 22px;
    color: var(--color-text);
    opacity: 0.72;
    font-size: 14.5px;
    line-height: 1.65;
}

.oe-callout-content li::before,
.oe-pillar-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 9px;
    height: 2px;
    background: var(--color-accent);
}

.oe-pillar-sequence {
    max-width: 860px;
    margin: 0 auto;
}

.oe-pillar-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 42px;
    padding: 34px 0;
    border-top: 1px solid rgba(230, 227, 223, 0.12);
}

.oe-pillar-number {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1;
}

.oe-pillar-content h3 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 18px;
}

.oe-system-statement {
    max-width: 1000px;
    margin: 60px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(230, 227, 223, 0.14);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 26px;
}

.oe-system-statement span {
    position: relative;
    color: var(--color-text);
    opacity: 0.85;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.oe-system-statement span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -17px;
    color: var(--color-accent);
    opacity: 0.8;
}


.insights-preview {
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 70px;
    align-items: start;
}

.insights-intro {
    max-width: 340px;
}

.insights-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 24px;
}

.insight-card {
    position: relative;
    min-height: 300px;
    border: 1px solid rgba(230, 227, 223, 0.08);
    overflow: hidden;
    isolation: isolate;
    background: var(--color-bg);
}

.insight-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.28;
    transform: scale(1.02);
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to bottom,
            rgba(2, 14, 16, 0.45),
            rgba(2, 14, 16, 0.95)
        );
}

.insight-card-overlay {
    position: relative;
    z-index: 2;
    min-height: 300px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.insight-label {
    color: var(--color-accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.insight-card h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: 22px;
}

.insight-card a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.insight-card a span {
    margin-left: 6px;
}

.insight-frame {
    position: absolute;
    inset: 18px;
    pointer-events: none;
}

.insight-frame::before,
.insight-frame::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: rgba(140, 160, 48, 0.85);
}

.insight-frame::before {
    top: 0;
    left: 0;
    border-top: 1px solid;
    border-left: 1px solid;
}

.insight-frame::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid;
    border-right: 1px solid;
}


.footer {
    background: var(--color-bg-footer);
    padding: 72px 60px 32px;
    border-top: 1px solid rgba(230, 227, 223, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 56px;
    margin-bottom: 64px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    justify-self: start;
}

.footer-slogan {
    max-width: 260px;
    color: var(--color-text);
    opacity: 0.65;
    font-size: 14px;
    line-height: 1.6;
}

.footer-column a,
.footer-legal a {
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.58;
    font-size: 14px;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-note {
    color: var(--color-text);
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-socials a:hover {
    opacity: 1;
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-heading {
    color: var(--color-text);
    opacity: 0.9;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-column a:hover,
.footer-socials a:hover,
.footer-legal a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(230, 227, 223, 0.12);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-text);
    opacity: 0.45;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}



.about-hero-page {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding: 140px 60px 90px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.about-hero-content {
    max-width: 640px;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.12;
    font-weight: 400;
    margin-bottom: 24px;
}

.about-portrait-wrap {
    display: flex;
    justify-content: center;
}

.about-portrait {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--color-accent);
    box-shadow: 0 0 80px rgba(140, 160, 48, 0.12);
}

.leadership-section {
    padding: 90px 60px;
    border-bottom: 2px solid rgba(230, 227, 223, 0.14);
}

.leadership-intro {
    max-width: 640px;
    margin-bottom: 50px;
}

.leadership-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.leader-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: rgba(230, 227, 223, 0.025);
    border: 1px solid rgba(230, 227, 223, 0.08);
}

.leader-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--color-accent);
}

.leader-text {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.leader-text:last-child {
    margin-bottom: 0;
}

.leader-role {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.leader-content h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 14px;
}

.leader-social {
    width: 40px;
    height: 40px;
    margin-top: 18px;
    border: 1px solid rgba(230, 227, 223, 0.12);
    border-radius: 6px; /* subtle rounding */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.leader-social svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
    transition: 0.2s ease;
}

.leader-social:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.leader-social:hover svg {
    fill: #020E10; /* your dark background colour */
}

.about-positioning {
    padding: 90px 60px;
    border-bottom: 2px solid rgba(230, 227, 223, 0.14);
}

.about-positioning-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.position-block h2 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 400;
}

.position-block p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.8;
    max-width: 520px;
}

.position-block:first-child {
    max-width: 520px;
}

.about-cta {
    text-align: center;
    padding: 90px 60px;
    background: var(--color-bg-footer);
}

.about-cta h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 16px;
}

.about-cta p {
    color: var(--color-text);
    opacity: 0.65;
    margin-bottom: 28px;
}


.contact-page {
    min-height: 720px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    padding: 140px 60px 90px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.contact-intro {
    max-width: 560px;
}

.contact-intro h1 {
    font-size: 52px;
    line-height: 1.12;
    font-weight: 400;
    margin-bottom: 24px;
}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details a,
.contact-details span {
    color: var(--color-text);
    opacity: 0.72;
    text-decoration: none;
    font-size: 14px;
}

.contact-details a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.contact-card {
    padding: 36px;
    background: rgba(230, 227, 223, 0.025);
    border: 1px solid rgba(230, 227, 223, 0.08);
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 34px 0;
}

.contact-action {
    position: relative;
    padding: 22px 22px 20px;
    text-decoration: none;
    border: 1px solid rgba(230, 227, 223, 0.1);
    background: rgba(230, 227, 223, 0.025);
    transition: all 0.2s ease;
}

.contact-action::before {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--color-accent);
}

.contact-action span {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-action small {
    display: block;
    color: var(--color-text);
    opacity: 0.65;
    font-size: 13px;
    line-height: 1.5;
}

.contact-action:hover {
    transform: translateY(-2px);
    border-color: rgba(140, 160, 48, 0.55);
}

.primary-action {
    border-left: 2px solid var(--color-accent);
}

.secondary-action {
    opacity: 0.9;
}

.contact-form-intro {
    margin-bottom: 28px;
}

.contact-form-intro h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-form-intro p {
    color: var(--color-text);
    opacity: 0.65;
    font-size: 14px;
    line-height: 1.65;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.75;
}

.form-row input,
.form-row textarea {
    width: 100%;
    background: rgba(2, 14, 16, 0.55);
    border: 1px solid rgba(230, 227, 223, 0.12);
    color: var(--color-text);
    padding: 13px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--color-accent);
}

.form-row textarea {
    min-height: 150px;
}

.contact-form .btn {
    align-self: flex-start;
    cursor: pointer;
    background: transparent;
}

.form-success {
    padding: 36px;
    background: rgba(230, 227, 223, 0.025);
    border: 1px solid rgba(230, 227, 223, 0.08);
    border-left: 2px solid var(--color-accent);
}

.form-success h2 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 18px;
}


.contact-process {
    padding: var(--section-padding-desktop);
}

.contact-process-inner h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 44px;
}

.contact-flow {
    display: grid;
    grid-template-columns: 1fr 54px 1fr 54px 1fr;
    align-items: stretch;
    margin-bottom: 28px;
}

.contact-flow-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    padding: 28px 24px;
    background: rgba(230, 227, 223, 0.025);
    border: 1px solid rgba(230, 227, 223, 0.08);
}

.contact-flow-step a,
.contact-flow-step span {
    color: var(--color-text);
    opacity: 0.72;
    text-decoration: none;
    font-size: 14px;
}

.contact-flow-step a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.contact-flow-step h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-flow-step span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.contact-flow-step p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 14.5px;
    line-height: 1.65;
}

.flow-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-connector::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(230, 227, 223, 0.14);
}

.flow-connector i,
.flow-connector svg {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    padding: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-bg);
    stroke: var(--color-bg);
    stroke-width: 2;
}


.logo-link {
    display: inline-flex;
    align-items: center;
    z-index: 1002;
}

.burger-menu {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.burger-bar {
    position: absolute;
    left: 4px;
    width: 32px;
    height: 2px;
    background: var(--color-text);
    transition: 0.25s ease;
}

.burger-bar:nth-child(1) {
    top: 11px;
}

.burger-bar:nth-child(2) {
    top: 19px;
}

.burger-bar:nth-child(3) {
    top: 27px;
}

.burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.service-page-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 140px var(--page-padding-desktop) 90px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.service-page-hero-content {
    max-width: 720px;
}

.service-page-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 24px;
}

.service-page-hero p {
    max-width: 620px;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 16px;
    line-height: 1.75;
}

.service-page-content {
    padding: var(--section-padding-desktop);
}

.service-page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 90px;
    align-items: start;
}

.service-page-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-label {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-page-sidebar a {
    color: var(--color-text);
    opacity: 0.6;
    text-decoration: none;
    font-size: 14px;
}

.service-page-sidebar a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.service-article {
    max-width: 820px;
}

.service-content-block {
    padding-bottom: 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid rgba(230, 227, 223, 0.12);
}

.service-content-block:last-child {
    margin-bottom: 0;
}

.service-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
}

.service-content-block h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 22px;
}

.service-content-block p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.service-list li {
    position: relative;
    padding-left: 26px;
    color: var(--color-text);
    opacity: 0.72;
    font-size: 15px;
    line-height: 1.7;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 10px;
    height: 2px;
    background: var(--color-accent);
}

.oe-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 140px var(--page-padding-desktop) 90px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.oe-hero-content {
    max-width: 760px;
}

.oe-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 24px;
}

.oe-hero p {
    max-width: 640px;
    color: var(--color-text);
    opacity: 0.7;
    font-size: 16px;
    line-height: 1.75;
}

.oe-system {
    padding: var(--section-padding-desktop);
}

.oe-system-intro {
    max-width: 720px;
    margin-bottom: 70px;
}

.oe-system-intro h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 18px;
}

.oe-system-intro p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.75;
    max-width: 620px;
}

.oe-spine {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.oe-spine::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 38px;
    width: 1px;
    background: rgba(230, 227, 223, 0.14);
}

.oe-spine-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 36px;
    padding: 0 0 52px;
}

.oe-spine-item:last-child {
    padding-bottom: 0;
}

.oe-number {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(140, 160, 48, 0.75);
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    letter-spacing: 1.4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oe-spine-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.oe-spine-item p {
    color: var(--color-text);
    opacity: 0.68;
    font-size: 15px;
    line-height: 1.75;
    max-width: 700px;
}


.careers-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding-desktop);
}

.careers-content {
    max-width: 620px;
}

.careers-content h1 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 24px;
}

.careers-content p {
    color: var(--color-text);
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.careers-content .btn {
    margin-top: 12px;
}


.not-found {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding-desktop);
}

.not-found-content {
    max-width: 520px;
}

.not-found-content h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 20px;
}

.not-found-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* secondary button */
.btn-secondary {
    border-color: rgba(230, 227, 223, 0.3);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-text);
    color: var(--color-bg);
}



@media (max-width: 900px) {
    .hero {
        padding-left: var(--page-padding-tablet);
        padding-right: var(--page-padding-tablet);
    }
    
    .hero h1 {
        font-size: 36px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .client-fit-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .situations-list {
        grid-template-columns: 1fr 1fr;
        gap: 32px 0;
    }

    .situation-item:nth-child(odd) {
        padding-left: 0;
    }

    .situation-item:not(:last-child)::after {
        display: none;
    }

    .services-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .approach-flow {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .approach-flow::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .approach-step {
        padding-top: 0;
        padding-left: 46px;
    }

    .step-number {
        position: static;
        display: block;
        margin-bottom: 8px;
    }

    .step-dot {
        top: 4px;
        left: 0;
    }

    .approach-step p {
        max-width: 520px;
    }

    .oe-pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .insights-preview {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card,
    .insight-featured {
        min-height: 260px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand-column {
        min-height: auto;
        gap: 24px;
    }

    .footer-slogan {
        align-self: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-hero-page {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .about-positioning-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-flow {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .flow-connector {
        width: 100%;
        height: 40px;
    }

    .flow-connector::before {
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        width: auto;
        transform: translateY(-50%);
    }

    .flow-connector i,
    .flow-connector svg {
        transform: rotate(90deg);
    }


        /* 🔹 Show burger */
    .burger-menu {
        display: block;
    }

    /* 🔹 Hide desktop nav */
    .nav-links-container {
        position: fixed;
        inset: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 26px;
        background: rgba(2, 14, 16, 0.97);
        z-index: 1001;
    }

    .nav-links-container.active {
        display: flex;
    }

    .nav-links-container a {
        margin: 0;
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-links-container .btn {
        margin-top: 8px;
    }

    .service-page-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-page-sidebar {
        position: static;
        border-bottom: 1px solid rgba(230, 227, 223, 0.12);
        padding-bottom: 24px;
    }

    .oe-experience-callout {
        margin-left: 0;
    }

    .oe-pillar-row {
        grid-template-columns: 70px 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 20px;
    }

    .hero {
        padding-left: var(--page-padding-mobile);
        padding-right: var(--page-padding-mobile);
    }

    section {
        padding: var(--section-padding-mobile);
    }

    .client-fit-cards,
    .situations-list {
        grid-template-columns: 1fr;
    }

    .fit-card {
        padding: 24px 22px;
    }

    .situation-item,
    .situation-item:first-child {
        padding: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-right {
        grid-template-columns: 1fr;
    }

    .about-feature,
    .about-feature:nth-child(even),
    .about-feature:nth-child(odd) {
        padding: 28px 0;
        border-right: none;
        border-bottom: 1px solid rgba(230, 227, 223, 0.08);
    }

    .oe-pillars-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 60px 20px 32px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .about-hero-page,
    .founder-section,
    .about-cta {
        padding: 60px 20px;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .leadership-section {
        padding: 60px 20px;
    }

    .leader-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .leader-photo {
        width: 160px;
        height: 160px;
    }

    .contact-page {
        padding: var(--section-padding-mobile);
    }

    .contact-intro h1 {
        font-size: 38px;
    }

    .contact-card {
        padding: 24px;
    }

    .service-page-hero {
        padding: 110px var(--page-padding-mobile) 70px;
        min-height: auto;
    }

    .service-page-hero h1 {
        font-size: 40px;
    }

    .service-page-content {
        padding: var(--section-padding-mobile);
    }

    .service-content-block h2 {
        font-size: 26px;
    }

    .oe-method {
        padding: var(--section-padding-mobile);
    }

    .oe-method-intro h2 {
        font-size: 30px;
    }

    .oe-experience-callout {
        padding: 28px 24px;
    }

    .oe-experience-callout h3 {
        font-size: 24px;
    }

    .oe-pillar-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 32px 0;
    }

    .oe-pillar-number {
        font-size: 22px;
    }

    .oe-system-statement {
        justify-content: flex-start;
        gap: 10px 22px;
    }

    .oe-system-statement span {
        font-size: 13px;
    }

    .oe-system-statement span:not(:last-child)::after {
        right: -14px;
    }
}