:root {
    --ink: #050505;
    --ink-raised: #0b0b0a;
    --paper: #f2eee6;
    --paper-soft: #c9c2b7;
    --muted: #918a80;
    --hairline: #2b2926;
    --hairline-bright: #47423b;
    --amber: #d68a30;
    --amber-bright: #f2a144;
    --focus: #f4c179;
    --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --sans: "Inter Tight", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    --shell: 1360px;
    --gutter: clamp(22px, 4.6vw, 76px);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    background: var(--ink);
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    min-width: 320px;
    margin: 0;
    background:
        radial-gradient(circle at 82% 8%, rgba(214, 138, 48, .055), transparent 28rem),
        var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
}

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

button {
    color: inherit;
}

::selection {
    background: var(--amber);
    color: #090806;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    transform: translateY(-160%);
    background: var(--paper);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(5, 5, 5, .18);
    backdrop-filter: blur(0);
    transition: background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
    border-color: rgba(242, 238, 230, .1);
    background: rgba(5, 5, 5, .92);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(100%, var(--shell));
    min-height: 72px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    gap: 28px;
}

.site-brand {
    width: max-content;
    color: var(--paper);
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
}

.site-nav,
.site-header__links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.3vw, 34px);
}

.site-nav-toggle {
    display: none;
}

.site-nav a,
.site-header__links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--paper-soft);
    font-size: 13px;
    font-weight: 550;
    letter-spacing: .015em;
    text-decoration: none;
}

.site-nav a::after,
.site-header__links a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--amber);
    transition: transform .35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-header__links a:hover::after,
.site-header__links a:focus-visible::after {
    transform: scaleX(1);
}

.site-header__links {
    justify-self: end;
}

.section-shell {
    width: min(100%, var(--shell));
    margin: 0 auto;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--amber-bright);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .16em;
    line-height: 1.25;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
    align-items: end;
    margin-bottom: clamp(48px, 6vw, 86px);
    gap: 48px;
}

.section-heading h2,
.archive-header h1,
.article__header h1,
.error-shell h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
}

.section-heading > p {
    max-width: 36ch;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    gap: 10px;
    color: var(--paper);
    font-size: 14px;
    font-weight: 650;
    text-decoration-color: var(--amber);
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .68s var(--ease), transform .68s var(--ease);
}

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

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    align-items: center;
    min-height: calc(100svh - 73px);
    padding-top: 0;
    padding-bottom: clamp(72px, 10svh, 96px);
    border-bottom: 1px solid var(--hairline);
    gap: clamp(28px, 3vw, 52px);
}

.hero__copy {
    z-index: 2;
    align-self: center;
    padding: 0;
}

.hero__eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: none;
}

.hero h1 {
    max-width: none;
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: clamp(60px, 6.15vw, 90px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .88;
}

.hero__title-line {
    display: block;
}

.hero__title-line--second {
    white-space: nowrap;
}

.hero__narrative {
    max-width: 66ch;
    color: var(--paper-soft);
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.55;
}

.hero__narrative p {
    margin: 0 0 14px;
}

.hero__proof {
    display: grid;
    width: max-content;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 2px solid var(--amber);
}

.hero__proof strong {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.hero__proof span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero__portrait {
    position: relative;
    align-self: center;
    min-width: 0;
    margin: 0;
}

.hero__portrait::before {
    position: absolute;
    z-index: -1;
    inset: 12% 0 2% 12%;
    content: "";
    background: radial-gradient(circle at 54% 34%, rgba(214, 138, 48, .13), rgba(214, 138, 48, 0) 60%);
    filter: blur(30px);
}

.hero__portrait img {
    width: min(100%, 600px);
    max-height: min(68svh, 620px);
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1) contrast(1.12) brightness(.9);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%);
}

.philosophy {
    display: grid;
    place-items: center;
    min-height: clamp(420px, 50vw, 570px);
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;
}

.philosophy__rule {
    width: 48px;
    height: 2px;
    background: var(--amber);
}

.philosophy__line {
    display: block;
}

.js .philosophy__rule {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    filter: blur(2px);
    transition: opacity .55s ease, transform .9s var(--ease), filter .9s ease;
}

.js .philosophy.is-reading .philosophy__rule {
    opacity: 1;
    transform: scaleX(1);
    filter: blur(0);
}

.js .philosophy__reading {
    opacity: 1;
    transform: none;
    transition: none;
}

.js .philosophy.is-word-ready .word-reveal__word {
    display: inline-block;
    opacity: 0;
    transform: translateX(-2px);
    filter: blur(7px);
    text-shadow: 0 0 14px currentColor;
    transition:
        opacity .95s ease var(--word-delay),
        transform 1.15s var(--ease) var(--word-delay),
        filter 1.2s ease var(--word-delay),
        text-shadow 1.2s ease var(--word-delay);
}

.js .philosophy.is-word-ready.is-reading .word-reveal__word {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    text-shadow: 0 0 0 currentColor;
}

.philosophy h2 {
    max-width: 930px;
    margin: 32px 0 22px;
    font-family: var(--serif);
    font-size: clamp(35px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.philosophy p {
    max-width: 78ch;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.featured {
    padding-top: clamp(92px, 9vw, 136px);
    padding-bottom: clamp(110px, 11vw, 160px);
    border-top: 1px solid var(--hairline);
}

.featured__heading {
    grid-template-columns: 1fr;
    margin-bottom: clamp(64px, 7vw, 94px);
}

.featured__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    gap: clamp(20px, 2.1vw, 30px);
    list-style: none;
}

.featured__item {
    min-width: 0;
}

.featured__item a {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 0;
    padding: 0;
    flex-direction: column;
    text-decoration: none;
}

.featured__logo-stage {
    display: block;
    min-height: 0;
    margin: 0 0 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.featured__logo-stage img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    filter: none;
    opacity: 1;
    transition: transform .55s var(--ease), filter .55s ease;
}

.featured__item a:hover .featured__logo-stage img,
.featured__item a:focus-visible .featured__logo-stage img {
    transform: scale(1.025);
    filter: brightness(1.08);
}

.featured__period {
    margin-top: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    text-align: right;
    transition: color .35s ease;
}

.featured__item a:hover .featured__period,
.featured__item a:focus-visible .featured__period {
    color: var(--amber-bright);
}

.featured h3 {
    margin: 0 0 9px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 550;
    letter-spacing: -.01em;
    line-height: 1.25;
    transition: color .35s ease;
}

.featured__item a:hover h3,
.featured__item a:focus-visible h3 {
    color: var(--amber-bright);
}

.featured__summary {
    display: -webkit-box;
    min-height: 6em;
    max-height: 6em;
    margin: 0 0 15px;
    overflow: hidden;
    color: var(--paper-soft);
    font-size: 12px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.featured__summary strong {
    color: var(--paper-soft);
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
}

.skills {
    --skills-step: 38svh;
    position: relative;
    min-height: calc(100svh + (6 * var(--skills-step)));
    border-top: 1px solid var(--hairline);
    background: var(--ink);
}

.skills__sticky {
    position: sticky;
    z-index: 1;
    top: 73px;
    display: grid;
    min-height: calc(100svh - 73px);
    overflow: hidden;
    align-items: center;
}

.skills__backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    margin: 0;
    overflow: hidden;
}

.skills__backdrop::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .46) 0%, rgba(5, 5, 5, .46) 52%, rgba(5, 5, 5, .56) 68%, rgba(5, 5, 5, .82) 86%, rgba(5, 5, 5, .97) 100%),
        linear-gradient(0deg, rgba(5, 5, 5, .12) 0%, rgba(5, 5, 5, .22) 100%);
}

.skills__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transform: scale(1.01);
    filter: grayscale(1) contrast(1.05) brightness(.76);
    opacity: .9;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgba(0, 0, 0, .72) 88%, transparent 96%);
    mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgba(0, 0, 0, .72) 88%, transparent 96%);
    transition: filter 1.1s ease, opacity 1.1s ease, transform 1.3s var(--ease);
}

.skills.is-engaged .skills__backdrop img {
    transform: scale(1);
    filter: grayscale(1) contrast(1.03) brightness(.86);
    opacity: .96;
}

.skills__inner {
    padding-top: clamp(28px, 4vh, 40px);
    padding-bottom: clamp(28px, 4vh, 40px);
}

.skills__heading {
    margin-bottom: clamp(28px, 4vh, 38px);
}

.skills__heading h2 {
    max-width: none;
    margin: 15px 0 0;
    font-family: var(--serif);
    font-size: clamp(50px, 5.2vw, 70px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
}

.skills__accordion {
    display: grid;
    grid-template-columns: minmax(360px, .36fr) minmax(0, .64fr);
    grid-template-rows: repeat(7, minmax(62px, 1fr));
    min-height: clamp(440px, 54vh, 535px);
    column-gap: clamp(42px, 4.5vw, 66px);
}

.skills__item {
    display: contents;
}

.skills__tab {
    position: relative;
    display: grid;
    grid-column: 1;
    grid-row: var(--skill-row);
    grid-template-columns: 48px 3px minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(242, 238, 230, .22);
    border-radius: 0;
    align-items: center;
    gap: 17px;
    background: transparent;
    color: var(--muted);
    text-align: left;
    cursor: pointer;
    transition: color .35s ease, background-color .35s ease;
}

.skills__item:first-child .skills__tab {
    border-top: 1px solid rgba(242, 238, 230, .22);
}

.skills__tab:hover,
.skills__tab:focus-visible,
.skills__tab.is-active {
    color: var(--paper);
}

.skills__tab:focus-visible {
    outline: 1px solid var(--amber-bright);
    outline-offset: 4px;
}

.skills__number {
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .05em;
    transition: color .35s ease;
}

.skills__marker {
    width: 3px;
    height: 42px;
    transform: scaleY(0);
    background: var(--amber-bright);
    transition: transform .42s var(--ease);
}

.skills__tab strong {
    font-size: clamp(14px, 1.18vw, 17px);
    font-weight: 500;
    line-height: 1.25;
}

.skills__tab.is-active .skills__number {
    color: var(--paper);
}

.skills__tab.is-active .skills__marker {
    transform: scaleY(1);
}

.skills__panel {
    grid-column: 2;
    grid-row: 1 / span 7;
    align-self: center;
    min-width: 0;
    padding-top: 10px;
}

.js .skills__panel {
    display: none;
}

.js .skills__panel.is-active {
    display: block;
    animation: skills-panel-in .62s var(--ease) both;
}

.skills__panel h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(38px, 3.6vw, 52px);
    font-weight: 400;
    letter-spacing: -.028em;
    line-height: 1;
}

