@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,700&family=Schibsted+Grotesk:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

/* === BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
    background: #000;
    color: #f5f5f5;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
}
::selection { background: #F4CEB5; color: #000; }

/* === VIEWS === */
.view {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 0 3rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}
.site-header a { color: #fff; text-decoration: none; }

/* Nav */
.nav-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-items a {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}
.nav-items a:hover {
    color: #fff;
}
.nav-items a.active {
    color: #F4CEB5;
}

/* Mobile menu button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    z-index: 110;
}
.menu-btn span {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: #fff;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.menu-btn span + span { margin-top: 5px; }
.menu-btn.open span:first-child { transform: rotate(45deg) translate(2px, 3px); }
.menu-btn.open span:last-child { transform: rotate(-45deg) translate(2px, -3px); }

/* Mobile overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(40px);
    z-index: 105;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-nav a:hover { color: #F4CEB5; }

@media (max-width: 768px) {
    .site-header { padding: 0 1.5rem; }
    .nav-items { display: none; }
    .menu-btn { display: block; }
    .mobile-nav { display: flex; }
    .view { padding: 2rem 1.5rem; }
}

/* === TYPOGRAPHY === */
.text-massive {
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
}
.text-giant {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
}
.text-large {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.text-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    opacity: 0.6;
}
.text-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.text-peach { color: #F4CEB5; }
.text-dim { opacity: 0.15; }

/* Homepage scroll panels — *bold* emphasis */
.mastery-panel .panel-bold { color: #F4CEB5; font-weight: inherit; }

/* === HERO H1 — Split letter animation + glow === */
.hero-title {
    position: relative;
}
.hero-title .word {
    display: inline-block;
    overflow: hidden;
}
.hero-title .char {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title.revealed .char {
    transform: translateY(0);
}
/* Glowing underline on the peach text */
.hero-accent {
    position: relative;
    display: inline-block;
}
.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: -5%;
    width: 110%;
    height: 0.08em;
    background: #F4CEB5;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 1s ease 1.2s;
}
.hero-title.revealed .hero-accent::after {
    opacity: 0.5;
}

/* Floating particles around hero title */
.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #F4CEB5;
    opacity: 0;
    pointer-events: none;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    background: #F4CEB5;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn .btn-text { position: relative; z-index: 2; }
.btn .btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.btn:hover {
    box-shadow: 0 8px 30px rgba(244, 206, 181, 0.2);
    transform: translateY(-2px);
}
.btn:hover .btn-icon { transform: translateX(3px); }

/* Hero variant — pulsing glow + sweeping sheen for extra pull */
.btn-hero {
    padding: 1.05rem 2.5rem;
    font-size: 0.8rem;
    animation: btnHeroPulse 3s ease-in-out infinite;
}
.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.85) 50%, transparent 100%);
    transform: skewX(-20deg);
    z-index: 3;
    pointer-events: none;
    animation: btnHeroSheen 3.5s ease-in-out infinite;
}
.btn-hero:hover {
    animation-play-state: paused;
}
/* Hero's NE arrow lifts diagonally up-right on hover */
.btn-hero:hover .btn-icon { transform: translate(3px, -3px); }
@keyframes btnHeroPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(244,206,181,0.18), 0 0 0 0 rgba(244,206,181,0.4); }
    50%      { box-shadow: 0 10px 38px rgba(244,206,181,0.34), 0 0 0 10px rgba(244,206,181,0); }
}
@keyframes btnHeroSheen {
    0%        { left: -75%; }
    55%, 100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
    .btn-hero { animation: none; }
    .btn-hero::after { display: none; }
}

/* Ghost variant */
.btn-ghost {
    background: transparent;
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost::before {
    background: rgba(244, 206, 181, 0.1);
}
.btn-ghost:hover {
    border-color: rgba(244, 206, 181, 0.3);
    color: #F4CEB5;
    box-shadow: 0 8px 30px rgba(244, 206, 181, 0.06);
}

/* Arrow icon SVG */
.arrow-ne { width: 14px; height: 14px; }
.arrow-up { width: 14px; height: 14px; }
.arrow-r { width: 16px; height: 16px; }

/* === ABSTRACT SHAPES === */
.shape { position: absolute; pointer-events: none; }
.shape-triangle {
    width: 0; height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(244, 206, 181, 0.04);
}
.shape-circle { border-radius: 50%; border: 1px solid rgba(244, 206, 181, 0.08); }
.shape-arc {
    border-radius: 50%;
    border: 1px solid rgba(244, 206, 181, 0.06);
    border-top-color: transparent;
    border-left-color: transparent;
}
.shape-riseline { width: 1px; background: linear-gradient(to top, transparent, rgba(244,206,181,0.1), transparent); }
.shape-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(244,206,181,0.15); }
.shape-glow { border-radius: 50%; filter: blur(80px); }
.shape-cross::before, .shape-cross::after { content: ''; position: absolute; background: rgba(244,206,181,0.1); }
.shape-cross::before { width: 1px; height: 100%; left: 50%; top: 0; }
.shape-cross::after { width: 100%; height: 1px; top: 50%; left: 0; }
.shape-diamond { width: 8px; height: 8px; background: #F4CEB5; transform: rotate(45deg); }
.shape-path { fill: none; stroke: rgba(244,206,181,0.06); stroke-width: 1; }

/* === IMAGE === */
.img-mask { overflow: hidden; }
.img-mask img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === ANIMATIONS === */
[data-a] { opacity: 0; transform: translateY(60px); }
[data-a="fade"] { transform: none; }
[data-a="left"] { transform: translateX(-80px) translateY(0); }
[data-a="right"] { transform: translateX(80px) translateY(0); }
[data-a="scale"] { transform: scale(0.8) translateY(0); }
[data-stagger] > * { opacity: 0; transform: translateY(40px); }

/* === FEATURED LOGOS === */
.logos img {
    filter: brightness(0) invert(1);
    opacity: 0.25; height: 18px; width: auto;
    transition: opacity 0.3s;
}
.logos img:hover { opacity: 0.6; }

/* === STEPS === */
.step { display: flex; gap: 2rem; align-items: flex-start; }
.step-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: #F4CEB5; padding-top: 0.3rem; flex-shrink: 0; width: 2rem; }
.step-text h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-text p { font-size: 0.9rem; opacity: 0.4; line-height: 1.7; }
.step + .step { margin-top: 3rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .btn { padding: 0.8rem 1.6rem; font-size: 0.7rem; }
}

/* === HERO LINE REVEAL === */
.hero-line {
    display: block;
    overflow: hidden;
}
.hero-line-inner {
    display: block;
    transform: translateY(105%);
}
#hero-title { opacity: 1; }
#hero-label { opacity: 0; }
#hero-cta { opacity: 0; }

/* === METHODOLOGY (about) === */
.methodology-section {
    position: relative;
    padding: 10rem 2rem 8rem;
    overflow: hidden;
}
.methodology-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}
.methodology-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 6rem;
}
.methodology-tagline {
    margin-top: 1.5rem;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
}
.methodology-philosophy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 6rem;
}
@media (min-width: 880px) {
    .methodology-philosophy {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
.methodology-philosophy p { line-height: 1.7; }

.methodology-ready {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 7rem;
    padding: 3.5rem 2.5rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244,206,181,0.04) 0%, rgba(244,206,181,0) 70%);
}
.methodology-ready-copy {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
}

.methodology-steps-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4.5rem;
}
.methodology-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 720px) {
    .methodology-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
.methodology-step {
    position: relative;
    padding: 2.5rem 2.25rem 2.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.015);
    transition: background 0.4s ease, transform 0.4s ease;
}
.methodology-step:hover {
    background: rgba(244,206,181,0.025);
    transform: translateY(-2px);
}
.methodology-step-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #F4CEB5;
    margin-bottom: 1rem;
}
.methodology-step h4 {
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.85rem;
}
.methodology-step p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
}

/* ============================================================ */
/* === CTA — separate section (Let's talk / Contact me)       === */
/* ============================================================ */
.cta-band {
    position: relative;
    padding: 9rem 2rem 6rem;
    text-align: center;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(244, 206, 181, 0.22) 50%,
        transparent 100%);
}
.cta-band-inner { max-width: 980px; margin: 0 auto; }
.footer-statement { margin: 0 auto 2.2rem; max-width: 720px; }
.footer-statement .text-label { display: block; margin: 0 0 1.2rem; }
.footer-title {
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin: 0 auto 1.4rem;
}
.footer-tagline {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin: 0 auto;
}
.footer-direct { margin: 0 auto; }
.footer-direct-cta { margin-top: 0; }

/* --- Dawn-rising background (lives in the footer) --- */
.footer-rise {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.fr-horizon {
    position: absolute;
    left: 50%;
    bottom: -28%;
    transform: translateX(-50%);
    width: 150vw;
    height: 75%;
    background: radial-gradient(ellipse at 50% 100%,
        rgba(244,206,181,0.30) 0%,
        rgba(221,148,96,0.15)  20%,
        rgba(244,206,181,0.05) 46%,
        transparent 72%);
    filter: blur(46px);
    animation: whrHorizon 8s ease-in-out infinite alternate;
}
.fr-shaft {
    position: absolute;
    bottom: -6%;
    width: 120px;
    height: 560px;
    background: linear-gradient(to top,
        rgba(244,206,181,0.30) 0%,
        rgba(244,206,181,0.14) 34%,
        rgba(244,206,181,0.03) 70%,
        transparent 100%);
    filter: blur(34px);
    opacity: 0;
    transform-origin: bottom center;
    animation: whrShaft 11s ease-in-out infinite;
}
.fr-shaft-1 { left:  7%; width: 110px; animation-delay: 0s;   animation-duration: 11s; }
.fr-shaft-2 { left: 27%; width: 150px; animation-delay: 2.6s; animation-duration: 13s; }
.fr-shaft-3 { left: 48%; width:  90px; animation-delay: 5.2s; animation-duration: 10s; }
.fr-shaft-4 { left: 69%; width: 140px; animation-delay: 1.4s; animation-duration: 12s; }
.fr-shaft-5 { left: 87%; width: 105px; animation-delay: 4.1s; animation-duration: 11s; }
.fr-motes { position: absolute; inset: 0; }
.fr-motes span {
    position: absolute;
    bottom: -8px;
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background: #F4CEB5;
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(244,206,181,0.9));
    animation: frMote var(--dur, 15s) linear infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes frMote {
    0%   { transform: translateY(0)      scale(0.5); opacity: 0; }
    12%  { opacity: 0.9; }
    80%  { opacity: 0.5; }
    100% { transform: translateY(-520px) scale(1.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .fr-horizon,
    .fr-shaft,
    .fr-motes span { animation: none; }
    .fr-shaft { opacity: 0.28; }
    .fr-motes span { opacity: 0; }
}

/* ============================================================ */
/* === FOOTER — personal brand (rise svgs as backdrop)        === */
/* ============================================================ */
.footer {
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 2.4rem;
    background: transparent;
}
.footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

/* --- Top band: brand + newsletter --- */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand { display: flex; gap: 1.6rem; align-items: flex-start; }
.footer-portrait {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 1px solid rgba(244, 206, 181, 0.25);
}
.footer-logo { height: 1.4rem; width: auto; margin-bottom: 1rem; opacity: 0.95; }
.footer-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
    margin: 0 0 1.4rem;
}

/* Social icon row */
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}
.footer-socials a:hover {
    color: #000;
    background: #F4CEB5;
    border-color: #F4CEB5;
    transform: translateY(-3px);
}
.footer-socials svg { width: 17px; height: 17px; }

/* Newsletter */
.footer-news { max-width: 360px; }
.footer-news-title {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 0.4rem;
}
.footer-news-sub {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1.2rem;
}
.footer-news-form {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 0.6rem;
    margin-bottom: 0.8rem;
    transition: border-color 0.3s ease;
}
.footer-news-form:focus-within { border-color: #F4CEB5; }
.footer-news-form input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    padding: 0.2rem 0;
}
.footer-news-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.footer-news-form input:focus { outline: none; }
.footer-news-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F4CEB5;
    color: #000;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}
.footer-news-form button:hover { transform: translateX(2px) translateY(-2px); }
.footer-news-form button svg { width: 14px; height: 14px; }
.footer-news-status {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 0.6rem;
    min-height: 1.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer-news-status.is-error   { opacity: 1; color: #ff9b8a; }
.footer-news-status.is-success { opacity: 1; color: #F4CEB5; }

.footer-news-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* --- Nav columns --- */
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-col { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 206, 181, 0.7);
    margin: 0 0 0.4rem;
}
.footer-col a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    width: fit-content;
    transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-col-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Legal base --- */
.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.35);
}
.footer-base-links { display: flex; gap: 1.4rem; }
.footer-base-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-base-links a:hover { color: #fff; }
.footer-base-tag { color: rgba(244, 206, 181, 0.45); }

/* --- Responsive --- */
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-news { max-width: none; }
}
@media (max-width: 640px) {
    .cta-band { padding: 6rem 1.4rem 4rem; }
    .footer { padding: 4.5rem 1.4rem 2rem; }
    .footer-brand { flex-direction: column; gap: 1.2rem; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
    .footer-base { flex-direction: column; text-align: center; gap: 0.8rem; }
}
@media (max-width: 420px) {
    .footer-cols { grid-template-columns: 1fr; }
}

/* === ABOUT — WHO view background === */
.about-who-view {
    position: relative;
    overflow: hidden;
}
.about-who-bg,
.about-who-overlay { display: none; }
@media (min-width: 769px) {
    .about-who-bg {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
        pointer-events: none;
    }
    .about-who-overlay {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to right,
            rgba(0,0,0,0.92) 0%,
            rgba(0,0,0,0.78) 35%,
            rgba(0,0,0,0.5) 65%,
            rgba(0,0,0,0.35) 100%);
    }
}

/* === HOMEPAGE HERO — portrait right, copy left over dark fade === */
.hero-home {
    position: relative;
    overflow: hidden;
}
.hero-home-bg,
.hero-home-overlay { display: none; }
.hero-home-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    padding: 0 2rem;
    text-align: left;
}
.hero-home-content {
    max-width: 640px;
}
@media (min-width: 769px) {
    .hero-home-bg {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 58%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
        pointer-events: none;
    }
    .hero-home-overlay {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to right,
            #000 0%,
            #000 42%,
            rgba(0,0,0,0.85) 58%,
            rgba(0,0,0,0.4) 80%,
            rgba(0,0,0,0.12) 100%);
    }
}

