@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340;0,9..144,460;0,9..144,600;1,9..144,440&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --bg: #0A0908;
    --bg-2: #121009;
    --bg-3: #17140D;
    --paper: #F1EADA;
    --paper-2: #E6DBC2;
    --text: #F2ECDD;
    --text-dim: #A79C86;
    --text-on-paper: #17140D;
    --text-on-paper-dim: #5E5646;
    --gold: #E7B15E;
    --copper: #C15B3D;
    --grad: linear-gradient(120deg, var(--gold), var(--copper));
    --grad-text: linear-gradient(120deg, #F2CB8C, #D97A55);
    --glass-bg: rgba(242, 236, 221, 0.045);
    --glass-brd: rgba(242, 236, 221, 0.11);
    --glass-brd-hi: rgba(231, 177, 94, 0.45);
    --rd-panel: #17140d;
    --rd-panel-edge: rgba(242, 236, 221, 0.14);
    --line: rgba(242, 236, 221, 0.12);
    --line-soft: rgba(242, 236, 221, 0.07);
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --container: 1200px;
    --gutter: 24px;
    --ease: cubic-bezier(.19, 1, .22, 1);
    --ease-soft: cubic-bezier(.22, .61, .36, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

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

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

h1,
h2,
h3,
h4,
p,
figure {
    margin: 0;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--copper);
    color: var(--text);
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.section {
    position: relative;
    padding: clamp(64px, 9vw, 120px) 0;
}

.section-paper {
    background: var(--paper);
    color: var(--text-on-paper);
}

.section-paper .text-dim {
    color: var(--text-on-paper-dim);
}

/* -------- Typography -------- */
.display {
    font-family: 'Recoleta Regular';
    line-height: 1.1;
    font-weight: 400;
}

.italic {
    font-style: normal;
    font-weight: 400;
}

.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.h1 {
    font-size: clamp(2.8rem, 7vw, 6.4rem);
}

.hero .h1 {
    font-size: 48px;
}

.hero .h1-index {
    font-size: 64px;
}

.hero .h1-rh {
    font-size: 56px;
}

.hero .h1-career {
    font-size: 52px;
}

.h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}

.h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
}

.section-paper .kicker {
    color: var(--copper);
}

.dek {
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    color: var(--text-dim);
    line-height: 1.6;
}

.text-dim {
    color: var(--text-dim);
}

/* -------- Nav (floating glass pill) -------- */
.nav-wrap {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    padding: 0 var(--gutter);
    pointer-events: none;
}

.site-nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    max-width: var(--container);
    padding: 10px 12px 10px 20px;
    border-radius: 100px;
    background: rgba(10, 9, 8, .5);
    border: 1px solid var(--glass-brd);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: background var(--ease-soft) .4s, border-color var(--ease-soft) .4s;
}

.site-nav.is-scrolled {
    background: rgba(10, 9, 8, .86);
}

.brand {
    font-family: 'Recoleta Regular';
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand .mark {
    width: 52px;
    height: 52px;
    padding: 12px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--rd-panel), #0f0d0b);
    box-shadow: 0 0 0 1px var(--rd-panel-edge), inset 0 1px 1px rgba(255, 255, 255, 0.06), 0 18px 34px -18px rgba(0, 0, 0, 0.7);
    display: block;
    overflow: hidden;
}

.brand .mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
}

.nav-links a:not(.nav-cta) {
    font-size: 1rem;
    color: var(--text-dim);
    transition: color .3s;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--text);
}

.nav-cta {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg) !important;
    background: var(--grad);
    padding: 10px 20px;
    border-radius: 100px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--text);
    font-size: 1.3rem;
}

@media (max-width:800px) {
    .nav-links {
        position: fixed;
        inset: 78px 16px auto 16px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(10, 9, 8, .96);
        border: 1px solid var(--glass-brd);
        border-radius: 20px;
        padding: 20px;
        gap: 6px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all .35s var(--ease-soft);
    }

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

    .nav-links a:not(.nav-cta) {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .nav-links a:not(.nav-cta):hover {
        background: var(--glass-bg);
    }

    .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }
}

