@font-face {
    font-family: 'DM Sans';
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-regular.ttf') format('truetype')
}

@font-face {
    font-family: 'DM Sans';
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/dm-sans-medium.ttf') format('truetype')
}

:root {
    --navy: #071426;
    --cream: #f5f3ea;
    --gold: #d4af37;
    --muted: #9aa8ba;
    --pad: clamp(24px, 4.45vw, 72px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--navy);
    color: var(--cream);
    font-family: 'DM Sans', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button {
    font: inherit;
    cursor: pointer;
}

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

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

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 7px;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    z-index: 50;
    padding: 12px 18px;
    background: var(--cream);
    color: var(--navy);
}

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

.site-header,
.menu-header {
    height: 100px;
    padding-inline: var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 5;
}

.brand {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -1px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav a {
    position: relative;
    padding: 12px 0;
    font-size: 16px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    padding: 8px 0 8px 12px;
    border: 0;
    background: transparent;
    color: var(--cream);
}

.site-header>.menu-toggle {
    display: none;
}

.menu-label {
    font-size: 14px;
}

.hamburger {
    position: relative;
    display: block;
    width: 28px;
    height: 24px;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 28px;
    height: 1.5px;
    background: currentColor;
    transition: transform 250ms ease;
}

.hamburger span:first-child {
    top: 7px;
}

.hamburger span:last-child {
    top: 15px;
}

.hamburger.is-close span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.hamburger.is-close span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.menu-toggle:hover {
    color: var(--gold);
}

.desktop-status {
    position: absolute;
    right: var(--pad);
    top: 82px;
    max-width: 36ch;
    font-size: 13px;
    color: var(--gold);
}

.hero {
    isolation: isolate;
    height: 100svh;
    min-height: 720px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #07142699 0%, #07142640 35%, #07142666 60%, #071426e6 100%);
}

.hero-role {
    position: absolute;
    top: 30%;
    right: var(--pad);
    width: min(20%, 277px);
}

.hero-role h2 {
    font-size: 19px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0 0 14px;
}

.hero-role p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
}

.hero-title {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 11%;
}

.eyebrow {
    margin: 0 0 15px;
    font-size: 12px;
    color: var(--gold);
}