/* === ABOUT INTRO — text + portrait (homepage) === */
.about-intro-view {
    padding: 8rem 2rem;
}
.about-intro-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.about-intro-text {
    max-width: 560px;
}
.about-intro-photo {
    width: 100%;
}
.about-intro-photo-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
    /* Soft feathered edges so the portrait melts into the dark background */
    -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 45%, #000 45%, transparent 100%);
    mask-image: radial-gradient(ellipse 75% 75% at 50% 45%, #000 45%, transparent 100%);
}
@media (min-width: 769px) {
    .about-intro-inner {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 4rem;
    }
}

/* === SYSTEMATIC HIPPIE — immersive full-bleed cinematic panel === */
.about-hippie {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 10rem 2rem;
}
/* The photo IS the environment — full bleed, anchored to the subject on the right */
.about-hippie-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 42%;
    z-index: 0;
    filter: brightness(0.48) contrast(1.06) saturate(0.84);
}
/* Grade: black on the left for the copy, photo emerging from black top + bottom,
   a warm peach bloom in the sky to tie it to the brand */
.about-hippie-grade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 78% 38%, rgba(244,206,181,0.10), transparent 70%),
        linear-gradient(to right,
            #000 0%,
            rgba(0,0,0,0.92) 28%,
            rgba(0,0,0,0.55) 56%,
            rgba(0,0,0,0.25) 82%,
            rgba(0,0,0,0.15) 100%),
        linear-gradient(to bottom,
            #000 0%,
            rgba(0,0,0,0.25) 22%,
            rgba(0,0,0,0.25) 68%,
            #000 100%);
}
.about-hippie-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.about-hippie-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin: 1rem 0 2rem;
}
.about-hippie-inner .text-body {
    max-width: 480px;
}
@media (max-width: 768px) {
    .about-hippie {
        min-height: 90vh;
        padding: 7rem 1.5rem;
    }
    /* Stronger, flatter scrim on mobile so copy stays legible over the photo */
    .about-hippie-grade {
        background:
            radial-gradient(ellipse 60% 40% at 70% 30%, rgba(244,206,181,0.16), transparent 70%),
            linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.8) 100%);
    }
}

/* === HERO BEAM — focused spotlight from above === */
.hero-beam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
/* Cone of light — narrow, focused, fades quickly */
.hero-beam::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 360px;
    height: 45vh;
    clip-path: polygon(45% 0%, 55% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(to bottom,
        rgba(244, 206, 181, 0.55) 0%,
        rgba(244, 206, 181, 0.28) 25%,
        rgba(244, 206, 181, 0.1) 55%,
        rgba(244, 206, 181, 0.03) 80%,
        transparent 100%);
    filter: blur(14px);
}
/* Bright source point at top center */
.hero-beam::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(244, 206, 181, 0.95) 0%,
        rgba(244, 206, 181, 0.5) 30%,
        rgba(244, 206, 181, 0.15) 60%,
        transparent 100%);
    filter: blur(6px);
}
/* Anamorphic lens-flare streak across the source — the star, baked into the light */
.hero-flare {
    position: absolute;
    left: 50%;
    top: 85px;
    transform: translate(-50%, -50%);
    width: clamp(340px, 44vw, 720px);
    height: 4px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(244, 206, 181, 0) 6%,
        rgba(244, 206, 181, 0.45) 28%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(244, 206, 181, 0.45) 72%,
        transparent 94%);
    filter: blur(2px);
    pointer-events: none;
    z-index: 2;
}
.hero-flare::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(244, 206, 181, 0.18) 50%,
        transparent);
}

/* === RISING PATH === */
.rising-path {
    position: fixed;
    left: 6%;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 1;
}
.rising-path svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .rising-path { left: 3%; width: 40px; }
}

/* === CONTACT === */
.contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9.5rem 2rem 6rem;
    overflow: hidden;
}
.contact-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}
@media (min-width: 940px) {
    .contact-inner {
        grid-template-columns: 0.92fr 1.08fr;
        gap: 5rem;
        align-items: center;
    }
}

/* --- Abstract background --- */
.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.contact-bgword {
    position: absolute;
    top: 50%;
    left: -0.06em;
    transform: translateY(-50%);
    font-size: clamp(13rem, 32vw, 32rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 206, 181, 0.07);
    white-space: nowrap;
    user-select: none;
}
.contact-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(244, 206, 181, 0.09);
}
.contact-ring-1 {
    width: 440px; height: 440px;
    top: -150px; right: -130px;
    animation: jt-spin 95s linear infinite;
}
.contact-ring-1::before {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    width: 8px; height: 8px;
    margin-left: -4px;
    border-radius: 50%;
    background: #F4CEB5;
}
.contact-ring-2 {
    width: 220px; height: 220px;
    bottom: -80px; left: 6%;
    border-style: dashed;
    border-color: rgba(244, 206, 181, 0.07);
    animation: jt-spin 75s linear infinite reverse;
}
.contact-glow { position: absolute; border-radius: 50%; }
.contact-glow-1 {
    width: 520px; height: 520px;
    top: -190px; right: -130px;
    background: radial-gradient(circle, rgba(244, 206, 181, 0.10) 0%, transparent 65%);
}
.contact-glow-2 {
    width: 440px; height: 440px;
    bottom: -180px; left: -140px;
    background: radial-gradient(circle, rgba(244, 206, 181, 0.07) 0%, transparent 65%);
}
.contact-diamond {
    top: 21%; right: 13%;
    opacity: 0.55;
    animation: jt-float 6s ease-in-out infinite;
}
.contact-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(244, 206, 181, 0.18), transparent);
}
.contact-line-1 { height: 150px; top: 13%; left: 19%; }
.contact-line-2 { height: 110px; bottom: 15%; right: 23%; }
.contact-dot { position: absolute; }
.contact-dot-1 { top: 29%; left: 11%; }
.contact-dot-2 { top: 66%; right: 28%; }
.contact-dot-3 { bottom: 23%; left: 41%; }

@keyframes jt-spin { to { transform: rotate(360deg); } }
@keyframes jt-float {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-18px); }
}
@keyframes jt-pulse {
    0% { box-shadow: 0 0 0 0 rgba(244, 206, 181, 0.45); }
    70% { box-shadow: 0 0 0 9px rgba(244, 206, 181, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 206, 181, 0); }
}

/* --- Intro --- */
.contact-title {
    font-size: clamp(3.5rem, 11vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 1.25rem 0 1.75rem;
}
.contact-lead {
    max-width: 420px;
    margin-bottom: 2.25rem;
}
.contact-direct {
    display: inline-flex;
    flex-direction: column;
    gap: 0.4rem;
    text-decoration: none;
    margin-bottom: 2rem;
}
.contact-direct-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.contact-direct-mail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f5f5f5;
    transition: color 0.3s ease, gap 0.3s ease;
}
.contact-direct:hover .contact-direct-mail { color: #F4CEB5; gap: 0.8rem; }
.contact-note {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
.contact-note-dot {
    width: 7px; height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #F4CEB5;
    animation: jt-pulse 2.6s infinite;
}

/* --- Form --- */
.contact-form-wrap { position: relative; }
.contact-form {
    position: relative;
    padding: 2.6rem 2.4rem;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.contact-form-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F4CEB5;
    margin-bottom: 2.1rem;
}
.contact-field { margin-bottom: 1.8rem; }
.contact-field:last-of-type { margin-bottom: 0; }
.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.7rem;
}
.contact-num { color: #F4CEB5; margin-right: 0.3rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 1.8rem;
}
@media (min-width: 540px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-grid .contact-field { margin-bottom: 0; }

.contact-input-wrap { position: relative; }
.contact-input-wrap::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: #F4CEB5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-input-wrap:focus-within::after { transform: scaleX(1); }
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #f5f5f5;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 400;
    padding: 0.7rem 0;
    outline: none;
    resize: none;
}
.contact-form textarea { line-height: 1.6; min-height: 108px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.25); }

/* Subject pills */
.contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.contact-pill {
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.contact-pill:hover { border-color: rgba(244, 206, 181, 0.4); color: #fff; }
.contact-pill.is-active {
    background: #F4CEB5;
    border-color: #F4CEB5;
    color: #000;
}

/* Honeypot */
.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Submit row */
.contact-submit {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-top: 2.3rem;
}
.contact-form button.btn { font-family: inherit; border: none; }
.contact-form button.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.contact-status {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 230px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-status.is-error { opacity: 1; color: #ff9b8a; }
.contact-status.is-info { opacity: 1; color: rgba(255, 255, 255, 0.55); }

/* Success state */
.contact-success { padding: 0.5rem 0; }
.contact-success-mark {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(244, 206, 181, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4CEB5;
    margin-bottom: 1.8rem;
}
.contact-success-mark svg { width: 26px; height: 26px; }
.contact-success-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.contact-success-copy {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 340px;
}

@media (max-width: 600px) {
    .contact { padding: 8rem 1.5rem 4rem; }
    .contact-form { padding: 1.9rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
    .contact-ring-1, .contact-ring-2, .contact-diamond, .contact-note-dot { animation: none; }
}

/* === BOOKS — ARCHIVE (/books) === */
.books-archive {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 11rem 2rem 7rem;
    overflow: hidden;
}
.books-archive-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 5rem;
}
.books-archive-head .text-label { margin-bottom: 1rem; }
.books-archive-tagline {
    margin-top: 1.5rem;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}
.books-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 2.5rem;
}
@media (min-width: 620px) {
    .books-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .books-grid { grid-template-columns: repeat(3, 1fr); }
}
.books-empty { text-align: center; }
.books-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}
.books-pagination a,
.books-pagination span {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
}
.books-pagination a:hover { color: #fff; }
.books-pagination .current { background: #F4CEB5; color: #000; }

/* === BOOK COVER (shared) === */
.book-cover {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 55px -22px rgba(0, 0, 0, 0.85),
                0 0 70px -34px rgba(244, 206, 181, 0.3);
}
.book-cover-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.book-cover-svg text { font-family: 'Inter Tight', sans-serif; }

/* === BOOK CARD === */
.book-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.book-card-cover { position: relative; }
.book-card .book-cover {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.book-card:hover .book-cover {
    transform: translateY(-8px);
    box-shadow: 0 38px 65px -22px rgba(0, 0, 0, 0.9),
                0 0 90px -30px rgba(244, 206, 181, 0.4);
}
.book-card-body { padding-top: 1.4rem; }
.book-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.book-card-subtitle {
    margin-top: 0.4rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}
.book-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F4CEB5;
    transition: gap 0.3s ease;
}
.book-card:hover .book-card-link { gap: 0.75rem; }
.book-card-link .arrow-ne { width: 12px; height: 12px; }

/* === BOOK STATUS BADGE === */
.book-status {
    display: inline-flex;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: 100px;
}
.book-status--available { background: #F4CEB5; color: #000; }
.book-status--preorder,
.book-status--coming_soon {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.book-card-cover .book-status {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2;
}

/* === SINGLE BOOK — HERO === */
.book-hero {
    position: relative;
    overflow: hidden;
    padding: 9.5rem 2rem 6rem;
}
.book-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.book-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}
@media (min-width: 900px) {
    .book-hero-inner {
        grid-template-columns: 0.82fr 1.18fr;
        gap: 5rem;
        align-items: center;
    }
}
.book-hero-cover {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .book-hero-cover { max-width: 360px; margin: 0; }
}
.book-cover--lg {
    box-shadow: 0 45px 80px -28px rgba(0, 0, 0, 0.9),
                0 0 120px -40px rgba(244, 206, 181, 0.4);
}
.book-hero-eyebrow { margin-top: 1.3rem; }
.book-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 0.6rem 0 0;
}
.book-hero-subtitle {
    margin-top: 1.1rem;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.35;
    color: #F4CEB5;
}
.book-hero-tagline {
    margin-top: 1.4rem;
    max-width: 480px;
}
.book-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2.75rem;
    margin: 2.1rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.book-meta li {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.book-meta-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.book-meta-value { font-size: 1rem; font-weight: 600; }
.book-hero-cta { margin-top: 2.25rem; }

/* === SINGLE BOOK — SECTIONS === */
.book-section {
    position: relative;
    padding: 6.5rem 2rem;
}
.book-promise { background: rgba(255, 255, 255, 0.018); }
.book-section-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.book-section-head {
    max-width: 720px;
    margin-bottom: 3.5rem;
}
.book-section-head .text-label { margin-bottom: 0.9rem; }
.book-section-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* About */
.book-about-body { max-width: 680px; }
.book-about-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}
.book-about-body p + p { margin-top: 1.3rem; }

/* What you'll learn */
.book-promise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 720px) {
    .book-promise-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.book-promise-card {
    padding: 2.4rem 2.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    transition: background 0.4s ease, transform 0.4s ease;
}
.book-promise-card:hover {
    background: rgba(244, 206, 181, 0.025);
    transform: translateY(-2px);
}
.book-promise-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #F4CEB5;
    margin-bottom: 1rem;
}
.book-promise-card h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.7rem;
}
.book-promise-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

/* Chapters */
.book-chapter-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.book-chapter {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.25rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: padding 0.3s ease, background 0.3s ease;
}
.book-chapter:hover {
    padding-left: 1rem;
    background: rgba(244, 206, 181, 0.02);
}
.book-chapter-num {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #F4CEB5;
}
.book-chapter-title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Closing CTA */
.book-cta { padding: 7rem 2rem 8rem; }
.book-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2.5rem;
    border-radius: 18px;
    border: 1px solid rgba(244, 206, 181, 0.16);
    background: linear-gradient(135deg, rgba(244, 206, 181, 0.09) 0%, rgba(244, 206, 181, 0.03) 70%);
}
.book-cta-inner .text-label { margin-bottom: 1rem; }
.book-cta-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.book-cta-action { margin-top: 2.25rem; }

@media (max-width: 768px) {
    .books-archive { padding: 8.5rem 1.5rem 5rem; }
    .book-hero { padding: 7.5rem 1.5rem 4rem; }
    .book-section { padding: 4.5rem 1.5rem; }
    .book-cta { padding: 4rem 1.5rem 5rem; }
    .book-cta-inner { padding: 3rem 1.6rem; }
}

/* ============================================================
   SINGLE POST — "Insight"
   ============================================================ */

/* --- Reading progress --- */
.reading-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: #F4CEB5;
    transform: scaleX(0);
    transform-origin: left;
    z-index: 200;
    will-change: transform;
}

/* --- Hero --- */
.insight-hero {
    position: relative;
    overflow: hidden;
    padding: 11rem 1.5rem 3.5rem;
}
.insight-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.insight-glow {
    width: 620px; height: 620px;
    top: -260px; left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 206, 181, 0.13) 0%, transparent 65%);
}
.insight-ring {
    position: absolute;
    width: 360px; height: 360px;
    top: -130px; right: -120px;
    border: 1px solid rgba(244, 206, 181, 0.08);
    border-radius: 50%;
    animation: jt-spin 90s linear infinite;
}
.insight-ring::before {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    width: 7px; height: 7px;
    margin-left: -3.5px;
    border-radius: 50%;
    background: #F4CEB5;
}
.insight-diamond {
    top: 40%; left: 11%;
    opacity: 0.5;
    animation: jt-float 6s ease-in-out infinite;
}
.insight-vline {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(244, 206, 181, 0.16), transparent);
}
.insight-vline-1 { height: 130px; top: 15%; left: 17%; }
.insight-vline-2 { height: 95px; bottom: 11%; right: 19%; }
.insight-dot-1 { top: 27%; right: 23%; }
.insight-dot-2 { bottom: 24%; left: 31%; }

