:root {
    --jhk-ink: #10100f;
    --jhk-ink-soft: #2a2925;
    --jhk-paper: #f4f2ed;
    --jhk-paper-2: #ebe7df;
    --jhk-white: #ffffff;
    --jhk-gold: #b1843f;
    --jhk-muted: #65635d;
    --jhk-line: rgba(16, 16, 15, .14);
    --jhk-shadow: 0 28px 75px rgba(24, 22, 17, .14);
}

html { scroll-behavior: smooth; }

body.jhk-microsite {
    background: var(--jhk-paper);
    color: var(--jhk-ink);
}

body.jhk-microsite #main,
body.jhk-microsite #content-wrap,
body.jhk-microsite .content-area,
body.jhk-microsite .site-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

body.jhk-microsite .page-header,
body.jhk-microsite .entry-header,
body.jhk-microsite .page-header-title,
body.jhk-microsite .site-breadcrumbs,
body.jhk-microsite #right-sidebar {
    display: none !important;
}

body.jhk-microsite #site-header {
    position: absolute !important;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.jhk-site {
    overflow: hidden;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.jhk-wrap {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.jhk-hero {
    position: relative;
    min-height: max(790px, 100svh);
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #111;
}

.jhk-hero-media,
.jhk-hero-overlay {
    position: absolute;
    inset: 0;
}

.jhk-hero-media {
    z-index: -3;
    overflow: hidden;
}

.jhk-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% 43%;
    filter: grayscale(1) contrast(1.04);
    transform: scale(1.035);
    animation: jhkHeroImage 15s cubic-bezier(.2, .7, .2, 1) forwards;
}

.jhk-hero-overlay {
    z-index: -2;
    background:
        linear-gradient(90deg,
            rgba(247, 246, 242, .98) 0%,
            rgba(247, 246, 242, .93) 29%,
            rgba(247, 246, 242, .73) 49%,
            rgba(11, 11, 11, .35) 69%,
            rgba(5, 5, 5, .91) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .11), transparent 50%);
}

.jhk-hero-layout {
    width: 100%;
    padding-top: clamp(150px, 18vh, 210px);
    padding-bottom: 110px;
}

.jhk-hero-copy {
    width: min(760px, 65vw);
    animation: jhkHeroCopy .85s .12s both cubic-bezier(.2, .7, .2, 1);
}

.jhk-eyebrow,
.jhk-kicker {
    margin: 0 0 26px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.jhk-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #66645f;
}

.jhk-eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
}

.jhk-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(50px, 5.25vw, 83px);
    line-height: .94;
    letter-spacing: -.066em;
    font-weight: 760;
    color: #0c0c0b;
    text-wrap: balance;
}

.jhk-gold-line {
    margin: 30px 0 0;
    font-size: clamp(21px, 2.15vw, 31px);
    line-height: 1.2;
    letter-spacing: -.035em;
    font-weight: 760;
    color: var(--jhk-gold);
}

.jhk-intro {
    max-width: 675px;
    margin: 24px 0 0;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.75;
    color: #494842;
}

.jhk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.jhk-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .015em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.jhk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .15);
}

.jhk-btn-dark { background: var(--jhk-ink); color: #fff !important; }
.jhk-btn-dark:hover { background: #2f2e2a; }

.jhk-btn-outline {
    border: 1px solid rgba(16, 16, 15, .28);
    color: var(--jhk-ink) !important;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(9px);
}

.jhk-btn-outline:hover { background: #fff; }
.jhk-btn-light { background: #fff; color: #111 !important; }

.jhk-microcopy {
    margin: 16px 0 0;
    font-size: 12px;
    color: #77736a;
}

.jhk-side-phone {
    position: absolute;
    left: max(18px, calc((100vw - 1370px) / 2));
    top: 54%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #54524d !important;
    text-decoration: none !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .19em;
}

.jhk-side-phone span {
    display: block;
    width: 1px;
    height: 35px;
    background: currentColor;
}

.jhk-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .72) !important;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.jhk-scroll-hint span {
    width: 34px;
    height: 1px;
    background: currentColor;
    animation: jhkScroll 2s infinite;
}

.jhk-subnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244, 242, 237, .93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--jhk-line);
}

.admin-bar .jhk-subnav { top: 32px; }

.jhk-subnav .jhk-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    min-height: 62px;
}

.jhk-subnav a {
    position: relative;
    color: #5c5a54 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 760;
}

.jhk-subnav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--jhk-gold);
    transition: right .25s ease;
}

.jhk-subnav a:hover::after,
.jhk-subnav a.is-current::after { right: 0; }

.jhk-subnav a.is-current { color: var(--jhk-ink) !important; }

.jhk-stat-strip { background: var(--jhk-ink); color: #fff; }

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

.jhk-stat-grid > div {
    padding: 30px 34px;
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.jhk-stat-grid > div:first-child { padding-left: 0; }
.jhk-stat-grid > div:last-child { border-right: 0; }

.jhk-stat-grid strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.jhk-stat-grid span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .54);
    font-size: 13px;
}

