:root {
    --ink: #202020;
    --ink-soft: #f5f2ee;
    --copper: #963317;
    --copper-dark: #7d2914;
    --copper-light: #c98d78;
    --ivory: #faf7f3;
    --sand: #f5f2ee;
    --white: #ffffff;
    --muted: #45413e;
    --line: #e8ded8;
    --shadow: 0 24px 70px rgba(28, 23, 19, 0.09);
    --shadow-soft: 0 18px 50px rgba(28, 23, 19, 0.07);
    --radius: 4px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body,
input,
button {
    font-family: "DM Sans", Arial, sans-serif;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.14;
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 5.6rem);
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.5rem);
    letter-spacing: -0.04em;
}

h3 {
    letter-spacing: -0.025em;
}

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--copper);
    outline-offset: 4px;
}

.cta-box a:focus-visible,
.pillar-accent a:focus-visible {
    outline-color: var(--white);
}

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

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 100;
    padding: 10px 16px;
    color: var(--white);
    background: var(--copper);
}

.skip-link:focus {
    top: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(23, 24, 23, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.navbar {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.brand-logo {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a:not(.btn) {
    position: relative;
    color: #4e4f4c;
    font-size: 0.86rem;
    font-weight: 500;
}

.main-nav > a:not(.btn)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--copper);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--ink);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid var(--copper);
    border-radius: var(--radius);
    color: var(--white);
    background: var(--copper);
    box-shadow: 0 10px 24px rgba(131, 66, 47, 0.16);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn:hover {
    border-color: var(--copper-dark);
    background: var(--copper-dark);
    box-shadow: 0 14px 30px rgba(131, 66, 47, 0.22);
    transform: translateY(-2px);
}

.btn-small {
    min-height: 42px;
    padding-inline: 20px;
}

.btn-ghost {
    border-color: var(--copper);
    color: var(--copper-dark);
    background: transparent;
    box-shadow: none;
}

.btn-ghost:hover {
    border-color: var(--copper-dark);
    color: var(--white);
    background: var(--copper-dark);
}

.btn-light {
    border-color: var(--white);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(50, 27, 20, 0.16);
}

.btn-light:hover {
    border-color: var(--ivory);
    background: var(--ivory);
}

.btn-full {
    width: 100%;
}

.eyebrow {
    margin-bottom: 20px;
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--copper-light);
}

.hero {
    position: relative;
    min-height: 750px;
    overflow: hidden;
    color: var(--ink);
    background: var(--ivory);
}

.hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(169, 87, 63, 0.09), transparent 58%);
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 750px;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    max-width: 780px;
    padding-block: 100px;
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 30px;
}