.insight-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.insight-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}
.insight-back svg { width: 13px; height: 13px; }
.insight-back:hover { color: #F4CEB5; gap: 0.8rem; }

/* --- Category eyebrow (orbital glyph + name) --- */
.insight-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 auto 1.4rem;
    color: #F4CEB5;
    line-height: 1;
}
.insight-eyebrow-glyph {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}
.insight-eyebrow-glyph svg { width: 100%; height: 100%; display: block; }
.insight-eyebrow-glyph-orbit {
    transform-origin: 12px 12px;
    animation: jt-spin 9s linear infinite;
}
.insight-eyebrow-cats {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.insight-eyebrow-cat {
    color: #F4CEB5;
    text-decoration: none;
    transition: color 0.25s ease;
}
.insight-eyebrow-cat:hover { color: #fff; }
.insight-eyebrow-bullet { color: rgba(244, 206, 181, 0.45); }

.insight-title {
    font-size: clamp(2.3rem, 5.6vw, 4.7rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.035em;
    max-width: 18ch;
    margin: 0 auto;
}

.insight-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}
.insight-meta-author {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.88);
}
.insight-meta-avatar {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(244, 206, 181, 0.35);
    box-shadow: 0 0 0 2px rgba(244, 206, 181, 0.06);
    flex: 0 0 auto;
}
.insight-meta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.insight-meta-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(244, 206, 181, 0.55);
}

/* --- Featured image --- */
.insight-feature {
    max-width: 1040px;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
}
.insight-feature-mask {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.insight-feature-mask img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Video panel (placeholder or embed) --- */
.insight-video {
    max-width: 1040px;
    margin: 2.4rem auto 3rem;
    padding: 0 1.5rem;
}
.insight-video-inner { position: relative; }
.insight-video-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.insight-video-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F4CEB5;
    animation: jt-pulse 2.6s infinite;
    flex: 0 0 auto;
}
.insight-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(244, 206, 181, 0.18);
    background: #0a0a0a;
}
.insight-video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.insight-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #050505 100%);
}
.insight-video-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(244, 206, 181, 0.08);
    border: 1px solid rgba(244, 206, 181, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F4CEB5;
}
.insight-video-play svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}
@media (max-width: 680px) {
    .insight-video { margin: 1.6rem auto 2rem; }
    .insight-video-frame { border-radius: 14px; }
    .insight-video-play { width: 52px; height: 52px; }
    .insight-video-play svg { width: 18px; height: 18px; }
}

