:root {
    --ink: #252525;
    --muted: #737373;
    --line: #d2cfc4;
    --paper: #ffffff;
    --white: #ffffff;
    --green: #00463f;
    --lime: #7ec440;
    --lime-2: #70b934;
    --cream: #dfe86b;
    --header: 81px;
    --gutter: 80px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    overflow-x: hidden;
}

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

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

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

.figma-gutter {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: var(--header);
    background: rgba(255,255,255,.7);
    border-bottom: 1px solid #e9e9e9;
    backdrop-filter: blur(10px);
    color: var(--ink);
}

.navbar {
    min-height: var(--header);
    padding: 0;
}

.brand-mark {
    width: 168px;
    height: 61px;
    padding: 0;
    margin: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--lime);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.3px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    width: 168px;
    height: 61px;
    position: relative;
    color: var(--lime);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.3px;
}

.brand-mark img,
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-nav {
    display: grid;
    grid-template-columns: repeat(6, 96px);
    gap: 0;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-item {
    display: flex;
    justify-content: center;
}

.nav-link {
    color: var(--ink);
    font-size: 12.6px;
    line-height: 12.6px;
    letter-spacing: -.252px;
    padding: 10px 0 !important;
    min-width: 0;
    width: 100%;
    text-align: center;
}

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

.navbar-toggler {
    border: 0;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.figma-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 32px;
    padding: 0 24px;
    border-radius: 50px;
    background: var(--lime);
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -.28px;
    text-transform: uppercase;
    transition: transform .22s ease, background-color .22s ease;
}

.figma-pill:hover {
    background: var(--lime-2);
    color: #000;
    transform: translateY(-2px);
}

.figma-pill.dark {
    background: var(--green);
    color: var(--cream);
}

.figma-pill.outline {
    background: #fff;
    border: 1px solid rgba(29,29,29,.16);
    color: var(--ink);
}

.page-shell {
    padding-top: var(--header);
    background: var(--paper);
    width: 100%;
    overflow-x: hidden;
}

.hero-home {
    min-height: 1089px;
    background: #fff;
    padding: 32px var(--gutter) 0;
}

.home-title {
    display: grid;
    grid-template-columns: minmax(0, 58%) 500px;
    gap: 80px;
    padding-top: 0;
}

.home-title h1 {
    font-weight: 300;
    font-size: 94.8px;
    line-height: 91.3px;
    letter-spacing: -1.896px;
}

.home-title-copy {
    padding-top: 60px;
}

.home-title-copy p {
    color: var(--ink);
    font-size: 20px;
    line-height: 22.8px;
    letter-spacing: -.4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.trusted-copy {
    color: var(--muted);
    font-size: 15px;
    line-height: 22.8px;
    letter-spacing: -.3px;
    margin-top: 330px;
}

.client-strip {
    overflow: hidden;
    margin-top: -32px;
}

.client-strip-track,
.client-strip-set {
    display: flex;
    align-items: center;
}

.client-strip-track {
    width: max-content;
    animation: client-logo-marquee 28s linear infinite;
}

.client-strip-set {
    flex: 0 0 auto;
    gap: 28px;
    padding-right: 28px;
}

.client-strip img {
    width: 132px;
    height: 56px;
    object-fit: contain;
}

@keyframes client-logo-marquee {
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .client-strip-track { animation-play-state: paused; }
}

.hero-home-media {
    width: calc(100% + var(--gutter) * 2);
    height: 364px;
    margin-left: calc(var(--gutter) * -1);
    margin-top: 56px;
    object-fit: cover;
}

.section {
    padding: 80px var(--gutter);
}

.section.compact-top {
    padding-top: 64px;
}

.section.white {
    background: #fff;
}

.section.border-y {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.two-col.narrow-right {
    grid-template-columns: 760px 420px;
    justify-content: space-between;
}

.figma-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.figma-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--green);
}

.figma-kicker.light {
    color: var(--cream);
}

.figma-kicker.light::before {
    background: var(--cream);
}

.label-plain {
    color: var(--muted);
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -.28px;
    margin-bottom: 50px;
}

.display-72 {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -1.44px;
    font-weight: 400;
}

.display-56 {
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: -1.12px;
    font-weight: 400;
}

.display-50 {
    font-size: 50.4px;
    line-height: 60.48px;
    letter-spacing: -1.008px;
    font-weight: 400;
}

.display-48 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
}

.body-20 {
    color: var(--muted);
    font-size: 20px;
    line-height: 22.8px;
    letter-spacing: -.4px;
}