.jhk-section {
    padding: 120px 0;
    background: var(--jhk-paper);
}

.jhk-section-soft { background: var(--jhk-paper-2); }
.jhk-section-dark { background: var(--jhk-ink); color: #fff; }

.jhk-two-col {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, .78fr);
    gap: clamp(55px, 9vw, 135px);
    align-items: start;
}

.jhk-heading h2,
.jhk-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5.2vw, 69px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 400;
    text-wrap: balance;
}

.jhk-heading > p:not(.jhk-kicker) {
    max-width: 720px;
    margin: 25px 0 0;
    color: var(--jhk-muted);
    font-size: 18px;
    line-height: 1.72;
}

.jhk-kicker { color: var(--jhk-gold); }

.jhk-prose {
    color: #4f4d47;
    font-size: 18px;
    line-height: 1.8;
}

.jhk-prose p { margin: 0 0 24px; }

.jhk-text-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--jhk-ink) !important;
    text-decoration: none !important;
    font-weight: 800;
}

.jhk-text-link span {
    display: inline-block;
    margin-left: 7px;
    transition: transform .25s ease;
}

.jhk-text-link:hover span { transform: translateX(5px); }

.jhk-heading-center {
    max-width: 880px;
    margin: 0 auto 58px;
    text-align: center;
}

.jhk-heading-center .jhk-kicker { margin-bottom: 20px; }

.jhk-heading-center > p:not(.jhk-kicker) { margin-inline: auto; }

.jhk-card-grid,
.jhk-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.jhk-card {
    min-height: 315px;
    padding: 34px;
    border: 1px solid rgba(16, 16, 15, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .58);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease, background .35s ease;
}

.jhk-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: var(--jhk-shadow);
}

.jhk-card > span,
.jhk-dark-card > span,
.jhk-treatment-row > span {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .16em;
    color: var(--jhk-gold);
}

.jhk-card h3,
.jhk-dark-card h3,
.jhk-steps h3,
.jhk-treatment-row h3 {
    margin: 70px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: -.025em;
    font-weight: 400;
}

.jhk-card p,
.jhk-dark-card p,
.jhk-steps p,
.jhk-treatment-row p {
    margin: 0;
    color: var(--jhk-muted);
    font-size: 16px;
    line-height: 1.72;
}

.jhk-center-action {
    margin-top: 44px;
    text-align: center;
}

.jhk-experience { background: #f7f5f0; }

.jhk-experience-grid {
    display: grid;
    grid-template-columns: minmax(230px, .55fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: center;
}

.jhk-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(170px, 22vw, 315px);
    line-height: .72;
    letter-spacing: -.09em;
    color: rgba(16, 16, 15, .07);
}

.jhk-experience .jhk-heading > p:not(.jhk-kicker) { margin-bottom: 8px; }

.jhk-dark-grid { margin-top: 58px; }

.jhk-dark-card {
    min-height: 300px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .035);
    transition: transform .3s ease, background .3s ease;
}

.jhk-dark-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .07);
}

.jhk-dark-card h3 { color: #fff; }
.jhk-dark-card p { color: rgba(255, 255, 255, .58); }

.jhk-process-grid {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
    gap: 90px;
    align-items: start;
}

.jhk-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--jhk-line);
}

.jhk-steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--jhk-line);
}

.jhk-steps li > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--jhk-line);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.jhk-steps h3 {
    margin: 0 0 6px;
    font-size: 25px;
}

.jhk-treatment-list { border-top: 1px solid var(--jhk-line); }

.jhk-treatment-row {
    display: grid;
    grid-template-columns: 54px minmax(270px, .85fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 42px 0;
    border-bottom: 1px solid var(--jhk-line);
    transition: padding-left .25s ease;
}

.jhk-treatment-row:hover { padding-left: 12px; }

.jhk-treatment-row h3 {
    margin: 0;
    font-size: clamp(29px, 3.5vw, 48px);
}

.jhk-treatment-row p { font-size: 17px; }

.jhk-quote {
    padding: 105px 0;
    background: var(--jhk-ink);
    color: #fff;
    text-align: center;
}

.jhk-quote blockquote {
    max-width: 980px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.9vw, 65px);
    line-height: 1.18;
    letter-spacing: -.035em;
    font-weight: 400;
}

.jhk-quote p {
    margin: 29px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.jhk-cta {
    padding: 100px 0;
    background: #35322b;
    color: #fff;
}

.jhk-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, .48fr);
    gap: 90px;
    align-items: end;
}

.jhk-cta .jhk-heading > p:not(.jhk-kicker) { color: rgba(255, 255, 255, .62); }