/* --- Body --- */
/* Body — simple centered column */
.insight-body {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TOC — stripped to pure typography. No box, no ornament. */
.insight-toc {
    margin: 0 0 2.6rem;
    padding: 0;
}
.insight-toc-label {
    margin: 0 0 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(244, 206, 181, 0.25);
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.insight-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: jt-toc;
}
.insight-toc-list li {
    counter-increment: jt-toc;
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    align-items: baseline;
    column-gap: 0.6rem;
    padding: 0.35rem 0;
}
.insight-toc-list li::before {
    content: counter(jt-toc, decimal-leading-zero);
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    font-variant-numeric: tabular-nums;
    color: rgba(244, 206, 181, 0.55);
    transition: color 0.2s ease;
}
.insight-toc-list a {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}
.insight-toc-list li:hover::before,
.insight-toc-list li:hover a { color: #F4CEB5; }

/* --- Prose --- */
.insight-content {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.22rem, 1.55vw, 1.32rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.52);
    font-weight: 300;
}
.insight-content > *:first-child { margin-top: 0; }
.insight-content > *:last-child { margin-bottom: 0; }

.insight-content p { margin: 0 0 1.55rem; }

.insight-content h2,
.insight-content h3,
.insight-content h4 {
    font-family: 'Inter Tight', sans-serif;
}

.insight-content h2 {
    margin: 4rem 0 1.4rem;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    scroll-margin-top: 7rem;
}

.insight-content h3 {
    margin: 2.8rem 0 0.85rem;
    font-size: clamp(1.35rem, 2.1vw, 1.6rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.018em;
    color: #fff;
}
.insight-content h4 {
    margin: 2.1rem 0 0.7rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.insight-content a {
    color: #F4CEB5;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(244, 206, 181, 0.4);
    transition: text-decoration-color 0.3s ease;
}
.insight-content a:hover { text-decoration-color: #F4CEB5; }
.insight-content strong { color: rgba(255, 255, 255, 0.72); font-weight: 500; }
.insight-content em { font-style: italic; }

/* Lists */
.insight-content ul,
.insight-content ol {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}
.insight-content li { margin-bottom: 0.85rem; }
.insight-content li:last-child { margin-bottom: 0; }
.insight-content ul li {
    position: relative;
    padding-left: 1.8rem;
}
.insight-content ul li::before {
    content: '';
    position: absolute;
    left: 1px; top: 0.62em;
    width: 7px; height: 7px;
    background: #F4CEB5;
    transform: rotate(45deg);
}
.insight-content ol {
    counter-reset: jt-ol;
}
.insight-content ol li {
    counter-increment: jt-ol;
    position: relative;
    padding-left: 2.6rem;
}
.insight-content ol li::before {
    content: counter(jt-ol, decimal-leading-zero);
    position: absolute;
    left: 0; top: 0.15em;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #F4CEB5;
}
.insight-content li ul,
.insight-content li ol { margin: 0.8rem 0 0; }

/* Pull quote */
.insight-content blockquote,
.insight-content .wp-block-quote {
    margin: 3.2rem 0;
    padding: 0.4rem 0 0.4rem 2rem;
    border-left: 2px solid #F4CEB5;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: #f5f5f5;
}
.insight-content blockquote p { margin: 0; }
.insight-content blockquote p + p { margin-top: 0.6rem; }
.insight-content blockquote cite,
.insight-content blockquote .wp-block-quote__citation {
    display: block;
    margin-top: 1.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.insight-content .wp-block-pullquote {
    margin: 4.2rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(244, 206, 181, 0.25);
    border-bottom: 1px solid rgba(244, 206, 181, 0.25);
    text-align: center;
}
.insight-content .wp-block-pullquote p {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.028em;
    color: #fff;
}

/* Tables — premium editorial */
.insight-content .wp-block-table,
.insight-content figure.wp-block-table {
    margin: 3.2rem 0;
    overflow-x: auto;
}
.insight-content .wp-block-table table,
.insight-content > table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    line-height: 1.55;
}
.insight-content > table { margin: 3.2rem 0; }

/* Nuke every default WP/browser border, then add ours back below. */
.insight-content table,
.insight-content thead,
.insight-content tbody,
.insight-content tfoot,
.insight-content tr,
.insight-content th,
.insight-content td {
    border: 0 !important;
    box-shadow: none !important;
}

/* Header row: no fill, peach hairline below. Cells flush to outer edges. */
.insight-content thead { background: transparent !important; }
.insight-content thead th {
    padding: 0 1.2rem 1.1rem;
    text-align: left;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 0.64rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #F4CEB5;
    border-bottom: 1px solid rgba(244, 206, 181, 0.4) !important;
    vertical-align: bottom;
    white-space: nowrap;
}
.insight-content thead th:first-child { padding-left: 0; }
.insight-content thead th:last-child  { padding-right: 0; }

/* Buttons inside prose — keep .btn legible (override prose-link peach color) */
.insight-content .btn,
.insight-content a.btn,
.insight-content a.btn:hover,
.insight-content a.btn:visited {
    color: #000;
    text-decoration: none;
}
.insight-content a.btn.btn-ghost { color: #f5f5f5; }
.insight-content a.btn.btn-ghost:hover { color: #F4CEB5; }
.insight-content tbody td,
.insight-content tbody th {
    padding: 1.2rem 1.2rem;
    border-bottom: 1px solid rgba(244, 206, 181, 0.08) !important;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.52);
    font-weight: 300;
    transition: color 0.2s ease;
}
.insight-content tbody td:first-child,
.insight-content tbody th:first-child {
    padding-left: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
}
.insight-content tbody td:last-child,
.insight-content tbody th:last-child  { padding-right: 0; }
.insight-content tbody th { text-align: left; }
.insight-content tbody tr:last-child td,
.insight-content tbody tr:last-child th {
    border-bottom: 1px solid rgba(244, 206, 181, 0.28) !important;
}
.insight-content tbody tr { transition: background-color 0.2s ease; }
.insight-content tbody tr:hover { background: rgba(244, 206, 181, 0.03); }
.insight-content tbody tr:hover td,
.insight-content tbody tr:hover th { color: rgba(255, 255, 255, 0.72); }
.insight-content tbody tr:hover td:first-child,
.insight-content tbody tr:hover th:first-child { color: #fff; }
.insight-content table strong { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.insight-content figure.wp-block-table figcaption {
    margin-top: 0.7rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Media */
.insight-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.insight-content figure {
    margin: 2.6rem 0;
}
.insight-content figcaption,
.insight-content .wp-caption-text {
    margin-top: 0.7rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.insight-content hr {
    width: 60px;
    height: 1px;
    margin: 3rem auto;
    border: 0;
    background: rgba(244, 206, 181, 0.35);
}

/* Code */
.insight-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.88em;
    padding: 0.15em 0.4em;
    border-radius: 5px;
    background: rgba(244, 206, 181, 0.1);
    color: #F4CEB5;
}
.insight-content pre {
    margin: 2rem 0;
    padding: 1.4rem 1.6rem;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}
.insight-content pre code {
    padding: 0;
    background: none;
    color: #e8e8e8;
}

/* wp_link_pages */
.insight-pages {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    font-size: 0.85rem;
}
.insight-pages > span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.insight-pages a { color: #F4CEB5; text-decoration: none; }

/* --- Share --- */
.insight-share {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    padding-top: 2.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.insight-share-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.insight-share-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.insight-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.insight-share-btn svg { width: 14px; height: 14px; }
.insight-share-btn:hover { color: #F4CEB5; border-color: rgba(244, 206, 181, 0.4); }
.insight-share-btn.is-copied { color: #F4CEB5; border-color: #F4CEB5; }

/* --- Sign-off — the signature draws itself in --- */
.insight-signoff {
    margin-top: 4.5rem;
    padding-top: 0.5rem;
    text-align: center;
}
.insight-sig {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    overflow: visible;
}
.insight-sig-name {
    fill: none;
    stroke: rgba(255, 255, 255, 0.92);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.insight-sig-flourish {
    fill: none;
    stroke: #F4CEB5;
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(244, 206, 181, 0.45));
}
.insight-signoff-caption {
    margin-top: 1.1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

/* --- Author --- */
.insight-author {
    max-width: 920px;
    margin: 5rem auto 0;
    padding: 0 1.5rem;
}
.insight-author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    padding: 3rem 2.6rem;
    border-radius: 20px;
    border: 1px solid rgba(244, 206, 181, 0.16);
    background: linear-gradient(135deg, rgba(244, 206, 181, 0.09) 0%, rgba(244, 206, 181, 0.03) 70%);
}
.insight-author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(244, 206, 181, 0.3);
    flex-shrink: 0;
}
.insight-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.insight-author-name {
    margin: 0.85rem 0 0.45rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
}
.insight-author-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.insight-author-bio {
    margin-top: 1.35rem;
    max-width: 540px;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}
.insight-author-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-top: 2.1rem;
}
.insight-author-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.insight-author-social svg { width: 17px; height: 17px; }
.insight-author-social:hover { color: #F4CEB5; border-color: rgba(244, 206, 181, 0.4); }

/* --- Post navigation --- */
.insight-postnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    max-width: 920px;
    margin: 4rem auto 6rem;
    padding: 0 1.5rem;
}
.insight-postnav-link {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    text-decoration: none;
    transition: background 0.35s ease, transform 0.35s ease;
}
.insight-postnav-link:hover {
    background: rgba(244, 206, 181, 0.025);
    transform: translateY(-2px);
}
.insight-postnav-link.is-next {
    text-align: right;
    align-items: flex-end;
}
.insight-postnav-dir {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.insight-postnav-dir svg { width: 13px; height: 13px; }
.insight-postnav-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: #f5f5f5;
}
.insight-postnav-link:hover .insight-postnav-title { color: #fff; }

/* --- Responsive --- */
@media (max-width: 680px) {
    .insight-hero { padding: 8.5rem 1.4rem 2.5rem; }
    .insight-body { padding-top: 0; }
    .insight-content { font-size: 1.05rem; }
    .insight-toc { padding-left: 1.1rem; }
    .insight-toc-list a { font-size: 1.05rem; }
    .insight-author-card {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding: 2.2rem 1.7rem;
    }
    .insight-author-avatar { width: 72px; height: 72px; }
    .insight-postnav { grid-template-columns: 1fr; }
    .insight-postnav-link.is-next { text-align: left; align-items: flex-start; }
    .insight-postnav-link.is-next .insight-postnav-dir { flex-direction: row-reverse; }
}
@media (prefers-reduced-motion: reduce) {
    .insight-ring, .insight-diamond { animation: none; }
}

/* ============================================================
   SINGLE POST — featured-image hero + mid-article CTA + avatar
   ============================================================ */

/* When the post has a featured image, the hero uses it as a backdrop. */
.insight-hero--media {
    padding: 10rem 1.5rem 5rem;
    min-height: 68vh;
    display: flex;
    align-items: center;
}
.insight-hero--media .insight-hero-bg { z-index: 0; }
.insight-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.insight-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            rgba(0, 0, 0, 0.82) 65%,
            rgba(0, 0, 0, 0.95) 88%,
            #000 100%);
}
.insight-hero--media .insight-hero-inner {
    width: 100%;
    text-align: center;
}
.insight-hero--media .insight-title { color: #fff; }

/* Mid-article CTA — "Live like the top 1%" (injected by JS) */
.insight-cta {
    position: relative;
    margin: 3.8rem 0 3.6rem;
    padding: 3.2rem 2.6rem 2.9rem;
    border-radius: 22px;
    border: 1px solid rgba(244, 206, 181, 0.20);
    background:
        radial-gradient(135% 120% at 50% -10%, rgba(244, 206, 181, 0.14) 0%, rgba(244, 206, 181, 0.03) 48%, transparent 78%),
        rgba(255, 255, 255, 0.014);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(244, 206, 181, 0.09);
}
/* Soft drifting glow behind the headline */
.insight-cta-glow {
    position: absolute;
    z-index: -1;
    top: -42%;
    left: 50%;
    width: 460px;
    height: 460px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 206, 181, 0.16) 0%, transparent 64%);
    filter: blur(20px);
    pointer-events: none;
}
.insight-cta .text-label { display: block; margin: 0 0 0.95rem; }
.insight-cta .insight-cta-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.5rem, 2.7vw, 2.05rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.022em;
    color: #fff;
    margin: 0 auto 0.95rem;
    max-width: 24ch;
}
.insight-cta .insight-cta-title::before { content: none; }
.insight-cta .insight-cta-copy {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.66);
    margin: 0 auto 1.9rem;
    max-width: 42ch;
}

/* Pill email-capture: input + button share one rounded shell */
.insight-cta-form { max-width: 460px; margin: 0 auto; }
.insight-cta-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 100px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.insight-cta-row:focus-within {
    border-color: rgba(244, 206, 181, 0.55);
    background: rgba(244, 206, 181, 0.05);
    box-shadow: 0 0 0 4px rgba(244, 206, 181, 0.09);
}
.insight-cta-row input[type="email"] {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #f6f6f6;
    font-family: inherit;
    font-size: 0.98rem;
    padding: 0.72rem 0.4rem 0.72rem 1.25rem;
}
.insight-cta-row input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.34); }
.insight-cta-row .btn {
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0.85rem 1.7rem;
}
.insight-cta-row .btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

.insight-cta-status {
    margin: 1rem auto 0;
    font-size: 0.86rem;
    line-height: 1.5;
    min-height: 1.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.insight-cta-status.is-error   { opacity: 1; color: #ff9b8a; }
.insight-cta-status.is-success { opacity: 1; color: #F4CEB5; }
.insight-cta-fineprint {
    margin: 0.85rem 0 0;
    font-size: 0.74rem;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.4);
}
/* On success, collapse the field — leave the confirmation standing alone */
.insight-cta-form.is-done .insight-cta-row,
.insight-cta-form.is-done .insight-cta-fineprint { display: none; }
.insight-cta-form.is-done .insight-cta-status { margin-top: 0; font-size: 0.98rem; }

@media (max-width: 680px) {
    .insight-hero--media { padding: 7.5rem 1.4rem 3rem; min-height: 58vh; }
    .insight-cta { padding: 2.4rem 1.5rem 2.2rem; margin: 3rem 0; }
    .insight-cta-row { flex-direction: column; gap: 0.55rem; padding: 0; background: none; border: none; box-shadow: none; }
    .insight-cta-row:focus-within { background: none; box-shadow: none; }
    .insight-cta-row input[type="email"] {
        width: 100%;
        padding: 0.95rem 1.2rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 100px;
    }
    .insight-cta-row input[type="email"]:focus { border-color: rgba(244, 206, 181, 0.55); }
    .insight-cta-row .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   INSIGHTS — ARCHIVE  (/blog, categories, tags, search)
   ============================================================ */
.insight-archive {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 11rem 1.5rem 7rem;
    overflow: hidden;
}
.insight-archive-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.insight-archive-head {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 5rem;
    text-align: center;
}
.insight-archive-head .text-label { margin-bottom: 1rem; }
.insight-archive-tagline {
    margin-top: 1.5rem;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Feed grid --- */
.insight-feed {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 2.5rem;
}
@media (min-width: 760px) {
    .insight-feed { grid-template-columns: 1fr 1fr; }
}

/* --- Card --- */
.insight-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.insight-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0c0c0c;
}
.insight-card-img,
.insight-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.insight-card:hover .insight-card-img,
.insight-card:hover .insight-card-media img { transform: scale(1.05); }

.insight-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 32% 28%, rgba(244, 206, 181, 0.16), transparent 58%),
        linear-gradient(150deg, #1b1b1b 0%, #0a0a0a 75%);
}
.insight-card-placeholder::before {
    content: '\201C';
    font-size: 9rem;
    line-height: 0.1;
    font-weight: 700;
    color: rgba(244, 206, 181, 0.13);
}

.insight-card-flag {
    position: absolute;
    top: 1rem; left: 1rem;
    z-index: 2;
    padding: 0.4rem 0.85rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #000;
    background: #F4CEB5;
    border-radius: 100px;
}

.insight-card-body { padding-top: 1.4rem; }
.insight-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}
.insight-card-cat {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.insight-card-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}
.insight-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #f5f5f5;
    transition: color 0.3s ease;
}
.insight-card:hover .insight-card-title { color: #F4CEB5; }
.insight-card-excerpt {
    margin-top: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}
.insight-card-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.15rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F4CEB5;
    transition: gap 0.3s ease;
}
.insight-card-more svg { width: 12px; height: 12px; }
.insight-card:hover .insight-card-more { gap: 0.75rem; }

/* --- Featured card (latest post, page one) --- */
.insight-card--feature { grid-column: 1 / -1; }
@media (min-width: 860px) {
    .insight-card--feature {
        display: grid;
        grid-template-columns: 1.15fr 1fr;
        gap: 3rem;
    }
    .insight-card--feature .insight-card-media {
        aspect-ratio: auto;
        height: 100%;
        min-height: 360px;
    }
    .insight-card--feature .insight-card-body {
        padding-top: 0;
        align-self: center;
    }
    .insight-card--feature .insight-card-title {
        font-size: clamp(2rem, 3.4vw, 3rem);
        line-height: 1.1;
    }
    .insight-card--feature .insight-card-excerpt {
        font-size: 1.05rem;
        margin-top: 0.9rem;
    }
}

/* --- Pagination --- */
.insight-pagination {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 4.5rem;
}
.insight-pagination a,
.insight-pagination span {
    min-width: 2.4rem;
    padding: 0.55rem 0.9rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
}
.insight-pagination a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.insight-pagination .current { background: #F4CEB5; color: #000; }
.insight-pagination .dots { color: rgba(255, 255, 255, 0.3); }

/* --- Empty state --- */
.insight-empty {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1rem 0 3rem;
}

@media (max-width: 760px) {
    .insight-archive { padding: 8.5rem 1.4rem 5rem; }
    .insight-archive-head { margin-bottom: 3.5rem; }
    .insight-feed { gap: 2.6rem; }
    .insight-card--feature .insight-card-title { font-size: 1.7rem; }
}

/* ============================================================ */
/* === WORK WITH ME PAGE                                      === */
/* ============================================================ */

/* ===== HERO ===== */
.work-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem 2rem 6rem;
    overflow: hidden;
}
.work-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    width: 100%;
    padding: 0 2rem;
    text-align: left;
}
.work-hero-content {
    max-width: 640px;
    margin-left: auto;
    text-align: right;
}
.work-hero-title {
    margin-top: 2rem;
}
.work-hero-kill {
    display: block;
    font-size: clamp(0.95rem, 1.6vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.38);
    text-decoration: line-through;
    text-decoration-color: rgba(244,206,181,0.7);
    text-decoration-thickness: 0.045em;
    margin-bottom: 0.7rem;
}
.work-hero-lede {
    margin: 2.5rem auto 0;
    max-width: 620px;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}
.work-hero-meta {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Desktop photo background (IMG_0868) — hidden on mobile, animated rise shows instead */
.work-hero-photo,
.work-hero-photo-overlay { display: none; }
@media (min-width: 769px) {
    .work-hero-rise { display: none; }
    .work-hero-photo {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: auto;
        width: 58%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
        pointer-events: none;
        animation: workHeroPhotoIn 1.5s ease-out both;
    }
    .work-hero-photo-overlay {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to left,
            #000 0%,
            #000 52%,
            rgba(0,0,0,0.94) 68%,
            rgba(0,0,0,0.6) 84%,
            rgba(0,0,0,0.2) 100%);
    }
}
@keyframes workHeroPhotoIn {
    from { opacity: 0; transform: scale(1.06); }
    to   { opacity: 1; transform: scale(1); }
}

/* === RISE TO YOUR DESTINY — promise band === */
.work-intro {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
}
.work-intro-inner {
    position: relative;
    z-index: 10;
    max-width: 760px;
    margin: 0 auto;
}
.work-intro-title {
    margin-top: 1.6rem;
}
.work-intro-prose {
    margin: 2.6rem auto 0;
    max-width: 620px;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.74);
}
.work-intro-prose p + p {
    margin-top: 1.4rem;
}

/* Ambient glow */
.work-glow {
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.35;
}
.work-glow-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(244,206,181,0.18) 0%, transparent 70%);
    top: 10%; left: -8%;
}
.work-glow-2 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(244,206,181,0.1) 0%, transparent 70%);
    bottom: -15%; right: -10%;
}