/* -------- Buttons -------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), border-color .3s, background .3s, color .3s;
}

.btn-grad {
    background: var(--grad);
    color: var(--bg);
}

.btn-grad:hover {
    box-shadow: 0 10px 32px rgba(231, 177, 94, .28);
}

.btn-outline {
    border-color: var(--glass-brd);
    color: var(--text);
    background: var(--glass-bg);
}

.btn-outline:hover {
    border-color: var(--glass-brd-hi);
}

.section-paper .btn-outline {
    border-color: rgba(23, 20, 13, .18);
    color: var(--text-on-paper);
    background: transparent;
}

.section-paper .btn-outline:hover {
    border-color: var(--copper);
}

.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* -------- Glass / bento surfaces -------- */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    border-radius: var(--r-md);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.bento-card {
    grid-column: span 3;
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--r-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    transition: border-color .4s var(--ease-soft), transform .4s var(--ease-soft);
}

.bento-card:hover {
    border-color: var(--glass-brd-hi);
}

.bento-card.span-4 {
    grid-column: span 4;
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card .idx {
    font-family: 'Recoleta Regular';
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
}

.bento-card h3 {
    margin-top: 16px;
    margin-bottom: 10px;
    font-family: 'Recoleta Regular';
    font-weight: 460;
}

.bento-card p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* -------- Homepage pathway cards -------- */
.pathway-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.pathway-card {
    overflow: hidden;
    border: 1px solid var(--glass-brd);
    border-radius: var(--r-lg);
    background: #17140d;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

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

.pathway-content {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px 24px;
}

.pathway-content .idx {
    color: var(--gold);
    font-family: 'Recoleta Regular', serif;
    font-size: 1rem;
    font-style: italic;
}

.pathway-content h3 {
    margin-top: 8px;
    font-family: 'Recoleta Regular', serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 400;
}

.pathway-content p {
    margin-top: 6px;
    color: var(--text-dim);
    font-size: 1rem;
}

.pathway-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--copper);
    font-size: 1rem;
    font-weight: 600;
}

.pathway-link i {
    color: var(--copper);
    font-size: 1.2rem;
}

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

    .bento-card,
    .bento-card.span-4,
    .bento-card.span-2 {
        grid-column: span 1;
    }
}

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

/* -------- Reveal -------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}

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

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}

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

.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: .05s;
}

.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: .14s;
}

.reveal-stagger.is-visible>*:nth-child(3) {
    transition-delay: .23s;
}

.reveal-stagger.is-visible>*:nth-child(4) {
    transition-delay: .32s;
}

.reveal-stagger.is-visible>*:nth-child(5) {
    transition-delay: .41s;
}

/* -------- Hero -------- */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.mesh {
    position: absolute;
    inset: -10%;
    z-index: 0;
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
}

.mesh span {
    position: absolute;
    border-radius: 50%;
}

.mesh .b1 {
    width: 46vw;
    height: 46vw;
    left: -8%;
    top: -6%;
    background: radial-gradient(circle, rgba(231, 177, 94, .5), transparent 70%);
    animation: float1 22s ease-in-out infinite;
}

.mesh .b2 {
    width: 38vw;
    height: 38vw;
    right: -6%;
    top: 12%;
    background: radial-gradient(circle, rgba(193, 91, 61, .45), transparent 70%);
    animation: float2 26s ease-in-out infinite;
}

.mesh .b3 {
    width: 30vw;
    height: 30vw;
    left: 30%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(231, 177, 94, .28), transparent 70%);
    animation: float1 30s ease-in-out infinite reverse;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(4%, 6%);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5%, 4%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mesh span {
        animation: none;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 40px;
}

.hero-inner>* {
    min-width: 0;
}

.hero-lines .line {
    overflow: hidden;
}

.hero-lines .line span {
    display: block;
    transform: translateY(115%);
    opacity: 0;
}

.js-ready .hero-lines .line span {
    animation: lineUp 1s var(--ease) forwards;
}

.hero-lines .line:nth-child(1) span {
    animation-delay: .1s;
}

.hero-lines .line:nth-child(2) span {
    animation-delay: .24s;
}

.hero-lines .line:nth-child(3) span {
    animation-delay: .38s;
}

.hero-lines .line:nth-child(4) span {
    animation-delay: .52s;
}

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

.fade-in {
    opacity: 0;
}

.js-ready .fade-in {
    animation: fadeIn 1s var(--ease-soft) both;
}

.fade-in.d1 {
    animation-delay: .55s;
}

.fade-in.d2 {
    animation-delay: .72s;
}

