/* Fonts */
@font-face {
    font-family: "DM Sans";
    src: url("fonts/dm-sans-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 1000;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/manrope-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

/* Base */
:root {
    --ink: #171916;
    --lime: #c9f45a;
    --olive: #5c7618;
    --line: rgba(255, 255, 255, 0.24);
    --muted: rgba(255, 255, 255, 0.72);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

button,
a {
    color: inherit;
    font: inherit;
}

a {
    text-decoration: none;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 14px;
    left: 14px;
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-size: 13px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

/* Hero */
.hero {
    isolation: isolate;
    position: relative;
    display: flex;
    min-height: 100svh;
    overflow: hidden;
    background: #5e6164;
}

.hero__image,
.hero__shade,
.hero__glow,
.hero__grain {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
    transform: scale(1.01);
    animation: reveal-image 1.4s cubic-bezier(.22, 1, .36, 1) both;
}

.hero__shade {
    background:
        linear-gradient(90deg, rgba(11, 13, 11, 0.9) 0%, rgba(11, 13, 11, 0.66) 40%, rgba(11, 13, 11, 0.13) 73%, rgba(11, 13, 11, 0.36) 100%),
        linear-gradient(180deg, rgba(11, 13, 11, 0.68) 0%, transparent 24%, transparent 68%, rgba(11, 13, 11, 0.68) 100%);
}

.hero__glow {
    inset: auto auto -34rem -26rem;
    width: 68rem;
    height: 68rem;
    border-radius: 50%;
    background: rgba(201, 244, 90, 0.12);
    filter: blur(100px);
}

.hero__grain {
    opacity: 0.14;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

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

/* Header */
.nav {
    position: absolute;
    inset: 0 0 auto;
    z-index: 5;
    height: 104px;
    border-bottom: 1px solid var(--line);
}

.nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand__mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 11px;
    letter-spacing: -0.08em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__link {
    position: relative;
    padding-block: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 500;
    transition: color 180ms ease;
}

.nav__link::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav__link:hover,
.nav__link/* Keyboard focus */
:focus-visible {
    color: white;
}

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

.nav__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    font-size: 14px;
    font-weight: 600;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-self: end;
}

.nav__search {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.76);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 180ms ease;
}

.nav__search span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: white;
    font-size: 17px;
}

.nav__search:hover,
.nav__search:focus-visible {
    color: white;
}

.nav__search:hover span,
.nav__search:focus-visible span {
    color: var(--ink);
    background: var(--lime);
}

.nav__contact::after {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "↗";
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav__contact:hover::after,
.nav__contact:focus-visible::after {
    color: var(--ink);
    background: var(--lime);
    transform: rotate(45deg);
}

.menu-button {
    display: none;
    grid-column: 2;
    grid-row: 1;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(16, 18, 16, 0.2);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 17px;
    height: 1px;
    margin: 5px auto;
    background: white;
    transition: transform 180ms ease;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 810px) 1fr;
    align-items: end;
    min-height: 100svh;
    padding-top: 170px;
    padding-bottom: clamp(34px, 5vw, 70px);
}

.hero__content {
    align-self: center;
    padding-top: 42px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    animation: reveal-copy 0.8s 0.15s both;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(201, 244, 90, 0.14);
    content: "";
}

h1 {
    max-width: 800px;
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(64px, 7.35vw, 118px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.92;
    text-wrap: balance;
    animation: reveal-copy 0.9s 0.25s both;
}

h1 em {
    color: var(--lime);
    font-style: normal;
}

.hero__intro {
    max-width: 560px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
    animation: reveal-copy 0.9s 0.35s both;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin-top: 40px;
    animation: reveal-copy 0.9s 0.45s both;
}

/* Primary actions */
.button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-height: 58px;
    padding: 7px 8px 7px 24px;
    border: 1px solid var(--lime);
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-size: 14px;
    font-weight: 600;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: white;
    font-size: 18px;
    transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
    border-color: white;
    background: white;
    transform: translateY(-2px);
}

.button:hover span,
.button:focus-visible span {
    transform: rotate(45deg);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    border-color: var(--lime);
    color: white;
}

.hero__meta {
    display: flex;
    align-items: flex-end;
    align-self: end;
    justify-content: flex-end;
    animation: reveal-copy 0.9s 0.55s both;
}

.services {
    min-width: 290px;
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(17, 19, 17, 0.42);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
}

.services__label {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
}

.services__list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services__list li::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lime);
    content: "";
}