/* ============================================================ */
/* === HERO BACKGROUND — dawn rising: horizon + light shafts === */
/* ============================================================ */
.work-hero-rise {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* Warm horizon glow — dawn at the base, breathing */
.whr-horizon {
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translateX(-50%);
    width: 150vw;
    height: 80vh;
    background: radial-gradient(ellipse at 50% 100%,
        rgba(244,206,181,0.34) 0%,
        rgba(221,148,96,0.18)  18%,
        rgba(244,206,181,0.06) 42%,
        transparent 70%);
    filter: blur(42px);
    animation: whrHorizon 8s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes whrHorizon {
    from { opacity: 0.7; transform: translateX(-50%) scaleY(0.97); }
    to   { opacity: 1;   transform: translateX(-50%) scaleY(1.05); }
}

/* Vertical light shafts rising out of the horizon */
.whr-shaft {
    position: absolute;
    bottom: -8%;
    width: 120px;
    height: 100vh;
    background: linear-gradient(to top,
        rgba(244,206,181,0.34) 0%,
        rgba(244,206,181,0.16) 32%,
        rgba(244,206,181,0.04) 68%,
        transparent 100%);
    filter: blur(30px);
    opacity: 0;
    transform-origin: bottom center;
    animation: whrShaft 11s ease-in-out infinite;
}
.whr-shaft-1 { left:  6%; width: 110px; animation-delay: 0s;   animation-duration: 11s; }
.whr-shaft-2 { left: 26%; width: 150px; animation-delay: 2.6s; animation-duration: 13s; }
.whr-shaft-3 { left: 47%; width:  90px; animation-delay: 5.2s; animation-duration: 10s; }
.whr-shaft-4 { left: 68%; width: 140px; animation-delay: 1.4s; animation-duration: 12s; }
.whr-shaft-5 { left: 86%; width: 105px; animation-delay: 4.1s; animation-duration: 11s; }
@keyframes whrShaft {
    0%   { opacity: 0;   transform: translateY(6%)  scaleY(0.88); }
    22%  { opacity: 0.65; transform: translateY(0)   scaleY(1); }
    65%  { opacity: 0.55; transform: translateY(-3%) scaleY(1.04); }
    100% { opacity: 0;   transform: translateY(-9%) scaleY(1.1); }
}

/* Fine motes drifting upward — embers rising */
.whr-motes { position: absolute; inset: 0; pointer-events: none; }
.whr-motes span {
    position: absolute;
    bottom: -10px;
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background: #F4CEB5;
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(244,206,181,0.9));
    animation: whrMote var(--dur, 14s) linear infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes whrMote {
    0%   { transform: translateY(0)     scale(0.5); opacity: 0; }
    10%  { opacity: 0.95; }
    80%  { opacity: 0.55; }
    100% { transform: translateY(-92vh) scale(1.1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .whr-horizon,
    .whr-shaft,
    .whr-motes span { animation: none; }
    .whr-shaft { opacity: 0.32; }
    .whr-motes span { opacity: 0; }
}

/* Anchor pills */
.work-anchor {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 0.65rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.work-anchor span {
    color: #F4CEB5;
    transition: transform 0.3s ease;
}
.work-anchor:hover {
    color: #F4CEB5;
    border-color: rgba(244,206,181,0.3);
    background: rgba(244,206,181,0.04);
}
.work-anchor:hover span { transform: translateY(2px); }

/* ============================================================ */
/* === DEPTH COMPARATOR — the centerpiece                     === */
/* ============================================================ */
.work-depth {
    position: relative;
    padding: 7rem 2rem 8rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(244,206,181,0.04) 0%, transparent 60%),
        #000;
}
.work-depth-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}
.work-depth-head {
    text-align: center;
    margin-bottom: 5rem;
}
.work-depth-head .text-label { margin-bottom: 1rem; }
.work-depth-title {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
}

/* Rail with the four tiers */
.work-depth-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: end;
    position: relative;
}
@media (max-width: 760px) {
    .work-depth-rail {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        padding-bottom: 1rem;
        border-bottom: none;
    }
}

.work-depth-tier {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.4rem 1.2rem 1.6rem;
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(244,206,181, calc(var(--depth) * 0.012)) 0%,
        rgba(244,206,181, 0) 100%
    );
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: border-color 0.45s ease, transform 0.45s ease, background 0.45s ease;
}
.work-depth-tier::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: calc(var(--depth) * 22%);
    border-radius: 14px 14px 0 0;
    background: linear-gradient(
        180deg,
        rgba(244,206,181, calc(var(--depth) * 0.07)) 0%,
        transparent 100%
    );
    pointer-events: none;
}
.work-depth-tier:hover {
    border-color: rgba(244,206,181,0.4);
    background: rgba(244,206,181,0.03);
    transform: translateY(-4px);
    color: #fff;
}
.work-depth-tier-hot {
    border-color: rgba(244,206,181,0.22);
}

/* "You're here" — the tier for the program page you're currently on */
.work-depth-tier-current {
    border: 1px solid rgba(244,206,181,0.45);
    background: rgba(244,206,181,0.04);
    pointer-events: none;
    cursor: default;
}
.work-depth-tier-current .work-depth-num::after {
    content: " \00B7  You\2019re here";
    color: #F4CEB5;
    letter-spacing: 0.18em;
}

/* Big number on each tier */
.work-depth-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(244,206,181,0.55);
}

/* The intensity bars — visual depth meter */
.work-depth-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 64px;
    margin: 0.4rem 0 0.6rem;
}
.work-depth-bars span {
    flex: 1;
    background: linear-gradient(to top, #F4CEB5 0%, rgba(244,206,181,0.4) 100%);
    border-radius: 1px;
    opacity: 0.3;
    transform-origin: bottom;
    transform: scaleY(0.2);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
    transition-delay: calc(var(--idx) * 0.06s);
}
/* fill in proportion to depth: depth 1 → 1/5 filled, depth 4 → 5/5 filled */
.work-depth-tier[style*="--depth: 1"] .work-depth-bars span:nth-child(-n+1),
.work-depth-tier[style*="--depth: 2"] .work-depth-bars span:nth-child(-n+2),
.work-depth-tier[style*="--depth: 3"] .work-depth-bars span:nth-child(-n+4),
.work-depth-tier[style*="--depth: 4"] .work-depth-bars span:nth-child(-n+5) {
    opacity: 1;
}
.work-depth-tier[style*="--depth: 1"] .work-depth-bars span:nth-child(1) { transform: scaleY(0.28); }
.work-depth-tier[style*="--depth: 2"] .work-depth-bars span:nth-child(1) { transform: scaleY(0.38); }
.work-depth-tier[style*="--depth: 2"] .work-depth-bars span:nth-child(2) { transform: scaleY(0.5); }
.work-depth-tier[style*="--depth: 3"] .work-depth-bars span:nth-child(1) { transform: scaleY(0.42); }
.work-depth-tier[style*="--depth: 3"] .work-depth-bars span:nth-child(2) { transform: scaleY(0.55); }
.work-depth-tier[style*="--depth: 3"] .work-depth-bars span:nth-child(3) { transform: scaleY(0.7); }
.work-depth-tier[style*="--depth: 3"] .work-depth-bars span:nth-child(4) { transform: scaleY(0.85); }
.work-depth-tier[style*="--depth: 4"] .work-depth-bars span:nth-child(1) { transform: scaleY(0.45); }
.work-depth-tier[style*="--depth: 4"] .work-depth-bars span:nth-child(2) { transform: scaleY(0.62); }
.work-depth-tier[style*="--depth: 4"] .work-depth-bars span:nth-child(3) { transform: scaleY(0.78); }
.work-depth-tier[style*="--depth: 4"] .work-depth-bars span:nth-child(4) { transform: scaleY(0.92); }
.work-depth-tier[style*="--depth: 4"] .work-depth-bars span:nth-child(5) { transform: scaleY(1); }

/* Program icon on each tier — the same animated marks as the program pages */
.work-depth-icon {
    display: flex;
    align-items: center;
    height: 90px;
    margin: 0.5rem 0 0.7rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-depth-icon svg {
    width: 82px;
    height: 82px;
    display: block;
    overflow: visible;
}
.work-depth-tier:hover .work-depth-icon { transform: scale(1.05); }

.work-depth-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0.6rem 0 0.4rem;
}

.work-depth-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    border-top: 1px dashed rgba(255,255,255,0.06);
    padding-top: 0.45rem;
}
.work-depth-row em {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.65rem;
    color: rgba(244,206,181,0.55);
    font-weight: 600;
}
.work-depth-row:last-child em { color: #F4CEB5; }
.work-depth-row:last-child {
    color: #fff;
    font-weight: 600;
}

/* Y-axis label on the ladder */
.work-depth-axis {
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244,206,181,0.4);
    pointer-events: none;
}
@media (max-width: 1000px) {
    .work-depth-axis { display: none; }
}

/* ===== SECTIONS ===== */
.work-section {
    position: relative;
    padding: 7rem 2rem;
    overflow: hidden;
}
.work-section-alt {
    background: linear-gradient(180deg, rgba(244,206,181,0.025) 0%, transparent 100%);
}
.work-section-alt::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(244,206,181,0.18) 50%, transparent 100%);
}
.work-section-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}
.work-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 5rem;
}
.work-section-head .text-label { margin-bottom: 1rem; }
.work-section-tagline {
    margin-top: 1.5rem;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
}

/* Section ambient elements */
.work-bg-circle {
    border-radius: 50%;
    border: 1px solid rgba(244,206,181,0.06);
}
.work-bg-circle-1 {
    width: 600px; height: 600px;
    top: -200px; right: -200px;
    opacity: 0.6;
}
.work-bg-line {
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(244,206,181,0.18) 50%, transparent 100%);
}
.work-bg-line-1 {
    height: 220px;
    top: 35%;
    left: 8%;
}
.work-bg-grid {
    width: 360px;
    height: 360px;
    top: 8%;
    left: -3%;
    opacity: 0.5;
}
.work-bg-grid svg { width: 100%; height: 100%; }
.work-bg-arc {
    width: 280px;
    height: 280px;
    border: 1px solid rgba(244,206,181,0.12);
    border-radius: 50%;
    border-color: rgba(244,206,181,0.18) transparent transparent transparent;
    transform: rotate(45deg);
    bottom: 10%;
    right: -6%;
}

/* ===== CARDS GRID ===== */
.work-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
}
@media (min-width: 880px) {
    .work-cards {
        grid-template-columns: 1fr 1fr;
        gap: 2.2rem;
    }
}

/* Individual card */
.work-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.25rem 2.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.018);
    transition: background 0.5s ease, transform 0.5s ease;
    overflow: hidden;
}
.work-card:hover {
    background: rgba(244,206,181,0.025);
    transform: translateY(-3px);
}
.work-card-featured {
    background: linear-gradient(160deg, rgba(244,206,181,0.045) 0%, rgba(244,206,181,0.005) 60%);
    border-color: rgba(244,206,181,0.18);
}
.work-card-featured:hover {
    border-color: rgba(244,206,181,0.5);
}

/* Make every direct child of the card sit above the ambient bg */
.work-card > * { position: relative; z-index: 2; }

/* Card graphic — bigger, with a soft peach halo behind it */
.work-card-graphic {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 0 2.2rem -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-card-graphic svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}
/* Soft halo behind the icon — breathes */
.work-card-halo {
    position: absolute;
    inset: -20%;
    z-index: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,206,181,0.22) 0%, rgba(244,206,181,0.04) 45%, transparent 70%);
    filter: blur(8px);
    animation: workHalo 4.8s ease-in-out infinite alternate;
    pointer-events: none;
}
.work-card-halo-hot {
    background: radial-gradient(circle, rgba(244,206,181,0.36) 0%, rgba(244,206,181,0.06) 50%, transparent 75%);
}
@keyframes workHalo {
    0%   { transform: scale(0.85); opacity: 0.55; }
    100% { transform: scale(1.08); opacity: 0.95; }
}

/* === Per-card SVG animations === */

/* 1. Scan — horizontal beam sweeps up & down through the rings */
.wg-scan-cursor {
    transform-origin: 60px 64px;
    animation: wgScan 3.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    filter: drop-shadow(0 0 4px rgba(244,206,181,0.45));
}
@keyframes wgScan {
    0%   { transform: translateY(-26px); opacity: 0.5; }
    50%  { transform: translateY(26px);  opacity: 1; }
    100% { transform: translateY(-26px); opacity: 0.5; }
}

/* 2. Flame — breathes vertically, spark drifts up & glows */
.wg-flame-body {
    transform-origin: 60px 95px;
    animation: wgFlame 2.4s ease-in-out infinite alternate;
}
.wg-flame-spark {
    transform-origin: 60px 45px;
    animation: wgSpark 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(244,206,181,0.75));
}
@keyframes wgFlame {
    0%   { transform: scaleY(0.94) skewX(-1.5deg); }
    50%  { transform: scaleY(1.03) skewX(0deg); }
    100% { transform: scaleY(1.06) skewX(1.5deg); }
}
@keyframes wgSpark {
    0%, 100% { transform: translateY(0) scale(1);     opacity: 0.55; }
    50%      { transform: translateY(-6px) scale(1.4); opacity: 1; }
}

/* 3. Target — rings ripple outward like sonar */
.wg-ring {
    transform-origin: 60px 60px;
    animation: wgRipple 3.2s ease-out infinite;
}
.wg-ring-1 { animation-delay: 0s; }
.wg-ring-2 { animation-delay: 0.25s; }
.wg-ring-3 { animation-delay: 0.5s; }
.wg-ring-4 { animation-delay: 0.75s; }
.wg-bull {
    transform-origin: 60px 60px;
    animation: wgBull 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(244,206,181,0.7));
}
@keyframes wgRipple {
    0%   { transform: scale(0.96); opacity: 0.6; }
    60%  { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(0.96); opacity: 0.6; }
}
@keyframes wgBull {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.7; }
}

/* 4. Venn — two circles drift in & out of alignment */
.wg-venn-l {
    transform-origin: 60px 60px;
    animation: wgVennL 3.6s ease-in-out infinite alternate;
}
.wg-venn-r {
    transform-origin: 60px 60px;
    animation: wgVennR 3.6s ease-in-out infinite alternate;
}
.wg-venn-core {
    transform-origin: 60px 60px;
    animation: wgCore 2.4s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(244,206,181,0.7));
}
@keyframes wgVennL {
    0%   { transform: translateX(6px);  opacity: 0.55; }
    100% { transform: translateX(-1px); opacity: 0.95; }
}
@keyframes wgVennR {
    0%   { transform: translateX(-6px); opacity: 0.55; }
    100% { transform: translateX(1px);  opacity: 0.95; }
}
@keyframes wgCore {
    0%, 100% { transform: scale(0.7); opacity: 0.6; }
    50%      { transform: scale(1.6); opacity: 1; }
}

/* Slight intensification on hover */
.work-card:hover .work-card-halo { opacity: 1; }
.work-card:hover .wg-scan-cursor { animation-duration: 2.2s; }
.work-card:hover .wg-bull        { animation-duration: 1.4s; }

/* Card header */
.work-card-head { margin-bottom: 1.4rem; }
.work-card-eyebrow {
    color: rgba(255,255,255,0.42);
    margin-bottom: 0.9rem;
}
.work-card-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.1rem;
}
.work-card-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: #F4CEB5;
    letter-spacing: -0.01em;
}
.work-card-price-add {
    display: inline-block;
    margin-left: 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0;
}

/* Card lede */
.work-card-lede {
    font-family: 'Schibsted Grotesk', serif;
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.75rem;
}

/* Card features */
.work-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.work-card-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.93rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}
.work-card-num {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #F4CEB5;
    padding-top: 0.18rem;
    min-width: 1.8rem;
}

/* Card CTA */
.work-card-cta {
    align-self: flex-start;
    margin-top: auto;
}