.jhk-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.jhk-cta-actions > a:not(.jhk-btn) {
    color: rgba(255, 255, 255, .78) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.jhk-mobile-call { display: none; }

.jhk-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .78s ease, transform .78s cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes jhkHeroImage { to { transform: scale(1); } }

@keyframes jhkHeroCopy {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@keyframes jhkScroll {
    0%, 100% { opacity: .35; transform: scaleX(.62); transform-origin: left; }
    50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 1100px) {
    .jhk-side-phone { display: none; }
    .jhk-hero-copy { width: min(760px, 72vw); }

    .jhk-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(247, 246, 242, .98) 0%,
                rgba(247, 246, 242, .91) 38%,
                rgba(247, 246, 242, .58) 61%,
                rgba(5, 5, 5, .83) 100%);
    }
}

@media (max-width: 900px) {
    body.jhk-microsite #site-header {
        background: rgba(244, 242, 237, .92) !important;
        backdrop-filter: blur(15px);
    }

    .jhk-hero {
        min-height: 860px;
        align-items: flex-end;
    }

    .jhk-hero-media img { object-position: 49% 26%; }

    .jhk-hero-overlay {
        background:
            linear-gradient(0deg,
                rgba(247, 246, 242, .99) 0%,
                rgba(247, 246, 242, .98) 43%,
                rgba(247, 246, 242, .55) 67%,
                rgba(6, 6, 6, .18) 100%);
    }

    .jhk-hero-layout {
        padding-top: 350px;
        padding-bottom: 78px;
    }

    .jhk-hero-copy { width: 100%; }
    .jhk-hero h1 { font-size: clamp(46px, 9vw, 68px); }
    .jhk-scroll-hint { display: none; }

    .jhk-two-col,
    .jhk-process-grid,
    .jhk-cta-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .jhk-card-grid,
    .jhk-dark-grid { grid-template-columns: 1fr; }

    .jhk-card,
    .jhk-dark-card { min-height: 0; }

    .jhk-card h3,
    .jhk-dark-card h3 { margin-top: 44px; }

    .jhk-experience-grid {
        grid-template-columns: 180px 1fr;
        gap: 35px;
    }

    .jhk-treatment-row {
        grid-template-columns: 45px 1fr;
    }

    .jhk-treatment-row p { grid-column: 2; }
}

@media (max-width: 700px) {
    .jhk-wrap { width: min(100% - 34px, 1180px); }
    .jhk-hero { min-height: 820px; }

    .jhk-hero-layout {
        padding-top: 320px;
        padding-bottom: 70px;
    }

    .jhk-eyebrow {
        font-size: 10px;
        letter-spacing: .15em;
        gap: 10px;
        margin-bottom: 20px;
    }

    .jhk-eyebrow::before { width: 25px; }

    .jhk-hero h1 {
        font-size: clamp(40px, 12.5vw, 58px);
        line-height: .98;
    }

    .jhk-gold-line {
        margin-top: 22px;
        font-size: 21px;
    }

    .jhk-intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .jhk-actions { gap: 10px; }
    .jhk-btn { width: 100%; }

    .jhk-subnav .jhk-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 25px;
        min-height: 58px;
        scrollbar-width: none;
    }

    .jhk-subnav .jhk-wrap::-webkit-scrollbar { display: none; }
    .jhk-subnav a { flex: 0 0 auto; }
    .jhk-stat-grid { grid-template-columns: 1fr; }

    .jhk-stat-grid > div,
    .jhk-stat-grid > div:first-child {
        padding: 23px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    .jhk-stat-grid > div:last-child { border-bottom: 0; }

    .jhk-section,
    .jhk-quote,
    .jhk-cta { padding: 82px 0; }

    .jhk-heading h2,
    .jhk-cta h2 { font-size: clamp(38px, 11vw, 52px); }

    .jhk-heading-center { margin-bottom: 40px; }
    .jhk-card { padding: 28px; }

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

    .jhk-number { font-size: 155px; }

    .jhk-treatment-row {
        grid-template-columns: 34px 1fr;
        gap: 18px;
        padding: 32px 0;
    }

    .jhk-treatment-row h3 { font-size: 31px; }
    .jhk-treatment-row:hover { padding-left: 0; }
    .jhk-quote blockquote { font-size: 36px; }

    .jhk-mobile-call {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 17px;
        border-radius: 15px;
        background: rgba(15, 15, 14, .95);
        color: #fff !important;
        text-decoration: none !important;
        box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
        backdrop-filter: blur(12px);
    }

    .jhk-mobile-call span {
        font-size: 12px;
        color: rgba(255, 255, 255, .62);
    }

    .jhk-mobile-call strong { font-size: 15px; }
    body.jhk-microsite { padding-bottom: 76px; }
}

@media (max-width: 782px) {
    .admin-bar .jhk-subnav { top: 46px; }
}

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

    .jhk-hero-media img,
    .jhk-hero-copy,
    .jhk-scroll-hint span {
        animation: none !important;
    }

    .jhk-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .jhk-card,
    .jhk-dark-card,
    .jhk-treatment-row,
    .jhk-btn {
        transition: none;
    }
}