.scroll-hint {
    position: absolute;
    right: 0;
    bottom: 198px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right bottom;
}

.scroll-hint::after {
    width: 58px;
    height: 1px;
    background: rgba(255, 255, 255, 0.38);
    content: "";
}

/* Journal */
.process {
    position: relative;
    overflow: clip;
    padding: clamp(110px, 12vw, 180px) 0;
    color: var(--ink);
    background: #eff0e9;
    scroll-margin-top: 0;
}

.process::before {
    position: absolute;
    top: -22rem;
    left: -18rem;
    width: 48rem;
    height: 48rem;
    border-radius: 50%;
    background: rgba(201, 244, 90, 0.34);
    filter: blur(110px);
    content: "";
    pointer-events: none;
}

.process::after {
    position: absolute;
    right: -9rem;
    bottom: 4rem;
    width: 26rem;
    height: 26rem;
    border: 1px solid rgba(23, 25, 22, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.journal-browser {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(23, 25, 22, 0.16);
    border-radius: 26px;
    background: #f7f7f2;
    box-shadow: 0 36px 90px rgba(48, 58, 27, 0.1);
}

.journal-browser__bar {
    display: flex;
    align-items: flex-end;
    min-height: 74px;
    padding: 14px 18px 0;
    border-bottom: 1px solid rgba(23, 25, 22, 0.13);
    background: #e3e5db;
}

.journal-browser__dots {
    display: flex;
    align-self: center;
    gap: 7px;
    padding: 0 9px 14px 3px;
}

.journal-browser__dots span {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(23, 25, 22, 0.2);
    border-radius: 50%;
    background: rgba(23, 25, 22, 0.08);
}

.journal-browser__dots span:first-child {
    border-color: #9abd40;
    background: var(--lime);
}

.journal-tabs {
    display: flex;
    flex: 1 1 auto;
    align-self: stretch;
    gap: 4px;
    min-width: 0;
    margin-left: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.journal-tabs::-webkit-scrollbar {
    display: none;
}

.journal-tab {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    min-width: 168px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px 12px 0 0;
    color: rgba(23, 25, 22, 0.52);
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.journal-tab span {
    color: rgba(23, 25, 22, 0.35);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.journal-tab:hover,
.journal-tab:focus-visible {
    color: var(--ink);
}

.journal-tab[aria-selected="true"] {
    color: var(--ink);
    background: #f7f7f2;
}

.journal-tab[aria-selected="true"] span {
    color: var(--olive);
}

.journal-tab--misc {
    margin-left: auto;
}

.journal-panel {
    padding: clamp(64px, 7vw, 108px) clamp(34px, 5.5vw, 82px);
}

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

.process__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(310px, 0.78fr) minmax(560px, 1.22fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

.process__intro {
    position: sticky;
    top: 80px;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(145, 186, 39, 0.12);
    content: "";
}

.process h2 {
    max-width: 650px;
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(52px, 5.3vw, 82px);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.98;
    text-wrap: balance;
}

.process h2 em {
    position: relative;
    color: var(--olive);
    font-style: normal;
}

.process__lead {
    max-width: 500px;
    margin: 34px 0 0;
    color: rgba(23, 25, 22, 0.68);
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.7;
}

.process__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 52px;
    color: rgba(23, 25, 22, 0.55);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.process__meta::before {
    width: 48px;
    height: 1px;
    background: rgba(23, 25, 22, 0.28);
    content: "";
}

/* Empty journal state */
.timeline-empty {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: clamp(42px, 6vw, 72px);
    border: 1px solid rgba(23, 25, 22, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.38);
}

.timeline-empty::after {
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(110, 141, 29, 0.2);
    border-radius: 50%;
    content: "";
}

.timeline-empty__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: var(--olive);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.timeline-empty__label::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(201, 244, 90, 0.18);
    content: "";
}

.timeline-empty h3 {
    max-width: 560px;
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.04;
}

.timeline-empty p {
    max-width: 520px;
    margin: 24px 0 0;
    color: rgba(23, 25, 22, 0.62);
    font-size: 16px;
    line-height: 1.7;
}

/* Category panels */
.category-layout {
    display: grid;
    grid-template-columns: minmax(310px, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

.category-intro {
    position: sticky;
    top: 80px;
}

.idea-list {
    display: grid;
}

.idea-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 26px;
    padding: 26px 0 40px;
    border-top: 1px solid rgba(23, 25, 22, 0.18);
}

.idea-card + .idea-card {
    margin-top: 28px;
}

.idea-card__index {
    color: var(--olive);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.idea-card h3 {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(27px, 2.35vw, 38px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.14;
}

.idea-card p {
    max-width: 600px;
    margin: 18px 0 0;
    color: rgba(23, 25, 22, 0.64);
    font-size: 15px;
    line-height: 1.7;
}

.misc-panel {
    display: grid;
    min-height: 560px;
    place-items: center;
    text-align: center;
}

.misc-panel__inner {
    max-width: 560px;
}

.misc-panel__number {
    display: block;
    margin-bottom: 26px;
    color: rgba(23, 25, 22, 0.08);
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(100px, 14vw, 190px);
    font-weight: 600;
    letter-spacing: -0.08em;
    line-height: 0.72;
}

.misc-panel h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
}

.misc-panel p {
    margin: 24px auto 0;
    color: rgba(23, 25, 22, 0.58);
    font-size: 16px;
    line-height: 1.7;
}

/* About */
.about {
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 12vw, 180px) 0;
    color: white;
    background: var(--ink);
}

.about::before {
    position: absolute;
    top: -24rem;
    right: -18rem;
    width: 52rem;
    height: 52rem;
    border-radius: 50%;
    background: rgba(201, 244, 90, 0.12);
    filter: blur(110px);
    content: "";
    pointer-events: none;
}

.about::after {
    position: absolute;
    bottom: -17rem;
    left: -12rem;
    width: 32rem;
    height: 32rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.about__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: start;
}

.about .section-kicker {
    color: rgba(255, 255, 255, 0.68);
}

.about h2 {
    max-width: 760px;
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(58px, 7vw, 106px);
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 0.94;
    text-wrap: balance;
}

.about h2 em {
    color: var(--lime);
    font-style: normal;
}

.about__copy {
    padding-top: 48px;
}

.about__portrait {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 44px;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    isolation: isolate;
}

.about__portrait::after {
    position: absolute;
    z-index: 1;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    content: "";
    pointer-events: none;
}

.about__portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
    filter: saturate(0.88) contrast(1.03);
}

.about__portrait figcaption {
    position: absolute;
    z-index: 2;
    bottom: 26px;
    left: 26px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.about__roles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin: 0 0 26px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    list-style: none;
}

.about__roles li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.about__roles li::before {
    flex: none;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    content: "";
}

.about__intro {
    display: grid;
    gap: 12px;
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    letter-spacing: -0.035em;
}

.about__intro-line {
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 600;
    line-height: 1.06;
}

.about__intro-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 500;
    line-height: 1.3;
}

.about__intro-fine {
    max-width: 48ch;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(16px, 1.3vw, 19px);
    font-weight: 400;
    letter-spacing: -0.012em;
    line-height: 1.6;
}

.about__text {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.75;
}

.about__subhead {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 44px 0 0;
    color: var(--lime);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about__subhead::before {
    flex: none;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
}

.about__subhead + .about__text,
.about__subhead + .about__list {
    margin-top: 18px;
}

.about__list {
    display: grid;
    gap: 15px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.about__list li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.7;
}

.about__list li::before {
    position: absolute;
    top: 0.6em;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(201, 244, 90, 0.12);
    content: "";
}

.about__list strong {
    color: white;
    font-weight: 600;
}

.about__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.about__topics li {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 600;
}

/* Footer */
.home-footer {
    padding: 34px 0 42px;
    color: rgba(255, 255, 255, 0.5);
    background: #10120f;
    font-size: 11px;
}

.home-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-footer__brand::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    content: "";
}

.home-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 26px;
}

.home-footer__nav a {
    transition: color 180ms ease;
}

.home-footer__nav a:hover,
.home-footer__nav a:focus-visible {
    color: white;
}

/* Search */
.search-dialog {
    width: min(100% - 32px, 760px);
    max-height: min(820px, calc(100svh - 32px));
    padding: 0;
    border: 1px solid rgba(23, 25, 22, 0.16);
    border-radius: 24px;
    color: var(--ink);
    background: #f7f7f2;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.search-dialog::backdrop {
    background: rgba(10, 11, 9, 0.68);
    backdrop-filter: blur(8px);
}

.search-dialog__inner {
    padding: clamp(24px, 5vw, 42px);
}

.search-dialog__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.search-dialog__kicker {
    margin: 0 0 9px;
    color: var(--olive);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.search-dialog h2 {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.search-dialog__close {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(23, 25, 22, 0.18);
    border-radius: 50%;
    background: transparent;
    font-size: 21px;
    cursor: pointer;
}

.search-dialog__close:hover,
.search-dialog__close:focus-visible {
    color: white;
    background: var(--ink);
}

.search-field {
    position: relative;
    margin-top: 30px;
}

.search-field input {
    width: 100%;
    height: 62px;
    padding: 0 54px 0 19px;
    border: 1px solid rgba(23, 25, 22, 0.2);
    border-radius: 14px;
    outline: 0;
    color: var(--ink);
    background: white;
    font-size: 16px;
}

.search-field input:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(110, 141, 29, 0.12);
}

.search-field span {
    position: absolute;
    top: 50%;
    right: 19px;
    color: rgba(23, 25, 22, 0.42);
    font-size: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-summary {
    min-height: 17px;
    margin: 14px 0 0;
    color: rgba(23, 25, 22, 0.62);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-results {
    display: grid;
    max-height: min(430px, 48svh);
    margin-top: 12px;
    overflow-y: auto;
    border-top: 1px solid rgba(23, 25, 22, 0.14);
}

.search-result {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 20px 4px;
    border-bottom: 1px solid rgba(23, 25, 22, 0.14);
}

.search-result__index {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--ink);
    font-size: 9px;
    font-weight: 700;
}

.search-result__category {
    display: block;
    margin-bottom: 5px;
    color: var(--olive);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.search-result strong {
    display: block;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.search-result__arrow {
    color: rgba(23, 25, 22, 0.4);
    font-size: 18px;
    transition: color 180ms ease, transform 180ms ease;
}

.search-result:hover .search-result__arrow,
.search-result:focus-visible .search-result__arrow {
    color: var(--olive);
    transform: translate(3px, -3px);
}

.search-empty {
    padding: 42px 0 20px;
    color: rgba(23, 25, 22, 0.62);
    font-size: 14px;
    text-align: center;
}

:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 4px;
}

/* Motion */
@keyframes reveal-copy {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-image {
    from { opacity: 0; transform: scale(1.08); }
    to { opacity: 1; transform: scale(1.01); }
}

/* Responsive */
@media (max-width: 1050px) {
    .nav__inner {
        grid-template-columns: 1fr auto;
    }

    .nav__links,
    .nav__actions {
        display: none;
    }

    .menu-button {
        display: block;
        justify-self: end;
    }

    .nav.is-open {
        height: 100svh;
        background: rgba(18, 20, 18, 0.97);
        backdrop-filter: blur(20px);
    }

    .nav.is-open .nav__inner {
        align-content: start;
        padding-top: 30px;
    }

    .nav.is-open .nav__links {
        position: absolute;
        top: 125px;
        left: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav.is-open .nav__link {
        font-family: "Manrope", Arial, sans-serif;
        font-size: clamp(30px, 8vw, 48px);
        font-weight: 600;
        letter-spacing: -0.04em;
    }

    .nav.is-open .nav__actions {
        position: absolute;
        right: 24px;
        bottom: 36px;
        display: flex;
    }

    .nav.is-open .menu-button span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .nav.is-open .menu-button span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__content {
        align-self: center;
    }

    .hero__meta {
        justify-content: flex-start;
    }

    .scroll-hint {
        display: none;
    }

    .process__layout {
        grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.28fr);
        gap: 58px;
    }

    .category-layout {
        grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
        gap: 58px;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(100% - 32px, 1440px);
    }

    .nav {
        height: 82px;
    }

    .brand__mark {
        width: 32px;
        height: 32px;
    }

    .hero__image {
        object-position: 58% center;
    }

    .hero__shade {
        background:
            linear-gradient(90deg, rgba(11, 13, 11, 0.86) 0%, rgba(11, 13, 11, 0.46) 100%),
            linear-gradient(180deg, rgba(11, 13, 11, 0.62) 0%, rgba(11, 13, 11, 0.2) 35%, rgba(11, 13, 11, 0.8) 100%);
    }

    .hero__inner {
        min-height: 100svh;
        padding-top: 118px;
        padding-bottom: 24px;
    }

    .hero__content {
        align-self: start;
        min-width: 0;
        width: 100%;
        padding-top: 24px;
    }

    .menu-button {
        position: absolute;
        z-index: 10;
        inset: 19px 16px auto auto;
        display: grid !important;
        place-items: center;
    }

    .menu-button span {
        grid-area: 1 / 1;
        margin: 0;
    }

    .menu-button span:first-child {
        transform: translateY(-3px);
    }

    .menu-button span:last-child {
        transform: translateY(3px);
    }

    .eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
    }

    h1 {
        font-size: clamp(45px, 13.8vw, 58px);
    }

    .hero__intro {
        width: 100%;
        max-width: 100%;
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

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

    .button {
        min-height: 54px;
    }

    .hero__meta {
        margin-top: 34px;
    }

    .services {
        width: 100%;
        min-width: 0;
        padding: 18px 20px;
        border-radius: 14px;
    }

    .services__label {
        margin-bottom: 11px;
    }

    .services__list {
        gap: 8px 18px;
        font-size: 12px;
    }

    .process {
        padding: 90px 0 100px;
    }

    .journal-browser {
        width: min(100% - 20px, 1440px);
        border-radius: 18px;
    }

    .journal-browser__bar {
        min-height: 64px;
        padding: 10px 10px 0;
    }

    .journal-browser__dots {
        display: none;
    }

    .journal-tabs {
        margin-left: 0;
    }

    .journal-tab {
        min-width: auto;
        padding: 0 16px;
        font-size: 11px;
    }

    .journal-panel {
        padding: 66px 16px 74px;
    }

    .process::before {
        top: -17rem;
        left: -22rem;
    }

    .process::after {
        right: -16rem;
        bottom: 2rem;
    }

    .process__layout {
        display: block;
    }

    .category-layout {
        display: block;
    }

    .process__intro {
        position: static;
    }

    .category-intro {
        position: static;
    }

    .section-kicker {
        margin-bottom: 24px;
        font-size: 10px;
    }

    .process h2 {
        max-width: 430px;
        font-size: clamp(44px, 13.2vw, 58px);
    }

    .process__lead {
        margin-top: 26px;
        font-size: 15px;
        line-height: 1.6;
    }

    .process__meta {
        margin-top: 34px;
    }

    .timeline-empty {
        margin-top: 70px;
    }

    .idea-list {
        margin-top: 64px;
    }

    .idea-card {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 30px;
    }

    .idea-card + .idea-card {
        margin-top: 20px;
    }

    .idea-card h3 {
        font-size: 28px;
    }

    .idea-card p {
        font-size: 14px;
    }

        .misc-panel {
        min-height: 480px;
    }

    .about {
        padding: 96px 0;
    }

    .about__layout {
        display: block;
    }

    .about h2 {
        font-size: clamp(52px, 15vw, 68px);
    }

    .about__copy {
        padding-top: 54px;
    }

    .about__portrait {
        max-height: 580px;
        margin-bottom: 38px;
        border-radius: 22px;
    }

    .about__portrait::after {
        inset: 9px;
        border-radius: 16px;
    }

    .about__portrait figcaption {
        bottom: 20px;
        left: 20px;
    }

    .about__roles {
        gap: 6px 12px;
        margin-bottom: 22px;
        font-size: 12px;
    }

    .about__intro {
        gap: 10px;
    }

    .about__intro-line {
        font-size: 32px;
    }

    .about__intro-sub {
        font-size: 21px;
    }

    .about__intro-fine {
        font-size: 15px;
    }

    .about__text {
        font-size: 15px;
    }

    .about__subhead {
        margin-top: 36px;
        font-size: 11px;
    }

    .about__list li {
        padding-left: 22px;
        font-size: 15px;
    }

    .home-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-footer__nav {
        justify-content: flex-start;
    }

    .search-dialog {
        border-radius: 20px;
    }

    .search-result {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 11px;
    }

    .search-result__index {
        width: 36px;
        height: 36px;
    }

    .search-result strong {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