/* ============================================================ */
/* === TRUTH section — "what this isn't" vs "what it is"      === */
/* ============================================================ */
.work-truth {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(244,206,181,0.04) 0%, transparent 60%),
        #000;
}
.work-truth-inner {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
}
@media (max-width: 760px) {
    .work-truth { padding: 5.5rem 1.4rem; }
    .work-truth-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.work-truth-tag {
    margin-bottom: 1.6rem;
    color: rgba(255,255,255,0.45);
}
.work-truth-is .work-truth-tag { color: #F4CEB5; }

.work-truth-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.work-truth-list li {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.85);
}
.work-truth-list-strike li {
    color: rgba(255,255,255,0.32);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(244,206,181,0.5);
}
.work-truth-is .work-truth-list li {
    color: #fff;
}
.work-truth-is .work-truth-list li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: #F4CEB5;
    margin-right: 0.8rem;
    vertical-align: middle;
}

.work-truth-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    height: 100%;
    justify-content: center;
}
.work-truth-divider > span:not(.work-truth-diamond) {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, transparent 0%, rgba(244,206,181,0.4) 50%, transparent 100%);
    min-height: 80px;
}
.work-truth-diamond {
    width: 10px;
    height: 10px;
    background: #F4CEB5;
    transform: rotate(45deg);
    flex-shrink: 0;
}
@media (max-width: 760px) {
    .work-truth-divider {
        flex-direction: row;
        height: auto;
        width: 100%;
    }
    .work-truth-divider > span:not(.work-truth-diamond) {
        min-height: 0;
        height: 1px;
        flex: 1;
        background: linear-gradient(to right, transparent 0%, rgba(244,206,181,0.4) 50%, transparent 100%);
    }
}

/* ============================================================ */
/* === THE METHOD — an ascending climb, four phases          === */
/* ============================================================ */
.work-climb {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}
.work-climb-inner {
    position: relative;
    z-index: 10;
    max-width: 1080px;
    margin: 0 auto;
}
.work-climb-head {
    max-width: 860px;
    margin: 0 0 4.5rem;
}
.work-climb-head .text-label { margin-bottom: 1.4rem; }
.work-climb-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
}
.work-climb-lede {
    margin-top: 2rem;
    max-width: 560px;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

/* The climb track — a glowing spine the big numbers sit over */
.work-climb-track {
    position: relative;
}
.work-climb-track::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    bottom: 2.4rem;
    left: 47px;
    width: 1px;
    background: linear-gradient(to bottom,
        rgba(244,206,181,0.04) 0%,
        rgba(244,206,181,0.45) 55%,
        rgba(244,206,181,0.95) 100%);
}

.work-climb-step {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 2.4rem;
    align-items: start;
    padding: 2.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-climb-step:first-child { padding-top: 0; }
.work-climb-step:last-child { border-bottom: none; }
.work-climb-step:hover { transform: translateX(6px); }

/* Big ghost numbers — get brighter as you climb */
.work-climb-num {
    grid-row: span 1;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244,206,181,0.28);
    text-stroke: 1px rgba(244,206,181,0.28);
    text-align: center;
    transition: -webkit-text-stroke-color 0.45s ease, color 0.45s ease;
}
.work-climb-step:nth-child(2) .work-climb-num { -webkit-text-stroke-color: rgba(244,206,181,0.42); }
.work-climb-step:nth-child(3) .work-climb-num { -webkit-text-stroke-color: rgba(244,206,181,0.6); }
.work-climb-step-peak .work-climb-num {
    color: #F4CEB5;
    -webkit-text-stroke-color: #F4CEB5;
    text-shadow: 0 0 26px rgba(244,206,181,0.45);
}
.work-climb-step:hover .work-climb-num {
    color: #F4CEB5;
    -webkit-text-stroke-color: #F4CEB5;
}

.work-climb-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 0.7rem;
}
.work-climb-blurb {
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(0.98rem, 1.3vw, 1.08rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.66);
    max-width: 540px;
}

/* ===== THE SHIFT — header sits above the truth grid ===== */
.work-truth-head {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem;
}
.work-truth-head .text-label { margin-bottom: 1.2rem; }
.work-truth-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
}

@media (max-width: 760px) {
    .work-climb { padding: 5rem 1.4rem; }
    .work-climb-head { margin-bottom: 3rem; }
    .work-climb-step {
        grid-template-columns: 64px 1fr;
        gap: 1.4rem;
        padding: 1.8rem 0;
    }
    .work-climb-track::before { left: 32px; top: 1.8rem; bottom: 1.8rem; }
    .work-truth-head { margin-bottom: 3rem; }
}

/* ============================================================ */
/* === THE DIFFERENCE — engineer, not coach                  === */
/* ============================================================ */
.work-edge {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}
.work-edge-inner {
    position: relative;
    z-index: 10;
    max-width: 1080px;
    margin: 0 auto;
}
.work-edge-head {
    max-width: 780px;
    margin: 0 0 4rem;
}
.work-edge-head .text-label { margin-bottom: 1.4rem; }
.work-edge-title { font-size: clamp(2.4rem, 6vw, 5rem); }
.work-edge-lede {
    margin-top: 2rem;
    max-width: 620px;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}
.work-edge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}
.work-edge-cell {
    background: #000;
    padding: 2.6rem 2.2rem;
    transition: background 0.4s ease;
}
.work-edge-cell:hover { background: rgba(244,206,181,0.035); }
.work-edge-cell-k {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F4CEB5;
    margin-bottom: 1.1rem;
}
.work-edge-cell h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 0.9rem;
}
.work-edge-cell p {
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(0.96rem, 1.3vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.64);
    margin: 0;
}
@media (max-width: 760px) {
    .work-edge { padding: 5rem 1.4rem; }
    .work-edge-head { margin-bottom: 3rem; }
    .work-edge-grid { grid-template-columns: 1fr; }
    .work-edge-cell { padding: 2rem 1.6rem; }
}

/* ============================================================ */
/* === THE PHILOSOPHY — beliefs that run the work            === */
/* ============================================================ */
.work-creed {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(244,206,181,0.04) 0%, transparent 60%),
        #000;
}
.work-creed-inner {
    position: relative;
    z-index: 10;
    max-width: 980px;
    margin: 0 auto;
}
.work-creed-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}
.work-creed-head .text-label { margin-bottom: 1.2rem; }
.work-creed-title { font-size: clamp(2.4rem, 6vw, 5rem); }
.work-creed-list {
    display: flex;
    flex-direction: column;
}
.work-creed-line {
    display: flex;
    align-items: baseline;
    gap: 1.6rem;
    padding: 1.7rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    transition: padding-left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-creed-line:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.work-creed-line:hover { padding-left: 0.6rem; }
.work-creed-no {
    flex-shrink: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(244,206,181,0.5);
    width: 2.2rem;
}
.work-creed-line p {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.25rem, 2.8vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: rgba(255,255,255,0.88);
    transition: color 0.3s ease;
}
.work-creed-line:hover p { color: #fff; }
.work-creed-line em {
    font-style: normal;
    color: #F4CEB5;
}
@media (max-width: 760px) {
    .work-creed { padding: 5rem 1.4rem; }
    .work-creed-head { margin-bottom: 3rem; }
    .work-creed-line { gap: 1rem; padding: 1.3rem 0; }
    .work-creed-no { width: 1.7rem; font-size: 0.68rem; }
}

/* ===== Mobile ===== */
@media (max-width: 760px) {
    .work-hero { padding: 7rem 1.4rem 5rem; min-height: auto; }
    .work-section { padding: 5rem 1.4rem; }
    .work-section-head { margin-bottom: 3.5rem; }
    .work-card { padding: 2rem 1.6rem 1.8rem; }
    .work-card-graphic { width: 120px; height: 120px; margin-bottom: 1.5rem; }
    .work-hero-meta { gap: 0.55rem; }
    .work-anchor { padding: 0.55rem 0.9rem; font-size: 0.65rem; letter-spacing: 0.16em; }
    .work-depth { padding: 5rem 1.4rem 6rem; }
    .work-depth-head { margin-bottom: 3rem; }
    .work-depth-tier { padding: 1.1rem 0.9rem 1.3rem; }
    .work-depth-bars { height: 48px; }
    .work-depth-row { font-size: 0.72rem; }
    .work-depth-row em { font-size: 0.6rem; }
}

/* ============================================================ */
/* === DEDICATED PROGRAM PAGES — cinematic scroll, minimal    === */
/* ============================================================ */

/* Every view is a full screen with one thing in it */
.program-view {
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* === VIEW 1: HERO === */
.program-hero {
    flex-direction: column;
    padding: 8rem 2rem 4rem;
    gap: 0;
}
.program-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.program-title {
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    font-size: clamp(3rem, 9vw, 7.5rem);
}

/* The big animated icon */
.program-icon {
    position: relative;
    width: clamp(220px, 30vw, 360px);
    height: clamp(220px, 30vw, 360px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-icon svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.program-icon-halo {
    position: absolute;
    inset: -25%;
    z-index: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,206,181,0.32) 0%, rgba(244,206,181,0.05) 50%, transparent 75%);
    filter: blur(12px);
    animation: workHalo 4.8s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Scroll-hint chevron at bottom of hero */
.program-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, rgba(244,206,181,0.6) 100%);
    overflow: visible;
}
.program-scroll span {
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F4CEB5;
    animation: programScroll 2s ease-in-out infinite;
}
@keyframes programScroll {
    0%   { transform: translateY(-46px); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateY(0); opacity: 0; }
}

/* Hero availability indicator — replaces the old eyebrow label */
.program-hero-avail {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
}
.program-hero-avail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F4CEB5;
    box-shadow: 0 0 0 0 rgba(244,206,181,0.55);
    animation: programAvailPulse 2.4s ease-in-out infinite;
}
@keyframes programAvailPulse {
    0%   { box-shadow: 0 0 0 0 rgba(244,206,181,0.55); }
    70%  { box-shadow: 0 0 0 7px rgba(244,206,181,0); }
    100% { box-shadow: 0 0 0 0 rgba(244,206,181,0); }
}
.program-hero-avail.is-full {
    color: rgba(255,255,255,0.45);
}
.program-hero-avail.is-full .program-hero-avail-dot {
    background: rgba(255,255,255,0.4);
    animation: none;
    box-shadow: none;
}

/* Hero photo background (desktop only) — photo right, copy left */
.program-hero-photo,
.program-hero-overlay { display: none; }
@media (min-width: 769px) {
    .program-hero { flex-direction: row; text-align: left; }
    .program-hero-inner { align-items: flex-start; }
    .program-hero-content {
        max-width: 600px;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .program-hero-content .program-title { margin-bottom: 2.6rem; }
    .program-hero-content .program-icon { width: clamp(180px, 22vw, 280px); height: clamp(180px, 22vw, 280px); }
    /* Cinematic full-bleed: photo fills the hero, subject framed right,
       melting into a dark grade so the copy on the left stays legible. */
    .program-hero-photo {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% 28%;
        z-index: 1;
        filter: brightness(0.65) contrast(1.05) saturate(0.92);
        animation: programHeroIn 1.8s ease-out both;
    }
    .program-hero-overlay {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background:
            radial-gradient(ellipse 55% 50% at 80% 40%, rgba(244,206,181,0.08), transparent 70%),
            linear-gradient(to right,
                rgba(0,0,0,0.82) 0%,
                rgba(0,0,0,0.85) 28%,
                rgba(0,0,0,0.72) 52%,
                rgba(0,0,0,0.42) 80%,
                rgba(0,0,0,0.25) 100%),
            linear-gradient(to bottom,
                rgba(0,0,0,0.55) 0%,
                rgba(0,0,0,0.2) 28%,
                rgba(0,0,0,0.2) 60%,
                rgba(0,0,0,0.78) 100%);
    }
}
@keyframes programHeroIn {
    from { opacity: 0; transform: scale(1.05); }
    to   { opacity: 1; transform: scale(1); }
}

/* === VIEW 2: LEDE === */
.program-lede-inner {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}
.program-lede {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
}
.program-lede-sub {
    margin: 2rem auto 0;
    max-width: 620px;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
}

/* Extra paragraphs under the lede */
.program-lede-body {
    margin: 1.6rem auto 0;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

/* === VIEW: WHO IT'S FOR — cinematic, full-bleed photo === */
.program-who-view {
    padding: 8rem 2rem;
}
.program-who-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 30%;
    z-index: 0;
    filter: brightness(0.55) contrast(1.05) saturate(0.88);
}
.program-who-grade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 50% at 78% 36%, rgba(244,206,181,0.06), transparent 70%),
        linear-gradient(to right,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.82) 32%,
            rgba(0,0,0,0.68) 58%,
            rgba(0,0,0,0.4) 84%,
            rgba(0,0,0,0.28) 100%),
        linear-gradient(to bottom,
            rgba(0,0,0,0.6) 0%,
            rgba(0,0,0,0.28) 28%,
            rgba(0,0,0,0.32) 62%,
            rgba(0,0,0,0.92) 100%);
}
.program-who-view--right .program-who-grade {
    background:
        radial-gradient(ellipse 55% 50% at 22% 36%, rgba(244,206,181,0.06), transparent 70%),
        linear-gradient(to left,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.82) 32%,
            rgba(0,0,0,0.68) 58%,
            rgba(0,0,0,0.4) 84%,
            rgba(0,0,0,0.28) 100%),
        linear-gradient(to bottom,
            rgba(0,0,0,0.6) 0%,
            rgba(0,0,0,0.28) 28%,
            rgba(0,0,0,0.32) 62%,
            rgba(0,0,0,0.92) 100%);
}
.program-who-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.program-who-view--right .program-who-inner { text-align: right; }
.program-who-title {
    margin: 1.2rem 0 2rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}
.program-who-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 540px;
    margin: 0;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}
.program-who-signals {
    list-style: none;
    margin: 2.6rem 0 0;
    padding: 1.8rem 0 0;
    border-top: 1px dashed rgba(244,206,181,0.22);
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
}
.program-who-view--right .program-who-body,
.program-who-view--right .program-who-signals { margin-left: auto; margin-right: 0; }
@media (max-width: 768px) {
    /* Flatter scrim so copy stays legible over the photo on small screens */
    .program-who-grade,
    .program-who-view--right .program-who-grade {
        background: linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.82) 100%);
    }
    .program-who-signals { text-align: left; }
}
.program-who-signals li {
    position: relative;
    padding-left: 1.6rem;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}