h1 {
    font-size: clamp(72px, 10.8vw, 164px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.05;
    margin: 0;
    white-space: nowrap;
}

.hero-footer {
    position: absolute;
    bottom: 35px;
    left: var(--pad);
    right: var(--pad);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}

.hero-footer p {
    margin: 0;
}

.hero-footer a {
    color: var(--gold);
}

.menu-dialog {
    position: fixed;
    inset: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 0;
    border: 0;
    background: var(--navy);
    color: var(--cream);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.menu-dialog::backdrop {
    background: var(--navy);
}

.menu-dialog[open] {
    display: flex;
    flex-direction: column;
    animation: menu-in 350ms ease both;
}

.menu-dialog.is-closing {
    animation: menu-out 220ms ease both;
}

.menu-header {
    flex-shrink: 0;
}

.menu-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding: 40px var(--pad) 60px;
}

.menu-intro {
    align-self: start;
    padding-top: 20px;
}

.menu-intro p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.menu-intro .eyebrow {
    color: var(--gold);
    font-size: 12px;
}

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

.menu-link {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    font-size: clamp(48px, 6.5vw, 96px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.045em;
}

.menu-dialog[open] .menu-link {
    animation: link-in 450ms ease both;
}

.menu-link:nth-child(2) {
    animation-delay: 50ms !important;
}

.menu-link:nth-child(3) {
    animation-delay: 100ms !important;
}

.menu-link:nth-child(4) {
    animation-delay: 150ms !important;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 25px var(--pad) 32px;
    border-top: 1px solid #9aa8ba33;
    font-size: 14px;
    color: var(--muted);
}

.menu-footer a:hover {
    color: var(--gold);
}

.menu-status {
    min-height: 24px;
    color: var(--gold);
    font-size: 14px;
    line-height: 1.6;
    max-width: 32ch;
}

@keyframes menu-in {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes menu-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }

}

@keyframes link-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media(max-width:700px) {

    .site-header,
    .menu-header {
        height: 88px;
    }

    .desktop-nav,
    .desktop-status {
        display: none;
    }

    .site-header>.menu-toggle {
        display: flex;
    }

    .brand {
        font-size: 24px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-image {
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .hero-image img {
        object-position: 50% 50%;
    }

    .hero-title {
        top: 490px;
        bottom: auto;
        left: 34px;
        right: 24px;
    }

    .hero-title .eyebrow {
        position: absolute;
        top: -386px;
        bottom: auto;
        margin: 0;
    }

    h1 {
        font-size: clamp(56px, 19vw, 90px);
        line-height: 1;
        white-space: normal;
    }

    h1 span {
        display: block;
    }

    .hero-role {
        top: 675px;
        left: 34px;
        right: 24px;
        width: auto;
    }

    .hero-role h2 {
        font-size: 18px;
    }

    .hero-role p {
        display: none;
    }

    .hero-footer {
        bottom: 26px;
        font-size: 12px;
    }

    .hero-footer p {
        display: none;
    }

    .hero-footer a {
        margin-left: auto;
    }

    .menu-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-block: 24px 40px;
    }

    .menu-intro {
        padding-top: 0;
    }

    .menu-intro p:not(.eyebrow):not(.menu-status) {
        display: none;
    }

    .menu-links {
        gap: 18px;
    }

    .menu-link {
        font-size: clamp(48px, 14vw, 70px);
    }

    .menu-footer {
        flex-direction: column;
        gap: 10px;
        padding-block: 20px;
    }

}

@media(max-width:700px) and (min-height:850px) {
    .hero-title {
        top: 59svh;
    }

    .hero-role {
        top: calc(59svh + 185px);
    }

}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

}

.desktop-nav a,
.menu-links a {
    position: relative;
    text-decoration: none;
    transition: color 200ms ease;
}

.nav-underline {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
}

.desktop-nav .nav-underline {
    bottom: 5px;
}

.desktop-nav a:hover,
.menu-links a:hover,
.desktop-nav a:focus-visible,
.menu-links a:focus-visible,
.desktop-nav a.is-hovered,
.menu-links a.is-hovered {
    color: #d4af37;
}

.desktop-nav a:hover .nav-underline,
.menu-links a:hover .nav-underline,
.desktop-nav a:focus-visible .nav-underline,
.menu-links a:focus-visible .nav-underline,
.desktop-nav a.is-hovered .nav-underline,
.menu-links a.is-hovered .nav-underline,
.desktop-nav a:active .nav-underline,
.menu-links a:active .nav-underline {
    transform: scaleX(1);
}

.desktop-status:empty {
    display: none;
}

.hero-scroll {
    height: calc(max(100svh, 720px) + 65svh);
}

.hero {
    position: sticky;
    top: 0;
}

.hero-image {
    pointer-events: none;
}

#hero-name {
    transform: translate3d(var(--name-x, 0px), 0, 0);
    will-change: transform;
}

@media (max-width: 700px) {
    .hero-scroll {
        height: calc(max(100svh, 760px) + 65svh);
    }

}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll {
        height: auto;
    }

    .hero {
        position: relative;
    }

    #hero-name {
        transform: none;
        will-change: auto;
    }

}

.introduction {
    position: relative;
    background: var(--navy);
    padding: 130px var(--pad) 70px;
}

.intro-inner {
    margin: auto;
    display: grid;
    align-items: center;
}

.intro-copy h2 {
    font-weight: 400;
    letter-spacing: -.04em;
}

.intro-description {
    color: var(--muted);
}

.reveal-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(.22, 1, .36, 1);
}

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

.hero-image {
    opacity: var(--hero-opacity, 1);
}

@media(max-width:700px) {
    .intro-inner {
        grid-template-columns: 1fr;
    }

    .introduction {
        padding-block: 85px;
    }

    .intro-description {
        max-width: none;
    }

}

@media(prefers-reduced-motion:reduce) {
    .reveal-ready {
        opacity: 1;
        transform: none;
    }

    .hero-image {
        opacity: 1;
    }

}

.intro-copy {
    padding-bottom: 120px;
}

@media(min-width:701px) and (max-width:1100px) {
    .intro-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .intro-description {
        font-size: 17px;
    }

}

@media(max-width:700px) {
    .introduction {
        padding: 64px 24px 100px;
    }

    .intro-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .intro-copy {
        order: -1;
    }

    .intro-copy .eyebrow {
        font-size: 10px;
        margin-bottom: 22px;
    }

    .intro-copy h2 {
        line-height: 1.15;
        letter-spacing: -.045em;
    }

    .intro-description {
        line-height: 1.45;
        margin: 0;
    }

}