.body-18 {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.body-16 {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.serif {
    font-family: "Instrument Serif", Georgia, serif;
}

.wide-image {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.services-lines {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 82px;
    margin-top: 80px;
}

.line-card {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.line-card .num {
    color: var(--muted);
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -.28px;
    display: block;
    margin-bottom: 30px;
}

.line-card h3 {
    min-height: 72px;
    color: var(--ink);
    font-size: 28.8px;
    line-height: 34.56px;
    letter-spacing: -.576px;
    font-weight: 400;
}

.line-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -.28px;
    margin-top: 8px;
}

.evolution {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 58px;
    background: var(--green);
    color: var(--cream);
    padding: 80px var(--gutter);
}

.evolution img {
    width: 560px;
    height: 680px;
    object-fit: cover;
}

.evolution .caption {
    text-align: right;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -.28px;
    margin-top: -58px;
    padding-right: 20px;
}

.evolution h2 {
    margin: 50px 0 20px;
}

.evolution p {
    color: var(--cream);
}

.standfirst {
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: -.64px;
    margin-top: 28px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.stat {
    border-top: 1px solid rgba(255,244,176,.2);
    padding-top: 26px;
}

.stat strong {
    display: block;
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -.88px;
    font-weight: 400;
}

.stat span {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: -.26px;
}

.work-grid {
    display: grid;
    grid-template-columns: 560px 650px;
    gap: 58px;
    margin-top: 80px;
}

.work-grid img {
    width: 560px;
    height: 680px;
    object-fit: cover;
}

.timeline-line {
    display: grid;
    grid-template-columns: 60px 180px 1fr;
    gap: 30px;
    border-top: 1px solid var(--line);
    padding: 26px 0 30px;
}

.timeline-line span,
.timeline-line p {
    color: var(--muted);
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -.28px;
}

.timeline-line h3 {
    color: var(--ink);
    font-size: 28.8px;
    line-height: 34.56px;
    letter-spacing: -.576px;
    font-weight: 400;
}

.image-band {
    position: relative;
    min-height: 760px;
    padding: 100px var(--gutter);
    color: var(--cream);
    overflow: hidden;
}

.image-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7,59,58,.72);
}

.image-band-content {
    position: relative;
    z-index: 1;
}

.sector-strip {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin-top: 220px;
}

.sector-strip div {
    border-top: 1px solid rgba(255,244,176,.25);
    padding-top: 110px;
    font-size: 18px;
    line-height: 21.6px;
    letter-spacing: -.36px;
}

.insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 73px;
    margin-top: 78px;
}

.insight-card {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.insight-card .topic {
    color: var(--muted);
    font-size: 14px;
    line-height: 14px;
    letter-spacing: -.28px;
    display: block;
    margin-bottom: 30px;
}

.insight-card h3 {
    color: var(--green);
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -.6px;
    font-weight: 400;
}

.insight-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -.28px;
    margin: 18px 0 12px;
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -.28px;
}

.read-link img {
    width: 24px;
    height: 24px;
}

.figma-cta-footer {
    background: var(--green);
    color: var(--cream);
}

.figma-cta {
    position: relative;
    min-height: 422px;
    overflow: hidden;
}

.figma-cta > img {
    position: absolute;
    inset: 2px 0 0 auto;
    width: 558px;
    height: 420px;
    object-fit: cover;
}

.figma-cta-panel {
    position: relative;
    z-index: 1;
    width: 882px;
    min-height: 422px;
    background: var(--green);
    padding: 50px 32px;
}

.figma-cta-panel h2 {
    width: 880px;
    max-width: calc(100vw - 64px);
    font-size: 50.4px;
    line-height: 60.48px;
    letter-spacing: -1.008px;
    font-weight: 400;
}

.figma-cta-panel p:not(.figma-kicker) {
    width: 760px;
    max-width: 100%;
    font-size: 20px;
    line-height: 22.8px;
    letter-spacing: -.4px;
    margin: 24px 0 12px;
}

.figma-footer-mini {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 46px 32px 30px;
}

.figma-footer-mini nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -.28px;
}

.figma-footer-mini a:hover {
    color: var(--lime);
}

.sub-hero {
    background: #fff;
    padding: 96px var(--gutter) 80px;
}

.sub-hero .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    margin-top: 48px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 80px 0;
    min-width: 0;
    max-width: 100%;
}

.service-block.reverse {
    grid-template-columns: 520px 1fr;
}

.service-block img.service-visual {
    width: 520px;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
}

.service-block .num {
    color: var(--muted);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-block h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 16px;
}

.bullet-list {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.bullet-title {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--ink);
    font-weight: 700;
    font-size: 16px;
}

.bullet-title img {
    width: 16px;
    height: 16px;
}

.bullet p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stage-card,
.stat-tile,
.about-service-card,
.client-logo,
.sector-card {
    transition: transform .22s ease, border-color .22s ease;
}

.stage-card:hover,
.about-service-card:hover,
.client-logo:hover,
.sector-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
}

.stage-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 32px;
}