.program-who-tick {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    background: #F4CEB5;
    transform: rotate(45deg);
    opacity: 0.85;
}

/* === VIEW: WHAT YOU GET (deliverables) === */
.program-deliverables-view {
    padding: 6rem 2rem;
}
.program-deliverables-inner {
    position: relative;
    z-index: 10;
    max-width: 880px;
    text-align: center;
}
.program-deliverables-title {
    margin: 1.2rem 0 1.4rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}
.program-deliverables-intro {
    max-width: 580px;
    margin: 0 auto 3rem;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
}
.program-deliverables-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.program-deliverables-list li {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 1.2rem;
    align-items: baseline;
    padding: 1.4rem 0;
    border-top: 1px solid rgba(244,206,181,0.14);
}
.program-deliverables-list li:last-child {
    border-bottom: 1px solid rgba(244,206,181,0.14);
}
.program-deliverable-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #F4CEB5;
    padding-top: 0.4em;
}
.program-deliverable-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.program-deliverable-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}
.program-deliverable-desc {
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.6);
}

/* === VIEWS 3-6: STEPS === */
.program-step-inner {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    padding: 0 2rem;
}
.program-step-inner .text-label { margin-bottom: 1.8rem; }
.program-step-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.4rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #fff;
}
.program-step-detail {
    margin: 2.2rem auto 0;
    max-width: 560px;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
}

/* === VIEW 7: PRICE — quiet term sheet, grid-aligned === */
.program-price-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
    padding: 0 1.5rem;
    text-align: left;
}
.program-price-label {
    margin: 0 0 1.8rem;
    text-align: left;
}

/* the sheet itself: 3-column grid (label | leader | value) shared by every row */
.program-price-sheet {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(5rem, max-content) 1fr max-content;
    column-gap: 1.1rem;
    row-gap: 1.2rem;
    align-items: center;
}
/* row wrappers disappear so their children participate directly in the grid */
.program-price-row { display: contents; }

.program-price-row-label {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(244,206,181,0.65);
}
.program-price-row-leader {
    height: 2px;
    align-self: center;
    background-image: radial-gradient(circle, rgba(244,206,181,0.4) 0.9px, transparent 1.4px);
    background-size: 7px 2px;
    background-repeat: repeat-x;
    background-position: 0 50%;
}

/* values share the right column, all right-aligned to the same edge */
.program-price-row-value,
.program-price-row-meta,
.program-price-row-add {
    margin: 0;
    justify-self: end;
    text-align: right;
    font-family: 'Inter Tight', sans-serif;
}
.program-price-row-currency {
    font-weight: 500;
    color: rgba(244,206,181,0.55);
    margin-right: 0.08em;
}

/* primary: the fee — peach, bold, modest scale */
.program-price-row-value {
    font-size: clamp(1.4rem, 2.3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #F4CEB5;
    line-height: 1;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

/* secondary: payment terms — sentence case, quiet */
.program-price-row-meta {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    line-height: 1.2;
}

/* optional: amount + note stacked, right-aligned */
.program-price-row-add {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}
.program-price-row-amount {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
    font-feature-settings: "tnum" 1, "lnum" 1;
}
.program-price-row-period {
    font-size: 0.78em;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0;
}
.program-price-row-note {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(255,255,255,0.5);
}

/* divider spans the whole sheet, sits as its own grid row */
.program-price-divider {
    grid-column: 1 / -1;
    border: none;
    height: 1px;
    margin: 0;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(244,206,181,0.18) 25%,
        rgba(244,206,181,0.18) 75%,
        transparent 100%);
}

/* Supporting sentence inside the CTA box */
.program-cta-line {
    max-width: 460px;
    margin: 0;
    font-family: 'Schibsted Grotesk', serif;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
}

/* === VIEW 8: CTA — the program's mark above, a focused box below === */
.program-cta-view {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    padding: 4rem 1.5rem;
}
/* the program's own icon, sitting above the box as a closing motif */
.program-cta-bg {
    position: relative;
    width: clamp(140px, 18vmin, 200px);
    height: clamp(140px, 18vmin, 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.program-cta-bg::before {
    content: '';
    position: absolute;
    inset: -18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,206,181,0.18) 0%, rgba(244,206,181,0.04) 50%, transparent 75%);
    filter: blur(10px);
    pointer-events: none;
}
.program-cta-bg svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.program-cta-box {
    position: relative;
    max-width: 520px;
    width: 100%;
    padding: 2.6rem 2.5rem 2.4rem;
    text-align: center;
    border: 1px solid rgba(244,206,181,0.22);
    border-radius: 20px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(244,206,181,0.06) 0%, transparent 65%),
        rgba(255,255,255,0.012);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    box-shadow:
        0 30px 100px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(244,206,181,0.06);
}
.program-cta-action { margin-top: 0.4rem; }
.program-cta-btn { padding: 1.2rem 2.8rem; font-size: 0.8rem; }

/* === Ambient shapes per view (subtle, never compete with content) === */
.program-shape { pointer-events: none; }

.program-shape-glow {
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    background: radial-gradient(circle, rgba(244,206,181,0.1) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.55;
}

.program-shape-line {
    width: 1px;
    height: 30vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(244,206,181,0.35) 50%, transparent 100%);
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}

.program-shape-dot {
    width: 10px;
    height: 10px;
    background: #F4CEB5;
    transform: rotate(45deg);
    top: calc(20% + var(--n, 0) * 12%);
    right: 12%;
    opacity: 0.55;
}
.program-step-view:nth-of-type(even) .program-shape-dot {
    right: auto;
    left: 12%;
}

.program-shape-ring {
    width: 44vmin;
    height: 44vmin;
    border: 1px solid rgba(244,206,181,0.07);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* Mobile */
@media (max-width: 760px) {
    .program-hero { padding: 7rem 1.4rem 4rem; }
    .program-title { font-size: clamp(2.8rem, 11vw, 4.2rem); margin-bottom: 3rem; }
    .program-icon { width: 220px; height: 220px; }
    .program-lede-inner { padding: 0 1.4rem; }
    .program-lede { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .program-lede-sub { font-size: 1rem; max-width: none; }
    .program-step-text { font-size: clamp(2rem, 9vw, 3.2rem); }
    .program-step-detail { font-size: 1rem; max-width: none; padding: 0 0.4rem; }
    .program-step-inner .text-label,
    .program-price-label { font-size: 0.65rem; margin-bottom: 1.3rem; }
    .program-price-sheet { column-gap: 0.7rem; row-gap: 0.95rem; grid-template-columns: minmax(4.2rem, max-content) 1fr max-content; }
    .program-price-row-label { font-size: 0.6rem; letter-spacing: 0.2em; }
    .program-price-row-value { font-size: clamp(1.3rem, 5.5vw, 1.6rem); }
    .program-price-row-meta { font-size: 0.85rem; }
    .program-price-row-amount { font-size: clamp(1rem, 4.5vw, 1.15rem); }
    .program-price-row-note { font-size: 0.78rem; }
    .program-cta-box { padding: 2.5rem 1.6rem 2.2rem; }
    .program-cta-box-mark { width: 80px; height: 80px; }
    .program-cta-line { font-size: 1rem; }
    .program-who-view,
    .program-deliverables-view { padding: 5rem 1.4rem; }
    .program-who-title,
    .program-deliverables-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .program-who-body,
    .program-deliverables-intro { font-size: 1rem; }
    .program-lede-body { font-size: 1rem; }
    .program-deliverables-list li {
        grid-template-columns: 2.4rem 1fr;
        gap: 0.8rem;
        padding: 1.2rem 0;
    }
    .program-deliverable-name { font-size: 1.1rem; }
    .program-deliverable-desc { font-size: 0.95rem; }
}

/* === WAITLIST FORM (book hero + closing CTA) === */
.waitlist-form {
    width: 100%;
    max-width: 460px;
}
.waitlist-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F4CEB5;
    margin-bottom: 0.85rem;
}
.waitlist-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}
.waitlist-row input[type="email"] {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f5f5f5;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.9rem 1.1rem;
    border-radius: 100px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.waitlist-row input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.32); }