.intro-scroll {
    position: relative;
}

.intro-period {
    display: inline-block;
}

.featured-work {
    position: relative;
    background: #fff;
    color: #071426;
    padding: 110px var(--pad) 70px;
}

.work-heading h2 {
    letter-spacing: -.045em;
    font-weight: 400;
    margin: 24px 0 0;
}

.work-grid {
    max-width: 1280px;
    margin: auto;
    display: grid;
    align-items: start;
}

.work-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #e3e5db;
}

.work-pjnh {
    grid-column: span 2;
}

.work-turkiye {
    grid-column: span 3;
}

.work-alpha {
    grid-column: span 3;
}

.work-recipe {
    grid-column: span 2;
}

.work-card>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.work-toggle {
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: right;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.work-toggle span {
    background: #071426d9;
    padding: 9px 13px;
    font-size: 12px;
    border-radius: 20px;
}

.work-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    color: #f5f3ea;
    background: linear-gradient(180deg, #07142677, #071426f5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 300ms, transform 400ms, visibility 300ms;
    pointer-events: none;
}

.work-card:focus-within .work-overlay,
.work-card.is-open .work-overlay {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.work-card:focus-within>img,
.work-card.is-open>img {
    transform: scale(1.045);
}

.work-category {
    font-size: 12px;
    line-height: 1.5;
    color: #c4cdd6;
    margin: 0 0 12px;
}

.work-overlay h3 {
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0 0 28px;
}

.work-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.work-actions button {
    pointer-events: auto;
    font-size: 12px;
}

.work-details {
    border: 1px solid #f5f3ea;
    border-radius: 30px;
    padding: 12px 18px;
    color: #071426;
    background: #f5f3ea;
}

.work-details:hover {
    background: #d4af37;
    border-color: #d4af37;
}

.work-visit {
    border: 0;
    padding: 0;
    background: transparent;
    color: #b3bdc8;
    cursor: default;
}

.work-url-note {
    color: #b3bdc8;
    font-size: 10px;
    margin: 16px 0 0;
}

.work-bottom {
    text-align: center;
}

.view-all {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid #071426;
    border-radius: 40px;
    font-size: 14px;
    transition: background 200ms, color 200ms;
}

.view-all:hover {
    background: #071426;
    color: #fff;
}

.project-dialog {
    width: min(580px, calc(100% - 40px));
    max-height: 85svh;
    border: 0;
    padding: 36px;
    background: #f5f3ea;
    color: #071426;
}

.project-dialog::backdrop {
    background: #071426b3;
}

.project-close {
    display: block;
    margin-left: auto;
    margin-bottom: 32px;
    border: 0;
    background: transparent;
    padding: 8px;
}

.project-dialog h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -.03em;
}

.project-dialog p {
    line-height: 1.7;
}

.project-note {
    font-size: 13px;
    color: #536273;
}

body.project-open {
    overflow: hidden;
}

@media(max-width:700px) {
    .featured-work {
        padding: 76px 24px 60px;
    }

    .work-heading {
        margin-bottom: 48px;
    }

    .work-heading h2 {
        font-size: 34px;
    }

    .work-card {
        grid-column: auto;
    }

    .work-overlay {
        padding: 24px;
    }

    .work-overlay h3 {
        font-size: 28px;
    }

    .work-bottom {
        margin-top: 48px;
    }

}

@media(hover:hover) and (pointer:fine) {
    .work-card:hover .work-overlay {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .work-card:hover>img {
        transform: scale(1.045);
    }

}

@media (min-width: 701px) and (hover: hover) and (pointer: fine) {
    .work-toggle span {
        opacity: 0;
    }

    .work-toggle:focus-visible span {
        opacity: 1;
    }

}

.intro-copy {
    padding: 0 0 65px;
}

.intro-copy h2 {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.12;
    margin: 28px 0;
}

.intro-line {
    display: block;
}

.intro-description {
    max-width: 40ch;
    font-size: 18px;
    line-height: 1.7;
}

.intro-copy.reveal-ready {
    transform: none;
}

.intro-copy.reveal-ready .intro-line {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 650ms ease, transform 750ms cubic-bezier(.22, 1, .36, 1);
}

.intro-copy.reveal-ready .intro-line:nth-child(2) {
    transition-delay: 120ms;
}

.intro-copy.is-visible .intro-line {
    opacity: 1;
    transform: none;
}

@media(max-width:700px) {
    .intro-copy {
        padding: 0;
    }

    .intro-copy h2 {
        font-size: clamp(38px, 10.5vw, 58px);
        margin: 24px 0;
    }

    .intro-description {
        font-size: 16px;
    }

}

@media(prefers-reduced-motion:reduce) {
    .intro-copy.reveal-ready .intro-line {
        opacity: 1;
        transform: none;
    }

}

.project-scene {
    position: relative;
    min-width: 0;
}

.intro-copy {
    opacity: 1;
}

.intro-copy.reveal-ready {
    opacity: 1;
}

.featured-work {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.8fr);
    gap: 60px;
    align-items: start;
}

.work-heading {
    text-align: left;
    position: sticky;
    top: 80px;
    margin: 0;
}

.work-heading h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.12;
}