.skills__panel > p {
    max-width: 64ch;
    margin: 18px 0 0;
    color: var(--paper-soft);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.5;
}

.skills__groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(28px, 4vh, 36px);
    padding-top: clamp(24px, 3.4vh, 32px);
    border-top: 2px solid var(--amber);
    gap: 18px;
}

#skill-panel-apple .skills__groups {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, .95fr) minmax(0, .94fr) minmax(0, .93fr);
}

.skills__group {
    min-width: 0;
}

.js .skills__panel.is-active .skills__group {
    animation: skills-group-in .6s var(--ease) both;
}

.js .skills__panel.is-active .skills__group:nth-child(2) { animation-delay: .07s; }
.js .skills__panel.is-active .skills__group:nth-child(3) { animation-delay: .14s; }
.js .skills__panel.is-active .skills__group:nth-child(4) { animation-delay: .21s; }

.skills__group h4 {
    margin: 0 0 18px;
    color: var(--amber-bright);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.skills__group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.skills__group li {
    margin: 0 0 9px;
    color: var(--paper);
    font-family: var(--sans);
    font-size: clamp(16px, 1.28vw, 18px);
    font-weight: 475;
    line-height: 1.3;
    white-space: nowrap;
}

@keyframes skills-panel-in {
    from { opacity: 0; transform: translateX(12px); filter: blur(3px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes skills-group-in {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.no-js .skills {
    min-height: auto;
}

.no-js .skills__sticky {
    position: relative;
    top: auto;
}

.no-js .skills__accordion {
    display: block;
}

.no-js .skills__tab {
    display: none;
}

.no-js .skills__panel {
    display: block;
    padding: 52px 0;
    border-top: 1px solid var(--hairline);
}

.testimonials {
    padding-top: clamp(90px, 11vw, 150px);
    padding-bottom: clamp(100px, 12vw, 160px);
    border-top: 1px solid var(--hairline);
}

.testimonials__stage {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, .45fr);
    min-height: 440px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.testimonials__panels {
    display: grid;
    align-items: center;
    min-width: 0;
    padding: clamp(42px, 6vw, 86px);
    border-right: 1px solid var(--hairline);
}

.testimonial-panel {
    margin: 0;
    padding: 0;
}

.testimonial-panel + .testimonial-panel {
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid var(--hairline);
}

.js .testimonial-panel {
    display: none;
}

.js .testimonial-panel.is-active {
    display: block;
    animation: quote-in .48s var(--ease) both;
}

.testimonial-panel blockquote {
    max-width: 850px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 58px);
    font-style: italic;
    letter-spacing: -.025em;
    line-height: 1.12;
}

.testimonial-panel figcaption {
    display: grid;
    margin-top: 34px;
    gap: 3px;
}

.testimonial-panel figcaption strong {
    color: var(--paper);
    font-size: 13px;
}

.testimonial-panel figcaption span {
    color: var(--muted);
    font-size: 12px;
}

.testimonials__rail {
    display: grid;
    align-content: center;
}

.testimonials__rail button {
    position: relative;
    display: grid;
    min-height: 96px;
    padding: 20px 28px;
    border: 0;
    border-bottom: 1px solid var(--hairline);
    border-radius: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.testimonials__rail button:last-child {
    border-bottom: 0;
}

.testimonials__rail button::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    content: "";
    transform: scaleY(0);
    background: var(--amber);
    transition: transform .35s var(--ease);
}

.testimonials__rail button[aria-selected="true"]::before {
    transform: scaleY(1);
}

.testimonials__rail button strong {
    align-self: end;
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
}

.testimonials__rail button span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

@keyframes quote-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.current {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    min-height: clamp(650px, 70vw, 820px);
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.current__media {
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 50%;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    transform: translateX(-50%);
}

.js .current__media.reveal,
.js .current__media.reveal.is-visible {
    transform: translateX(-50%);
}

.current__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    filter: grayscale(.9) contrast(1.06) brightness(.72);
    transition: transform 1s var(--ease), filter 1s ease;
}

.current__media.is-visible img {
    transform: scale(1.015);
    filter: grayscale(.55) contrast(1.06) brightness(.82);
}

.current::after {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 50%;
    width: 100vw;
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
    background:
        linear-gradient(90deg, rgba(5,5,5,.99) 0%, rgba(5,5,5,.95) 27%, rgba(5,5,5,.78) 48%, rgba(5,5,5,.38) 72%, rgba(5,5,5,.14) 100%),
        linear-gradient(0deg, rgba(5,5,5,.28) 0%, transparent 34%);
}

.current__copy {
    z-index: 2;
    grid-column: 1 / span 2;
    grid-row: 1;
    align-self: center;
    width: min(54%, 700px);
    padding: 80px 0;
}

.current h2 {
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .96;
}

.current h2 span {
    display: block;
    white-space: nowrap;
}

.current__meta {
    margin: 0 0 22px;
    color: var(--amber-bright);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
}

.current__copy > p:not(.eyebrow):not(.current__meta) {
    max-width: 58ch;
    margin: 0 0 28px;
    color: var(--paper-soft);
}

.chapters {
    padding-top: clamp(110px, 13vw, 190px);
    padding-bottom: clamp(120px, 14vw, 200px);
}

.chapters__header {
    max-width: 950px;
    margin: 0 auto clamp(90px, 10vw, 140px);
    text-align: center;
}

.chapters__header h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(54px, 7vw, 96px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .92;
}

.chapters__header > p:last-child {
    margin: 28px 0 0;
    color: var(--paper-soft);
    font-family: var(--serif);
    font-size: clamp(23px, 2.6vw, 38px);
    line-height: 1.2;
}

.chapters__header em {
    color: var(--amber-bright);
    font-weight: 400;
}

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

.timeline__track {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    overflow: visible;
    background: var(--hairline-bright);
}

.timeline__fill {
    position: absolute;
    inset: 0;
    transform: scaleY(var(--timeline-progress));
    transform-origin: top;
    background: linear-gradient(to bottom, var(--amber-bright), var(--amber));
    box-shadow: 0 0 18px rgba(214, 138, 48, .28);
    will-change: transform;
}

.timeline__item {
    position: relative;
    min-height: clamp(560px, 72vh, 780px);
}

.chapter-link {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(104px, 8vw, 132px) minmax(0, 1fr);
    align-items: center;
    min-height: inherit;
    padding: clamp(58px, 7vw, 92px) 0;
    color: inherit;
    text-decoration: none;
}

.chapter-copy {
    grid-column: 1;
    max-width: 520px;
    justify-self: end;
    text-align: right;
}

.chapter-media {
    grid-column: 3;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--ink-raised);
    aspect-ratio: 16 / 9;
    transition: border-color .5s ease, box-shadow .5s ease;
}

.timeline__item:nth-child(odd) .chapter-copy {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}

.timeline__item:nth-child(odd) .chapter-media {
    grid-column: 1;
    grid-row: 1;
}

.chapter-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--focus-x, 50%) var(--focus-y, 50%);
    filter: grayscale(1) saturate(.45) brightness(.48) contrast(1.08);
    transform: scale(1.01);
    transition: filter .65s ease, transform .85s var(--ease);
}

.chapter-copy time {
    display: block;
    margin-bottom: 14px;
    color: var(--amber);
    font-size: clamp(15px, 1.35vw, 19px);
    font-weight: 600;
    letter-spacing: .02em;
}

.chapter-copy h3 {
    margin: 0 0 18px;
    color: var(--paper-soft);
    font-family: var(--serif);
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
    transition: color .4s ease;
}

.chapter-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    transition: color .4s ease;
}

.chapter-cue {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 18px;
    gap: 8px;
    color: var(--paper-soft);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .03em;
    text-decoration: underline;
    text-decoration-color: var(--amber);
    text-underline-offset: 6px;
}

.timeline__node {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    border: 2px solid var(--muted);
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 0 7px var(--ink);
    transition: border-color .4s ease, background-color .4s ease, box-shadow .5s ease;
}

.chapter-link:hover .chapter-media,
.chapter-link:focus-visible .chapter-media {
    border-color: rgba(214, 138, 48, .72);
}

.chapter-link:hover .chapter-media img,
.chapter-link:focus-visible .chapter-media img {
    transform: scale(1.035);
}

.chapter-link:focus-visible {
    outline: 0;
}

.chapter-link:focus-visible .chapter-copy,
.chapter-link:focus-visible .chapter-media {
    outline: 2px solid var(--focus);
    outline-offset: 7px;
}