.waitlist-row input[type="email"]:focus {
    border-color: rgba(244, 206, 181, 0.55);
    background: rgba(244, 206, 181, 0.04);
}
.waitlist-row .btn { font-family: inherit; border: none; cursor: pointer; flex-shrink: 0; }
.waitlist-row .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.waitlist-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.waitlist-status {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    line-height: 1.5;
    min-height: 1.2em;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.waitlist-status.is-error   { opacity: 1; color: #ff9b8a; }
.waitlist-status.is-success { opacity: 1; color: #F4CEB5; }
.waitlist-status.is-info    { opacity: 1; color: rgba(255, 255, 255, 0.55); }
.waitlist-foot {
    margin-top: 0.85rem;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
}
.waitlist-foot a {
    color: #F4CEB5;
    text-decoration: none;
    border-bottom: 1px solid rgba(244, 206, 181, 0.3);
    transition: border-color 0.25s ease;
}
.waitlist-foot a:hover { border-bottom-color: #F4CEB5; }

/* Larger variant inside closing CTA — centered */
.waitlist-form--lg { margin: 0 auto; }
.waitlist-form--lg .waitlist-status { text-align: center; }

.book-cta-meta {
    margin-top: 0.9rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 540px) {
    .waitlist-row { flex-direction: column; }
    .waitlist-row input[type="email"] { width: 100%; }
}

/* === LOGIN PAGE (/login) === */
.login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9.5rem 2rem 6rem;
    overflow: hidden;
}
.login-section {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}
.login-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.login-inner {
    position: relative;
    z-index: 10;
}
.login-head {
    margin-bottom: 3rem;
    text-align: center;
}
.login-head .text-label { margin-bottom: 1rem; }
.login-title {
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.login-tagline {
    max-width: 420px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
}
.login-form {
    padding: 2.6rem 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 65%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.login-banner {
    margin-bottom: 1.6rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(255, 155, 138, 0.08);
    border: 1px solid rgba(255, 155, 138, 0.3);
    color: #ff9b8a;
    font-size: 0.85rem;
    line-height: 1.5;
}
.login-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.7rem;
}
.login-label-num {
    color: #F4CEB5;
    margin-right: 0.35rem;
}
.login-row {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
}
.login-input-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
}
.login-input-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #F4CEB5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.login-input-wrap:focus-within::after { transform: scaleX(1); }
.login-row input[type="email"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #f5f5f5;
    font-family: inherit;
    font-size: 1.02rem;
    padding: 0.7rem 0;
    outline: none;
}
.login-row input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.28); }
.login-row .btn {
    font-family: inherit;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.login-row .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.login-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.login-status {
    margin-top: 1.3rem;
    font-size: 0.9rem;
    line-height: 1.55;
    min-height: 1.4em;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.login-status.is-error   { opacity: 1; color: #ff9b8a; }
.login-status.is-success { opacity: 1; color: #F4CEB5; }
.login-status.is-info    { opacity: 1; color: rgba(255, 255, 255, 0.7); }
.login-foot {
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}
.login-foot a {
    color: #F4CEB5;
    text-decoration: none;
    border-bottom: 1px solid rgba(244, 206, 181, 0.3);
    transition: border-color 0.25s ease;
}
.login-foot a:hover { border-bottom-color: #F4CEB5; }

@media (max-width: 600px) {
    .login-page { padding: 8rem 1.5rem 4rem; }
    .login-form { padding: 1.9rem 1.5rem; }
    .login-row { flex-direction: column; }
}

/* ============================================================ */
/* BLOG SYSTEM — snippet answer, lead capture, author data,     */
/* post-type badge, key takeaway. Self-mastery content brand.   */
/* See BLOG_STRATEGY.md.                                         */
/* ============================================================ */

/* --- Snippet answer: the 40–60 word chunk AI lifts. First block in content, renders right under the H1. --- */
.insight-content .snippet-answer,
.snippet-answer {
    position: relative;
    margin: 0 0 3rem;
    padding: 1.7rem 1.9rem 1.8rem 2.2rem;
    border-radius: 16px;
    border: 1px solid rgba(244, 206, 181, 0.22);
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(244, 206, 181, 0.08), transparent 60%),
        rgba(255, 255, 255, 0.018);
    overflow: hidden;
}
.snippet-answer::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #F4CEB5, rgba(244, 206, 181, 0.1));
}
.snippet-answer-label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.7rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.snippet-answer-label::before {
    content: '';
    width: 6px; height: 6px;
    background: #F4CEB5;
    transform: rotate(45deg);
}
.insight-content .snippet-answer p,
.snippet-answer p {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.16rem, 1.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
}

/* --- Author data: the original-data placeholder/figure. Flagged so it's never skipped. --- */
.insight-content .author-data,
.author-data {
    margin: 2.6rem 0;
    padding: 1.5rem 1.7rem;
    border: 1px dashed rgba(244, 206, 181, 0.38);
    border-radius: 14px;
    background: rgba(244, 206, 181, 0.035);
}
.author-data-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.author-data-tag::before {
    content: '◆';
    font-size: 0.7rem;
    line-height: 1;
}
.insight-content .author-data p,
.author-data p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}
.author-data img,
.author-data figure { margin: 0.8rem 0 0; border-radius: 10px; max-width: 100%; }

/* A tight inline stat callout — "stat + context", the format AI cites. */
.insight-content .stat-callout,
.stat-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2rem 1rem;
    margin: 2.4rem 0;
    padding: 1.4rem 1.6rem;
    border-left: 2px solid #F4CEB5;
    background: rgba(255, 255, 255, 0.015);
}
.stat-callout-num {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}
.stat-callout-ctx {
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

/* --- In-content lead capture: per-category offer. Reuses jt_subscribe AJAX + insight-cta-form. --- */
.insight-content .jt-capture,
.jt-capture {
    position: relative;
    margin: 3.4rem 0;
    padding: 2.1rem 2.1rem 2rem;
    border-radius: 18px;
    border: 1px solid rgba(244, 206, 181, 0.3);
    background:
        radial-gradient(140% 120% at 100% 0%, rgba(244, 206, 181, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
    overflow: hidden;
}
.jt-capture--inline { margin: 2.8rem 0; padding: 1.7rem 1.8rem; border-radius: 14px; }
.jt-capture-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.65rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.jt-capture-eyebrow svg { width: 14px; height: 14px; }
.insight-content .jt-capture-title,
.jt-capture-title {
    margin: 0 0 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(1.3rem, 2.3vw, 1.7rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #fff;
}
.insight-content .jt-capture-copy,
.jt-capture-copy {
    margin: 0 0 1.2rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
}
.jt-capture-form { margin: 0; }
.jt-capture-row {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.jt-capture-row input[type="email"] {
    flex: 1 1 240px;
    min-width: 0;
    padding: 0.95rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.4);
    color: #f5f5f5;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
}
.jt-capture-row input[type="email"]:focus {
    outline: none;
    border-color: rgba(244, 206, 181, 0.6);
}
.jt-capture-row input::placeholder { color: rgba(255, 255, 255, 0.35); }
.jt-capture-status {
    margin: 0.8rem 0 0;
    font-size: 0.9rem;
    min-height: 1.1em;
    color: rgba(244, 206, 181, 0.9);
}
.jt-capture-status.is-error { color: #ff9b8a; }
.jt-capture-fineprint {
    margin: 0.7rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.34);
}

/* --- Post-type badge (format axis) — pairs with the category eyebrow (topic axis). --- */
.post-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 206, 181, 0.3);
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.post-type-badge::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #F4CEB5;
}

/* --- Key takeaway: scannable summary block. --- */
.insight-content .key-takeaway,
.key-takeaway {
    margin: 3rem 0;
    padding: 1.7rem 1.9rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}
.key-takeaway-label {
    margin: 0 0 0.6rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #F4CEB5;
}
.insight-content .key-takeaway p:last-child,
.key-takeaway p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
    .snippet-answer { padding: 1.4rem 1.4rem 1.5rem 1.7rem; }
    .jt-capture { padding: 1.7rem 1.5rem; }
    .jt-capture-row input[type="email"] { flex-basis: 100%; }
}

/* Category hub — format filter chips row. */
.insight-hub-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.6rem;
}
.insight-hub-formats .post-type-badge { transition: border-color 0.25s ease, color 0.25s ease; text-decoration: none; }
.insight-hub-formats .post-type-badge:hover { border-color: rgba(244, 206, 181, 0.7); color: #fff; }

/* ============================================================ */
/* HABIT LIBRARY — archive table, score bar, single habit.      */
/* ============================================================ */

.habit-archive { position: relative; max-width: 1180px; margin: 0 auto; padding: 9rem 2rem 6rem; }
.habit-archive-head { max-width: 760px; margin: 0 auto 2.4rem; text-align: center; }
.habit-archive-tagline { margin-top: 1.2rem; font-family: 'Inter Tight', sans-serif; font-weight: 300; font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.55); }
.habit-archive-tagline a, .habit-signin-link { color: #F4CEB5; text-decoration: underline; text-underline-offset: 3px; }

/* --- Score bar (sticky) --- */
.habit-scorebar {
    position: sticky; top: 0; z-index: 30;
    display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
    margin: 0 auto 1.6rem; padding: 1rem 1.4rem;
    border: 1px solid rgba(244,206,181,0.22); border-radius: 16px;
    background: rgba(10,10,10,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.habit-score { display: flex; align-items: baseline; gap: 0.5rem; }
.habit-score-num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 2.1rem; line-height: 1; letter-spacing: -0.03em; color: #fff; }
.habit-score-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #F4CEB5; }
.habit-score-meta { flex: 1 1 200px; min-width: 160px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.habit-progress { margin-top: 0.5rem; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.habit-progress-fill { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #F4CEB5, #e0a883); transition: width 0.5s cubic-bezier(0.22,1,0.36,1); }
.habit-score-cta .btn { padding: 0.55rem 1rem; font-size: 0.82rem; }

/* --- Controls --- */
.habit-controls { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.habit-search { flex: 1 1 240px; min-width: 0; padding: 0.7rem 1rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.4); color: #f5f5f5; font-family: 'Inter Tight', sans-serif; font-size: 0.95rem; }
.habit-search:focus { outline: none; border-color: rgba(244,206,181,0.6); }
.habit-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.habit-filter { padding: 0.6rem 0.8rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.4); color: #f5f5f5; font-family: 'Inter Tight', sans-serif; font-size: 0.85rem; }
.habit-toggle-adopted { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); cursor: pointer; }
.habit-toggle-adopted input { accent-color: #F4CEB5; }

/* --- Table --- */
.habit-table-wrap { overflow-x: auto; border-radius: 14px; }
.habit-table { width: 100%; border-collapse: collapse; font-family: 'Inter Tight', sans-serif; }
.habit-table thead th {
    position: sticky; top: 86px; z-index: 5;
    padding: 0.7rem 1rem; text-align: left;
    font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #F4CEB5;
    background: #060606; border-bottom: 1px solid rgba(244,206,181,0.32); white-space: nowrap;
}
.habit-sort { cursor: pointer; user-select: none; }
.habit-sort:hover { color: #fff; }
.habit-sort.is-sorted::after { content: ' ↓'; opacity: 0.7; }
.habit-sort.is-sorted.is-asc::after { content: ' ↑'; }
.habit-th-check { width: 44px; }
.habit-row { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background-color 0.18s ease; }
.habit-row:hover { background: rgba(244,206,181,0.03); }
.habit-row td { padding: 0.85rem 1rem; vertical-align: middle; }
.habit-row.is-adopted { background: rgba(244,206,181,0.045); }

.habit-td-check { width: 44px; }
.habit-check {
    display: inline-grid; place-items: center; width: 26px; height: 26px;
    border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.22); background: transparent;
    color: transparent; cursor: pointer; transition: all 0.18s ease;
}
.habit-check svg { width: 15px; height: 15px; }
.habit-check:hover { border-color: rgba(244,206,181,0.7); }
.habit-check.is-adopted { background: #F4CEB5; border-color: #F4CEB5; color: #000; }

.habit-td-name { min-width: 220px; }
.habit-name-link { display: block; font-size: 1.02rem; font-weight: 500; color: #fff; text-decoration: none; }
.habit-name-link:hover { color: #F4CEB5; }
.habit-name-sub { display: block; margin-top: 0.15rem; font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.42); }
.habit-tag { font-size: 0.78rem; color: rgba(255,255,255,0.6); white-space: nowrap; }

/* Pills */
.habit-pill { display: inline-block; padding: 0.22rem 0.6rem; border-radius: 999px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; border: 1px solid transparent; white-space: nowrap; }
.habit-pill-diff.is-easy   { color: #9fe3b0; border-color: rgba(159,227,176,0.4); background: rgba(159,227,176,0.08); }
.habit-pill-diff.is-medium { color: #F4CEB5; border-color: rgba(244,206,181,0.4); background: rgba(244,206,181,0.08); }
.habit-pill-diff.is-hard   { color: #f0a896; border-color: rgba(240,168,150,0.4); background: rgba(240,168,150,0.08); }
.habit-pill-impact.is-low    { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.18); }
.habit-pill-impact.is-medium { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.28); }
.habit-pill-impact.is-high   { color: #F4CEB5; border-color: rgba(244,206,181,0.5); background: rgba(244,206,181,0.07); }

.habit-pts { font-weight: 600; color: #F4CEB5; font-size: 0.88rem; }
.habit-status { font-size: 0.8rem; color: rgba(255,255,255,0.4); white-space: nowrap; }
.habit-status.is-adopted { color: #9fe3b0; font-weight: 500; }
.habit-empty { padding: 2rem; text-align: center; color: rgba(255,255,255,0.5); }

@media (max-width: 760px) {
    .habit-col-cat, .habit-col-impact { display: none; }
    .habit-table thead th { top: 0; }
    .habit-scorebar { top: 0; }
}

/* ============================================================ */
/* SINGLE HABIT                                                  */
/* ============================================================ */

.habit-single { position: relative; }
.habit-hero { position: relative; max-width: 820px; margin: 0 auto; padding: 8.5rem 2rem 2rem; overflow: hidden; }
.habit-hero-inner { position: relative; z-index: 2; }
.habit-title { margin: 0.6rem 0 0; font-family: 'Inter Tight', sans-serif; font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.035em; color: #fff; }
.habit-lede { margin: 1rem 0 0; font-family: 'Inter Tight', sans-serif; font-weight: 300; font-size: 1.25rem; line-height: 1.5; color: rgba(255,255,255,0.6); }

.habit-stats { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin: 2rem 0 1.8rem; padding: 1.3rem 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.habit-stat { display: flex; flex-direction: column; gap: 0.4rem; }
.habit-stat-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.habit-stat-val { font-size: 1.05rem; font-weight: 500; color: #fff; }
.habit-stat-pts { color: #F4CEB5; }

.habit-adopt { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.4rem; }
.habit-adopt-btn {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 0.85rem 1.5rem; border-radius: 999px; cursor: pointer;
    border: 1.5px solid rgba(244,206,181,0.5); background: transparent; color: #F4CEB5;
    font-family: 'Inter Tight', sans-serif; font-size: 1rem; font-weight: 500; transition: all 0.2s ease;
}
.habit-adopt-btn:hover { border-color: #F4CEB5; background: rgba(244,206,181,0.06); }
.habit-adopt-icon { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid currentColor; }
.habit-adopt-icon svg { width: 13px; height: 13px; opacity: 0; transition: opacity 0.18s ease; }
.habit-adopt-btn.is-adopted { background: #F4CEB5; border-color: #F4CEB5; color: #000; }
.habit-adopt-btn.is-adopted .habit-adopt-icon { background: #000; color: #F4CEB5; border-color: #000; }
.habit-adopt-btn.is-adopted .habit-adopt-icon svg { opacity: 1; }
.habit-adopt-note { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.habit-adopt-note a { color: #F4CEB5; }

.habit-body { max-width: 820px; margin: 0 auto; padding: 1.5rem 2rem 5rem; }
.habit-section { margin: 3rem 0; }
.habit-h2 { margin: 0 0 1.3rem; font-family: 'Inter Tight', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.025em; color: #fff; }
.habit-desc { font-size: 1.15rem; }

/* Steps */
.habit-steps { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.habit-step { display: flex; gap: 1.1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.habit-step:last-child { border-bottom: none; }
.habit-step-num { flex: 0 0 auto; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 0.95rem; color: #F4CEB5; padding-top: 0.1rem; }
.habit-step-text { font-family: 'Inter Tight', sans-serif; font-weight: 300; font-size: 1.1rem; line-height: 1.55; color: rgba(255,255,255,0.72); }

/* Related */
.habit-related-posts { list-style: none; margin: 0; padding: 0; }
.habit-related-posts li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.habit-related-posts a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; color: #fff; text-decoration: none; transition: color 0.18s ease; }
.habit-related-posts a:hover { color: #F4CEB5; }
.habit-related-posts svg { width: 14px; height: 14px; flex: 0 0 auto; }
.habit-related-title { font-size: 1.05rem; font-weight: 400; }

.habit-related-habits { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.9rem; }
.habit-related-card { display: flex; flex-direction: column; gap: 0.7rem; padding: 1.1rem 1.2rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.015); text-decoration: none; transition: border-color 0.2s ease; }
.habit-related-card:hover { border-color: rgba(244,206,181,0.4); }
.habit-related-card-name { font-size: 1rem; font-weight: 500; color: #fff; }
.habit-related-card-meta { display: flex; align-items: center; gap: 0.7rem; }

.habit-back { margin-top: 3rem; }
.habit-back a { color: #F4CEB5; text-decoration: none; }
.habit-back a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .habit-archive { padding: 7rem 1.2rem 4rem; }
    .habit-body, .habit-hero { padding-left: 1.2rem; padding-right: 1.2rem; }
}

/* === LEGAL (Privacy / Terms) === */
.legal {
    position: relative;
    padding: 9rem 1.5rem 6rem;
    overflow: hidden;
}
.legal-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.legal-diamond {
    position: absolute;
    top: 7rem; right: 8%;
    width: 14px; height: 14px;
    opacity: 0.5;
}
.legal-vline {
    position: absolute;
    top: 0; left: 12%;
    width: 1px; height: 16rem;
    background: linear-gradient(180deg, transparent, rgba(244,206,181,0.18), transparent);
}
.legal-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.legal-head {
    margin: 0 0 3.2rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-head .text-label { display: block; margin: 0 0 1.1rem; }
.legal-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    color: #fff;
    margin: 0 0 1.2rem;
}
.legal-meta {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.4);
}
/* Tighter prose scale than the blog — legal copy reads denser. */
.legal-content {
    max-width: none;
    padding: 0;
    font-size: clamp(1.02rem, 1.2vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
}
.legal-content h2 {
    margin: 3rem 0 1.1rem;
    font-size: clamp(1.5rem, 2.6vw, 1.95rem);
}
.legal-content h3 {
    margin: 2.2rem 0 0.7rem;
    font-size: clamp(1.15rem, 1.7vw, 1.3rem);
}
.legal-content ul,
.legal-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.3rem;
}
.legal-content li { margin: 0 0 0.55rem; }
.legal-content strong { color: rgba(255,255,255,0.82); font-weight: 600; }

@media (max-width: 600px) {
    .legal { padding: 7rem 1.2rem 4rem; }
}