.work-grid {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 36px 24px;
}

.work-pjnh {
    aspect-ratio: .78;
}

.work-turkiye {
    aspect-ratio: 1.12;
    margin-top: 65px;
}

.work-alpha {
    aspect-ratio: 1.15;
}

.work-recipe {
    aspect-ratio: .76;
    margin-top: 55px;
}

.work-bottom {
    grid-column: 2;
    margin-top: 10px;
}

.work-overlay {
    padding: clamp(16px, 2vw, 30px);
}

.work-overlay h3 {
    font-size: clamp(21px, 2vw, 30px);
}

@media(max-width:1000px) {
    .featured-work {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .work-heading {
        position: static;
    }

    .work-heading h2 {
        max-width: none;
    }

    .work-bottom {
        grid-column: 1;
    }

}

@media(max-width:700px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card {
        aspect-ratio: 4 / 5;
    }

    .work-turkiye,
    .work-alpha {
        aspect-ratio: 1.1;
    }

}

.work-heading h2 {
    max-width: none;
}

.work-heading h2>span {
    letter-spacing: -.045em;
}

.work-title-small {
    font-size: clamp(30px, 3vw, 46px);
}

.work-title-large {
    font-size: clamp(52px, 5.5vw, 84px);
    margin-top: 6px;
}

.work-title-medium {
    font-size: clamp(40px, 4vw, 62px);
    margin-top: 8px;
}

@media(max-width:700px) {
    .project-scene {
        margin-inline: 22px;
    }

    .work-title-small {
        font-size: 30px;
    }

    .work-title-large {
        font-size: 58px;
    }

    .work-title-medium {
        font-size: 44px;
    }

}

.intro-inner {
    max-width: 1380px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.3fr);
    gap: clamp(32px, 4vw, 64px);
}

.project-scene {
    width: 100%;
    height: auto;
    aspect-ratio: 1.45;
    margin: 0;
}

@media(max-width:1000px) and (min-width:701px) {
    .intro-inner {
        grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
        gap: 30px;
    }

    .intro-copy h2 {
        font-size: 42px;
    }

}

@media(max-width:700px) {
    .intro-inner {
        gap: 52px;
    }

    .project-scene {
        height: auto;
        aspect-ratio: 1.3;
        margin: 0;
    }

}

.work-heading {
    container-type: inline-size;
}

.work-heading h2 {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: .2em;
    white-space: nowrap;
}

.work-heading h2>span {
    display: inline-block;
    margin-top: 0;
    flex-shrink: 0;
    line-height: 1.15;
}

.work-heading .work-title-small {
    font-size: clamp(22px, 9.6cqi, 50px);
}

.work-heading .work-title-large {
    font-size: clamp(30px, 12.8cqi, 67px);
}

.work-heading .work-title-medium {
    font-size: clamp(25px, 10.9cqi, 57px);
}

.work-heading h2 {
    column-gap: 1.8cqi;
}

@media(max-width:700px) {
    .work-pjnh {
        aspect-ratio: .7;
    }

}

@media(min-width:701px) {
    .work-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 32px 28px;
    }

    .work-pjnh {
        width: 100%;
        grid-column: span 2;
        aspect-ratio: .65;
    }

    .work-turkiye {
        margin-top: 28px;
    }

    .work-recipe {
        margin-top: 28px;
    }

}

