:root {
    --ink: #06110f;
    --ink-2: #0c1d19;
    --paper: #f2f6f4;
    --white: #ffffff;
    --mist: #cbd8d4;
    --teal: #35d0bc;
    --teal-deep: #0da995;
    --line: rgba(6, 17, 15, 0.14);
    --shell: min(92vw, 1440px);
    --radius: 6px;
    --display: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
    --body: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--teal);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(96px, 12vw, 190px) 0;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
    color: var(--white);
    background: rgba(6, 17, 15, 0.9);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 86px;
    gap: 28px;
}

.brand {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
}

.brand img {
    width: auto;
    height: 62px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(22px, 3vw, 52px);
}

.desktop-nav a,
.header-cta {
    position: relative;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -10px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 46px;
    padding: 0 20px;
    color: var(--ink);
    background: var(--teal);
    transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    color: var(--white);
    background: var(--ink);
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 13, 12, 0.98) 0%, rgba(3, 13, 12, 0.84) 34%, rgba(3, 13, 12, 0.28) 69%, rgba(3, 13, 12, 0.42) 100%),
        linear-gradient(0deg, rgba(3, 13, 12, 0.85) 0%, transparent 48%);
}

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

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
    filter: saturate(0.86) contrast(1.06);
    animation: hero-scale 16s ease-out both;
}

.hero-grid {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    width: 58vw;
    height: 58vw;
    left: -30vw;
    bottom: -36vw;
    border-radius: 50%;
    background: rgba(53, 208, 188, 0.18);
    filter: blur(80px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    padding-top: 150px;
    padding-bottom: 120px;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: var(--teal);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow span {
    width: 32px;
    height: 1px;
    background: currentColor;
}

.eyebrow.dark {
    color: var(--teal-deep);
}

.hero h1,
.section h2 {
    font-family: var(--display);
    font-weight: 780;
    letter-spacing: -0.065em;
    line-height: 0.94;
}

.hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(4rem, 7.7vw, 8.2rem);
    text-wrap: balance;
}

.hero-intro {
    max-width: 600px;
    margin: 38px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    line-height: 1.7;
}

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

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    min-height: 58px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 1px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary:hover,
.button-light:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-index {
    display: grid;
    grid-template-columns: 1px auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 24px;
    padding-bottom: 60px;
}

.hero-index-line {
    grid-row: 1 / 3;
    width: 1px;
    height: 164px;
    background: linear-gradient(var(--teal), rgba(53, 208, 188, 0.06));
}

.hero-index > span:nth-child(2) {
    align-self: end;
    font-size: 3.6rem;
    font-weight: 200;
    letter-spacing: -0.08em;
    line-height: 1;
}

.hero-index small {
    align-self: start;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.6;
    text-transform: uppercase;
}

.hero-footer {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.scroll-cue i {
    position: relative;
    width: 42px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--teal);
    animation: scroll-cue 2.4s ease-in-out infinite;
}

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

.statement-grid {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 280px;
    align-items: start;
    gap: clamp(32px, 6vw, 110px);
}

.section-marker {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(6, 17, 15, 0.56);
}

.section-marker span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
}

.section-marker p {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-marker.light {
    color: rgba(255, 255, 255, 0.52);
}

.section-marker.light span {
    border-color: rgba(255, 255, 255, 0.16);
}

.statement-copy h2 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(3.1rem, 5.2vw, 6.2rem);
}

.statement-copy > p:last-child {
    max-width: 720px;
    margin: 48px 0 0;
    padding-left: clamp(0px, 8vw, 130px);
    color: rgba(6, 17, 15, 0.66);
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.statement-art {
    position: relative;
    display: flex;
    align-items: center;
    height: 190px;
    margin-top: 80px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(6, 17, 15, 0.18);
    font-family: var(--display);
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -0.25em;
    line-height: 1;
}

.statement-art i {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 64%;
    height: 9px;
    background: var(--teal);
}

.services {
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background:
        radial-gradient(circle at 77% 22%, rgba(53, 208, 188, 0.26), transparent 24%),
        linear-gradient(120deg, transparent 56%, rgba(255, 255, 255, 0.04) 56.2%, transparent 56.5%);
}

.section-heading {
    position: relative;
    display: grid;
    grid-template-columns: 32% 1fr;
    align-items: end;
    margin-bottom: clamp(70px, 9vw, 130px);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(3.6rem, 6.6vw, 7.2rem);
}

.service-list {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-item {
    position: relative;
    z-index: 0;
    isolation: isolate;
    display: grid;
    grid-template-columns: 11% 32% minmax(240px, 1fr) 50px;
    align-items: center;
    min-height: 148px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: color 220ms ease, padding 220ms ease, background 220ms ease;
}

.service-item::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--teal);
    opacity: 0;
    transition: opacity 220ms ease;
}