.hero-accent,
.title-accent {
    color: var(--copper);
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 38px;
    color: var(--muted);
    font-size: 1.15rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.metric-card {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(169, 87, 63, 0.16);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.metric-main {
    top: 90px;
    right: 0;
    width: 330px;
    padding: 30px;
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metric-main strong {
    display: block;
    margin: 18px 0 34px;
    color: var(--copper);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 4rem;
}

.metric-small {
    right: 180px;
    bottom: 65px;
    width: 230px;
    padding: 24px;
}

.metric-small strong {
    display: block;
    margin-top: 10px;
    font-size: 1.15rem;
}

.chart-bars {
    display: flex;
    height: 90px;
    align-items: flex-end;
    gap: 10px;
    border-bottom: 1px solid var(--line);
}

.chart-bars i {
    width: 18%;
    background: var(--copper);
}

.chart-bars i:nth-child(1) { height: 28%; }
.chart-bars i:nth-child(2) { height: 45%; }
.chart-bars i:nth-child(3) { height: 41%; }
.chart-bars i:nth-child(4) { height: 68%; }
.chart-bars i:nth-child(5) { height: 92%; }

.metric-axis {
    position: absolute;
    top: 40px;
    right: 25px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(169, 87, 63, 0.22);
    border-radius: 50%;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(169, 87, 63, 0.08);
    border-radius: 50%;
}

.expertise-strip {
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}

.expertise-strip-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #4b4c49;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.expertise-strip i {
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--copper);
}

.orbit-one {
    top: -300px;
    right: -250px;
    width: 900px;
    height: 900px;
}

.orbit-two {
    right: 100px;
    bottom: -350px;
    width: 700px;
    height: 700px;
}

.section {
    padding-block: 120px;
}

.section-soft {
    background: var(--ivory);
}

.hybrid-section {
    padding-block: 105px;
}

.hybrid-grid {
    display: grid;
    grid-template-columns: 0.42fr 1.35fr;
    gap: 90px;
}

.hybrid-grid h2 {
    max-width: 850px;
    margin-bottom: 28px;
}

.hybrid-grid > div > p {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.text-link.about-link,
.text-link.approach-link {
    max-width: 310px;
    margin-top: 34px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 64px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.split-heading {
    display: grid;
    max-width: none;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: end;
    gap: 90px;
}

.split-heading > p {
    margin-bottom: 5px;
    color: var(--muted);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.pillar-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pillar-card:hover {
    background: var(--ivory);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.pillar-card h3 {
    margin: 65px 0 20px;
    font-size: 1.4rem;
}

.pillar-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.card-index {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
}

.text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 600;
}

.text-link span {
    color: var(--copper);
    font-size: 1.2rem;
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.pillar-accent {
    color: var(--white);
    background: var(--copper);
}

.pillar-accent:hover {
    background: var(--copper-dark);
}

.pillar-accent .card-index,
.pillar-accent p,
.pillar-accent .text-link span {
    color: var(--white);
}

.pillar-accent .text-link {
    border-color: rgba(255, 255, 255, 0.3);
}

.approach-section {
    color: var(--ink);
    background: var(--sand);
}

.approach-section .eyebrow-light,
.page-hero-dark .eyebrow-light,
.contact-hero .eyebrow-light {
    color: var(--copper);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
    position: relative;
    min-height: 270px;
    padding: 36px 32px;
    border-top: 1px solid #d3ccc3;
    border-right: 1px solid #d3ccc3;
}

.process-grid article:last-child {
    border-right: 0;
}

.process-grid article::before {
    position: absolute;
    top: -5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--copper);
    content: "";
}

.process-grid span {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
}

.process-grid h3 {
    margin: 55px 0 16px;
}

.process-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.process-grid-five {
    grid-template-columns: repeat(5, 1fr);
}

.process-grid-compact article {
    min-height: 190px;
}

.process-grid-compact h3 {
    margin-bottom: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 110px;
}

.feature-list article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 25px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.feature-list article:last-child {
    border-bottom: 1px solid var(--line);
}

.feature-list span {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-list h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.feature-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.cta-section {
    padding-top: 0;
}

.cta-box {
    display: flex;
    min-height: 320px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 62px 70px;
    color: var(--white);
    background: var(--copper);
}

.cta-box .eyebrow-light {
    color: #f4dcd4;
}

.cta-box h2 {
    max-width: 750px;
    margin-bottom: 0;
}

.cta-copy {
    max-width: 760px;
    margin: 20px 0 0;
    color: #f4dcd4;
    font-size: 1rem;
}

.page-hero {
    padding-block: 135px 110px;
    background: var(--ivory);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 100px;
}

.page-hero h1 {
    max-width: 820px;
    margin-bottom: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-hero-grid > p {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 1.05rem;
}

.page-hero-dark {
    color: var(--ink);
    background: var(--sand);
}

.page-hero-dark .page-hero-grid > p {
    color: var(--muted);
}

.about-hero h1 {
    font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.error-page {
    min-height: 620px;
    display: flex;
    align-items: center;
}

.error-page-content {
    max-width: 880px;
}

.error-page-content h1 {
    max-width: 780px;
}

.error-page-content > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 1.08rem;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 0.4fr 1.2fr;
    gap: 100px;
}

.editorial-label {
    display: flex;
    gap: 20px;
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.editorial-content {
    max-width: 800px;
}

.editorial-content h2 {
    margin-bottom: 34px;
}

.editorial-content p {
    color: var(--muted);
    font-size: 1.06rem;
}

.two-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow);
}

.statement-card {
    min-height: 430px;
    padding: 60px;
    background: var(--white);
}

.statement-card > span {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.statement-card h2 {
    margin: 75px 0 25px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.statement-card p {
    color: var(--muted);
}

.statement-dark {
    color: var(--ink);
    background: var(--sand);
}

.statement-dark p {
    color: var(--muted);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.value-grid article {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
}

.value-grid article:last-child {
    border-right: 0;
}

.value-grid span,
.expertise-number {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
}

.value-grid h3 {
    margin: 45px 0 14px;
}

.value-grid p {
    color: var(--muted);
    font-size: 0.92rem;
}

.value-grid-five {
    grid-template-columns: repeat(5, 1fr);
}

.institutional-difference > div:first-child > p:not(.eyebrow) {
    color: var(--muted);
}

.founder-content {
    max-width: 860px;
}

.founder-name {
    margin-bottom: 28px;
    color: var(--copper-dark) !important;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.institutional-scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px;
}

.institutional-list-block {
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.institutional-list-block h2 {
    margin-bottom: 28px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.institutional-list-block > p:not(.eyebrow) {
    color: var(--muted);
}

.institutional-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.institutional-list li {
    position: relative;
    padding: 16px 0 16px 22px;
    border-top: 1px solid var(--line);
}

.institutional-list li::before {
    position: absolute;
    top: 1.45em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
    content: "";
}

.expertise-list {
    border-top: 1px solid var(--line);
}

.expertise-row {
    display: grid;
    grid-template-columns: 0.15fr 0.75fr 1fr;
    gap: 45px;
    padding: 55px 0;
    border-bottom: 1px solid var(--line);
}

.expertise-row h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.expertise-row > div:last-child > p {
    color: var(--muted);
    font-size: 1.02rem;
}

.clean-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.clean-list li {
    position: relative;
    padding-left: 17px;
    font-size: 0.88rem;
}

.clean-list li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--copper);
    content: "";
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.solution-grid article {
    min-height: 320px;
    padding: 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.solution-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--copper-light);
    border-radius: 50%;
    color: var(--copper);
    font-size: 0.8rem;
    font-weight: 600;
}

.solution-grid h3 {
    margin: 70px 0 18px;
    font-size: 1.3rem;
}

.solution-grid p {
    color: var(--muted);
}

.solution-grid .solution-featured {
    color: var(--white);
    background: var(--copper);
}

.solution-featured .solution-icon {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.solution-grid .solution-featured p {
    color: #f4dcd4;
}

.insights-intro {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
}

.insights-intro span {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.insights-intro p {
    max-width: 550px;
    margin: 0;
    color: var(--muted);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.insights-grid article {
    display: flex;
    min-height: 380px;
    flex-direction: column;
    padding: 46px;
    background: var(--white);
    transition: background 180ms ease;
}

.insights-grid article:hover {
    background: var(--ivory);
}

.article-category,
.coming-soon {
    color: var(--copper);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.insights-grid h2 {
    margin: 65px 0 20px;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.insights-grid article > p:not(.article-category) {
    color: var(--muted);
}

.coming-soon {
    margin-top: auto;
}

.contact-hero {
    padding-block: 140px;
    color: var(--ink);
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    align-items: center;
    gap: 120px;
}

.contact-copy h1 {
    margin-bottom: 36px;
    font-size: clamp(3rem, 5.3vw, 5.5rem);
}

.contact-copy > p:last-child {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.1rem;
}

.contact-panel {
    padding: 45px;
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-label {
    margin-bottom: 30px;
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-link {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.contact-link span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-link strong {
    font-size: 1.05rem;
}

.contact-panel .btn {
    margin-top: 30px;
}

.contact-note {
    max-width: 900px;
}

.contact-note > h2 {
    margin-bottom: 55px;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.contact-steps article {
    padding: 30px 28px 10px;
    border-right: 1px solid var(--line);
}

.contact-steps article:last-child {
    border-right: 0;
}

.contact-steps span {
    color: var(--copper);
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-steps p {
    margin: 45px 0 0;
}

.site-footer {
    padding-top: 88px;
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr 0.8fr;
    gap: 100px;
    padding-bottom: 76px;
}

.footer-logo {
    width: 210px;
}

.signature {
    margin: 30px 0 12px;
    color: var(--muted);
    font-size: 0.76rem;
    letter-spacing: 0.13em;
}

.signature i {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 7px 2px;
    border-radius: 50%;
    background: var(--copper);
}

.footer-tagline {
    color: var(--copper-dark);
    font-family: "Manrope", Arial, sans-serif;
}

.footer-heading {
    margin-bottom: 24px;
    color: var(--copper-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 12px;
    color: #4e4f4c;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--copper);
}

.footer-contact-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: var(--copper);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1020px) {
    .main-nav {
        gap: 18px;
    }

    .main-nav > a:not(.btn) {
        font-size: 0.8rem;
    }

    .footer-logo {
        width: 190px;
    }

    .hero-grid,
    .page-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .pillar-grid,
    .process-grid,
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid-five article:nth-child(even),
    .value-grid-five article:nth-child(even) {
        border-right: 0;
    }

    .process-grid-five article:last-child,
    .value-grid-five article:last-child {
        grid-column: 1 / -1;
    }

    .pillar-card {
        min-height: 340px;
    }

    .process-grid article:nth-child(2) {
        border-right: 0;
    }

    .split-heading,
    .why-grid,
    .hybrid-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .page-hero-grid {
        gap: 45px;
    }

    .page-hero-grid > p {
        max-width: 700px;
    }

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

    .contact-grid {
        gap: 65px;
    }

    .contact-panel {
        max-width: 600px;
    }

    .institutional-scope-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
}

@media (max-width: 820px) {
    .navbar {
        min-height: 78px;
    }

    .nav-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        padding: 9px;
        border: 0;
        border-radius: var(--radius);
        align-content: center;
        justify-content: center;
        gap: 5px;
        color: inherit;
        background: transparent;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 1px;
        background: var(--copper);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 22px 24px 28px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        flex-direction: column;
    }

    .nav-toggle[aria-expanded="true"] ~ .main-nav {
        display: flex;
    }

    .main-nav > a:not(.btn) {
        padding-block: 8px;
        font-size: 0.95rem;
    }

    .main-nav > a:not(.btn)::after {
        display: none;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .two-card-grid {
        grid-template-columns: 1fr;
    }

    .expertise-row {
        grid-template-columns: 45px 1fr;
    }

    .expertise-row > div:last-child {
        grid-column: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 2rem;
    }

    .brand-logo {
        width: 155px;
    }

    .footer-logo {
        width: 175px;
    }

    .hero,
    .hero-grid {
        min-height: 690px;
    }

    .hero-content {
        padding-block: 80px;
    }

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

    .button-group {
        align-items: stretch;
        flex-direction: column;
    }

    .section {
        padding-block: 80px;
    }

    .expertise-strip-inner {
        min-height: 0;
        justify-content: flex-start;
        padding-block: 20px;
        gap: 12px 18px;
        flex-wrap: wrap;
    }

    .expertise-strip i {
        display: none;
    }

    .hybrid-section {
        padding-block: 75px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .pillar-grid,
    .process-grid,
    .value-grid,
    .solution-grid,
    .insights-grid,
    .contact-steps {
        grid-template-columns: 1fr;
    }

    .process-grid-five article:last-child,
    .value-grid-five article:last-child {
        grid-column: auto;
    }

    .pillar-card {
        min-height: 310px;
    }

    .process-grid article {
        min-height: 235px;
        border-right: 0;
    }

    .value-grid article,
    .contact-steps article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .cta-box {
        min-height: 0;
        align-items: flex-start;
        padding: 45px 28px;
        flex-direction: column;
    }

    .page-hero {
        padding-block: 90px 75px;
    }

    .page-hero h1 {
        font-size: 2.65rem;
    }

    .statement-card {
        min-height: 0;
        padding: 42px 28px;
    }

    .statement-card h2 {
        margin-top: 50px;
    }

    .institutional-scope-grid {
        gap: 55px;
    }

    .expertise-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-block: 42px;
    }

    .expertise-row > div:last-child {
        grid-column: auto;
    }

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

    .solution-grid article,
    .insights-grid article {
        min-height: 320px;
        padding: 32px 26px;
    }

    .insights-intro {
        flex-direction: column;
    }

    .contact-hero {
        padding-block: 90px;
    }

    .contact-copy h1 {
        font-size: 2.8rem;
    }

    .contact-panel {
        padding: 32px 24px;
    }

    .contact-steps article {
        padding-inline: 0;
    }

    .contact-steps p {
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        gap: 8px;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