.fade-in.d3 {
    animation-delay: .88s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-lines .line span {
        transform: none;
        opacity: 1;
        animation: none;
    }

    .fade-in {
        opacity: 1;
        animation: none;
    }
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 44px);
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line-soft);
}

.trust-item .num {
    font-family: 'Recoleta Regular';
    font-size: 1.7rem;
    color: var(--gold);
}

.trust-item .label {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 2px;
}

/* -------- Marquee ticker -------- */
.ticker {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 18px 0;
    background: var(--bg-2);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 32s linear infinite;
    will-change: transform;
}

.ticker-group {
    display: flex;
    gap: 48px;
    margin-right: 48px;
    flex: none;
}

.ticker-group::after {
    content: '-';
    color: var(--gold);
    align-self: center;
}

.ticker-item {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
}

.ticker-item:not(:last-child)::after {
    content: '-';
    color: var(--gold);
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.logo-showcase {
    padding: 54px 0 58px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.logo-showcase>.container {
    text-align: center;
}

.logo-showcase .kicker {
    color: var(--text-on-paper-dim);
}

.logo-marquee {
    width: min(100% - (var(--gutter) * 2), var(--container));
    margin-right: auto;
    margin-left: auto;
    margin-top: 24px;
    overflow: hidden;
}

.logo-marquee-track {
    display: flex;
    width: max-content;
    animation: logoScroll 30s linear infinite;
    will-change: transform;
}

.logo-marquee-group {
    display: flex;
    align-items: center;
    gap: clamp(42px, 7vw, 96px);
    padding: 0 48px;
    flex: none;
}

.logo-marquee-group img {
    display: block;
    width: auto;
    max-width: 132px;
    height: 34px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .62;
}

.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

@keyframes logoScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
        flex-wrap: wrap;
    }

    .logo-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .logo-marquee-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* -------- Photo (duotone editorial placeholder) -------- */
.photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    aspect-ratio: 4/5;
    background: radial-gradient(120% 130% at 15% 0%, rgba(231, 177, 94, .28), transparent 55%), linear-gradient(160deg, #241E14 0%, #151109 60%, #0A0908 100%);
    border: 1px solid var(--glass-brd);
}

.photo.wide {
    aspect-ratio: 4/5;
}

.photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(120deg, rgba(242, 236, 221, .045) 0 2px, transparent 2px 5px);
    mix-blend-mode: overlay;
}

.photo .tag {
    position: absolute;
    left: 18px;
    bottom: 16px;
    font-family: 'Recoleta Regular';
    font-style: italic;
    color: var(--text-dim);
    font-size: 1rem;
}

.photo .frame {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 1rem;
    color: var(--gold);
}

.photo.zoom img {
    transition: transform 1.3s var(--ease-soft);
}

.photo.zoom:hover img {
    transform: scale(1.05);
}

.photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.photo::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 9, 8, .18), transparent 42%, rgba(10, 9, 8, .68));
    content: '';
    pointer-events: none;
}

.photo .frame,
.photo .tag {
    z-index: 2;
}

/* -------- Pull quote -------- */
.pull {
    font-family: 'Recoleta Regular';
    font-style: italic;
    font-weight: 440;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.34;
}

.pull cite {
    display: block;
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-dim);
}

/* -------- Sticky-scroll method -------- */
.pin-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
}

.pin-panel {
    position: sticky;
    top: 110px;
}