.stage-card .stage {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.stage-card h3 {
    color: var(--ink);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.stage-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.track-stats .stat-tile {
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    padding: 40px;
}

.stat-tile strong {
    display: block;
    color: var(--cream);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 64px;
    font-weight: 400;
}

.stat-tile b {
    display: block;
    font-size: 16px;
    margin: 16px 0 4px;
}

.stat-tile span {
    color: rgba(255,244,176,.7);
    font-size: 13px;
}

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

.sector-card {
    border-top: 1px solid var(--line);
    padding: 24px 0 32px;
}

.sector-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sector-card-head span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.sector-card-head img {
    width: 20px;
    height: 20px;
}

.sector-card h2 {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 16px;
}

.sector-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.tag-label {
    color: var(--muted);
    opacity: .8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag-row span {
    background: rgba(7,59,58,.05);
    color: var(--green);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -.12px;
}

.green-section {
    background: var(--green);
    color: var(--cream);
    padding: 96px var(--gutter);
}

.green-section .body-20 {
    color: var(--cream);
    opacity: .85;
}

.green-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.green-stats .stat strong {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 56px;
    font-weight: 400;
}

.about-hero {
    position: relative;
    color: var(--cream);
    padding: 120px var(--gutter);
    overflow: hidden;
}

.about-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7,59,58,.85);
}

.about-hero > div {
    position: relative;
    z-index: 1;
    width: 900px;
    max-width: 100%;
}

.blank-panel {
    background: #fff;
    width: 560px;
    height: 480px;
    border-radius: 12px;
}

.portrait {
    width: 480px;
}

.portrait img {
    width: 480px;
    height: 628px;
    object-fit: cover;
}

.portrait-name {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 28px;
    margin-top: 16px;
}

.portrait-role {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(7,59,58,.08);
    border-radius: 8px;
    padding: 24px;
    color: var(--green);
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
}

.highlight img {
    width: 24px;
    height: 24px;
}

.about-service-grid,
.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-service-card {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 32px 24px;
}

.about-service-card .num {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-service-card h3 {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 20px;
}

.client-logo {
    min-height: 54px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 12px 18px;
}

.contact-hero {
    background: #fff;
    padding: 96px var(--gutter) 64px;
}

.breadcrumb-line {
    display: flex;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.breadcrumb-line b {
    color: var(--green);
    font-weight: 600;
}

.contact-hero h1 {
    font-size: 80px;
    line-height: 88px;
    letter-spacing: -1.6px;
    font-weight: 400;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 80px;
    background: var(--paper);
    padding: 64px var(--gutter) 80px;
}

.detail-list {
    display: grid;
    gap: 48px;
}

.detail-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.detail-large {
    color: var(--green);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 32px;
    line-height: 38px;
}

.contact-details .numbers p {
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-details .numbers a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.contact-details .numbers a:hover,
.contact-details .numbers a:focus-visible {
    color: var(--lime-2);
    text-decoration-color: currentColor;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--green);
    font-size: 15px;
    font-weight: 500;
}

.social-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-map {
    width: 560px;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--green);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-section {
    background: #fff;
    padding: 100px var(--gutter);
    display: grid;
    justify-content: center;
}

.form-header {
    width: 760px;
    text-align: center;
    margin-bottom: 56px;
}

.form-header h2 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
}

.form-header p {
    color: var(--muted);
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
}

.contact-form {
    width: 760px;
    display: grid;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fdfdfd;
    color: var(--ink);
    padding: 14px 16px;
    font-size: 15px;
}

.contact-form input {
    height: 48px;
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
}

.privacy-copy {
    width: 400px;
    color: var(--muted);
    font-size: 13px;
}

.contact-footer {
    background: var(--green);
    color: var(--cream);
    padding: 80px var(--gutter) 40px;
}

.contact-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.contact-footer h2 {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.contact-footer p {
    color: var(--cream);
    opacity: .8;
    font-size: 15px;
    line-height: 22px;
}

.contact-footer-line {
    border-top: 1px solid rgba(255,244,176,.25);
    margin: 48px 0 22px;
}

.contact-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links {
    display: flex;
    gap: 24px;
    color: var(--cream);
    opacity: .8;
    font-size: 14px;
}

.icon-row {
    display: flex;
    gap: 16px;
}

.icon-row a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255,244,176,.2);
}

.icon-row img {
    width: 16px;
    height: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    :root {
        --gutter: 48px;
    }

    .home-title,
    .two-col,
    .two-col.narrow-right,
    .evolution,
    .work-grid,
    .service-block,
    .service-block.reverse,
    .contact-details {
        grid-template-columns: 1fr;
    }

    .services-lines,
    .about-service-grid,
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-row,
    .sector-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .evolution img,
    .work-grid img,
    .service-block img.service-visual,
    .contact-map,
    .portrait,
    .portrait img,
    .blank-panel {
        width: 100%;
    }

    .service-block.reverse img {
        order: 2;
    }
}

@media (max-width: 991px) {
    .site-header {
        height: auto;
    }

    .navbar-collapse {
        border-top: 1px solid #e9e9e9;
        padding: 18px 0 24px;
    }

    .nav-link {
        min-width: 0;
        padding: 12px 0 !important;
    }

    .nav-cta {
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    :root {
        --gutter: 20px;
    }

    .brand-mark,
    .footer-logo {
        width: 120px;
        height: 32px;
    }

    .hero-home {
        min-height: auto;
        padding-top: 54px;
    }

    .home-title h1,
    .display-72 {
        font-size: 46px;
        line-height: 48px;
        letter-spacing: -.92px;
    }

    .display-56,
    .display-50,
    .display-48,
    .contact-hero h1 {
        font-size: 38px;
        line-height: 42px;
        letter-spacing: -.76px;
    }

    .home-title-copy {
        padding-top: 28px;
    }

    .home-title,
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .home-title-copy,
    .home-title-copy p,
    .two-col,
    .two-col.narrow-right,
    .service-block,
    .service-block.reverse,
    .service-block > *,
    .figma-cta-panel,
    .figma-footer-mini nav {
        min-width: 0;
        max-width: 100%;
    }

    .trusted-copy {
        margin-top: 80px;
    }

    .client-strip {
        justify-content: flex-start;
        overflow-x: auto;
        margin-top: 30px;
        padding-bottom: 8px;
    }

    .hero-home-media {
        height: 300px;
    }

    .section,
    .sub-hero,
    .green-section,
    .contact-form-section,
    .contact-footer,
    .contact-hero {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .services-lines,
    .about-service-grid,
    .logos-grid,
    .cards-row,
    .sector-grid,
    .green-stats,
    .insights,
    .stats,
    .form-row {
        grid-template-columns: 1fr;
    }

    .wide-image,
    .sub-hero .hero-image,
    .evolution img,
    .work-grid img,
    .service-block img.service-visual,
    .portrait img,
    .contact-map,
    .blank-panel {
        height: 320px;
    }

    .timeline-line {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sector-strip {
        margin-top: 80px;
        grid-template-columns: 1fr;
    }

    .sector-strip div {
        padding-top: 18px;
    }

    .figma-cta > img {
        position: relative;
        width: 100%;
        height: 260px;
        inset: auto;
    }

    .figma-cta-panel {
        width: 100%;
        min-height: 0;
        padding: 52px 20px;
    }

    .figma-cta-panel h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .figma-footer-mini,
    .form-footer,
    .contact-footer-top,
    .contact-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-header,
    .contact-form,
    .privacy-copy {
        width: 100%;
    }

    .figma-pill {
        width: 100%;
        min-width: 0;
    }
}

/* Anthropic-style button system */
:root {
    --heitha-button-bg: #141413;
    --heitha-button-bg-hover: #3d3d3a;
    --heitha-button-fg: #faf9f5;
    --heitha-button-inverse-bg: #faf9f5;
    --heitha-button-inverse-bg-hover: #f0eee6;
    --heitha-button-inverse-fg: #141413;
}

.figma-pill,
.figma-pill.nav-cta,
.contact-form button.figma-pill {
    display: inline-flex;
    width: fit-content;
    min-width: 44px;
    height: 40px;
    min-height: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid var(--heitha-button-bg);
    border-radius: 8px;
    background: var(--heitha-button-bg);
    color: var(--heitha-button-fg);
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transform: none;
    transition: background-color .2s cubic-bezier(.77, 0, .175, 1), color .2s cubic-bezier(.77, 0, .175, 1), border-color .2s cubic-bezier(.77, 0, .175, 1);
}

.figma-pill:hover,
.figma-pill.nav-cta:hover,
.contact-form button.figma-pill:hover {
    border-color: var(--heitha-button-bg-hover);
    background: var(--heitha-button-bg-hover);
    color: var(--heitha-button-fg);
    transform: none;
}

.figma-pill.outline {
    border: 1px solid var(--heitha-button-bg);
    background: transparent;
    color: var(--heitha-button-bg);
}

.figma-pill.outline:hover {
    border-color: var(--heitha-button-bg);
    background: var(--heitha-button-bg);
    color: var(--heitha-button-fg);
}

.figma-pill.dark {
    border-color: var(--heitha-button-bg);
    background: var(--heitha-button-bg);
    color: var(--heitha-button-fg);
}

.figma-cta-footer .figma-pill,
.contact-footer .figma-pill {
    border-color: var(--heitha-button-inverse-bg);
    background: var(--heitha-button-inverse-bg);
    color: var(--heitha-button-inverse-fg);
}

.figma-cta-footer .figma-pill:hover,
.contact-footer .figma-pill:hover {
    border-color: var(--heitha-button-inverse-bg-hover);
    background: var(--heitha-button-inverse-bg-hover);
    color: var(--heitha-button-inverse-fg);
}

@media (max-width: 767px) {
    .figma-pill,
    .figma-pill.nav-cta,
    .contact-form button.figma-pill {
        width: 100%;
    }
}

/* Job search */
.jobs-hero {
    padding-bottom: 48px;
}

.jobs-hero-copy {
    max-width: 900px;
}

.jobs-hero-copy .body-18 {
    max-width: 760px;
    margin-top: 18px;
}

.jobs-section {
    background: #fff;
}

.jobs-list {
    display: grid;
    gap: 14px;
    max-width: 1120px;
}

.job-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 20, 19, .04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.job-card:hover {
    color: var(--ink);
    border-color: rgba(20, 20, 19, .35);
    box-shadow: 0 16px 34px rgba(20, 20, 19, .08);
    transform: translateY(-2px);
}

.job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
}

.job-card h2 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
}

.job-card p {
    max-width: 840px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    word-spacing: normal;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tags span,
.job-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #eef5ea;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
}

.job-status.is-closed {
    background: #f4f0eb;
    color: #7a4a2a;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

.job-meta span {
    display: inline-flex;
    gap: 6px;
}

.job-meta b {
    color: var(--ink);
    font-weight: 700;
}

.empty-jobs {
    max-width: 720px;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.empty-jobs h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
}

.empty-jobs p {
    color: var(--muted);
    margin-top: 10px;
}

.job-back-link {
    display: inline-flex;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.job-back-link:hover {
    color: var(--green);
}

.job-detail-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: start;
}

.job-detail-layout-section {
    padding-top: 72px;
}

.job-detail-main {
    min-width: 0;
}

.job-detail-aside {
    display: grid;
    gap: 40px;
    align-content: start;
}

.job-summary-panel,
.job-apply-intro {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.job-summary-panel {
    gap: 0;
}

.job-summary-panel div {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(210, 207, 196, .65);
}

.job-summary-panel div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.job-summary-panel b {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.job-summary-panel span {
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.job-description {
    max-width: 820px;
    color: var(--ink);
    margin-top: 40px;
}

.job-description :is(p, ul, ol) {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.job-description :is(h2, h3, h4) {
    margin: 32px 0 12px;
    font-weight: 500;
    line-height: 1.2;
}

.job-description ul,
.job-description ol {
    padding-left: 22px;
}

.job-apply-intro h2 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
}

.job-apply-intro p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.job-detail-layout-section .job-back-link {
    margin-bottom: 28px;
}

.job-detail-layout-section .display-72 {
    line-height: .94;
}

.job-application-section {
    display: grid;
    justify-content: center;
    background: #fff;
    border-top: 1px solid var(--line);
}

.job-application-form {
    gap: 28px;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.application-steps button {
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.application-steps button.is-active {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.application-step {
    display: none;
    gap: 24px;
}

.application-step.is-active {
    display: grid;
}

.form-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.form-check-row label,
.terms-check {
    display: inline-flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    color: var(--ink);
}

.form-check-row input,
.terms-check input {
    width: 18px;
    height: 18px;
}

.job-application-form input[type="file"] {
    height: auto;
    padding: 12px;
}

.mobile-apply-dock {
    display: none;
}

@media (max-width: 991px) {
    .navbar-nav {
        display: flex;
        gap: 12px;
        align-items: stretch;
        justify-content: flex-start;
    }

    .navbar-nav .nav-item {
        justify-content: flex-start;
    }

    .nav-link {
        width: auto;
        text-align: left;
    }

    .job-detail-page-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .job-description {
        margin-top: 72px;
    }

    .job-detail-aside {
        gap: 28px;
    }

    .job-summary-panel,
    .job-apply-intro {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .job-detail-aside .job-apply-intro {
        display: none;
    }

    .mobile-apply-dock {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 60;
        display: block;
        padding: 12px 16px max(12px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(210, 207, 196, .9);
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(12px);
        transform: translateY(0);
        transition: transform .28s ease, opacity .28s ease;
    }

    .mobile-apply-dock .figma-pill {
        width: 100%;
    }

    .mobile-apply-dock.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(110%);
    }

    .job-detail-page {
        padding-bottom: 80px;
    }

    .job-card {
        padding: 18px;
    }

    .job-card-top,
    .job-meta,
    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

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

/* Final Anthropic-style content width */
:root {
    --anthropic-container: 1400px;
    --anthropic-page-margin: 64px;
    --anthropic-shell-padding: max(var(--anthropic-page-margin), calc((100vw - var(--anthropic-container)) / 2 + var(--anthropic-page-margin)));
}

.figma-gutter {
    max-width: var(--anthropic-container);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--anthropic-page-margin);
    padding-left: var(--anthropic-page-margin);
}

.hero-home,
.section,
.evolution,
.image-band,
.green-section,
.sub-hero,
.contact-hero,
.contact-details,
.contact-form-section,
.contact-footer,
.figma-cta-footer {
    padding-right: var(--anthropic-shell-padding);
    padding-left: var(--anthropic-shell-padding);
}

.hero-home-media {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.figma-cta,
.figma-footer-mini {
    max-width: calc(var(--anthropic-container) - (var(--anthropic-page-margin) * 2));
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 991px) {
    :root {
        --anthropic-page-margin: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --anthropic-page-margin: 20px;
    }
}

/* Final Anthropic-style content width */
:root {
    --anthropic-container: 1400px;
    --anthropic-page-margin: 64px;
    --anthropic-shell-padding: max(var(--anthropic-page-margin), calc((100vw - var(--anthropic-container)) / 2 + var(--anthropic-page-margin)));
}

.figma-gutter {
    max-width: var(--anthropic-container);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--anthropic-page-margin);
    padding-left: var(--anthropic-page-margin);
}

.hero-home,
.section,
.evolution,
.image-band,
.green-section,
.sub-hero,
.contact-hero,
.contact-details,
.contact-form-section,
.contact-footer,
.figma-cta-footer {
    padding-right: var(--anthropic-shell-padding);
    padding-left: var(--anthropic-shell-padding);
}

.hero-home-media {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.figma-cta,
.figma-footer-mini {
    max-width: calc(var(--anthropic-container) - (var(--anthropic-page-margin) * 2));
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 991px) {
    :root {
        --anthropic-page-margin: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --anthropic-page-margin: 20px;
    }
}

/* Anthropic-style content width */
:root {
    --anthropic-container: 1400px;
    --anthropic-page-margin: 64px;
    --anthropic-shell-padding: max(var(--anthropic-page-margin), calc((100vw - var(--anthropic-container)) / 2 + var(--anthropic-page-margin)));
}

.figma-gutter {
    max-width: var(--anthropic-container);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--anthropic-page-margin);
    padding-left: var(--anthropic-page-margin);
}

.hero-home,
.section,
.evolution,
.image-band,
.green-section,
.sub-hero,
.contact-hero,
.contact-details,
.contact-form-section,
.contact-footer,
.figma-cta-footer {
    padding-right: var(--anthropic-shell-padding);
    padding-left: var(--anthropic-shell-padding);
}

.hero-home-media {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.image-band {
    overflow: hidden;
}

.image-band > img {
    width: 100%;
    max-width: none;
}

.figma-cta,
.figma-footer-mini {
    max-width: calc(var(--anthropic-container) - (var(--anthropic-page-margin) * 2));
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 991px) {
    :root {
        --anthropic-page-margin: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --anthropic-page-margin: 20px;
    }
}

/* Old homepage styling baseline */
:root {
    --charcoal: #252525;
    --off-white: #ffffff;
    --warm-white: #ffffff;
    --gold: #7ec440;
    --grey: #737373;
    --light-grey: #f6f6f3;
    --old-line: rgba(23, 23, 23, .14);
    --display-font: "Cormorant Garamond", Georgia, serif;
    --gutter: clamp(22px, 5vw, 72px);
}

body {
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
}

.page-shell,
.section.white,
.hero-home,
.sub-hero,
.contact-hero {
    background: var(--warm-white);
}

.figma-gutter,
.section,
.sub-hero,
.green-section,
.contact-hero,
.contact-details,
.contact-form-section,
.contact-footer {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.site-header {
    color: var(--charcoal);
    background: rgba(252, 251, 248, .92);
    border-bottom-color: rgba(23, 23, 23, .08);
    backdrop-filter: blur(18px);
    transition: background .28s ease, border-color .28s ease, padding .28s ease, color .28s ease;
}

.site-header.is-scrolled {
    background: rgba(252, 251, 248, .96);
}

.brand-mark,
.footer-logo {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0;
}

.brand-mark span,
.footer-logo span {
    font-family: var(--display-font);
    font-size: 29px;
    font-weight: 600;
    line-height: .9;
    letter-spacing: 0;
}

.brand-mark small,
.footer-logo small {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .18em;
}

.nav-link {
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
}

.nav-link:hover,
.figma-footer-mini a:hover,
.social-links a:hover,
.read-link:hover {
    color: var(--lime);
}

.nav-cta {
    color: #000000;
    background: var(--lime);
    border-color: var(--lime);
    border-radius: 0;
}

.nav-cta:hover {
    color: #000000;
    background: var(--lime-2);
    border-color: var(--lime-2);
}

.figma-pill {
    min-width: 0;
    min-height: 52px;
    height: auto;
    padding: 0 26px;
    color: #000000;
    background: var(--lime);
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.figma-pill:hover {
    color: #000000;
    background: var(--lime-2);
    border-color: var(--lime-2);
    transform: translateY(-2px);
}

.figma-pill.dark {
    color: #000000;
    background: var(--lime);
}

.figma-pill.outline {
    color: inherit;
    background: transparent;
    border-color: currentColor;
}

.hero-home {
    padding-top: clamp(122px, 12vw, 184px);
}

.section {
    padding-top: clamp(86px, 12vw, 170px);
    padding-bottom: clamp(86px, 12vw, 170px);
}

.display-72,
.display-56,
.display-50,
.display-48,
.home-title h1,
.line-card h3,
.timeline-line h3,
.insight-card h3,
.service-block h2,
.stage-card h3,
.sector-card h2,
.about-service-card h3,
.detail-large,
.contact-footer h2,
.figma-cta-panel h2,
.serif {
    font-family: var(--display-font);
    font-weight: 500;
    letter-spacing: 0;
}

.home-title h1,
.display-72 {
    font-size: clamp(3.8rem, 7.3vw, 7.8rem);
    line-height: .94;
}

.display-56,
.display-50 {
    font-size: clamp(3.2rem, 6vw, 7.6rem);
    line-height: .94;
}

.display-48,
.service-block h2 {
    font-size: clamp(3rem, 5.5vw, 6.2rem);
    line-height: .96;
}

.figma-kicker,
.label-plain,
.line-card .num,
.timeline-line span,
.insight-card .topic,
.detail-label {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.figma-kicker::before {
    background: var(--green);
}

.body-20,
.body-18,
.body-16,
.home-title-copy p,
.line-card p,
.timeline-line p,
.insight-card p,
.sector-card p,
.stage-card p,
.about-service-card p {
    color: var(--grey);
}

.wide-image,
.evolution img,
.work-grid img,
.service-block img.service-visual,
.portrait img,
.sub-hero .hero-image {
    overflow: hidden;
    transition: transform .35s ease, filter .35s ease;
}

.wide-image:hover,
.evolution img:hover,
.work-grid img:hover,
.service-block:hover img.service-visual,
.portrait img:hover,
.sub-hero .hero-image:hover {
    transform: scale(1.025);
}

.services-lines {
    gap: 0;
    border-top: 1px solid var(--old-line);
    border-left: 1px solid var(--old-line);
}

.line-card {
    min-height: 270px;
    padding: clamp(24px, 3vw, 38px);
    background: rgba(248, 247, 245, .36);
    border-top: 0;
    border-right: 1px solid var(--old-line);
    border-bottom: 1px solid var(--old-line);
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.line-card:hover,
.stage-card:hover,
.about-service-card:hover,
.sector-card:hover {
    color: var(--warm-white);
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-6px);
}

.line-card:hover h3,
.line-card:hover p,
.stage-card:hover h3,
.stage-card:hover p,
.about-service-card:hover h3,
.about-service-card:hover p,
.sector-card:hover h2,
.sector-card:hover p,
.sector-card:hover .sector-card-head span,
.sector-card:hover .tag-label {
    color: var(--warm-white);
}

.line-card:hover p,
.stage-card:hover p,
.about-service-card:hover p,
.sector-card:hover p {
    color: rgba(252, 251, 248, .72);
}

.evolution,
.green-section,
.figma-cta-footer,
.figma-cta-panel,
.contact-footer,
.track-stats .stat-tile {
    color: var(--cream);
    background: var(--green);
}

.evolution p,
.green-section .body-20,
.contact-footer p,
.figma-cta-panel p:not(.figma-kicker) {
    color: rgba(252, 251, 248, .78);
}

.evolution .label-plain,
.figma-kicker.light,
.green-section .figma-kicker,
.figma-cta-panel .figma-kicker {
    color: var(--cream);
}

.figma-kicker.light::before,
.green-section .figma-kicker::before,
.figma-cta-panel .figma-kicker::before {
    background: var(--cream);
}

.stats {
    gap: 1px;
    background: rgba(252, 251, 248, .16);
}

.stat {
    padding: 24px;
    background: var(--green);
    border-top: 0;
}

.stat strong,
.stat-tile strong {
    color: var(--cream);
    font-family: var(--display-font);
}

.image-band {
    min-height: 100vh;
    padding-top: clamp(100px, 12vw, 170px);
    padding-bottom: clamp(100px, 12vw, 170px);
}

.image-band::after {
    background: linear-gradient(180deg, rgba(23, 23, 23, .4), rgba(23, 23, 23, .84));
}

.sector-strip {
    gap: 0;
    border-top: 1px solid rgba(252, 251, 248, .24);
    border-left: 1px solid rgba(252, 251, 248, .24);
}

.sector-strip div {
    display: flex;
    min-height: 180px;
    align-items: flex-end;
    padding: 22px;
    color: var(--warm-white);
    border-top: 0;
    border-right: 1px solid rgba(252, 251, 248, .24);
    border-bottom: 1px solid rgba(252, 251, 248, .24);
    font-family: var(--display-font);
    font-size: clamp(1.45rem, 2vw, 2.35rem);
    line-height: 1;
    transition: background .25s ease, color .25s ease;
}

.sector-strip div:hover {
    color: #000000;
    background: var(--lime);
}

.insights {
    gap: 1px;
    background: var(--old-line);
}

.insight-card {
    min-height: 360px;
    padding: clamp(28px, 3vw, 44px);
    background: var(--off-white);
    border-top: 0;
    transition: background .25s ease, transform .25s ease;
}

.insight-card:hover {
    background: var(--light-grey);
    transform: translateY(-5px);
}

.insight-card h3,
.read-link {
    color: var(--charcoal);
}

.stage-card,
.about-service-card,
.client-logo,
.sector-card,
.tag-row span {
    border-radius: 0;
}

.stage-card,
.about-service-card,
.client-logo,
.sector-card {
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.about-hero::after {
    background: rgba(23, 23, 23, .72);
}

.contact-details,
.contact-form-section {
    background: var(--off-white);
}

@media (max-width: 767px) {
    .brand-mark span,
    .footer-logo span {
        font-size: 25px;
    }

    .brand-mark small,
    .footer-logo small {
        font-size: 8px;
    }

    .display-72,
    .display-56,
    .display-50,
    .display-48,
    .home-title h1,
    .service-block h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
        line-height: .94;
    }

    .section {
        padding-top: 82px;
        padding-bottom: 82px;
    }
}

/* Homepage comparison refinements */
:root {
    --display-font: "Inter", sans-serif;
}

.home-title h1,
.display-72,
.display-56,
.display-50,
.display-48,
.service-block h2,
.line-card h3,
.timeline-line h3,
.insight-card h3,
.stage-card h3,
.sector-card h2,
.about-service-card h3,
.detail-large,
.contact-footer h2,
.figma-cta-panel h2 {
    font-family: var(--display-font);
    font-weight: 200;
}

.hero-home {
    min-height: 0;
    padding-top: 32px;
}

.home-title {
    grid-template-columns: minmax(0, 55%) minmax(280px, 455px);
    gap: clamp(44px, 8vw, 118px);
}

.home-title h1 {
    max-width: 690px;
    font-size: clamp(72px, 8.35vw, 112px);
    line-height: .91;
}

.home-title-copy {
    padding-top: clamp(38px, 5vw, 74px);
}

.home-title-copy p {
    max-width: 440px;
    font-size: 18px;
    line-height: 1.14;
}

.trusted-copy {
    margin-top: clamp(118px, 16vw, 245px);
    font-size: 13px;
    line-height: 1.4;
}

.client-strip {
    margin-top: -26px;
}

.hero-home-media {
    display: block;
    height: clamp(326px, 31vw, 430px);
    margin-top: 40px;
    background: var(--charcoal);
}

.section {
    padding-top: clamp(74px, 9vw, 132px);
    padding-bottom: clamp(74px, 9vw, 132px);
}

.two-col {
    gap: clamp(56px, 10vw, 160px);
}

.display-56 {
    font-size: clamp(46px, 5.05vw, 74px);
    line-height: .96;
}

.display-50 {
    font-size: clamp(40px, 4.35vw, 64px);
    line-height: 1;
}

.wide-image.mt-5 {
    margin-top: clamp(54px, 7vw, 92px) !important;
}

.services-lines {
    margin-top: clamp(54px, 6vw, 84px);
}

.evolution {
    padding-top: clamp(52px, 6vw, 88px);
    padding-bottom: clamp(52px, 6vw, 88px);
}

.work-grid {
    margin-top: clamp(56px, 7vw, 92px);
}

.image-band {
    min-height: 560px;
}

@media (max-width: 767px) {
    .hero-home {
        padding-top: 32px;
    }

    .home-title {
        gap: 22px;
    }

    .home-title h1 {
        font-size: clamp(52px, 15vw, 70px);
        line-height: .92;
    }

    .home-title-copy {
        padding-top: 0;
    }

    .trusted-copy {
        margin-top: 64px;
    }

    .client-strip {
        margin-top: 18px;
    }

    .hero-home-media {
        height: 240px;
        margin-top: 30px;
    }

    .display-56,
    .display-50,
    .display-48,
    .service-block h2 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.02;
    }
}

/* Final Anthropic-style button system */
:root {
    --heitha-button-bg: #141413;
    --heitha-button-bg-hover: #3d3d3a;
    --heitha-button-fg: #faf9f5;
    --heitha-button-inverse-bg: #faf9f5;
    --heitha-button-inverse-bg-hover: #f0eee6;
    --heitha-button-inverse-fg: #141413;
}

.figma-pill,
.figma-pill.nav-cta,
.contact-form button.figma-pill {
    display: inline-flex;
    width: fit-content;
    min-width: 44px;
    height: 40px;
    min-height: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid var(--heitha-button-bg);
    border-radius: 8px;
    background: var(--heitha-button-bg);
    color: var(--heitha-button-fg);
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transform: none;
    transition: background-color .2s cubic-bezier(.77, 0, .175, 1), color .2s cubic-bezier(.77, 0, .175, 1), border-color .2s cubic-bezier(.77, 0, .175, 1);
}

.figma-pill:hover,
.figma-pill.nav-cta:hover,
.contact-form button.figma-pill:hover {
    border-color: var(--heitha-button-bg-hover);
    background: var(--heitha-button-bg-hover);
    color: var(--heitha-button-fg);
    transform: none;
}

.figma-pill.outline {
    border: 1px solid var(--heitha-button-bg);
    background: transparent;
    color: var(--heitha-button-bg);
}

.figma-pill.outline:hover {
    border-color: var(--heitha-button-bg);
    background: var(--heitha-button-bg);
    color: var(--heitha-button-fg);
}

.figma-pill.dark {
    border-color: var(--heitha-button-bg);
    background: var(--heitha-button-bg);
    color: var(--heitha-button-fg);
}

.figma-cta-footer .figma-pill,
.contact-footer .figma-pill {
    border-color: var(--heitha-button-inverse-bg);
    background: var(--heitha-button-inverse-bg);
    color: var(--heitha-button-inverse-fg);
}

.figma-cta-footer .figma-pill:hover,
.contact-footer .figma-pill:hover {
    border-color: var(--heitha-button-inverse-bg-hover);
    background: var(--heitha-button-inverse-bg-hover);
    color: var(--heitha-button-inverse-fg);
}

@media (max-width: 767px) {
    .figma-pill,
    .figma-pill.nav-cta,
    .contact-form button.figma-pill {
        width: 100%;
    }
}