.service-item:hover {
    color: var(--ink);
    padding-inline: 22px;
}

.service-item:hover::before {
    opacity: 1;
}

.service-number {
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-item:hover .service-number {
    color: var(--ink);
}

.service-item h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.6vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.service-item p {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.service-item:hover p {
    color: rgba(6, 17, 15, 0.72);
}

.service-arrow {
    justify-self: end;
    font-size: 1.4rem;
    transition: transform 220ms ease;
}

.service-item:hover .service-arrow {
    transform: translate(5px, -5px);
}

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

.projects-heading {
    display: grid;
    grid-template-columns: 23% minmax(0, 1fr) minmax(240px, 28%);
    align-items: end;
    gap: 42px;
    margin-bottom: clamp(60px, 8vw, 110px);
}

.projects-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3.4rem, 5.5vw, 6.3rem);
}

.projects-heading > p {
    margin: 0 0 8px;
    color: rgba(6, 17, 15, 0.6);
}

.project-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, minmax(280px, 41vw));
    gap: 18px;
}

.project-card {
    position: relative;
    padding: 0;
    color: var(--white);
    border: 0;
    background: var(--ink);
    cursor: zoom-in;
    overflow: hidden;
    text-align: left;
}

.project-card-1 {
    grid-row: 1 / 3;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.project-card-1 img {
    object-position: 58% center;
}

.project-card:hover img {
    transform: scale(1.045);
    filter: saturate(0.78);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 13, 12, 0.32), transparent 45%, rgba(3, 13, 12, 0.9));
}