.pin-card {
    border-radius: var(--r-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    padding: clamp(28px, 3vw, 44px);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pin-card .ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--glass-brd);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-card .ring span {
    font-family: 'Recoleta Regular';
    font-style: italic;
    color: var(--gold);
}

.pin-card .big {
    font-family: 'Recoleta Regular';
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-top: 24px;
    font-weight: 460;
}

.pin-card .desc {
    color: var(--text-dim);
    margin-top: 12px;
}

.pin-steps .step {
    padding: 40px 0;
    border-top: 1px solid var(--line-soft);
    opacity: .4;
    transition: opacity .4s;
}

.pin-steps .step:first-child {
    border-top: 0;
}

.pin-steps .step.is-active {
    opacity: 1;
}

.pin-steps .step .k {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
}

.pin-steps .step h4 {
    font-family: 'Recoleta Regular';
    font-size: 1.4rem;
    margin-top: 10px;
    font-weight: 460;
}

.pin-steps .step p {
    color: var(--text-dim);
    margin-top: 10px;
    max-width: 50ch;
}

@media (max-width:860px) {
    .pin-wrap {
        grid-template-columns: 1fr;
    }

    .pin-panel {
        position: static;
        margin-bottom: 20px;
    }
}

/* -------- Stat band -------- */
.stat-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.stat-cell {
    background: var(--bg-2);
    padding: clamp(28px, 3vw, 40px);
}

.stat-cell .num {
    font-family: 'Recoleta Regular';
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: transparent;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-cell .label {
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 22ch;
}

.section-paper .stat-cell .num {
    color: var(--copper);
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.section-paper .stat-cell .label {
    color: var(--text-on-paper-dim);
}

.bio-photo {
    min-height: 560px;
}

.grid-2.bio-layout {
    grid-template-columns: 2fr 3fr;
    align-items: start;
}

.bio-media {
    position: sticky;
    top: 112px;
    align-self: start;
}

.bio-highlights {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding-left: 22px;
    color: var(--text-dim);
    list-style: disc;
}

.bio-highlights li {
    padding-left: 4px;
}

.bio-highlights li::marker {
    color: var(--copper);
}

.bio-copy {
    margin: 22px 0 0;
    color: var(--text-dim);
}

.bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.bio-tags span {
    padding: 7px 12px;
    border: 1px solid var(--glass-brd);
    border-radius: 999px;
    color: var(--text-dim);
    font-size: 1rem;
}

.bio-cta {
    display: inline-flex;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.grid-2>* {
    min-width: 0;
}

@media (max-width:720px) {
    .stat-band {
        grid-template-columns: 1fr;
    }

    .bio-photo {
        min-height: 420px;
    }

    .grid-2.bio-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .bio-media {
        position: static;
    }
}

/* -------- Compare -------- */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compare .col {
    border-radius: var(--r-lg);
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid var(--glass-brd);
}

.compare .col-old {
    background: var(--glass-bg);
}

.compare .col-new {
    background: linear-gradient(160deg, rgba(231, 177, 94, .10), rgba(193, 91, 61, .08));
    border-color: var(--glass-brd-hi);
}

.compare h4 {
    font-family: 'Recoleta Regular';
    font-weight: 460;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.compare li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line-soft);
    font-size: 1rem;
    color: var(--text-dim);
}

.compare li:first-child {
    border-top: 0;
}

.compare .mk {
    font-family: 'Recoleta Regular';
    font-style: italic;
    flex: none;
}

.compare .col-old .mk {
    color: var(--text-dim);
}

.compare .col-new .mk {
    color: var(--gold);
}

.compare .col-new li {
    color: var(--text);
}

.section-paper .compare .col-new li {
    color: var(--text-on-paper);
    border-color: rgba(23, 20, 13, .1);
}

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

/* -------- Editorial reviews -------- */
.review-bg {
    padding: 0 24px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1232px;
    margin-inline: auto;
    border: 1px solid rgba(242, 234, 220, .24);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.tcard {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 420px;
    border-right: 1px solid rgba(242, 234, 220, .14);
    background: #211e19;
    padding: clamp(24px, 3vw, 32px);
}

.tcard:last-child {
    border-right: 0;
}

.client-logo {
    min-height: 42px;
    color: var(--paper);
    font-family: 'Recoleta Regular', serif;
    font-size: 1.35rem;
    font-style: italic;
    display: flex;
    align-items: center;
}

.client-logo img {
    display: block;
    width: auto;
    max-width: 128px;
    max-height: 42px;
    object-fit: contain;
}

.client-logo-script {
    font-family: 'Recoleta Regular', serif;
    font-size: 1.1rem;
}

.quote-mark {
    display: block;
    margin-top: 18px;
    color: var(--copper);
    font-family: Georgia, serif;
    font-size: 2.2rem;
    line-height: 1;
}

.tcard p {
    margin: 20px auto;
    font-size: 1rem;
    line-height: 1.55;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(242, 234, 220, .18);
}

.client-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50px;
    color: var(--paper);
    font-size: 1rem;
    font-weight: 600;
    object-fit: cover;
}

.avatar-michelle {
    background: linear-gradient(135deg, #759b37, #d2e49d);
}

.avatar-augusta {
    background: linear-gradient(135deg, #e8e8e8, #8e6755);
}

.avatar-isabella {
    background: linear-gradient(135deg, #8f3b82, #e19a52);
}

.client cite {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.35;
}

.client cite strong,
.client cite span {
    display: block;
}

.client cite strong {
    color: var(--paper);
}

.client cite span {
    margin-top: 3px;
    color: var(--text-dim);
    font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .review-grid {
        transition: none;
    }
}

@media (max-width: 720px) {
    .review-grid {
        grid-template-columns: 1fr;
        border-radius: var(--r-md);
    }

    .tcard {
        width: auto;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(242, 234, 220, .14);
        padding: 24px;
    }

    .tcard:last-child {
        border-bottom: 0;
    }
}

/* -------- Footer / CTA -------- */
.cta-band {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px);
    text-align: center;
    border: 1px solid var(--glass-brd);
}

.cta-band .mesh {
    opacity: .4;
}

.footer {
    padding-top: clamp(48px, 7vw, 88px);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-soft);
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--text);
}

.folio {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 1rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 10px;
}

.folio a {
    color: inherit;
}

.folio a:hover {
    color: var(--text);
}

/* -------- FAB -------- */
.fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--grad);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(231, 177, 94, .3);
    transition: transform .35s var(--ease-soft);
}

.fab:hover {
    transform: translateY(-3px) scale(1.05);
}

/* -------- Progress + cursor glow -------- */
.progress-rule {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--grad);
    z-index: 100;
}