.timeline__item.is-complete .chapter-media img {
    filter: grayscale(.62) saturate(.75) brightness(.7) contrast(1.04);
}

.timeline__item.is-complete .chapter-copy h3 {
    color: #d8d1c6;
}

.timeline__item.is-active .chapter-media {
    border-color: rgba(214, 138, 48, .78);
    box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(214,138,48,.08);
}

.timeline__item.is-active .chapter-media img {
    filter: grayscale(0) saturate(1.03) brightness(.94) contrast(1.02);
}

.timeline__item.is-active .chapter-copy h3,
.timeline__item.is-active .chapter-copy p {
    color: var(--paper);
}

.timeline__item.is-active .timeline__node {
    border-color: var(--amber-bright);
    background: var(--paper);
    box-shadow: 0 0 0 7px var(--ink), 0 0 0 9px rgba(214,138,48,.45), 0 0 26px rgba(214,138,48,.6);
}

.timeline__item.is-upcoming .chapter-media img {
    filter: grayscale(1) saturate(.2) brightness(.38) contrast(1.08);
}

.timeline__item.is-upcoming .chapter-copy h3 {
    color: #a9a297;
}

.timeline__item.is-upcoming .chapter-copy p {
    color: #918a80;
}

/* Complete work-and-life history. This replaces the former eight-card
   alternating timeline while Ghost chapter migration is still pending. */
.chapters.history {
    width: 100%;
    max-width: none;
    padding: 0;
    border-top: 1px solid var(--hairline);
}

.history-intro,
.history-years,
.history-experience {
    width: min(100%, var(--shell));
    margin-right: auto;
    margin-left: auto;
}

.history-intro {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-content: center;
    min-height: clamp(500px, 59vh, 540px);
    padding-top: clamp(62px, 7vh, 78px);
    padding-bottom: clamp(42px, 5vh, 56px);
    column-gap: clamp(16px, 2vw, 30px);
}

.history-intro__meta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
}

.history-intro__meta p {
    margin: 0;
}

.history-intro__range,
.history-entry__meta span,
.history-year__heading p {
    color: var(--amber-bright);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.history-intro__range {
    color: var(--paper-soft);
    letter-spacing: .06em;
    text-align: right;
    text-transform: none;
}

.history-intro h2 {
    grid-column: 1 / -1;
    max-width: none;
    margin: 24px 0 0;
    font-family: var(--serif);
    font-size: clamp(64px, 7vw, 102px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .9;
    white-space: nowrap;
}

.history-intro__dek {
    grid-column: 1 / 10;
    justify-self: start;
    max-width: 850px;
    margin: 26px 0 0;
    color: var(--paper-soft);
    font-family: var(--serif);
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.24;
}

.history-sequence {
    position: relative;
}

.history-years-shell {
    position: sticky;
    z-index: 30;
    top: 72px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: rgba(5, 5, 5, .94);
    backdrop-filter: blur(16px);
}

.history-years__scroller {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.history-years__scroller::-webkit-scrollbar {
    display: none;
}

.history-years__track {
    position: relative;
    min-width: 100%;
    height: 72px;
}

.history-years__axis {
    position: absolute;
    inset: 0 22px;
}

.history-years__line {
    position: absolute;
    top: 25px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--hairline-bright);
}

.history-years__link {
    position: absolute;
    top: 0;
    left: var(--year-position);
    width: 44px;
    height: 70px;
    transform: translateX(-50%);
    color: var(--muted);
    text-decoration: none;
    scroll-snap-align: center;
    transition: color .25s ease;
}

.history-years__link:focus-visible {
    outline-offset: -3px;
}

.history-years__node {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 11px;
    height: 11px;
    transform: translateX(-50%);
    border: 2px solid var(--muted);
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 0 5px var(--ink);
    transition: width .28s var(--ease), height .28s var(--ease), top .28s var(--ease), border-color .25s ease, background-color .25s ease, box-shadow .28s ease;
}

.history-years__year {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .03em;
    line-height: 1;
    transition: color .25s ease, font-weight .25s ease;
}

.history-years__link:hover,
.history-years__link:focus-visible,
.history-years__link.is-active {
    color: var(--amber-bright);
}

.history-years__link.is-active .history-years__node {
    top: 17px;
    width: 17px;
    height: 17px;
    border-color: var(--amber-bright);
    background: var(--paper);
    box-shadow: 0 0 0 5px var(--ink), 0 0 0 7px rgba(214, 138, 48, .32), 0 0 18px rgba(214, 138, 48, .42);
}

.history-years__link.is-active .history-years__year {
    font-weight: 750;
}

.history-experience {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(520px, 1.08fr);
    align-items: start;
    padding-bottom: 180px;
    gap: clamp(58px, 7vw, 110px);
}

.history-preview {
    position: sticky;
    z-index: 4;
    top: 164px;
    min-width: 0;
    padding: 36px 0 52px;
    background: var(--ink);
}

.history-preview__link {
    display: block;
    text-decoration: none;
}

.history-preview__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(214, 138, 48, .78);
    background: var(--ink-raised);
    aspect-ratio: 16 / 9;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(214, 138, 48, .08);
}

.history-preview__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: grayscale(.55) brightness(.58);
    transform: scale(.97);
}

.history-preview__image.is-active {
    z-index: 2;
    opacity: 1;
    animation: history-preview-image-in .42s var(--ease);
    filter: none;
    transform: scale(var(--preview-scale, 1.01));
}

.history-preview__image.is-outgoing {
    z-index: 1;
    opacity: 1;
    filter: none;
    transform: scale(var(--preview-scale, 1.01));
}

.history-preview__image[data-fit="contain"] {
    object-fit: contain;
}

.history-preview__image.is-active[data-fit="contain"],
.history-preview__image.is-outgoing[data-fit="contain"] {
    animation-name: history-preview-image-in-contain;
    transform: scale(1);
}

@keyframes history-preview-image-in {
    from {
        opacity: 0;
        filter: grayscale(.55) brightness(.58);
        transform: scale(.97);
    }
}

@keyframes history-preview-image-in-contain {
    from {
        opacity: 0;
        filter: grayscale(.55) brightness(.58);
        transform: scale(1);
    }
}

.history-preview__copy {
    min-width: 0;
    margin-top: 30px;
}

.history-preview h3 {
    overflow: hidden;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(30px, 2.5vw, 36px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.04;
    text-overflow: clip;
    white-space: nowrap;
}

.history-preview__excerpt {
    display: -webkit-box;
    min-height: 69px;
    margin: 14px 0 0;
    overflow: hidden;
    color: var(--paper-soft);
    font-size: 15px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.history-preview__action {
    display: inline-block;
    min-height: 44px;
    margin-top: 16px;
    padding-top: 10px;
    border-bottom: 1px solid var(--amber);
    color: var(--paper-soft);
    font-size: 12px;
    font-weight: 650;
}

.history-list {
    position: relative;
    min-width: 0;
    padding-top: 42px;
}

.history-list__line {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 12px;
    width: 1px;
    background: var(--hairline-bright);
}

.history-year {
    position: relative;
    padding: 10px 0 46px 52px;
    scroll-margin-top: clamp(130px, 18vh, 190px);
}

.history-year__heading {
    display: flex;
    align-items: baseline;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--hairline);
    gap: 18px;
}

.history-year__heading h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1;
}

.history-year__heading p {
    margin: 0;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: none;
}

.history-year__entries {
    display: grid;
}

.history-entry {
    position: relative;
    min-height: 118px;
    border-bottom: 1px solid var(--hairline);
}

.history-entry__node {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -46px;
    width: 11px;
    height: 11px;
    transform: translate(-50%, -50%);
    border: 2px solid var(--muted);
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 0 6px var(--ink);
    transition: border-color .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.history-entry.is-active .history-entry__node {
    border-color: var(--amber-bright);
    background: var(--paper);
    box-shadow: 0 0 0 6px var(--ink), 0 0 0 8px rgba(214, 138, 48, .34), 0 0 20px rgba(214, 138, 48, .4);
}

.history-entry__link {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    min-height: inherit;
    padding: 18px 12px;
    gap: 22px;
    text-decoration: none;
    transition: background-color .25s ease, padding-left .3s var(--ease);
}

.history-entry__link:hover,
.history-entry__link:focus-visible,
.history-entry.is-active .history-entry__link {
    background: rgba(242, 238, 230, .026);
    padding-left: 18px;
}

.history-entry__link:focus-visible {
    outline-offset: -2px;
}

.history-entry__thumb {
    width: 132px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--ink-raised);
    aspect-ratio: 16 / 9;
}

.history-entry__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transform: scale(1.01);
    transition: transform .45s var(--ease);
}

.history-entry.is-active .history-entry__thumb img,
.history-entry__link:hover .history-entry__thumb img,
.history-entry__link:focus-visible .history-entry__thumb img {
    transform: scale(1.04);
}

.history-entry[data-history-fit="contain"] .history-entry__thumb img {
    object-fit: contain;
    transform: scale(1);
}

.history-entry[data-history-fit="contain"].is-active .history-entry__thumb img,
.history-entry[data-history-fit="contain"] .history-entry__link:hover .history-entry__thumb img,
.history-entry[data-history-fit="contain"] .history-entry__link:focus-visible .history-entry__thumb img {
    transform: scale(1);
}

.history-entry__copy {
    min-width: 0;
}

.history-entry__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px 18px;
}

.history-entry__meta time {
    color: var(--amber);
    font-size: 12px;
    font-weight: 650;
}

