:root {
    --ink: #0e0e0c;
    --ink-soft: #171712;
    --cream: #f5f2ea;
    --lime: #d7f24a;
    --line-dark: rgba(14, 14, 12, 0.28);
    --line-light: rgba(245, 242, 234, 0.2);
    --muted-dark: #55554d;
    --muted-light: rgba(245, 242, 234, 0.68);
    --shell: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--ink);
    font-family: "Archivo", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

::selection {
    background: var(--lime);
    color: var(--ink);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 18px;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--cream);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.announcement {
    display: flex;
    min-height: 35px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 20px;
    border-bottom: 1px solid var(--ink);
    background: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--ink);
    background: rgba(245, 242, 234, 0.96);
    backdrop-filter: blur(12px);
}

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

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--ink);
    text-decoration: none;
}

.brand-name {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.brand-tagline {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 14px;
    font-style: italic;
    opacity: 0.58;
}

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

.main-nav > a:not(.button) {
    position: relative;
    padding-block: 23px 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease;
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 24px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.055em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 10px;
}

.button-lime {
    background: var(--lime);
    color: var(--ink);
}

.button-ghost {
    border-color: rgba(245, 242, 234, 0.7);
    background: rgba(14, 14, 12, 0.15);
    color: var(--cream);
}

.button-ghost:hover {
    border-color: var(--cream);
    background: var(--cream);
    color: var(--ink);
}

.button-dark {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
}

.hero {
    position: relative;
    display: grid;
    min-height: min(83vh, 790px);
    overflow: hidden;
    align-items: end;
    border-bottom: 1px solid var(--ink);
    background: var(--ink);
    color: var(--cream);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center 51%;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(14, 14, 12, 0.82) 0%, rgba(14, 14, 12, 0.48) 46%, rgba(14, 14, 12, 0.12) 75%),
        linear-gradient(180deg, rgba(14, 14, 12, 0.12) 35%, rgba(14, 14, 12, 0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: clamp(100px, 14vh, 150px) 68px;
}

.hero-content h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(45px, 7vw, 92px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.92;
    text-transform: uppercase;
    text-wrap: balance;
}

h1 em,
h2 em {
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.015em;
    text-transform: none;
}

.hero-content h1 em {
    color: var(--lime);
}

.hero-copy {
    max-width: 630px;
    margin: 23px 0 29px;
    color: rgba(245, 242, 234, 0.82);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
}

.eyebrow {
    margin: 0 0 17px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.22em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow-lime {
    color: var(--lime);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.audit-seal {
    position: absolute;
    top: 30px;
    right: max(24px, calc((100% - var(--shell)) / 2));
    z-index: 3;
    width: 112px;
    height: 112px;
    color: var(--lime);
}

.audit-seal svg {
    width: 100%;
    height: 100%;
    animation: seal-spin 19s linear infinite;
}

.audit-seal circle {
    fill: rgba(14, 14, 12, 0.26);
    stroke: currentColor;
    stroke-width: 1.5;
}

.audit-seal text {
    fill: currentColor;
    font-family: "Archivo", sans-serif;
    font-size: 8.7px;
    font-weight: 800;
    letter-spacing: 1.65px;
}

.audit-seal > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 26px;
}

@keyframes seal-spin {
    to { transform: rotate(360deg); }
}

.marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--ink);
    background: var(--ink);
    color: var(--lime);
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 25px;
    padding: 14px 0;
    animation: marquee-move 28s linear infinite;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.marquee-track span {
    white-space: nowrap;
}

.marquee-track b {
    opacity: 0.42;
}

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

.section {
    padding-block: clamp(78px, 9vw, 125px);
}

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

.section-dark {
    background: var(--ink);
    color: var(--cream);
}

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

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
}

.image-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: 16px;
    background: var(--ink-soft);
    aspect-ratio: 4 / 3;
}

.image-card-dark {
    border-color: var(--ink);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.image-card:hover img,
.project-card:hover img {
    transform: scale(1.035);
}

.reveal-frame {
    border-radius: 24px 24px 24px 4px;
}

.image-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 15px;
    border: 1px solid rgba(245, 242, 234, 0.35);
    border-radius: 10px;
    background: rgba(14, 14, 12, 0.82);
    color: var(--cream);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
}

.image-label b {
    color: var(--lime);
}

.section-copy h2,
.section-heading-row h2,
.centered-heading h2,
.cta-inner h2 {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 61px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
    text-wrap: balance;
}

.section-copy > p:not(.eyebrow) {
    margin: 21px 0 0;
    color: var(--muted-dark);
    font-size: 16px;
    line-height: 1.65;
}