.cursor-glow {
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(231, 177, 94, .10), transparent 70%);
    transform: translate(-50%, -50%);
    left: -9999px;
    top: -9999px;
    transition: opacity .3s;
}

@media (pointer:coarse) {
    .cursor-glow {
        display: none;
    }
}

/* -------- Utility -------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
}

@media (max-width:1024px) {
    .hero .h1 {
        font-size: 36px;
    }
}

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

    .hero-inner.grid-2 {
        row-gap: 40px;
    }

    .hero .h1 {
        font-size: 30px;
    }

    .hero .h1-index {
        font-size: 64px;
    }
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mt-lg {
    margin-top: clamp(44px, 6vw, 80px);
}

.mt-md {
    margin-top: 30px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* -------- Editorial redesign system -------- */
:root {
    --container: 1280px;
    --gutter: 24px;
    --section-space: clamp(88px, 11vw, 156px);
    --r-lg: 20px;
}

body {
    background:
        radial-gradient(circle at 85% 8%, rgba(231, 177, 94, .07), transparent 28rem),
        var(--bg);
}

.container {
    width: min(100%, var(--container));
}

.nav-wrap {
    top: 22px;
}

.site-nav {
    max-width: var(--container);
    padding: 12px;
    background: rgba(10, 9, 8, .72);
    border-color: rgba(242, 236, 221, .16);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.brand {
    letter-spacing: 0;
}

.nav-links a:not(.nav-cta) {
    font-size: 1rem;
}

.nav-cta {
    padding: 12px 20px;
}

.hero {
    min-height: min(900px, 100svh);
    padding-top: 148px;
    padding-bottom: 36px;
}

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

.hero-inner>div:first-child {
    max-width: 700px;
}

.hero .kicker {
    margin-bottom: 2px;
}

.hero .h1 {
    line-height: .98;
}

.page-home .hero-inner {
    max-width: var(--container);
}

.page-home .hero-copy {
    max-width: 620px;
}

.page-home .hero .h1 {
    max-width: 10ch;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 510px;
    place-items: center;
}

.hero-portrait {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(242, 236, 221, .2);
    border-radius: 50% 50% 16px 16px;
    background: var(--bg-2);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.hero-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-orbit {
    position: absolute;
    z-index: 2;
    top: 2%;
    right: 0;
    width: min(46%, 190px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0c77d, var(--copper));
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
    isolation: isolate;
}

.hero-orbit::before,
.hero-orbit::after {
    position: absolute;
    inset: 9%;
    border: 1px solid rgba(23, 20, 13, .18);
    border-radius: 50%;
    content: '';
}

.hero-orbit::after {
    inset: 24%;
    border-color: rgba(23, 20, 13, .14);
    transform: rotate(45deg) scale(1.45, .7);
}

.hero-orbit-ring {
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: heroOrbit 24s linear infinite;
}

.hero-orbit-ring svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hero-orbit-ring text {
    fill: var(--bg);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.hero-orbit-center {
    position: relative;
    z-index: 2;
    display: grid;
    color: var(--bg);
    line-height: 1;
    place-items: center;
}

.hero-orbit-center strong {
    font-family: 'Recoleta SemiBold';
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
}

.hero-orbit-center span {
    margin-top: 3px;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-weight: 600;
}

@keyframes heroOrbit {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orbit-ring {
        animation: none;
    }
}

.hero .dek {
    max-width: 52ch;
}

.hero .btn-row {
    gap: 12px;
}

.hero .photo {
    min-height: 420px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.hero .photo.wide {
    min-height: 320px;
}

.section {
    padding: var(--section-space) 0;
}

.section>.container>.kicker,
.section>.container>h2 {
    max-width: 760px;
}

.section>.container>h2 {
    line-height: 1.02;
}

.bento {
    gap: 20px;
}

.bento-card {
    min-height: 230px;
    padding: clamp(26px, 3.2vw, 42px);
    background: linear-gradient(145deg, rgba(242, 236, 221, .075), rgba(242, 236, 221, .025));
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-brd-hi);
}

.section-paper {
    position: relative;
    overflow: hidden;
}

.section-paper::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(255, 255, 255, .22), transparent 45%);
    opacity: .45;
}

.section-paper>* {
    position: relative;
    z-index: 1;
}

.compare {
    gap: 20px;
}

.compare .col {
    padding: clamp(26px, 3.5vw, 44px);
    border-radius: var(--r-lg);
}

.stat-band {
    border-radius: var(--r-lg);
}

.stat-cell {
    padding: clamp(20px, 3.5vw, 30px);
}

.stat-cell .num {
    line-height: 1;
}

.pin-card {
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.tcard {
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.cta-band {
    padding: clamp(56px, 8vw, 112px) clamp(24px, 7vw, 96px);
    background: linear-gradient(135deg, rgba(242, 236, 221, .08), rgba(231, 177, 94, .04));
}

.transformation-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 34px;
}

.transformation-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(242, 236, 221, .2);
}

.transformation-step {
    position: relative;
    min-width: 0;
    padding: 0 12px;
    text-align: center;
}

.transformation-step::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: var(--copper);
    transform: translateX(-50%);
}