.history-entry__meta span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .1em;
}

.history-entry h4 {
    margin: 7px 0 0;
    font-family: var(--serif);
    font-size: clamp(23px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.05;
}

@media (max-width: 1100px) {
    .history-years__track {
        min-width: 1400px;
    }

    .history-intro h2 {
        font-size: clamp(68px, 8.2vw, 90px);
        white-space: normal;
    }

    .history-intro__dek {
        grid-column: 1 / -1;
        max-width: 720px;
    }
}

@media (max-width: 980px) {
    .history-experience {
        grid-template-columns: minmax(280px, .82fr) minmax(430px, 1.18fr);
        gap: 46px;
    }

    .history-preview h3 {
        font-size: clamp(24px, 2.7vw, 28px);
    }

    .history-preview__excerpt {
        font-size: 14px;
    }

    .history-entry__link {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 16px;
    }

    .history-entry__thumb {
        width: 108px;
    }
}

@media (max-width: 860px) {
    .history-intro,
    .history-experience {
        padding-right: 20px;
        padding-left: 20px;
    }

    .history-intro {
        min-height: 520px;
        padding-top: 60px;
        padding-bottom: 44px;
    }

    .history-intro h2 {
        margin-top: 28px;
        font-size: clamp(56px, 15.5vw, 68px);
        line-height: .9;
        white-space: normal;
    }

    .history-intro__meta {
        display: grid;
        gap: 8px;
    }

    .history-intro__range {
        max-width: 38ch;
        text-align: left;
    }

    .history-intro__dek {
        grid-column: 1 / -1;
        justify-self: start;
        max-width: 560px;
        margin-top: 28px;
        font-size: 23px;
    }

    .history-years-shell {
        position: relative;
        top: auto;
    }

    .history-years {
        padding-right: 20px;
        padding-left: 20px;
    }

    .history-years__track {
        min-width: 1400px;
        height: 68px;
    }

    .history-years__link {
        height: 66px;
    }

    .history-experience {
        display: block;
        padding-bottom: 90px;
    }

    .history-preview {
        top: 72px;
        padding: 12px 0 14px;
        border-bottom: 1px solid var(--hairline);
    }

    .history-preview__link {
        display: grid;
        grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr);
        grid-template-rows: 1fr;
        align-items: center;
        gap: 0 15px;
    }

    .history-preview__media {
        grid-column: 1;
        grid-row: 1;
    }

    .history-preview__copy {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }

    .history-preview__action {
        display: none;
    }

    .history-preview h3 {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        font-size: clamp(19px, 5.6vw, 23px);
        line-height: 1.02;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .history-preview__excerpt {
        display: -webkit-box;
        min-height: 0;
        margin-top: 8px;
        font-size: 11px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
    }

    .history-list {
        padding-top: 42px;
    }

    .history-year {
        padding: 8px 0 34px 48px;
        scroll-margin-top: 42vh;
    }

    .history-year__heading {
        display: block;
    }

    .history-year__heading h3 {
        font-size: 38px;
    }

    .history-year__heading p {
        margin-top: 4px;
        font-size: 9px;
    }

    .history-entry {
        min-height: 106px;
    }

    .history-entry__node {
        left: -42px;
    }

    .history-entry__link {
        grid-template-columns: 94px minmax(0, 1fr);
        padding: 16px 4px;
        gap: 14px;
    }

    .history-entry__link:hover,
    .history-entry__link:focus-visible,
    .history-entry.is-active .history-entry__link {
        padding-left: 8px;
    }

    .history-entry__thumb {
        width: 94px;
    }

    .history-entry__meta {
        display: block;
    }

    .history-entry__meta span {
        display: block;
        margin-top: 2px;
    }

    .history-entry h4 {
        font-size: clamp(20px, 6vw, 27px);
    }
}

@media (max-width: 680px) {
    .history-preview {
        top: 64px;
    }
}

@media (max-width: 430px) {
    .history-intro h2 {
        font-size: 59px;
    }

    .history-intro__range {
        max-width: 32ch;
    }

    .history-preview__link {
        grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr);
    }

    .history-preview h3 {
        font-size: 23px;
    }

    .history-entry__link {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 12px;
    }

    .history-entry__thumb {
        width: 84px;
    }
}

.connect {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    padding-top: clamp(100px, 12vw, 170px);
    padding-bottom: clamp(100px, 12vw, 170px);
    border-top: 1px solid var(--hairline);
    gap: clamp(60px, 10vw, 150px);
}

.connect h2 {
    max-width: 700px;
    margin: 0 0 28px;
    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .94;
}

.connect__copy > p:last-child {
    max-width: 54ch;
    margin: 0;
    color: var(--muted);
}

.connect__links {
    border-bottom: 1px solid var(--hairline);
}

.connect__links a {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    min-height: 88px;
    padding: 18px 0;
    border-top: 1px solid var(--hairline);
    gap: 24px;
    font-family: var(--serif);
    font-size: clamp(24px, 2.3vw, 34px);
    text-decoration: none;
    transition: color .35s ease, padding-left .4s var(--ease);
}

.connect__links a:hover,
.connect__links a:focus-visible {
    padding-left: 14px;
    color: var(--amber-bright);
}

.connect__links a > span {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.connect__links b {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 400;
}

.site-footer {
    border-top: 1px solid var(--hairline);
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    width: min(100%, var(--shell));
    min-height: 92px;
    margin: 0 auto;
    padding: 32px var(--gutter);
    gap: 24px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .04em;
}

.archive-shell,
.article-shell,
.error-shell {
    width: min(100%, 1240px);
    min-height: 70vh;
    margin: 0 auto;
    padding: clamp(90px, 11vw, 150px) var(--gutter);
}

.archive-header,
.article__header {
    max-width: 980px;
    margin-bottom: 74px;
}

.archive-header > p:last-child,
.article__dek {
    max-width: 60ch;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.archive-feed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--hairline);
}

.archive-card {
    min-width: 0;
    border-bottom: 1px solid var(--hairline);
}

.archive-card:nth-child(odd) {
    border-right: 1px solid var(--hairline);
}

.archive-card__link {
    display: grid;
    min-height: 100%;
    padding: 38px;
    text-decoration: none;
}

.archive-card__media {
    margin: 0 0 30px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.archive-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.7) brightness(.7);
    transition: transform .6s var(--ease), filter .6s ease;
}

.archive-card__link:hover img,
.archive-card__link:focus-visible img {
    transform: scale(1.025);
    filter: grayscale(0) brightness(.9);
}

.archive-card time,
.article__meta {
    color: var(--amber-bright);
    font-size: 13px;
}

.archive-card h2 {
    margin: 12px 0 16px;
    font-family: var(--serif);
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1;
}

.archive-card p {
    margin: 0 0 20px;
    color: var(--muted);
}

.archive-card__copy > span:last-child {
    color: var(--paper-soft);
    font-size: 12px;
    font-weight: 650;
}

.pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 110px;
    color: var(--muted);
    font-size: 13px;
}

.pagination a {
    color: var(--paper);
    text-underline-offset: 5px;
}

.pagination__older {
    justify-self: end;
}

.article {
    max-width: 1200px;
    margin: 0 auto;
}

.article__header {
    margin-right: auto;
    margin-left: auto;
}

.article__meta {
    display: flex;
    margin-top: 28px;
    gap: 20px;
}

.article__feature {
    width: min(100%, 1200px);
    margin: 52px auto 72px;
}

.article__feature img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article__feature figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
}

.gh-content {
    width: min(100%, 760px);
    margin: 0 auto;
    color: #d8d2c8;
    font-size: 18px;
    line-height: 1.75;
}