@media(max-width:700px) {
    .work-grid {
        gap: 28px;
    }

    .work-card {
        margin-top: 0;
    }

}

.work-actions a.work-visit {
    pointer-events: auto;
    cursor: pointer;
    font-size: 12px;
    color: var(--cream);
}

.work-actions a.work-visit:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.work-actions {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.work-actions a.work-visit {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 4px;
}

.services-section {
    position: relative;
    background: var(--navy);
    color: var(--cream);
    padding: clamp(88px, 10vw, 150px) var(--pad);
}

.services-inner {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
}

.services-heading h2 {
    font-size: clamp(40px, 4.6vw, 68px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.045em;
    margin: 28px 0 24px;
}

.services-heading h2 span {
    color: var(--gold);
}

.services-heading>p:not(.eyebrow) {
    max-width: 28ch;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.services-contact {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    margin-top: 24px;
    padding-block: 12px;
    border-bottom: 1px solid #9aa8ba66;
    font-size: 14px;
    transition: color 200ms, border-color 200ms;
}

.services-contact:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.services-list {
    border-top: 1px solid #9aa8ba40;
}

.service-row {
    padding: 30px 0;
    border-bottom: 1px solid #9aa8ba40;
}

.service-row h3 {
    margin: 0;
    font-weight: 400;
}

.service-trigger {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    align-items: baseline;
    gap: 18px;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    color: var(--cream);
    text-align: left;
    min-height: 44px;
}

.service-number {
    font-size: 11px;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.service-title {
    font-size: clamp(24px, 2.35vw, 34px);
    letter-spacing: -.025em;
    line-height: 1.25;
    transition: color 200ms;
}

.service-symbol {
    font-size: 25px;
    color: var(--gold);
    text-align: center;
    transition: transform 250ms;
}

.service-trigger[aria-expanded="true"] .service-symbol {
    transform: rotate(45deg);
}

.service-trigger:hover .service-title {
    color: var(--gold);
}

.service-description {
    margin: 12px 42px 0 46px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 320ms ease, opacity 320ms ease;
}

.service-panel[hidden] {
    display: none;
}

.services-enhanced .service-panel {
    display: grid;
}

.service-panel>div {
    overflow: hidden;
    min-height: 0;
    padding-inline: 46px 12px;
}

.service-row.is-expanded .service-panel {
    grid-template-rows: 1fr;
    opacity: 1;
}

.service-examples-label {
    margin: 24px 0 10px;
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--gold);
}

.service-examples {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--cream);
}

@media(max-width:700px) {
    .services-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-heading h2 {
        font-size: clamp(40px, 11vw, 54px);
    }

    .service-row {
        padding-block: 26px;
    }

    .service-trigger {
        grid-template-columns: 22px minmax(0, 1fr) 20px;
        gap: 12px;
    }

    .service-title {
        font-size: 25px;
    }

    .service-description {
        margin-left: 34px;
        margin-right: 0;
        font-size: 14px;
    }

    .service-panel>div {
        padding-inline: 34px 0;
    }
}

.process-section {
    background: var(--navy);
    color: var(--cream);
    padding: 0 var(--pad) clamp(90px, 10vw, 150px);
}

.process-inner {
    max-width: 1280px;
    margin: auto;
    border-top: 1px solid #9aa8ba33;
    padding-top: clamp(70px, 8vw, 110px);
}

.process-heading {
    margin-bottom: 70px;
}

.process-heading h2 {
    margin: 26px 0 22px;
    font-weight: 400;
    font-size: clamp(40px, 4.6vw, 68px);
    line-height: 1.12;
    letter-spacing: -.045em;
}

.process-heading h2 span {
    color: var(--gold);
}

.process-heading>p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.process-timeline {
    position: relative;
    --process-progress: 0;
}

.process-track {
    position: absolute;
    left: 24px;
    right: calc(25% - 24px);
    top: 24px;
    height: 1px;
    background: #9aa8ba40;
}

.process-track>span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(var(--process-progress));
    transform-origin: left;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    position: relative;
    padding-right: 32px;
}

.process-marker {
    position: relative;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: var(--navy);
    border: 1px solid #9aa8ba66;
    border-radius: 50%;
    font-size: 12px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    transition: border-color 250ms, color 250ms;
}

.process-step.is-reached .process-marker {
    color: var(--gold);
    border-color: var(--gold);
}

.process-step h3 {
    font-size: clamp(22px, 2.1vw, 30px);
    font-weight: 400;
    letter-spacing: -.025em;
    margin: 28px 0 14px;
}

.process-step p {
    max-width: 28ch;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0;
}

@media(max-width:700px) {
    .process-heading {
        margin-bottom: 45px;
    }

    .process-heading h2 {
        font-size: clamp(40px, 11vw, 54px);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .process-step {
        padding: 0 0 0 68px;
        min-height: 100px;
    }

    .process-marker {
        position: absolute;
        left: 0;
        top: 0;
    }

    .process-step h3 {
        margin: 6px 0 12px;
        font-size: 25px;
    }

    .process-step p {
        max-width: none;
    }

    .process-track {
        left: 24px;
        right: auto;
        top: 24px;
        width: 1px;
        height: var(--process-track-height, calc(100% - 48px));
    }

    .process-track>span {
        transform: scaleY(var(--process-progress));
        transform-origin: top;
    }
}

@media(prefers-reduced-motion:reduce) {
    .process-track>span {
        transform: none;
    }

    .process-marker {
        color: var(--gold);
        border-color: var(--gold);
    }
}

.closing-inner {
    max-width: 1280px;
    margin-inline: auto;
}

.experiments-section {
    padding: clamp(80px, 10vw, 140px) var(--pad);
    background: var(--cream);
    color: var(--navy);
}

.experiments-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
    margin: 28px 0 58px;
}

.experiments-heading h2 {
    margin: 0;
    font-size: clamp(40px, 4.8vw, 70px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.045em;
}

.experiments-heading h2 em {
    font-style: normal;
    color: #867025;
}

.experiments-heading>p {
    max-width: 37ch;
    line-height: 1.8;
    color: #536273;
    margin: 0;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #07142633;
    border-left: 1px solid #07142633;
}

.technology-card {
    padding: 30px;
    border-right: 1px solid #07142633;
    border-bottom: 1px solid #07142633;
    transition: background 220ms;
}

.technology-index {
    font-size: 11px;
    color: #867025;
}

.technology-card h3 {
    font-size: clamp(23px, 2.3vw, 32px);
    font-weight: 400;
    letter-spacing: -.03em;
    margin: 32px 0 12px;
}

.technology-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #536273;
    margin: 0;
}

.technology-card:hover {
    background: #eae6dc;
}

.toolkit-note {
    color: #536273;
    font-size: 12px;
    margin-top: 24px;
    line-height: 1.7;
}

.contact-section {
    padding: clamp(90px, 11vw, 160px) var(--pad) 90px;
    background: var(--navy);
    text-align: center;
}

.contact-question {
    font-size: 20px;
    color: var(--muted);
    margin: 36px 0 22px;
}

.contact-section h2 {
    font-size: clamp(60px, 9vw, 132px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.055em;
    margin: 0;
}

.contact-section h2 em {
    color: var(--gold);
    font-style: normal;
}

.contact-description {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 32px 0;
}

.contact-cta {
    display: inline-flex;
    gap: 50px;
    padding: 18px 30px;
    background: var(--cream);
    color: var(--navy);
    border-radius: 40px;
    transition: background 200ms, transform 200ms;
}

.contact-cta:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.site-footer {
    padding: 0 var(--pad) 30px;
    background: var(--navy);
    color: var(--cream);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 0;
    border-top: 1px solid #9aa8ba33;
}

.footer-top nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 14px;
}

.back-top {
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid #9aa8ba26;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.site-footer a:hover {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.privacy-page {
    max-width: 800px;
    margin: auto;
    padding: 70px 24px 100px;
}

.privacy-page h1 {
    font-size: clamp(40px, 7vw, 68px);
    white-space: normal;
    margin: 30px 0;
}

.privacy-page h2 {
    font-size: 25px;
    font-weight: 400;
    margin-top: 35px;
}

.privacy-page p {
    line-height: 1.8;
    color: var(--muted);
}

.privacy-page a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media(max-width:700px) {
    .experiments-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 36px;
    }

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

    .technology-card {
        padding: 22px 16px;
    }

    .technology-card h3 {
        font-size: 23px;
    }

    .contact-question {
        font-size: 17px;
    }

    .contact-description br {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .footer-top nav {
        gap: 22px;
    }

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #9aa8ba55;
    border-radius: 50%;
    background: transparent;
    color: var(--cream);
    transition: color 200ms, border-color 200ms, transform 200ms;
}

.social-link:disabled {
    cursor: default;
    opacity: .65;
}

.social-link:not(:disabled):hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.contact-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.contact-socials .social-link {
    color: var(--cream);
    cursor: pointer;
}

.contact-socials .social-link:hover,
.contact-socials .social-link:focus-visible {
    color: var(--gold);
    background: #d4af3714;
    border-color: var(--gold);
    transform: translateY(-4px);
}

.technology-grid {
    align-items: start;
    border: 0;
    gap: 20px;
}

details.technology-card {
    padding: 0;
    border: 1px solid #07142633;
}

.technology-card summary {
    padding: 30px;
    list-style: none;
    cursor: pointer;
}

.technology-card summary::-webkit-details-marker {
    display: none;
}

.technology-card summary:focus-visible {
    outline: 2px solid #867025;
    outline-offset: -3px;
}

.experiment-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    margin-top: 25px;
    color: #867025;
}