.dash-list {
    display: grid;
    gap: 13px;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.dash-list li {
    position: relative;
    padding-left: 27px;
    color: #3e3e38;
    font-size: 14px;
    line-height: 1.45;
}

.dash-list li::before {
    position: absolute;
    left: 0;
    color: var(--ink);
    font-weight: 900;
    content: "—";
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
    align-items: end;
    gap: clamp(40px, 8vw, 120px);
}

.section-heading-row > p {
    margin: 0 0 5px;
    color: var(--muted-light);
    font-size: 15px;
    line-height: 1.65;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 52px;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.feature {
    position: relative;
    min-height: 245px;
    padding: 31px 25px 30px;
    border-left: 1px solid var(--line-light);
}

.feature:first-child {
    padding-left: 0;
    border-left: 0;
}

.feature:last-child {
    padding-right: 0;
}

.feature-icon {
    display: block;
    margin-bottom: 27px;
    color: var(--lime);
    font-size: 23px;
}

.feature-number {
    position: absolute;
    top: 34px;
    right: 24px;
    color: rgba(245, 242, 234, 0.34);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.feature h3 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1.25;
    text-transform: uppercase;
}

.feature p {
    margin: 0;
    color: var(--muted-light);
    font-size: 13px;
    line-height: 1.55;
}

.seo-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: clamp(45px, 7vw, 95px);
    margin-top: 60px;
}

.script-heading {
    margin: 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(24px, 3vw, 33px);
    font-style: italic;
    line-height: 1.1;
}

.dash-list-lime li {
    color: rgba(245, 242, 234, 0.83);
}

.dash-list-lime li::before {
    color: var(--lime);
}

.process-intro {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 25px;
}

.process-list {
    margin: 24px 0 0;
    padding: 0;
    border-top: 1px solid var(--ink);
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 65px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 94px;
    padding: 15px 4px;
    border-bottom: 1px solid var(--ink);
    transition: padding 180ms ease;
}

.process-list li:hover {
    padding-left: 12px;
}

.process-number {
    font-size: 12px;
    font-weight: 900;
}

.process-list h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.process-list p {
    margin: 5px 0 0;
    color: rgba(14, 14, 12, 0.64);
    font-size: 12px;
}

.process-arrow {
    font-size: 21px;
}

.centered-heading {
    max-width: 850px;
    margin: 0 auto 47px;
    text-align: center;
}

.centered-heading > p:not(.eyebrow) {
    max-width: 670px;
    margin: 22px auto 0;
    color: var(--muted-dark);
    line-height: 1.65;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 970px;
    margin: 0 auto;
}

.stats-grid article {
    min-height: 210px;
    padding: 29px;
    border: 1px solid var(--ink);
    border-radius: 15px;
    background: var(--ink);
    color: var(--cream);
}

.stats-grid strong {
    display: block;
    color: var(--lime);
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 27px;
    color: var(--muted-light);
    font-size: 13px;
    line-height: 1.55;
}

.work-heading {
    align-items: end;
}

.work-heading > div h2 {
    max-width: 780px;
}

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

.project-card {
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: 16px;
    background: var(--ink-soft);
    color: var(--cream);
    text-decoration: none;
}

.project-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 17px 18px 18px;
}

.project-meta h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.project-meta p {
    margin: 4px 0 0;
    color: rgba(245, 242, 234, 0.5);
    font-size: 11px;
}

.project-meta > span {
    color: var(--lime);
    font-size: 18px;
}

.cta-section {
    text-align: center;
}

.cta-inner {
    max-width: 870px;
}

.cta-inner h2 {
    font-size: clamp(46px, 6vw, 80px);
}

.cta-inner > p:not(.eyebrow) {
    max-width: 620px;
    margin: 23px auto 30px;
    color: rgba(14, 14, 12, 0.72);
    font-size: 16px;
    line-height: 1.6;
}

.site-footer {
    padding: 74px 0 25px;
    background: var(--ink);
    color: var(--cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 55px;
}

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

.footer-about > p {
    max-width: 395px;
}

.footer-grid h2 {
    margin: 2px 0 17px;
    color: rgba(245, 242, 234, 0.42);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-grid p,
.footer-grid > div > a {
    display: block;
    margin: 0 0 8px;
    color: rgba(245, 242, 234, 0.66);
    font-size: 12px;
    line-height: 1.65;
    text-decoration: none;
}

.footer-grid > div > a:hover {
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding-top: 21px;
    border-top: 1px solid rgba(245, 242, 234, 0.12);
    color: rgba(245, 242, 234, 0.37);
    font-size: 10px;
}

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

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

    .main-nav > a.active:not(.button) {
        display: inline-block;
    }

    .split,
    .seo-showcase {
        grid-template-columns: 1fr;
    }

    .split .image-card {
        order: 2;
    }

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

    .feature {
        border-bottom: 1px solid var(--line-light);
    }

    .feature:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .feature:nth-child(even) {
        padding-right: 0;
    }

    .feature:nth-child(n+3) {
        border-bottom: 0;
    }

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

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(100% - 36px, var(--shell));
    }

    .announcement {
        min-height: 39px;
        gap: 8px;
        font-size: 8px;
    }

    .header-inner {
        min-height: 58px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-tagline {
        display: none;
    }

    .main-nav > a.active:not(.button) {
        display: none;
    }

    .button-small {
        min-height: 38px;
        padding-inline: 14px;
    }

    .hero {
        min-height: 690px;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(14, 14, 12, 0.78), rgba(14, 14, 12, 0.2)),
            linear-gradient(180deg, rgba(14, 14, 12, 0.08) 20%, rgba(14, 14, 12, 0.9) 90%);
    }

    .hero-content {
        padding-bottom: 42px;
    }

    .hero-content h1 {
        font-size: clamp(43px, 14vw, 68px);
    }

    .audit-seal {
        top: 22px;
        right: 18px;
        width: 88px;
        height: 88px;
    }

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

    .button-row .button {
        width: 100%;
    }

    .marquee-track {
        font-size: 11px;
    }

    .section {
        padding-block: 72px;
    }

    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-copy h2,
    .section-heading-row h2,
    .centered-heading h2,
    .cta-inner h2 {
        font-size: clamp(37px, 11vw, 52px);
    }

    .feature-grid,
    .stats-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .feature,
    .feature:first-child,
    .feature:last-child,
    .feature:nth-child(odd),
    .feature:nth-child(even) {
        min-height: auto;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
        border-left: 0;
    }

    .feature:last-child {
        border-bottom: 0;
    }

    .feature-icon {
        margin-bottom: 18px;
    }

    .process-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-list li {
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 102px;
    }

    .process-list h3 {
        font-size: 29px;
    }

    .stats-grid article {
        min-height: 165px;
    }

    .project-grid {
        gap: 22px;
    }

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

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

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