.gh-content > * {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.gh-content h2,
.gh-content h3,
.gh-content h4 {
    margin-top: 2em;
    color: var(--paper);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.12;
}

.gh-content h2 { font-size: 42px; }
.gh-content h3 { font-size: 32px; }
.gh-content a { color: var(--amber-bright); text-underline-offset: 4px; }
.gh-content img { width: 100%; height: auto; }
.gh-content blockquote { margin: 2em 0; padding-left: 28px; border-left: 2px solid var(--amber); color: var(--paper); font-family: var(--serif); font-size: 28px; font-style: italic; }
.gh-content pre { overflow-x: auto; padding: 22px; background: #111; }
.gh-content code { font-size: .88em; }
.gh-content hr { margin: 3em auto; border: 0; border-top: 1px solid var(--hairline); }
.gh-content table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
.gh-content th, .gh-content td { padding: 12px; border: 1px solid var(--hairline); }
.kg-width-wide { width: min(100vw - (2 * var(--gutter)), 1080px); max-width: 1080px !important; margin-left: 50% !important; transform: translateX(-50%); }
.kg-width-full { width: 100vw; max-width: 100vw !important; margin-left: 50% !important; transform: translateX(-50%); }
.kg-width-wide img, .kg-width-full img, .kg-gallery-image img { width: 100%; height: auto; }
.kg-gallery-card { margin-top: 2.5em; margin-bottom: 2.5em; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 8px; }
.kg-gallery-row { display: flex; gap: 8px; }
.kg-gallery-image { margin: 0; overflow: hidden; background: var(--ink-raised); }
.kg-gallery-image img { display: block; height: 100%; object-fit: cover; }
.kg-embed-card iframe { width: 100%; }
.kg-card figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.45; text-align: center; }

@media (max-width: 600px) {
    .kg-gallery-row {
        flex-direction: column !important;
    }

    .kg-gallery-image {
        flex-basis: auto !important;
    }

    .kg-gallery-image img {
        height: auto;
        object-fit: contain;
    }
}

.error-shell {
    display: grid;
    align-content: center;
    max-width: 900px;
}

.error-shell > p:not(.eyebrow) {
    color: var(--muted);
}

@media (max-width: 1180px) {
    .site-header__links {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .featured__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 72px;
    }

    .featured__item:nth-child(4),
    .featured__item:nth-child(5) {
        border-top: 0;
    }

    .featured__item:nth-child(4) {
        grid-column: 1 / span 1;
    }

    .skills {
        min-height: auto;
    }

    .skills__sticky {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .skills__inner {
        padding-top: 92px;
        padding-bottom: 104px;
    }

    .skills__heading {
        margin-bottom: 52px;
    }

    .skills__accordion {
        display: block;
        min-height: 0;
    }

    .skills__item {
        display: block;
    }

    .skills__tab {
        grid-template-columns: 42px 3px minmax(0, 1fr);
        min-height: 78px;
    }

    .skills__tab strong {
        font-size: 16px;
    }

    .skills__panel {
        padding: 42px 0 58px;
        border-bottom: 1px solid var(--hairline);
    }

    .skills__panel h3 {
        font-size: clamp(40px, 7vw, 58px);
    }

    .skills__groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 54px;
    }

    .skills__backdrop::after {
        background: linear-gradient(90deg, rgba(5, 5, 5, .52) 0%, rgba(5, 5, 5, .88) 58%, rgba(5, 5, 5, .98) 100%);
    }

    .chapter-link {
        grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
    }

    .chapter-copy h3 {
        font-size: clamp(34px, 4vw, 48px);
    }
}

@media (max-width: 900px) {
    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
        min-height: calc(100svh - 73px);
        gap: 24px;
    }

    .hero h1 {
        font-size: clamp(48px, 6vw, 60px);
    }

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

    .testimonials__panels {
        min-height: 400px;
        border-right: 0;
        border-bottom: 1px solid var(--hairline);
    }

    .testimonials__rail {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials__rail button {
        border-right: 1px solid var(--hairline);
        border-bottom: 0;
    }

    .testimonials__rail button:last-child {
        border-right: 0;
    }

    .testimonials__rail button::before {
        top: -1px;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 2px;
        transform: scaleX(0);
    }

    .testimonials__rail button[aria-selected="true"]::before {
        transform: scaleX(1);
    }

    .current {
        grid-template-columns: 1fr;
        overflow-x: clip;
    }

    .current__media {
        grid-column: 1;
        margin: 0;
    }

    .current__copy {
        grid-column: 1;
        width: min(72%, 600px);
    }

    .current::after {
        background: linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.9) 38%, rgba(5,5,5,.56) 68%, rgba(5,5,5,.2) 100%);
    }

    .timeline {
        padding-left: 58px;
    }

    .timeline__track {
        left: 22px;
    }

    .timeline__item {
        min-height: auto;
        padding: 24px 0 96px;
    }

    .chapter-link {
        display: flex;
        min-height: 0;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .chapter-copy,
    .timeline__item:nth-child(odd) .chapter-copy {
        max-width: 680px;
        order: 1;
        justify-self: auto;
        text-align: left;
    }

    .chapter-media,
    .timeline__item:nth-child(odd) .chapter-media {
        order: 2;
        grid-column: auto;
        grid-row: auto;
    }

    .timeline__node {
        top: 38px;
        left: calc(22px - 58px);
    }

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

@media (max-width: 760px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 0;
        gap: 0;
    }

    .hero__copy {
        padding: 38px 0 24px;
    }

    .hero__portrait {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .hero__portrait img {
        max-height: 560px;
    }
}

@media (max-width: 680px) {
    :root {
        --gutter: 22px;
    }

    .featured {
        overflow-x: clip;
    }

    body {
        font-size: 16px;
    }

    .site-header__inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        min-height: 64px;
        padding-right: 16px;
        padding-left: 18px;
        gap: 18px;
    }

    .site-brand {
        flex: 0 0 auto;
        font-size: 18px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% - 1px);
        right: 16px;
        left: 16px;
        display: grid;
        overflow: hidden;
        margin: 0;
        padding: 8px 14px;
        border: 1px solid var(--hairline-bright);
        background: rgba(5, 5, 5, .98);
        box-shadow: 0 24px 54px rgba(0, 0, 0, .5);
        gap: 0;
    }

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

    .site-nav a {
        min-height: 48px;
        padding: 0 4px;
        border-bottom: 1px solid var(--hairline);
        font-size: 13px;
    }

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

    .site-nav-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 64px;
        min-height: 44px;
        margin-left: auto;
        padding: 0 14px;
        border: 1px solid var(--hairline-bright);
        background: transparent;
        color: var(--paper-soft);
        font: inherit;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .04em;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 0;
        gap: 0;
    }

    .hero__copy {
        padding: 34px 0 18px;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(38px, 11.8vw, 54px);
    }

    .hero__narrative {
        font-size: 16px;
    }

    .hero__proof strong {
        font-size: 34px;
    }

    .hero__portrait {
        width: calc(100% + 10px);
        margin-left: -5px;
    }

    .hero__portrait img {
        max-height: 560px;
        margin: 0 auto;
    }

    .philosophy {
        min-height: 430px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section-heading h2 {
        font-size: clamp(42px, 13vw, 56px);
    }

    .featured__list {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(270px, 82vw);
        margin-right: calc(var(--gutter) * -1);
        padding-right: var(--gutter);
        gap: 24px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
    }

    .featured__item,
    .featured__item:nth-child(4),
    .featured__item:nth-child(5) {
        grid-column: auto;
        border-top: 0;
        scroll-snap-align: start;
    }

    .skills__inner {
        padding-top: 76px;
        padding-bottom: 88px;
    }

    .skills__heading h2 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1.02;
    }

    .skills__tab {
        grid-template-columns: 34px 3px minmax(0, 1fr);
        min-height: 72px;
        gap: 12px;
    }

    .skills__tab strong {
        font-size: 14px;
    }

    .skills__marker {
        height: 36px;
    }

    .skills__panel {
        padding-top: 34px;
        padding-bottom: 52px;
    }

    .skills__panel h3 {
        font-size: clamp(36px, 10.5vw, 48px);
    }

    .skills__panel > p {
        margin-top: 17px;
        font-size: 15px;
    }

    .skills__groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 32px;
        padding-top: 28px;
        gap: 30px 24px;
    }

    #skill-panel-apple .skills__groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #skill-panel-apple .skills__group:first-child {
        grid-column: 1 / -1;
    }

    .skills__group h4 {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .skills__group li {
        margin-bottom: 10px;
        font-size: 16px;
        white-space: normal;
    }

    .testimonials__panels {
        min-height: 480px;
        padding: 38px 24px;
    }

    .testimonial-panel blockquote {
        font-size: clamp(30px, 9vw, 42px);
    }

    .testimonials__rail {
        overflow-x: auto;
    }

    .testimonials__rail button {
        min-width: 135px;
        padding: 16px;
    }

    .testimonials__rail button strong {
        font-size: 19px;
    }

    .current {
        min-height: 760px;
        margin: 0;
        padding: 0 var(--gutter);
    }

    .current__media {
        left: calc(var(--gutter) * -1);
        width: 100vw;
        margin: 0;
        transform: none;
    }

    .js .current__media.reveal,
    .js .current__media.reveal.is-visible {
        transform: none;
    }

    .current__copy {
        align-self: end;
        width: 100%;
        padding: 74px 0;
    }

    .current::after {
        left: calc(var(--gutter) * -1);
        width: 100vw;
        transform: none;
        background: linear-gradient(0deg, var(--ink) 0%, rgba(5,5,5,.96) 50%, rgba(5,5,5,.58) 76%, rgba(5,5,5,.18) 100%);
    }

    .current h2 {
        font-size: clamp(36px, 9.5vw, 46px);
    }

    .chapters__header {
        text-align: left;
    }

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

    .timeline {
        padding-left: 48px;
    }

    .timeline__track {
        left: 18px;
    }

    .timeline__node {
        left: calc(18px - 48px);
    }

    .chapter-copy h3 {
        font-size: clamp(34px, 10.5vw, 46px);
    }

    .chapter-copy p {
        font-size: 14px;
    }

    .chapter-link:focus-visible .chapter-copy,
    .chapter-link:focus-visible .chapter-media {
        outline-offset: 4px;
    }

    .connect__links a {
        grid-template-columns: 1fr auto;
        min-height: 96px;
        gap: 12px;
        font-size: 27px;
    }

    .connect__links a > span {
        grid-column: 1 / span 2;
    }

    .site-footer__inner {
        flex-direction: column;
    }

    .archive-feed {
        grid-template-columns: 1fr;
    }

    .archive-card:nth-child(odd) {
        border-right: 0;
    }

    .archive-card__link {
        padding: 28px 0;
    }

    .pagination {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .pagination span {
        display: none;
    }
}

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

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

    .js .reveal,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .js .philosophy__rule,
    .js .philosophy .word-reveal__word {
        opacity: 1;
        transform: none;
        filter: none;
        text-shadow: none;
    }

    .timeline {
        --timeline-progress: 1 !important;
    }

    .skills {
        min-height: auto !important;
    }

    .skills__sticky {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .js .skills__panel.is-active,
    .js .skills__panel.is-active .skills__group {
        animation: none;
    }

    .chapter-media img,
    .chapter-link:hover .chapter-media img,
    .chapter-link:focus-visible .chapter-media img,
    .current__media img,
    .current__media.is-visible img,
    .skills__backdrop img {
        transform: none !important;
    }

    .timeline__item .chapter-media img {
        filter: grayscale(.25) brightness(.82) !important;
    }

    .timeline__item .chapter-copy h3,
    .timeline__item .chapter-copy p {
        color: var(--paper) !important;
    }
}

@media print {
    .site-header, .site-footer, .timeline__track, .timeline__node, .testimonials__rail {
        display: none !important;
    }

    body {
        background: #fff;
        color: #111;
    }

    .section-shell {
        width: 100%;
        max-width: none;
    }
}

/* LinkedIn liquid invitation */

html.has-linkedin-liquid,
body.has-linkedin-liquid {
    overflow: hidden;
}

.linkedin-liquid {
    --liquid-copy-width: clamp(250px, 23.281vw, 360px);
    --liquid-portrait-width: clamp(168px, 15.625vw, 242px);
    --liquid-portrait-height: clamp(218px, 20.313vw, 314px);
    --liquid-portrait-lift: clamp(35px, 3.281vw, 51px);
    --liquid-content-gap: clamp(2px, .2vw, 4px);
    --liquid-content-right: clamp(24px, 2.344vw, 42px);
    --liquid-content-top: clamp(128px, 12.813vw, 205px);
    position: fixed;
    z-index: 2000;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: #f2eee7;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    isolation: isolate;
}

.linkedin-liquid:not([open]) {
    display: none;
}

.linkedin-liquid::backdrop {
    opacity: 0;
    background: rgba(0, 0, 0, .34);
    -webkit-backdrop-filter: grayscale(1) brightness(.47) contrast(.9);
    backdrop-filter: grayscale(1) brightness(.47) contrast(.9);
    transition: opacity .82s cubic-bezier(.33, 1, .68, 1);
}

.linkedin-liquid.is-active::backdrop {
    opacity: 1;
    transition-delay: .98s;
}

.linkedin-liquid.is-closing::backdrop {
    opacity: 0;
    transition-delay: 0s;
    transition-duration: .38s;
}

.linkedin-liquid__surface,
.linkedin-liquid__canvas,
.linkedin-liquid__dimmer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.linkedin-liquid__surface {
    z-index: 1;
    pointer-events: none;
    transition: opacity .3s ease, transform .38s var(--ease);
}

.linkedin-liquid__canvas {
    z-index: 1;
    display: block;
}

.linkedin-liquid__dimmer {
    z-index: 0;
    opacity: 0;
    background: radial-gradient(
        ellipse 34% 72% at 69% 48%,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 45%,
        rgba(0, 0, 0, .78) 70%,
        transparent 100%
    );
}

.linkedin-liquid.is-active .linkedin-liquid__dimmer {
    animation: linkedin-liquid-dimmer-in .64s .98s cubic-bezier(.25, .46, .45, .94) both;
}

.linkedin-liquid__content {
    position: absolute;
    z-index: 2;
    top: var(--liquid-content-top);
    right: var(--liquid-content-right);
    display: grid;
    grid-template-columns: var(--liquid-portrait-width) var(--liquid-copy-width);
    gap: var(--liquid-content-gap);
    align-items: start;
    pointer-events: none;
    transition: opacity .3s ease, transform .38s var(--ease);
}

.linkedin-liquid__content::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background: radial-gradient(
        ellipse 28% 46% at 86% 40%,
        rgba(0, 0, 0, .68) 0%,
        rgba(0, 0, 0, .5) 48%,
        rgba(0, 0, 0, .2) 76%,
        transparent 100%
    );
    content: "";
}