.experiment-toggle>span {
    font-size: 22px;
    transition: transform 220ms;
}

.technology-card[open] .experiment-toggle>span {
    transform: rotate(45deg);
}

.experiment-list {
    margin: 0 30px;
    border-top: 1px solid #07142626;
    padding: 22px 0;
}

.experiment-list .experiment-empty {
    font-size: 13px;
}

.experiment-item+.experiment-item {
    border-top: 1px solid #07142626;
    margin-top: 20px;
    padding-top: 20px;
}

.experiment-item h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
}

.experiment-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
    font-size: 13px;
}

.experiment-links a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.experiment-links a:hover {
    color: #867025;
}

@media(max-width:700px) {
    .technology-card summary {
        padding: 22px 16px;
    }

    .experiment-list {
        margin-inline: 16px;
    }
}

.scroll-entrance {
    opacity: 0;
    translate: 0 22px;
    transition: opacity 750ms ease var(--entrance-delay, 0ms), translate 850ms cubic-bezier(.22, 1, .36, 1) var(--entrance-delay, 0ms);
}

.scroll-entrance.has-entered {
    opacity: 1;
    translate: 0 0;
}

@media(prefers-reduced-motion:reduce) {
    .scroll-entrance {
        opacity: 1;
        translate: none;
        transition: none;
    }
}

