@charset "UTF-8";

@font-face {
    font-family: "Cruz Sans";
    src: url("../css/fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Cruz Sans";
    src: url("../css/fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Cruz Sans";
    src: url("../css/fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --ink: #08131e;
    --ink-raised: #0d1d2d;
    --ink-soft: #142b3f;
    --paper: #edf4f0;
    --paper-muted: #b2c2bf;
    --paper-faint: #718689;
    --teal: #6cebd1;
    --teal-dark: #2da994;
    --acid: #d8f36a;
    --line: rgba(237, 244, 240, 0.14);
    --line-dark: rgba(8, 19, 30, 0.15);
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Cruz Sans", "Helvetica Neue", Arial, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --shell: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--ink);
    scroll-behavior: smooth;
}

body.v5-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.v5-page.modal-open {
    overflow: hidden;
}

.v5-page ::selection {
    background: var(--teal);
    color: var(--ink);
}

.v5-page a {
    color: inherit;
    text-decoration: none;
}

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

.v5-page button {
    color: inherit;
    font: inherit;
}

.section-shell {
    width: min(100%, var(--shell));
    margin-inline: auto;
    padding-inline: clamp(24px, 5vw, 80px);
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 16px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 999px;
    background: var(--teal);
    color: var(--ink) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 180ms var(--ease);
}

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

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(100%, var(--shell));
    min-height: 86px;
    margin-inline: auto;
    padding: 20px clamp(24px, 5vw, 80px);
    transition: background 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.site-header::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: calc((100vw - 100%) / -2);
    bottom: 0;
    left: calc((100vw - 100%) / -2);
    border-bottom: 1px solid transparent;
    background: transparent;
    content: "";
    transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled::before {
    border-color: var(--line);
    background: rgba(8, 19, 30, 0.82);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.wordmark {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    width: fit-content;
    color: var(--paper);
}

.wordmark-mark {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--ink);
}

.wordmark-mark svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2.8;
}

.wordmark-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.wordmark-text span {
    color: var(--teal);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
}

.nav-link,
.header-availability,
.filter-button,
.text-link,
.social-links a {
    transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.nav-link {
    position: relative;
    padding: 10px 0;
    color: var(--paper-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--teal);
    content: "";
    transition: transform 240ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--paper);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-availability {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
    color: var(--paper-muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-availability:hover {
    color: var(--teal);
}

.availability-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(108, 235, 209, 0.09), 0 0 18px rgba(108, 235, 209, 0.72);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 84px;
    min-height: 44px;
    margin: 0;
    padding: 8px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle-label {
    color: var(--paper-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.menu-toggle-icon {
    display: grid;
    gap: 5px;
}

.menu-toggle-icon span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--teal);
    transition: transform 240ms var(--ease);
}

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

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

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.87fr);
    grid-template-rows: 1fr auto;
    gap: 36px clamp(40px, 7vw, 112px);
    min-height: min(880px, 100vh);
    padding-top: clamp(140px, 17vh, 190px);
    padding-bottom: clamp(70px, 9vh, 110px);
}

.hero::after {
    position: absolute;
    top: 100%;
    right: clamp(24px, 5vw, 80px);
    width: 1px;
    height: 110px;
    background: linear-gradient(var(--teal), transparent);
    content: "";
    opacity: 0.55;
}

.hero-copy {
    align-self: center;
    max-width: 700px;
    padding-bottom: 34px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    flex: 0 0 auto;
    background: currentColor;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-main h2,
.modal-copy h2 {
    margin: 0;
    color: var(--paper);
    font-size: clamp(58px, 7.7vw, 126px);
    font-weight: 500;
    letter-spacing: -0.09em;
    line-height: 0.88;
}

.hero h1 em,
.section-heading h2 em,
.about-copy h2 em,
.contact-main h2 em,
.statement em,
.modal-copy h2 em {
    color: var(--teal);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.08em;
}

.hero-period {
    color: var(--acid);
}

.hero-intro {
    max-width: 410px;
    margin: 38px 0 0;
    color: var(--paper-muted);
    font-size: 15px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

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

.button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform 240ms var(--ease);
}

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

.button:hover svg {
    transform: translateX(4px);
}

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

.button--primary:hover {
    background: var(--acid);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 11px;
    font-weight: 700;
}

.text-link span {
    color: var(--teal);
    font-size: 16px;
    line-height: 1;
    transition: transform 180ms ease;
}

.text-link:hover {
    border-color: var(--teal);
    color: var(--paper);
}

.text-link:hover span {
    transform: translate(2px, -2px);
}

.hero-art {
    position: relative;
    align-self: center;
    min-height: clamp(400px, 46vw, 580px);
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(140deg, rgba(108, 235, 209, 0.06), transparent 34%),
        linear-gradient(40deg, #0a1827, #102c3d 55%, #12243a);
}

.hero-art::before,
.hero-art::after {
    position: absolute;
    background: var(--line);
    content: "";
}

.hero-art::before {
    top: 0;
    bottom: 0;
    left: 28%;
    width: 1px;
}

.hero-art::after {
    top: 36%;
    right: 0;
    left: 0;
    height: 1px;
}

.hero-art-grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: linear-gradient(rgba(108, 235, 209, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 235, 209, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(120deg, transparent 4%, #000 45%, transparent 92%);
}

.hero-art-orb {
    position: absolute;
    top: 45%;
    left: 52%;
    width: min(29vw, 330px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 31% 25%, #d9fff4 0 2%, #6cebd1 16%, rgba(45, 169, 148, 0.9) 38%, rgba(11, 63, 73, 0.7) 64%, transparent 70%);
    box-shadow: 0 0 100px rgba(108, 235, 209, 0.22), inset -20px -20px 60px rgba(8, 19, 30, 0.55);
    opacity: 0.92;
}

.hero-art-orb::after {
    position: absolute;
    inset: -18%;
    border: 1px solid rgba(108, 235, 209, 0.45);
    border-radius: 50%;
    content: "";
}

.hero-sphere-canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-art-card {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(237, 244, 240, 0.22);
    background: rgba(8, 19, 30, 0.62);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.hero-art-card--top {
    top: 11%;
    right: 9%;
    width: 190px;
}

.hero-art-card--bottom {
    bottom: 10%;
    left: 8%;
    width: 165px;
    color: var(--paper-muted);
    font-size: 11px;
    line-height: 1.4;
}

.hero-art-card strong {
    color: var(--paper);
    font-size: 12px;
    line-height: 1.45;
}

.micro-label,
.hero-art-index,
.hero-art-caption {
    color: var(--teal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-art-index {
    color: var(--acid);
}

.hero-art-caption {
    position: absolute;
    right: 9%;
    bottom: 6%;
    color: var(--paper-faint);
    font-size: 8px;
}

.hero-meta {
    display: grid;
    grid-column: 1 / 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-self: end;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--paper-muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.meta-number {
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
}

.scroll-cue {
    position: absolute;
    right: clamp(24px, 5vw, 80px);
    bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--paper-faint);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-cue-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(var(--teal), transparent);
}

.statement-band {
    background: var(--teal);
    color: var(--ink);
}

.statement-band-inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: 40px;
    padding-top: clamp(52px, 7vw, 95px);
    padding-bottom: clamp(58px, 8vw, 110px);
}

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

.statement {
    max-width: 770px;
    margin: -8px 0 0;
    font-size: clamp(28px, 4vw, 57px);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 1.03;
}

.statement em {
    color: var(--ink);
}

.work-section {
    padding-top: clamp(110px, 14vw, 200px);
    padding-bottom: clamp(110px, 14vw, 190px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.48fr);
    align-items: end;
    gap: 40px;
}

.section-heading h2,
.about-copy h2,
.contact-main h2 {
    font-size: clamp(50px, 6vw, 92px);
}

.section-note {
    max-width: 280px;
    margin: 0 0 7px auto;
    color: var(--paper-muted);
    font-size: 13px;
    line-height: 1.75;
}

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

.carousel-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(390px, 47vw, 600px);
    min-height: 390px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    perspective: 1200px;
    touch-action: pan-y;
    transition: opacity 180ms ease, transform 420ms var(--ease);
    user-select: none;
}

.work-carousel.is-switching .carousel-stage {
    opacity: 0.45;
    transform: scale(0.985);
}

.carousel-stage::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(52vw, 600px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(108, 235, 209, 0.17);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(108, 235, 209, 0.025), 0 0 0 84px rgba(108, 235, 209, 0.02);
    content: "";
    pointer-events: none;
}

.carousel-instruction {
    position: absolute;
    z-index: 1;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--paper-faint);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.carousel-instruction span {
    margin-left: 8px;
    color: var(--teal);
    font-size: 14px;
    letter-spacing: 0;
}

.carousel-card {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width: clamp(220px, 25vw, 340px);
    height: clamp(300px, 39vw, 500px);
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(237, 244, 240, 0.2);
    border-radius: 22px;
    background: var(--ink-raised);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.24);
    color: var(--paper);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transform: translate(-50%, -50%) scale(0.86);
    transform-origin: center center;
    transition: box-shadow 220ms ease, border-color 220ms ease;
    will-change: transform, opacity;
}

.carousel-card.is-current {
    border-color: rgba(108, 235, 209, 0.52);
    box-shadow: 0 32px 75px rgba(0, 0, 0, 0.36), 0 0 55px rgba(108, 235, 209, 0.1);
}

.carousel-card:hover {
    border-color: var(--teal);
}

.carousel-card:focus-visible {
    outline: 2px solid var(--acid);
    outline-offset: 7px;
}

.carousel-card-media,
.carousel-card-media img,
.carousel-card-shade {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-card-media {
    background: linear-gradient(145deg, #183a49, #0a1827);
}

.carousel-card-media img {
    object-fit: cover;
    filter: saturate(0.82);
    transition: transform 700ms var(--ease), filter 500ms ease;
}

.carousel-card:hover .carousel-card-media img,
.carousel-card:focus-visible .carousel-card-media img {
    filter: saturate(1.02);
    transform: scale(1.06);
}

.carousel-card-shade {
    background: linear-gradient(180deg, rgba(4, 12, 19, 0.1) 25%, rgba(4, 12, 19, 0.78) 100%);
    pointer-events: none;
}

.carousel-card-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
    padding: 7px 10px;
    border: 1px solid rgba(237, 244, 240, 0.28);
    border-radius: 999px;
    background: rgba(8, 19, 30, 0.48);
    color: var(--paper);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.carousel-card-copy {
    position: absolute;
    z-index: 2;
    right: 23px;
    bottom: 24px;
    left: 23px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    opacity: var(--copy-opacity, 1);
    transition: opacity 240ms ease;
}

.carousel-card-index {
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.carousel-card-copy strong {
    max-width: 100%;
    color: var(--paper);
    font-size: clamp(19px, 2.1vw, 28px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.carousel-card-copy > span:last-child {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(237, 244, 240, 0.7);
    font-size: 11px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.carousel-arrow {
    position: absolute;
    z-index: 120;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    transform: translateY(-50%);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(8, 19, 30, 0.72);
    color: var(--paper);
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.carousel-arrow:hover {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--ink);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.94);
}

.carousel-arrow--prev {
    left: clamp(18px, 5vw, 72px);
}

.carousel-arrow--next {
    right: clamp(18px, 5vw, 72px);
}

.carousel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
    color: var(--paper-faint);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.carousel-footer strong {
    color: var(--teal);
}

.carousel-footer-note {
    color: var(--paper-faint);
}

.work-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: clamp(65px, 8vw, 105px) 0 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}

.filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.filter-button {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--paper-faint);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-button:hover,
.filter-button.is-active {
    border-color: var(--teal);
    color: var(--teal);
}

.work-count {
    color: var(--paper-faint);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.work-count span {
    color: var(--teal);
}

.project-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 32px);
}

.project-card {
    min-width: 0;
    transition: opacity 220ms ease, transform 420ms var(--ease);
    will-change: opacity, transform;
}

.project-card.is-hidden {
    display: none;
}

.project-card.is-filter-leaving {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.96);
}

.project-card.is-filter-entering {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    transition-delay: var(--filter-delay, 0ms);
}

.project-grid.is-filtering .project-card-button {
    pointer-events: none;
}

.project-card--large {
    grid-column: span 7;
}

.project-card--tall {
    grid-column: span 5;
}

.project-card--wide {
    grid-column: span 8;
}

.project-card--photo {
    grid-column: span 4;
}

.project-card--photo-offset {
    grid-column: 9 / -1;
    margin-top: 90px;
}

.project-card-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.project-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.44 / 1;
    background: var(--ink-raised);
}

.project-card--tall .project-image-wrap {
    aspect-ratio: 0.92 / 1;
}

.project-card--wide .project-image-wrap {
    aspect-ratio: 1.8 / 1;
}

.project-card--photo .project-image-wrap {
    aspect-ratio: 0.9 / 1;
}

.project-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82);
    transition: transform 700ms var(--ease), filter 500ms ease;
}

.project-card--large .project-image {
    object-position: center;
}

.project-card--photo .project-image {
    filter: saturate(0.68) contrast(1.08);
}

.project-card-button:hover .project-image,
.project-card-button:focus-visible .project-image {
    transform: scale(1.045);
    filter: saturate(1) contrast(1.03);
}

.project-hover {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    transform: translateY(14px);
    background: var(--teal);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 260ms ease, transform 320ms var(--ease);
}

.project-card-button:hover .project-hover,
.project-card-button:focus-visible .project-hover {
    transform: translateY(0);
    opacity: 1;
}

.project-hover-arrow,
.project-arrow {
    font-size: 18px;
    line-height: 1;
}

.project-info {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    padding-top: 17px;
}

.project-index {
    padding-top: 3px;
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
}

.project-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.project-label {
    color: var(--paper-faint);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-title {
    color: var(--paper);
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.project-arrow {
    padding-top: 1px;
    color: var(--paper-faint);
    transition: color 180ms ease, transform 220ms var(--ease);
}

.project-card-button:hover .project-arrow,
.project-card-button:focus-visible .project-arrow {
    color: var(--teal);
    transform: translate(2px, -2px);
}

.empty-state {
    padding: 28px 0;
    color: var(--paper-muted);
}

.about-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(55px, 10vw, 150px);
    padding-top: clamp(90px, 12vw, 170px);
    padding-bottom: clamp(110px, 15vw, 210px);
    border-top: 1px solid var(--line);
}

.about-image-wrap {
    position: relative;
    max-width: 460px;
    margin-left: clamp(0px, 4vw, 58px);
}

.about-image-wrap::before {
    position: absolute;
    z-index: -1;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;
    border: 1px solid var(--teal-dark);
    content: "";
}

.about-image-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 0.82 / 1;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.06);
}

.about-image-note {
    position: absolute;
    right: -22px;
    bottom: 23px;
    padding: 11px 13px;
    background: var(--acid);
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-transform: uppercase;
}

.about-copy {
    max-width: 600px;
}

.about-copy h2 {
    margin-bottom: 38px;
}

.about-copy > p:not(.eyebrow) {
    max-width: 510px;
    margin: 0 0 18px;
    color: var(--paper-muted);
    font-size: 14px;
    line-height: 1.85;
}

.about-copy .about-lead {
    color: var(--paper);
    font-size: 17px;
    line-height: 1.65;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 510px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.about-details div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    color: var(--teal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-details strong {
    color: var(--paper);
    font-size: 12px;
    font-weight: 500;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 35px;
}

.social-links a {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 11px;
    font-weight: 700;
}

.social-links a span {
    color: var(--teal);
    font-size: 15px;
}

.social-links a:hover {
    border-color: var(--teal);
    color: var(--paper);
}

.contact-section {
    position: relative;
    min-height: 620px;
    padding-top: clamp(90px, 11vw, 150px);
    padding-bottom: 34px;
    overflow: hidden;
    background: var(--teal);
    color: var(--ink);
}

.contact-section::before {
    position: absolute;
    top: -38%;
    right: -8%;
    width: 60%;
    aspect-ratio: 1;
    border: 1px solid rgba(8, 19, 30, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(8, 19, 30, 0.025), 0 0 0 120px rgba(8, 19, 30, 0.025);
    content: "";
}

.contact-kicker {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-kicker-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: currentColor;
}

.contact-main {
    position: relative;
    max-width: 850px;
    margin-top: clamp(70px, 10vw, 125px);
}

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

.contact-main h2 em {
    color: var(--ink-soft);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 55px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(8, 19, 30, 0.35);
    color: var(--ink);
    font-size: clamp(14px, 1.7vw, 20px);
    font-weight: 500;
    letter-spacing: -0.04em;
    transition: border-color 180ms ease, color 180ms ease;
}

.contact-email span {
    font-size: 22px;
    transition: transform 180ms ease;
}

.contact-email:hover {
    border-color: var(--ink);
}

.contact-email:hover span {
    transform: translate(3px, -3px);
}

.contact-footer {
    position: absolute;
    right: clamp(24px, 5vw, 80px);
    bottom: 34px;
    left: clamp(24px, 5vw, 80px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(8, 19, 30, 0.24);
    color: var(--ink-soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-footer a {
    transition: opacity 180ms ease;
}

.contact-footer a:hover {
    opacity: 0.55;
}

.project-modal {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 240ms, opacity 240ms ease;
}

.project-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 16, 0.82);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.modal-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    width: min(100%, 980px);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    transform: translateY(18px) scale(0.98);
    background: var(--ink-raised);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    transition: transform 400ms var(--ease);
}

.project-modal.is-open .modal-panel {
    transform: translateY(0) scale(1);
}

.modal-image-wrap {
    min-height: 420px;
    background: var(--ink);
}

.modal-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.modal-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 5vw, 65px);
}

.modal-copy .eyebrow {
    margin-bottom: 24px;
}

.modal-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 4.2vw, 58px);
}

.modal-copy > p:not(.eyebrow) {
    margin: 0 0 32px;
    color: var(--paper-muted);
    font-size: 13px;
    line-height: 1.8;
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(237, 244, 240, 0.3);
    border-radius: 50%;
    background: rgba(8, 19, 30, 0.65);
    color: var(--paper);
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
    transition: background 180ms ease, color 180ms ease;
}

.modal-close:hover {
    background: var(--teal);
    color: var(--ink);
}

.project-modal[aria-hidden="true"] .modal-close,
.project-modal[aria-hidden="true"] .modal-backdrop {
    pointer-events: none;
}

:focus-visible {
    outline: 2px solid var(--acid);
    outline-offset: 5px;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js-enabled .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 700ms ease, transform 700ms var(--ease);
}

.reveal--late {
    transition-delay: 100ms;
}

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

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        top: calc(100% - 1px);
        right: clamp(24px, 5vw, 80px);
        left: clamp(24px, 5vw, 80px);
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 10px 20px;
        border: 1px solid var(--line);
        background: rgba(8, 19, 30, 0.96);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 240ms var(--ease);
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-link:last-child {
        border-bottom: 0;
    }

    .nav-link::after {
        display: none;
    }

    .header-availability {
        display: none;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(54px, 9vw, 90px);
    }

    .hero-art {
        min-height: 430px;
    }

    .hero-art-orb {
        width: min(31vw, 265px);
    }

    .statement-band-inner {
        grid-template-columns: 1fr 1.5fr;
    }

    .project-card--large,
    .project-card--wide {
        grid-column: span 7;
    }

    .project-card--tall,
    .project-card--photo {
        grid-column: span 5;
    }

    .project-card--photo-offset {
        grid-column: 8 / -1;
    }

    .about-section {
        gap: 65px;
    }
}

@media (max-width: 700px) {
    .site-header {
        min-height: 74px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .site-nav {
        right: 20px;
        left: 20px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-top: 125px;
        padding-bottom: 64px;
    }

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

    .hero h1 {
        font-size: clamp(53px, 15.3vw, 82px);
    }

    .hero-intro {
        max-width: 340px;
        margin-top: 28px;
    }

    .hero-art {
        width: 100%;
        min-height: 390px;
    }

    .hero-art-orb {
        width: 220px;
    }

    .hero-art-card--top {
        top: 9%;
        right: 6%;
    }

    .hero-art-card--bottom {
        bottom: 8%;
        left: 6%;
    }

    .hero-meta {
        width: 100%;
        padding-top: 24px;
    }

    .meta-item {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        font-size: 9px;
        line-height: 1.3;
    }

    .scroll-cue {
        display: none;
    }

    .hero::after {
        height: 64px;
    }

    .statement-band-inner,
    .section-heading,
    .about-section {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .statement-band-inner {
        gap: 20px;
    }

    .statement {
        margin-top: 0;
    }

    .section-heading {
        gap: 26px;
    }

    .section-note {
        max-width: 370px;
        margin: 0;
    }

    .carousel-stage {
        height: 425px;
        min-height: 425px;
    }

    .carousel-stage::before {
        width: 290px;
    }

    .carousel-instruction {
        top: 20px;
    }

    .carousel-card {
        width: min(68vw, 260px);
        height: min(96vw, 345px);
        border-radius: 18px;
    }

    .carousel-card-badge {
        top: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
        padding: 6px 8px;
        font-size: 7px;
    }

    .carousel-card-copy {
        right: 17px;
        bottom: 18px;
        left: 17px;
        gap: 6px;
    }

    .carousel-card-copy strong {
        font-size: 21px;
    }

    .carousel-card-copy > span:last-child {
        font-size: 10px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .carousel-arrow--prev {
        left: 12px;
    }

    .carousel-arrow--next {
        right: 12px;
    }

    .carousel-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .work-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 52px;
    }

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

    .project-card--large,
    .project-card--tall,
    .project-card--wide,
    .project-card--photo,
    .project-card--photo-offset {
        grid-column: span 2;
        margin-top: 0;
    }

    .project-card--tall .project-image-wrap,
    .project-card--photo .project-image-wrap {
        aspect-ratio: 1.14 / 1;
    }

    .project-hover {
        display: none;
    }

    .about-section {
        gap: 65px;
    }

    .about-image-wrap {
        width: calc(100% - 22px);
        max-width: 430px;
        margin-inline: 0;
    }

    .about-copy h2 {
        margin-bottom: 28px;
    }

    .contact-section {
        min-height: 610px;
    }

    .contact-footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
    }

    .contact-footer a {
        grid-column: 1 / -1;
    }

    .modal-panel {
        display: block;
        max-height: calc(100vh - 32px);
    }

    .modal-image-wrap,
    .modal-image-wrap img {
        min-height: 250px;
        max-height: 43vh;
    }

    .modal-copy {
        padding: 35px 26px 40px;
    }
}

@media (max-width: 420px) {
    .section-shell {
        padding-inline: 20px;
    }

    .site-header {
        padding-inline: 20px;
    }

    .hero h1 {
        font-size: 16vw;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .button {
        width: 100%;
    }

    .hero-art {
        min-height: 340px;
    }

    .hero-art-card--top {
        width: 165px;
        padding: 14px;
    }

    .hero-art-card--bottom {
        width: 145px;
        padding: 14px;
    }

    .hero-art-caption {
        right: 7%;
        font-size: 7px;
    }

    .filter-group {
        gap: 2px;
    }

    .filter-button {
        padding-inline: 10px;
        font-size: 9px;
    }

    .project-grid {
        gap: 33px 12px;
    }

    .project-info {
        grid-template-columns: 26px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .contact-footer {
        font-size: 8px;
    }
}

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

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

    .js-enabled .reveal {
        transform: none;
    }

    .project-card.is-filter-leaving,
    .project-card.is-filter-entering {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