.linkedin-liquid__portrait-group {
    position: relative;
    width: var(--liquid-portrait-width);
    height: var(--liquid-portrait-height);
    margin-top: calc(var(--liquid-portrait-lift) * -1);
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: opacity;
}

.linkedin-liquid__portrait-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.linkedin-liquid__portrait-window,
.linkedin-liquid__portrait-specular-clip,
.linkedin-liquid__portrait-integrated,
.linkedin-liquid__portrait-sheen,
.linkedin-liquid__portrait-specular {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.linkedin-liquid__portrait-window {
    -webkit-mask: url(#linkedin-portrait-reveal-mask);
    mask: url(#linkedin-portrait-reveal-mask);
}

.linkedin-liquid__portrait-integrated,
.linkedin-liquid__portrait-sheen,
.linkedin-liquid__portrait-specular-clip {
    -webkit-mask-image: radial-gradient(
        ellipse 57% 54% at 50% 48%,
        #000 0%,
        #000 45%,
        rgba(0, 0, 0, .78) 66%,
        rgba(0, 0, 0, .24) 86%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 57% 54% at 50% 48%,
        #000 0%,
        #000 45%,
        rgba(0, 0, 0, .78) 66%,
        rgba(0, 0, 0, .24) 86%,
        transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.linkedin-liquid__portrait-integrated {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 44%;
    opacity: .82;
    filter: grayscale(1) brightness(.67) contrast(1.06);
}

.linkedin-liquid__portrait-sheen {
    background:
        radial-gradient(ellipse 34% 12% at 60% 15%, rgba(255, 255, 255, .18), transparent 70%),
        radial-gradient(ellipse 46% 15% at 52% 72%, rgba(224, 230, 236, .11), transparent 72%);
    mix-blend-mode: screen;
    opacity: .09;
}

.linkedin-liquid__portrait-specular-clip {
    opacity: 0;
    mix-blend-mode: screen;
}

.linkedin-liquid__portrait-specular {
    background: linear-gradient(
        102deg,
        transparent 36%,
        rgba(232, 238, 244, .05) 43%,
        rgba(255, 255, 255, .34) 50%,
        rgba(226, 234, 242, .08) 57%,
        transparent 64%
    );
    filter: blur(8px);
    will-change: transform;
}

.linkedin-liquid__copy {
    position: relative;
    z-index: 1;
    display: flex;
    width: var(--liquid-copy-width);
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(10px, 1.094vw, 16px);
    margin: 0;
    pointer-events: auto;
}

.linkedin-liquid__copy p,
.linkedin-liquid__copy h2 {
    margin: 0;
}

.linkedin-liquid__eyebrow,
.linkedin-liquid__title,
.linkedin-liquid__description,
.linkedin-liquid__cta,
.linkedin-liquid__dismiss {
    opacity: 0;
    will-change: transform, opacity;
}

.linkedin-liquid__eyebrow {
    transform: translate3d(18px, 0, 0);
    color: #efb85f;
    font-size: clamp(13px, 1.172vw, 17px);
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1;
}

.linkedin-liquid__title {
    max-width: 100%;
    transform: translate3d(28px, 0, 0);
    color: #f2eee7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 2.734vw, 42px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.linkedin-liquid__description {
    max-width: 97%;
    transform: translate3d(20px, 0, 0);
    color: #beb9b0;
    font-size: clamp(15px, 1.328vw, 19px);
    font-weight: 350;
    line-height: 1.42;
}

.linkedin-liquid__cta {
    display: inline-flex;
    min-height: clamp(44px, 3.75vw, 54px);
    align-items: center;
    justify-content: center;
    gap: .35em;
    padding: 0 clamp(18px, 1.72vw, 24px);
    transform: translate3d(12px, 0, 0) scaleX(.92);
    transform-origin: left center;
    border: 1px solid rgba(228, 168, 75, .82);
    border-radius: 999px;
    background: rgba(4, 4, 4, .78);
    box-shadow: inset 0 0 20px rgba(228, 168, 75, .035);
    color: #efb85f;
    font-size: clamp(15px, 1.406vw, 19px);
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1;
    text-decoration: none;
    transition: border-color .24s ease, background-color .24s ease, color .24s ease;
}

.linkedin-liquid__cta:hover,
.linkedin-liquid__cta:focus-visible {
    border-color: #efb85f;
    background: rgba(239, 184, 95, .11);
    color: #ffd28d;
}

.linkedin-liquid__dismiss {
    min-height: 34px;
    padding: 0;
    transform: translate3d(10px, 0, 0);
    border: 0;
    background: transparent;
    color: #beb9b0;
    cursor: pointer;
    font-size: clamp(14px, 1.328vw, 18px);
    font-weight: 350;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: color .2s ease;
}

.linkedin-liquid__dismiss:hover,
.linkedin-liquid__dismiss:focus-visible {
    color: #f2eee7;
}

.linkedin-liquid.is-active .linkedin-liquid__eyebrow {
    animation: linkedin-liquid-copy-in .32s 2.76s cubic-bezier(.215, .61, .355, 1) both;
}

.linkedin-liquid.is-active .linkedin-liquid__title {
    animation: linkedin-liquid-copy-in .46s 2.9s cubic-bezier(.215, .61, .355, 1) both;
}

.linkedin-liquid.is-active .linkedin-liquid__description {
    animation: linkedin-liquid-copy-in .4s 3.12s cubic-bezier(.25, .46, .45, .94) both;
}

.linkedin-liquid.is-active .linkedin-liquid__cta {
    animation: linkedin-liquid-cta-in .38s 3.34s cubic-bezier(.215, .61, .355, 1) both;
}

.linkedin-liquid.is-active .linkedin-liquid__dismiss {
    animation: linkedin-liquid-copy-in .28s 3.52s cubic-bezier(.25, .46, .45, .94) both;
}

.linkedin-liquid.is-closing .linkedin-liquid__surface,
.linkedin-liquid.is-closing .linkedin-liquid__content {
    opacity: 0;
    transform: translate3d(6vw, 0, 0);
}

@keyframes linkedin-liquid-dimmer-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes linkedin-liquid-copy-in {
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes linkedin-liquid-cta-in {
    to { opacity: 1; transform: translate3d(0, 0, 0) scaleX(1); }
}

@media (max-width: 760px) {
    .linkedin-liquid {
        --liquid-copy-width: min(340px, calc(100vw - 36px));
        --liquid-portrait-width: clamp(128px, 37vw, 150px);
        --liquid-portrait-height: clamp(166px, 48.1vw, 195px);
        --liquid-content-right: 18px;
        --liquid-content-top: clamp(330px, 43dvh, 380px);
    }

    .linkedin-liquid::backdrop {
        background: rgba(0, 0, 0, .48);
        -webkit-backdrop-filter: grayscale(1) brightness(.36) contrast(.9);
        backdrop-filter: grayscale(1) brightness(.36) contrast(.9);
    }

    .linkedin-liquid__dimmer {
        background: radial-gradient(
            ellipse 96% 72% at 60% 43%,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, .96) 48%,
            rgba(0, 0, 0, .76) 72%,
            transparent 100%
        );
    }

    .linkedin-liquid__content {
        display: block;
        width: var(--liquid-copy-width);
    }

    .linkedin-liquid__content::before {
        background: radial-gradient(
            ellipse 72% 50% at 68% 46%,
            rgba(0, 0, 0, .74) 0%,
            rgba(0, 0, 0, .52) 54%,
            rgba(0, 0, 0, .18) 78%,
            transparent 100%
        );
    }

    .linkedin-liquid__portrait-group {
        position: absolute;
        bottom: calc(100% + 12px);
        left: clamp(0px, 6vw, 22px);
        margin: 0;
    }

    .linkedin-liquid__copy {
        width: 100%;
        gap: 10px;
    }

    .linkedin-liquid__eyebrow {
        font-size: 13px;
    }

    .linkedin-liquid__title {
        max-width: 330px;
        font-size: clamp(30px, 8.2vw, 36px);
    }

    .linkedin-liquid__description {
        max-width: 100%;
        color: #cbc5bb;
        font-size: clamp(15px, 4vw, 17px);
        font-weight: 400;
    }

    .linkedin-liquid__cta {
        min-height: 46px;
        font-size: 16px;
    }

    .linkedin-liquid__dismiss {
        color: #c4beb5;
        font-size: 15px;
    }
}

@media (max-width: 760px) and (max-height: 700px) {
    .linkedin-liquid {
        --liquid-portrait-width: 110px;
        --liquid-portrait-height: 143px;
        --liquid-content-top: clamp(205px, 33dvh, 235px);
    }

    .linkedin-liquid__portrait-group {
        bottom: calc(100% + 8px);
        left: 18px;
    }

    .linkedin-liquid__copy {
        gap: 7px;
    }

    .linkedin-liquid__title {
        font-size: 27px;
    }

    .linkedin-liquid__description {
        font-size: 14px;
        line-height: 1.35;
    }

    .linkedin-liquid__cta {
        min-height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .linkedin-liquid::backdrop,
    .linkedin-liquid__surface,
    .linkedin-liquid__content {
        transition: none;
    }

    .linkedin-liquid.is-active::backdrop {
        opacity: 1;
        transition-delay: 0s;
    }

    .linkedin-liquid.is-active .linkedin-liquid__dimmer,
    .linkedin-liquid.is-active .linkedin-liquid__eyebrow,
    .linkedin-liquid.is-active .linkedin-liquid__title,
    .linkedin-liquid.is-active .linkedin-liquid__description,
    .linkedin-liquid.is-active .linkedin-liquid__cta,
    .linkedin-liquid.is-active .linkedin-liquid__dismiss {
        animation: none;
    }

    .linkedin-liquid.is-active .linkedin-liquid__dimmer,
    .linkedin-liquid.is-active .linkedin-liquid__eyebrow,
    .linkedin-liquid.is-active .linkedin-liquid__title,
    .linkedin-liquid.is-active .linkedin-liquid__description,
    .linkedin-liquid.is-active .linkedin-liquid__cta,
    .linkedin-liquid.is-active .linkedin-liquid__dismiss {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .linkedin-liquid {
        display: none !important;
    }
}

/* Testimonials system */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.testimonials__stage {
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
    min-height: 540px;
}

.testimonials__rail {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    align-content: center;
    border-right: 1px solid var(--hairline);
}

.testimonials__rail button {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    min-height: 104px;
    padding: 20px 28px;
    gap: 18px;
}

.testimonial-tab__number {
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.testimonial-tab__label {
    display: grid;
    min-width: 0;
    gap: 3px;
    letter-spacing: normal;
    text-transform: none;
}

.testimonial-tab__label strong {
    align-self: auto !important;
    font-size: 22px !important;
    letter-spacing: normal;
    text-transform: none;
}

.testimonial-tab__label small {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.testimonial-tab--contribute .testimonial-tab__number,
.testimonial-tab--contribute .testimonial-tab__label small {
    color: var(--amber-bright);
}

.testimonials__panels {
    grid-column: 2;
    grid-row: 1;
    min-height: 540px;
    padding: clamp(52px, 6vw, 88px);
    border-right: 0;
}

.testimonial-panel blockquote {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    max-width: 850px;
    font-size: clamp(28px, 2.6vw, 36px);
    font-style: normal;
    letter-spacing: -.022em;
    line-height: 1.22;
}

.testimonial-quote-mark {
    margin-right: 14px;
    color: var(--amber-bright);
    font-family: var(--serif);
    font-size: .9em;
    line-height: 1;
}

.testimonial-quote-mark--close {
    align-self: end;
    margin-right: 0;
    margin-left: 12px;
}

.testimonial-quote-copy,
.testimonial-quote-copy p,
.testimonial-ledger blockquote p {
    margin: 0;
}

.testimonial-panel figcaption {
    margin-top: 40px;
    padding-left: 52px;
}

.testimonial-panel figcaption strong {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
}

.testimonial-panel figcaption span {
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.testimonial-panel--form {
    width: 100%;
}

.testimonials__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

@media (min-width: 1181px) {
    .testimonials.is-scroll-sequence {
        position: relative;
        padding-bottom: 160px;
    }

    .testimonials.is-scroll-sequence .section-heading {
        position: sticky;
        z-index: 2;
        top: 73px;
        margin-bottom: 0;
        padding: 14px 0 18px;
        background: var(--ink);
    }

    .testimonials.is-scroll-sequence .testimonials__stage {
        position: sticky;
        z-index: 1;
        top: var(--testimonials-stage-top, 207px);
        background: var(--ink);
    }

    .testimonials.is-scroll-sequence .testimonials__footer {
        position: absolute;
        right: 0;
        bottom: 96px;
        left: 0;
    }

.testimonials.is-scroll-sequence.is-final-hold .testimonials__footer {
    position: fixed;
    z-index: 4;
        right: auto;
        bottom: 0;
        left: 50%;
        width: min(100%, var(--shell));
        margin: 0;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
    background: var(--ink);
}

    .testimonials.is-scroll-sequence.is-form-active .testimonials__panels {
        min-height: 540px;
        padding: 24px clamp(38px, 4vw, 60px);
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form--compact .testimonial-form__intro h2 {
        font-size: clamp(38px, 3vw, 46px);
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__intro > p:last-child {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.45;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form--compact .testimonial-form__fields {
        margin-top: 16px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__fields {
        gap: 10px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__fields > label:not(.testimonial-form__consent):not(.testimonial-form__honeypot) {
        gap: 4px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form input[type="text"],
    .testimonials.is-scroll-sequence.is-form-active .testimonial-form textarea {
        min-height: 34px;
        padding: 4px 0 6px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form textarea {
        min-height: 88px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__consent {
        gap: 10px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__note,
    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__status {
        margin-top: -2px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__actions {
        gap: 18px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__submit {
        min-height: 44px;
        padding: 10px 24px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__back {
        min-height: 40px;
    }
}

/* Preserve the scroll sequence on laptop-height viewports while reserving a
   deliberate clear zone above the fixed archive link. */
@media (min-width: 1181px) and (max-height: 940px) {
    .testimonials.is-scroll-sequence.is-form-active .testimonials__panels {
        padding: 12px clamp(38px, 4vw, 60px) 24px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form--compact .testimonial-form__intro h2 {
        font-size: clamp(36px, 2.7vw, 42px);
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__intro > p:last-child {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.35;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form--compact .testimonial-form__fields {
        margin-top: 10px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__fields {
        gap: 6px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__fields > label:not(.testimonial-form__consent):not(.testimonial-form__honeypot) {
        gap: 2px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form input[type="text"],
    .testimonials.is-scroll-sequence.is-form-active .testimonial-form textarea {
        min-height: 30px;
        padding: 2px 0 4px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form textarea {
        min-height: 64px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__consent {
        gap: 8px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__note,
    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__status {
        margin-top: -4px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__actions {
        gap: 16px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__submit {
        min-height: 42px;
        padding: 8px 22px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__back {
        min-height: 38px;
    }
}

/* Very short desktop windows keep the same testimonial sequence. Only the
   heading, stage, and form density adapt so the final controls remain clear. */
@media (min-width: 1181px) and (max-height: 820px) {
    .testimonials.is-scroll-sequence .section-heading {
        padding-top: 6px;
        padding-bottom: 10px;
    }

    .testimonials.is-scroll-sequence .testimonials__stage,
    .testimonials.is-scroll-sequence .testimonials__panels {
        min-height: max(440px, calc(100vh - var(--testimonials-stage-top, 190px) - 44px));
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonials__panels {
        min-height: max(440px, calc(100vh - var(--testimonials-stage-top, 190px) - 44px));
        padding: 6px clamp(34px, 3.5vw, 52px) 16px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-panel--form {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form--compact .testimonial-form__intro h2 {
        font-size: clamp(32px, 2.5vw, 36px);
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__intro > p:last-child {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.3;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form--compact .testimonial-form__fields {
        margin-top: 8px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__fields {
        gap: 4px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form input[type="text"],
    .testimonials.is-scroll-sequence.is-form-active .testimonial-form textarea {
        min-height: 28px;
        padding: 1px 0 3px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form textarea {
        min-height: 52px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__consent {
        gap: 6px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__submit {
        min-height: 40px;
        padding: 7px 20px;
    }

    .testimonials.is-scroll-sequence.is-form-active .testimonial-form__back {
        min-height: 36px;
    }
}

.testimonial-form {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(56px, 9vw, 130px);
}

.testimonial-form--compact {
    display: block;
}

.testimonial-form__intro h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 4.5vw, 66px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
}

.testimonial-form--compact .testimonial-form__intro h2 {
    font-size: clamp(38px, 4vw, 54px);
}

.testimonial-form__intro > p:last-child {
    max-width: 46ch;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.testimonial-form--compact .testimonial-form__intro .eyebrow {
    display: none;
}

.testimonial-form--compact .testimonial-form__fields {
    margin-top: 34px;
}

.testimonial-form__fields {
    display: grid;
    gap: 24px;
}

.testimonial-form__fields > label:not(.testimonial-form__consent):not(.testimonial-form__honeypot) {
    display: grid;
    gap: 8px;
}

.testimonial-form__fields label > span {
    color: var(--paper-soft);
    font-size: 13px;
}

.testimonial-form input[type="text"],
.testimonial-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 7px 0 10px;
    border: 0;
    border-bottom: 1px solid var(--paper-soft);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--paper);
    resize: vertical;
}

.testimonial-form textarea {
    min-height: 108px;
}

.testimonial-form input[type="text"]:focus,
.testimonial-form textarea:focus {
    border-color: var(--amber-bright);
    box-shadow: 0 1px 0 var(--amber-bright);
}

.testimonial-form__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.testimonial-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.testimonial-form__consent input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: var(--amber-bright);
}

.testimonial-form__note,
.testimonial-form__status {
    margin: -8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.testimonial-form__status:not(:empty) {
    color: var(--paper-soft);
}

.testimonial-form__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.testimonial-form__submit {
    min-height: 50px;
    padding: 12px 28px;
    border: 1px solid var(--amber-bright);
    border-radius: 0;
    background: var(--amber-bright);
    color: #090806;
    cursor: pointer;
}

.testimonial-form__submit:hover,
.testimonial-form__submit:focus-visible {
    background: var(--paper);
    border-color: var(--paper);
}

.testimonial-form__submit:disabled {
    cursor: wait;
    opacity: .58;
}

.testimonial-form__back {
    min-height: 44px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--amber);
    border-radius: 0;
    background: transparent;
    color: var(--paper-soft);
    cursor: pointer;
}

.testimonials-page__hero {
    padding-top: clamp(90px, 10vw, 150px);
    padding-bottom: clamp(72px, 8vw, 110px);
    text-align: center;
}

.testimonials-page__hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(64px, 8vw, 104px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .92;
}

.testimonials-page__hero > p:last-child {
    margin: 24px 0 0;
    color: var(--paper-soft);
}

.featured-testimonials {
    padding-bottom: clamp(92px, 10vw, 140px);
}

.featured-testimonials__stage {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    min-height: 480px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.featured-testimonials__panels {
    display: grid;
    align-items: center;
    min-width: 0;
    padding: clamp(46px, 6vw, 84px) clamp(32px, 5vw, 72px) clamp(46px, 6vw, 84px) 0;
    border-right: 1px solid var(--hairline);
}

.featured-testimonials__rail {
    display: grid;
    align-content: center;
}

.featured-testimonials__rail button {
    position: relative;
    display: grid;
    min-height: 100px;
    padding: 22px 32px;
    border: 0;
    border-bottom: 1px solid var(--hairline);
    border-radius: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.featured-testimonials__rail button:last-child {
    border-bottom: 0;
}

.featured-testimonials__rail button::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: -1px;
    width: 2px;
    content: "";
    transform: scaleY(0);
    background: var(--amber-bright);
    transition: transform .35s var(--ease);
}

.featured-testimonials__rail button[aria-selected="true"]::before {
    transform: scaleY(1);
}

.featured-testimonials__rail strong {
    align-self: end;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}

.featured-testimonials__rail span {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.featured-testimonials .testimonial-panel blockquote {
    font-size: clamp(30px, 3vw, 42px);
}

.featured-testimonials .testimonial-panel figcaption {
    padding-left: 50px;
}

.testimonial-archive {
    padding-bottom: clamp(96px, 11vw, 150px);
}

.testimonial-archive__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--hairline-bright);
    gap: 32px;
}

.testimonial-archive__header h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .95;
}

.testimonial-archive__header p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.testimonial-ledger__item {
    display: grid;
    grid-template-columns: 48px minmax(210px, .52fr) minmax(0, 1.48fr);
    padding: 36px 0;
    border-bottom: 1px solid var(--hairline);
    gap: clamp(24px, 4vw, 64px);
}

.testimonial-ledger__number {
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.testimonial-ledger__item h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.12;
}

.testimonial-ledger__item header p {
    max-width: 25ch;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .04em;
    line-height: 1.5;
    text-transform: uppercase;
}

.testimonial-ledger__item blockquote {
    margin: 0;
    color: var(--paper-soft);
    font-family: var(--serif);
    font-size: clamp(20px, 1.8vw, 25px);
    line-height: 1.38;
}

.testimonial-archive .pagination {
    margin-top: 34px;
}

.testimonial-contribute {
    padding-top: clamp(74px, 8vw, 110px);
    padding-bottom: clamp(96px, 11vw, 150px);
    border-top: 2px solid var(--amber);
}

@media (max-width: 900px) {
    .testimonials__stage,
    .featured-testimonials__stage {
        grid-template-columns: 1fr;
    }

    .testimonials__rail {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(5, minmax(150px, 1fr));
        overflow-x: auto;
        border-top: 1px solid var(--hairline);
        border-right: 0;
    }

    .testimonials__panels {
        grid-column: 1;
        grid-row: 1;
        min-height: 460px;
        border-bottom: 0;
    }

    .testimonials__rail button {
        grid-template-columns: 32px minmax(0, 1fr);
        min-width: 168px;
        border-right: 1px solid var(--hairline);
        border-bottom: 0;
    }

    .testimonials__rail button::before {
        top: -1px;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 2px;
        transform: scaleX(0);
    }

    .testimonials__rail button[aria-selected="true"]::before {
        transform: scaleX(1);
    }

    .featured-testimonials__panels {
        min-height: 450px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--hairline);
    }

    .featured-testimonials__rail {
        grid-template-columns: repeat(4, minmax(160px, 1fr));
        overflow-x: auto;
    }

    .featured-testimonials__rail button {
        border-right: 1px solid var(--hairline);
        border-bottom: 0;
    }

    .featured-testimonials__rail button::before {
        top: -1px;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 2px;
        transform: scaleX(0);
    }

    .featured-testimonials__rail button[aria-selected="true"]::before {
        transform: scaleX(1);
    }

    .testimonial-form {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonial-ledger__item {
        grid-template-columns: 42px minmax(180px, .7fr) minmax(0, 1.3fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .testimonials__panels {
        min-height: 470px;
        padding: 34px 20px;
    }

    .testimonial-panel blockquote,
    .featured-testimonials .testimonial-panel blockquote {
        grid-template-columns: 20px minmax(0, 1fr) 20px;
        font-size: clamp(24px, 7vw, 30px);
    }

    .testimonial-tab__label strong {
        font-size: 19px !important;
    }

    .testimonial-quote-mark {
        margin-right: 4px;
    }

    .testimonial-quote-mark--close {
        margin-left: 4px;
    }

    .testimonial-panel figcaption,
    .featured-testimonials .testimonial-panel figcaption {
        margin-top: 28px;
        padding-left: 24px;
    }

    .testimonial-panel figcaption strong {
        font-size: 21px;
    }

    .testimonials__rail {
        display: flex;
        overflow-x: auto;
    }

    .testimonials__rail button {
        flex: 0 0 78vw;
        min-width: 0;
    }

    .testimonials-page__hero {
        padding-top: 70px;
        padding-bottom: 62px;
        text-align: left;
    }

    .testimonials-page__hero h1 {
        font-size: clamp(58px, 18vw, 78px);
    }

    .featured-testimonials__panels {
        min-height: 480px;
        padding: 34px 0;
    }

    .featured-testimonials__rail {
        display: flex;
        overflow-x: auto;
    }

    .featured-testimonials__rail button {
        flex: 0 0 78vw;
        min-width: 0;
    }

    .testimonial-archive__header {
        display: block;
    }

    .testimonial-archive__header p {
        margin-top: 14px;
    }

    .testimonial-ledger__item {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 30px 0;
        gap: 18px;
    }

    .testimonial-ledger__item blockquote {
        grid-column: 2;
        margin-top: 6px;
        font-size: 21px;
    }

    .testimonial-form__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media print {
    .featured-testimonials__rail,
    .testimonial-form,
    .testimonials__rail {
        display: none !important;
    }
}