.project-scene.organise-demo {
    height: auto;
    aspect-ratio: auto;
    width: 100%;
    padding: 26px;
    border: 1px solid #9aa8ba33;
    border-radius: 20px;
    background: #0c1d30;
}

.demo-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: 12px;
}

.demo-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.demo-board {
    height: 310px;
    position: relative;
    margin-block: 30px;
}

.demo-tile {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border-radius: 16px;
    color: #071426;
    overflow: hidden;
}

.demo-tile {
    position: absolute;
    width: 42%;
    height: 43%;
    transition: left 700ms cubic-bezier(.22, 1, .36, 1), top 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.demo-tile span {
    font-size: 10px;
    opacity: .65;
}

.demo-tile strong {
    font-size: clamp(21px, 2.4vw, 32px);
    font-weight: 400;
    letter-spacing: -.03em;
}

.demo-tile i {
    width: 35%;
    height: 2px;
    background: currentColor;
    opacity: .3;
}

.demo-tile-0 {
    background: #d4af37;
}

.demo-tile-1 {
    background: #d5ddd6;
}

.demo-tile-2 {
    background: #b5c9d8;
}

.demo-tile-3 {
    background: #e6d8cd;
}

.demo-tile-0 {
    left: 4%;
    top: 4%;
    transform: rotate(-9deg);
}

.demo-tile-1 {
    left: 53%;
    top: 0;
    transform: rotate(8deg);
}

.demo-tile-2 {
    left: 0;
    top: 56%;
    transform: rotate(6deg);
}

.demo-tile-3 {
    left: 55%;
    top: 51%;
    transform: rotate(-7deg);
}

.is-organised .demo-tile {
    transform: rotate(0);
}

.is-organised .demo-tile-0 {
    left: 5%;
    top: 3%;
}

.is-organised .demo-tile-1 {
    left: 53%;
    top: 3%;
}

.is-organised .demo-tile-2 {
    left: 5%;
    top: 53%;
}

.is-organised .demo-tile-3 {
    left: 53%;
    top: 53%;
}

.demo-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.organise-button {
    flex-shrink: 0;
    background: var(--cream);
    color: var(--navy);
    border: 0;
    border-radius: 30px;
    padding: 14px 22px;
    font-size: 13px;
}

.organise-button:hover {
    background: var(--gold);
}

.demo-status {
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

@media(max-width:700px) {
    .project-scene.organise-demo {
        padding: 20px;
    }

    .demo-board {
        height: 270px;
    }

    .demo-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .demo-tile {
        padding: 14px;
    }
}

.intro-copy {
    padding-bottom: 0;
}

.demo-tile {
    transition: left 700ms cubic-bezier(.22, 1, .36, 1), top 700ms cubic-bezier(.22, 1, .36, 1), width 700ms cubic-bezier(.22, 1, .36, 1), height 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.ui-component {
    width: 100%;
    height: 100%;
    min-height: 0;
}

.ui-component i,
.ui-component span {
    display: block;
    margin: 0;
    width: auto;
    height: auto;
    opacity: 1;
    background: none;
}

.ui-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ui-logo {
    font-size: 24px;
    letter-spacing: -.07em;
}

.ui-nav-lines {
    display: flex;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.ui-nav-lines i {
    width: 14%;
    min-width: 6px;
    height: 3px;
    border-radius: 3px;
    background: #07142666;
}

.ui-component .ui-nav-button {
    width: 18%;
    height: 14px;
    background: #071426;
    border-radius: 5px;
}

.ui-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
}

.ui-component .ui-kicker {
    width: 23%;
    height: 3px;
    background: #07142655;
}

.ui-headline i {
    width: 90%;
    height: 7px;
    margin-bottom: 4px;
    background: #071426;
    border-radius: 2px;
}

.ui-headline i:last-child {
    width: 60%;
}

.ui-copy-lines i {
    width: 85%;
    height: 3px;
    margin-bottom: 4px;
    background: #07142644;
}

.ui-copy-lines i:last-child {
    width: 70%;
}

.ui-component .ui-cta {
    width: 35%;
    height: 12px;
    background: #071426;
    border-radius: 4px;
}

.ui-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ui-data-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ui-data-top span {
    width: 40%;
    height: 5px;
    background: #07142688;
}

.ui-data-top b {
    font-size: 16px;
    font-weight: 400;
}

.ui-chart {
    flex: 1;
    display: flex;
    gap: 8%;
    align-items: flex-end;
    min-height: 20px;
    border-bottom: 1px solid #07142644;
}

.ui-chart i {
    flex: 1;
    height: 40%;
    background: #07142699;
    border-radius: 3px 3px 0 0;
}

.ui-chart i:nth-child(2) {
    height: 65%;
}

.ui-chart i:nth-child(3) {
    height: 50%;
}

.ui-chart i:nth-child(4) {
    height: 82%;
}

.ui-chart i:nth-child(5) {
    height: 100%;
}

.ui-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 8px;
}

.ui-gallery i {
    height: 100%;
    border-radius: 5px;
    background: #947f7099;
}

.ui-gallery i:nth-child(2) {
    background: #526e7a99;
}

.ui-gallery i:nth-child(3) {
    background: #8b956c99;
}

.is-organised .demo-tile-0 {
    left: 3%;
    top: 2%;
    width: 94%;
    height: 16%;
    padding-block: 10px;
}

.is-organised .demo-tile-1 {
    left: 3%;
    top: 22%;
    width: 53%;
    height: 44%;
}

.is-organised .demo-tile-2 {
    left: 60%;
    top: 22%;
    width: 37%;
    height: 44%;
}

.is-organised .demo-tile-3 {
    left: 3%;
    top: 70%;
    width: 94%;
    height: 28%;
    padding: 12px;
}

@media(max-width:700px) {
    .ui-content {
        gap: 6px;
    }

    .ui-headline i {
        height: 5px;
    }

    .ui-navigation {
        gap: 6px;
    }

    .ui-logo {
        font-size: 20px;
    }
}

.intro-scroll {
    height: auto;
}

.intro-scroll .introduction {
    position: relative;
    top: auto;
    min-height: 0;
}