.project-topline {
    position: absolute;
    inset: 26px 28px auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-content {
    position: absolute;
    inset: auto 76px 30px 30px;
    display: block;
}

.project-content strong {
    display: block;
    max-width: 640px;
    font-family: var(--display);
    font-size: clamp(1.65rem, 3vw, 3.3rem);
    font-weight: 720;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.project-card:not(.project-card-1) .project-content strong {
    font-size: clamp(1.45rem, 2.1vw, 2.2rem);
}

.project-content small {
    display: block;
    max-width: 520px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
    line-height: 1.5;
}

.project-open {
    position: absolute;
    right: 28px;
    bottom: 30px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: var(--teal);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 260ms ease, background 260ms ease;
}

.project-card:hover .project-open {
    background: var(--white);
    transform: rotate(90deg);
}

.method {
    color: var(--white);
    background: var(--ink-2);
    overflow: hidden;
}

.method-track {
    position: absolute;
    top: 78px;
    left: -2vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    font-family: var(--display);
    font-size: clamp(5rem, 12vw, 13rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
}

.method-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
    align-items: start;
    gap: clamp(60px, 8vw, 140px);
    padding-top: 110px;
}

.method h2 {
    margin: 72px 0 0;
    font-size: clamp(3.4rem, 5.8vw, 6.6rem);
}

.method-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps li {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps li > span {
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.method-steps h3 {
    margin: -8px 0 6px;
    font-size: 1.65rem;
    letter-spacing: -0.025em;
}

.method-steps p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.94rem;
}

.contact {
    padding: 0;
    color: var(--white);
    background: var(--paper);
}

.contact-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.65fr;
    gap: clamp(70px, 10vw, 170px);
    padding: clamp(80px, 10vw, 150px) clamp(30px, 7vw, 110px);
    background: var(--teal-deep);
    overflow: hidden;
}

.contact-copy,
.contact-details {
    position: relative;
    z-index: 1;
}

.contact .eyebrow {
    color: var(--ink);
}

.contact h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(3.5rem, 6vw, 7.1rem);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 34px 0 40px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.button-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(6, 17, 15, 0.96);
}

.button-light:hover {
    color: var(--ink);
}

.contact-details {
    align-self: end;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-details > div {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-details span {
    display: block;
    margin-bottom: 7px;
    color: rgba(6, 17, 15, 0.68);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-details p,
.contact-details a {
    display: inline-block;
    margin: 0;
    font-size: 0.96rem;
    font-weight: 650;
}

.contact-details a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact-lines {
    position: absolute;
    width: 480px;
    height: 480px;
    top: -270px;
    right: -110px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.contact-lines::before,
.contact-lines::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.contact-lines::before {
    inset: 55px;
}

.contact-lines::after {
    inset: 120px;
}

.site-footer {
    padding: 86px 0 24px;
    color: var(--white);
    background: var(--ink);
}

.footer-main {
    display: grid;
    grid-template-columns: 220px minmax(260px, 1fr) auto;
    align-items: center;
    gap: 60px;
    padding-bottom: 70px;
}

.footer-main img {
    width: auto;
    height: 112px;
}

.footer-main p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
}

.footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 12px 42px;
}

.footer-main nav a {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-main nav a:hover {
    color: var(--teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.36);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-bottom a:hover {
    color: var(--teal);
}

.lightbox {
    position: fixed;
    width: min(92vw, 1500px);
    max-width: none;
    height: min(88vh, 980px);
    max-height: none;
    padding: 0;
    border: 0;
    background: #020807;
    overflow: hidden;
}

.lightbox::backdrop {
    background: rgba(2, 8, 7, 0.92);
    backdrop-filter: blur(12px);
}

.lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--ink);
    border: 0;
    background: var(--teal);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@keyframes hero-scale {
    from { transform: scale(1.045); }
    to { transform: scale(1); }
}

@keyframes scroll-cue {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

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

    .statement-art {
        display: none;
    }

    .projects-heading {
        grid-template-columns: 180px 1fr;
    }

    .projects-heading > p {
        grid-column: 2;
        max-width: 640px;
    }

    .method-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-panel {
        gap: 70px;
    }
}

@media (max-width: 860px) {
    :root {
        --shell: min(90vw, 760px);
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        min-height: 76px;
    }

    .brand {
        justify-self: start;
        height: 60px;
    }

    .brand img {
        height: 54px;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: grid;
        place-content: center;
        gap: 7px;
        width: 48px;
        height: 48px;
        padding: 0;
        color: inherit;
        border: 1px solid rgba(255, 255, 255, 0.24);
        background: transparent;
    }

    .menu-toggle > span:not(.sr-only) {
        width: 22px;
        height: 2px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] > span:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        transform: translateY(-4.5px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        z-index: 1;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
        padding: 110px 5vw 50px;
        color: var(--white);
        background: rgba(6, 17, 15, 0.98);
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav a {
        width: 100%;
        padding: 12px 0;
        font-family: var(--display);
        font-size: clamp(2.4rem, 10vw, 4.4rem);
        font-weight: 750;
        letter-spacing: -0.055em;
        line-height: 1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(3, 13, 12, 0.94), rgba(3, 13, 12, 0.62)), linear-gradient(0deg, rgba(3, 13, 12, 0.88), transparent 56%);
    }

    .hero-media img {
        object-position: 62% center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 134px;
        padding-bottom: 110px;
    }

    .hero-index {
        display: none;
    }

    .hero-footer > span:first-child {
        display: none;
    }

    .hero-footer {
        justify-content: flex-end;
    }

    .statement-grid,
    .section-heading,
    .projects-heading,
    .method-layout,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .statement-grid,
    .section-heading,
    .projects-heading {
        gap: 52px;
    }

    .statement-copy > p:last-child {
        padding-left: 0;
    }

    .section-heading > .section-marker {
        order: -1;
    }

    .service-item {
        grid-template-columns: 56px 1fr 40px;
        min-height: 142px;
    }

    .service-item p {
        grid-column: 2;
        margin-top: 12px;
    }



    .projects-heading > p {
        grid-column: auto;
    }

    .project-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .project-card,
    .project-card-1 {
        grid-row: auto;
        min-height: min(70vw, 540px);
    }

    .method-layout {
        min-width: 0;
        padding-top: 80px;
    }

    .method h2 {
        margin-top: 52px;
    }

    .contact-panel {
        width: 100%;
    }

    .contact-details {
        width: 100%;
    }

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

    .footer-main nav {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100vw - 38px);
    }

    .section {
        padding: 92px 0;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .hero-intro {
        margin-top: 28px;
        font-size: 1rem;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .button {
        justify-content: space-between;
    }

    .eyebrow {
        margin-bottom: 22px;
        font-size: 0.64rem;
        letter-spacing: 0.15em;
    }

    .statement-copy h2,
    .section-heading h2,
    .projects-heading h2,
    .method h2,
    .contact h2 {
        font-size: clamp(2.85rem, 13vw, 4.2rem);
    }

    .service-item {
        grid-template-columns: 40px 1fr 30px;
        gap: 10px;
    }

    .service-item h3 {
        font-size: 1.55rem;
    }

    .service-item p {
        font-size: 0.87rem;
    }

    .project-card,
    .project-card-1 {
        min-height: 122vw;
    }

    .project-topline {
        inset: 20px 20px auto;
        flex-direction: column;
        gap: 4px;
    }

    .project-content {
        inset: auto 64px 22px 22px;
    }

    .project-content small {
        display: none;
    }

    .project-open {
        right: 18px;
        bottom: 20px;
    }

    .method-track {
        top: 48px;
    }

    .method-layout {
        gap: 70px;
    }

    .method-steps li {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .contact-panel {
        gap: 68px;
        padding-inline: 22px;
    }

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

    .footer-main nav {
        grid-column: auto;
    }

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

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