.step-label {
    display: block;
    color: var(--copper);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.transformation-step h3 {
    max-width: 19ch;
    margin: 14px auto 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 600;
}

.transformation-step p {
    max-width: 28ch;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.55;
}

.transformation-cta {
    display: flex;
    width: fit-content;
    margin: 64px auto 0;
}

@media (max-width: 767px) {
    .transformation-track {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
    }

    .transformation-track::before {
        top: 0;
        bottom: 0;
        left: 14px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .transformation-step {
        padding: 28px 0 28px 46px;
        text-align: left;
    }

    .transformation-step::before {
        top: 32px;
        left: 14px;
    }

    .transformation-step h3,
    .transformation-step p {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .transformation-cta {
        width: 100%;
        justify-content: center;
        margin-top: 36px;
    }
}

.footer {
    padding-bottom: 20px;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-top: 128px;
    }

    .page-home .hero-inner {
        margin-left: auto;
    }

    .hero .photo,
    .hero .photo.wide {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .nav-wrap {
        top: 12px;
    }

    .site-nav {
        padding-left: 14px;
    }

    .brand {
        font-size: 1.05rem;
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 28px;
    }

    .hero .h1,
    .page-home .hero .h1,
    .page-rh .hero .h1,
    .page-career .hero .h1 {
        max-width: none;
        line-height: 1.02;
    }

    .hero .photo,
    .hero .photo.wide {
        min-height: 240px;
    }

    .page-home .hero-inner {
        row-gap: 36px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-portrait {
        width: 100%;
    }

    .hero-orbit {
        top: -40px;
        right: 0;
        width: 150px;
    }

    .section {
        padding: clamp(72px, 18vw, 104px) 0;
    }

    .bento-card {
        min-height: 0;
        padding: 26px;
    }

    .compare .col,
    .stat-cell {
        padding: 26px;
    }

    .btn-row {
        align-items: stretch;
    }

    .btn-row .btn {
        justify-content: center;
    }
}