* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    line-height: 1.5;
    font-weight: 400;
    font-size: 1rem;
}

h1 {
    font-weight: 900;
    font-size: 2.5rem;
}

h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 2.5vw, 2rem) !important;
}

h3 {
    font-weight: 600;
    font-size: 1.25rem;
}

body {
    font-family: 'avenir', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1200;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.08);
}

.scroll-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff7d41 0%, #ffc067 100%);
    transform-origin: left center;
    transform: scaleX(0);
}

.motion-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.motion-reveal.reveal-left {
    transform: translate3d(-28px, 0, 0);
}

.motion-reveal.reveal-right {
    transform: translate3d(28px, 0, 0);
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

body.has-public-admin-bar .scroll-progress {
    top: var(--admin-bar-height, 44px);
}

@media (max-width: 768px) {
    body.has-public-admin-bar .scroll-progress {
        top: var(--admin-bar-height, 64px);
    }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000cc;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

body.has-public-admin-bar .nav {
    top: var(--admin-bar-height, 44px);
}

.nav-wrapper {
    width: min(1451px, 100%);
    /* max-width: 1400px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav .logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
    text-decoration: none;
}

.nav .logo a img {
    height: 30px;
    vertical-align: middle;
}

.nav .logo a span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0.4rem;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:focus-visible {
    outline: 2px solid #FF7D41;
    outline-offset: 3px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.nav .nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav .nav-links a:hover {
    color: #FF7D41;
}

.nav .nav-links a.active {
    color: #FF7D41;
    font-weight: bold;
}


/* Hero section */

#hero {
    --hero-parallax: 0px;
    position: relative;
    display: flex;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    height: min(76vh, 700px);
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background-color: #0a0a0d;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://jrodcode.dev/uploads/1780350751_7ca75354_1780089132-34bd42e4-hero-image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center calc(50% + var(--hero-parallax));
    will-change: background-position;
    pointer-events: none;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(7, 8, 10, 0.82) 0%,
            rgba(7, 8, 10, 0.65) 32%,
            rgba(7, 8, 10, 0.28) 56%,
            rgba(7, 8, 10, 0.06) 72%,
            rgba(7, 8, 10, 0) 84%);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1460px) {
    .hero-left-side {
        background: rgba(11, 12, 15, 0) !important;
    }

    #hero::after {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('https://jrodcode.dev/uploads/1780350751_7ca75354_1780089132-34bd42e4-hero-image.png');
        background-repeat: no-repeat;
        background-position: center calc(50% + var(--hero-parallax));
        background-size: cover;
        background-blend-mode: multiply;
    }
}

.hero-wrapper {
    width: min(1451px, 100%);
    margin: 0 auto;
    height: 100%;
    display: flex;
    gap: 0;
    flex-direction: row;
    justify-content: flex-start;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 0 1 min(100%, 720px);
}

.hero-right-side {
    display: none;
}

.hero-left-side {
    align-items: flex-start;
    padding: clamp(2.5rem, 4.8vh, 3.6rem) clamp(1.4rem, 3vw, 2.8rem);
    background: transparent;
    backdrop-filter: none;
    text-align: left;
}

.hero-left-side h1 {
    width: min(100%, 560px);
    font-size: clamp(2.3rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.hero-left-side p {
    width: min(100%, 500px);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-left-side .btn.cta {
    display: flex;
    width: fit-content;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #1275B1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-left-side .btn.cta:hover {
    background-color: #0a4d73;
}

.hero-action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.hero-left-side .hero-scroll-cue {
    margin-top: 1.2rem;
}

#hero .home-hero-scroll-trigger,
#hero>.jrod-hero-scroll-trigger {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 2;
}

#hero .home-hero-scroll-trigger.is-visible {
    transform: translateX(-50%);
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    background: rgba(8, 8, 10, 0.34);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-action-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
    flex-shrink: 0;
}

.hero-action-btn:hover {
    background: rgba(255, 125, 65, 0.2);
    border-color: #ff9a6d;
    transform: translateY(-1px);
}

.hero-action-btn:focus-visible {
    outline: 2px solid #ff9a6d;
    outline-offset: 2px;
}

#featured-work {
    background: #fff;
    padding: 5.5rem 1.2rem 5rem;
}

.featured-work-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.featured-work-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.featured-work-top-copy {
    flex: 1 1 320px;
    min-width: 0;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ff7d41;
    margin-bottom: 0.5rem;
}

#featured-work h2 {
    font-size: clamp(2rem, 3vw, 2.9rem);
    color: #111;
    margin-bottom: 0.5rem;
}

.section-subtitle,
.contact-subtitle {
    color: #555;
    margin-bottom: 2.2rem;
    max-width: 560px;
    font-size: 1.3rem !important;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    margin-bottom: 2rem;
}

.project-card {
    background: #fff;
    border: 1px solid #b9b9b9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
}

.project-thumb {
    height: 160px;
    display: grid;
    place-items: center;
    color: #fff;
}

.project-thumb--dynamic {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.project-thumb-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.project-thumb-overlay {
    position: absolute;
    inset: 0;
    background: var(--thumb-overlay, #2890C5);
    opacity: 0.78;
    mix-blend-mode: multiply;
    z-index: 1;
}

.project-thumb--dynamic:not(:has(.project-thumb-media)) .project-thumb-overlay {
    opacity: 1;
    mix-blend-mode: normal;
}

.project-thumb-icon {
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 8vw, 4rem) !important;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

.project-thumb-logo {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: min(84px, 42%);
    max-height: 84px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

.project-icon-link .material-symbols-outlined {
    font-size: 1rem;
    line-height: 1;
}

.featured-work-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

.featured-work-more .view-more-projects {
    margin-left: 0;
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 18px;
}

.featured-work-more .view-more-projects svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-thumb-notes {
    background: #ffd764 url('images/ntn-bg.png') no-repeat center center/cover;
    background-blend-mode: multiply;
}

.project-thumb-mark {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    background: url('images/ntn-logo.png') no-repeat center center/cover;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 2rem;
}

.project-thumb-portal {
    background: #1275B1 url('images/ttp-bg.png') no-repeat center center/cover;
}

.project-thumb-icons {
    background: url('images/ai-bg.png') no-repeat center center/cover;
}

.project-thumb-mark-ai {
    background: url('images/ai-logo.png') no-repeat center center/cover;
}

.project-thumb svg {
    width: 64px;
    height: 64px;
    fill: rgba(255, 255, 255, 0.95);
}

.project-card-body {
    padding: 0.95rem 0.95rem 0.75rem;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    margin-bottom: 0.85rem;
}

.project-tags span {
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid #929292;
    border-radius: 999px;
    padding: 0.15rem 0.45rem;
    background: #fff;
    color: #444;
}

.project-card h3 {
    color: #111;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: #333;
}

.project-card-footer {
    border-top: 1px solid #bcbcbc;
    padding: 0.75rem 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.project-icon-link,
.project-view-link {
    text-decoration: none;
    color: #1a1a1a;
    border: 1px solid #b6b6b6;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f5f5f5;
}

.project-icon-link {
    width: 30px;
    height: 30px;
    justify-content: center;
}

.project-view-link {
    font-size: 0.88rem;
    padding: 0.35rem 0.65rem;
    font-weight: 500;
}

.project-icon-link svg,
.project-view-link svg,
.view-more-projects svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.view-more-projects {
    margin-left: auto;
    text-decoration: none;
    color: #111;
    border: 1px solid #6e6e6e;
    border-radius: 16px;
    padding: 0.72rem 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    font-weight: 500;
}

.project-icon-link:hover,
.project-view-link:hover,
.view-more-projects:hover {
    border-color: #ff7d41;
    color: #ff7d41;
}

#impact {
    background: #038C7F;
    padding: 6.75rem 1.2rem 7.2rem;
}

.impact-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(1120px, 100%);
    margin: 0 auto;
}

#impact .section-kicker {
    color: #fff;
    margin-bottom: 0.5rem;
}

#impact #impact-title {
    font-size: clamp(2.3rem, 5vw, 3.9rem);
    line-height: 1.05;
    margin-bottom: 0.85rem;
    color: #edf4f8;
}

#impact .section-subtitle {
    max-width: 900px;
    color: rgba(241, 248, 252, 0.9);
    margin-bottom: 2.25rem;
    text-align: center;
}

.impact-grid {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 2.65rem 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-card {
    text-align: center;
    padding: 0.4rem 1rem;
}

.impact-card:not(:first-child) {
    border-left: 1px solid rgba(0, 0, 0, 0.11);
}

.impact-card h3 {
    font-size: clamp(2.5rem, 3vw, 4.25rem);
    line-height: 1;
    margin-bottom: 0.55rem;
    color: #0f1115;
}

.impact-card h3.impact-word {
    font-size: clamp(2.2rem, 2.6vw, 3.55rem);
    letter-spacing: 0.01em;
}

.impact-plus,
.impact-symbol {
    color: #e3642d;
}

.impact-label {
    font-size: 0.97rem;
    color: #505050;
    line-height: 1.25;
    margin: 0;
}

.impact-note {
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(63, 63, 63, 0.9);
    line-height: 1.25;
    margin: 0.12rem 0 0;
}

#process {
    background: #fff;
    padding: 0rem 1.2rem 7rem;
}

.process-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

#process #process-title {
    color: #111;
    line-height: 1.05;
    font-size: clamp(2rem, 4.8vw, 4rem);
    margin-bottom: 0.75rem;
}

#process #process-title span {
    color: #e3642d;
}

#process .section-subtitle {
    max-width: 980px;
    color: #404040;
    font-size: clamp(1rem, 2.5vw, 1.9rem);
    margin-bottom: 1.85rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.process-card {
    background: #fff;
    border: 1px solid #ddd9ce;
    border-radius: 16px;
    padding: 1.55rem 1.1rem 1.25rem;
    text-align: left;
    position: relative;
}

.process-card:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    top: 1rem;
    right: -0.8rem;
    font-size: 1.2rem;
    line-height: 1;
    color: #bdb9ad;
    z-index: 2;
}

.process-step {
    color: #1a1a1a;
    background: #e7e3d8;
    border: 1px solid #d9d4c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
}

.process-icon {
    color: #e3642d;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.process-card h3 {
    color: #131313;
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.process-card p {
    color: #3f3f3f;
    line-height: 1.45;
    font-size: 0.88rem;
    margin: 0;
}

.process-card p.process-step {
    margin-bottom: 0.8rem;
}

#about {
    background: linear-gradient(135deg, #141518 0%, #111216 55%, #191a1f 100%);
    color: #f4f4f4;
    padding: 5rem 1.2rem 5.2rem;
}

.page-about #about {
    min-height: 100vh;
    padding-top: 7.5rem;
}

.about-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 2.35rem;
}

.about-avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.65);
    margin-bottom: 0.95rem;
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ff7d41;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

#about h2 {
    color: #f3f3f3;
    line-height: 1.2;
    font-size: clamp(1.7rem, 3vw, 2.75rem);
}

#about h2 span {
    color: #ff7d41;
}

.about-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.6rem;
    align-items: start;
}

.about-copy p {
    color: #e0e0e0;
    line-height: 1.42;
    font-size: 1.02rem;
    margin-bottom: 1rem;
}

.skill-group {
    margin-bottom: 1.1rem;
}

.skill-group h3 {
    color: #f0f0f0;
    text-transform: uppercase;
    font-size: 1.06rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #585858;
    padding: 0.2rem 0.62rem;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.pill.blue {
    border-color: #147fb9;
    background: rgba(20, 127, 185, 0.25);
}

.pill.green {
    border-color: #199f45;
    background: rgba(25, 159, 69, 0.22);
}

.pill.orange {
    border-color: #cb7b2a;
    background: rgba(203, 123, 42, 0.22);
}

.pill.red {
    border-color: #c84141;
    background: rgba(200, 65, 65, 0.22);
}

.pill.purple {
    border-color: #9a5ebf;
    background: rgba(154, 94, 191, 0.22);
}

.pill.dark {
    border-color: #8a8a8a;
    background: rgba(255, 255, 255, 0.07);
}

#contact {
    background: #f6f5f2;
    padding: 5.2rem 1.2rem 5.4rem;
}

.contact-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbf8f2 62%, #f3ece1 100%);
    border: 1px solid #ddd6ca;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(17, 17, 17, 0.08);
    padding: clamp(1.3rem, 2.5vw, 2rem);
}

.contact-copy {
    max-width: 700px;
}

.contact-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff7d41;
    font-weight: 700;
    margin-bottom: 0.38rem;
}

#contact h2 {
    color: #101217;
    margin-bottom: 0.45rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
}

.contact-subtitle {
    color: #3f434b;
    font-size: clamp(1rem, 1.3vw, 1.1rem) !important;
    margin-bottom: 0.8rem;
    max-width: 620px;
}

.contact-response-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #4c515b;
    background: rgba(17, 18, 23, 0.05);
    border: 1px solid rgba(17, 18, 23, 0.12);
    border-radius: 999px;
    padding: 0.38rem 0.74rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.7rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.78rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid rgba(26, 27, 33, 0.28);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-btn-outline {
    color: #1a1b21;
    background: transparent;
}

.contact-btn-solid {
    color: #fff;
    background: #ff7d41;
    border-color: #ff7d41;
    box-shadow: 0 8px 18px rgba(255, 125, 65, 0.3);
}

.contact-btn:hover {
    transform: translateY(-1px);
}

.contact-btn-outline:hover {
    border-color: #ff7d41;
    color: #ff7d41;
}

.contact-btn-solid:hover {
    background: #e6672f;
    border-color: #e6672f;
}

#blog {
    background: #f0f0f0;
    padding: 5.2rem 0 5.4rem;
}

.blog-header-wrapper,
.blog-content-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 1.2rem;
}

.blog-header-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 1.4rem;
}

#blog .section-kicker {
    margin-bottom: 0.3rem;
}

#blog #blog-title {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    line-height: 1.1;
    color: #0f1115;
    margin-bottom: 0.25rem;
}

#blog .section-subtitle {
    color: #404040;
    max-width: 930px;
    font-size: 1rem;
    text-align: center;
}

.blog-divider {
    display: none;
}

.blog-content-wrapper {
    padding-top: 1.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-card {
    background: #e7e6e1;
    border-radius: 16px;
    padding: 1.55rem 1.25rem 1.3rem;
}

.blog-card-kicker {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3f4045;
    margin-bottom: 0.35rem;
}

.blog-card h4 {
    color: #15161b;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.18;
    margin-bottom: 0.35rem;
}

.blog-card-meta,
.blog-card-excerpt {
    color: #444;
    /* font-size: clamp(1rem, 1.35vw, 1.25rem); */
}

.blog-card-meta {
    margin-bottom: 0.2rem;
}

.blog-card-excerpt {
    margin-bottom: 0.6rem;
}

.blog-card-link {
    color: #e3642d;
    text-decoration: none;
    font-size: clamp(1.1rem, 1.5vw, 1.45rem);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.blog-card-link:hover {
    color: #c75423;
}

.blog-view-all {
    margin: 0 auto;
    text-decoration: none;
    color: #444;
    border: 1px solid #c9c9c9;
    border-radius: 18px;
    padding: 0.8rem 1.45rem;
    display: flex;
    width: fit-content;
    font-size: clamp(1.05rem, 1.35vw, 1.4rem);
    font-weight: 500;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.blog-view-all:hover {
    color: #111;
    border-color: #7f7f7f;
}

#site-footer {
    background: linear-gradient(135deg, #191b21 0%, #15161b 100%);
    color: #d9d9d9;
    padding: 3.5rem 1.2rem 2rem;
}

.footer-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.95fr;
    gap: 2.4rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #f1f1f1;
    text-decoration: none;
    margin-bottom: 0.85rem;
}

.footer-brand img {
    width: 42px;
    height: 42px;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.footer-brand-column p {
    max-width: 360px;
    color: #ededed;
    font-size: 1rem;
    line-height: 1.34;
    margin-bottom: 1.4rem;
}

.footer-brand-column h3,
.footer-links-column h3 {
    color: #f0f0f0;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.footer-socials a {
    color: #f5f5f5;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a i {
    display: inline-block;
    line-height: 1;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column li {
    margin-bottom: 0.42rem;
}

.footer-links-column a {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 1rem;
}

.footer-socials a:hover,
.footer-links-column a:hover {
    color: #ff7d41;
}

.footer-socials a:hover {
    transform: translateY(-1px);
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-bottom-row p {
    margin: 0;
    color: #ededed;
    font-size: 0.95rem;
}

.footer-bottom-row span {
    color: #ff7d41;
}

.highlight {
    color: #FF7D41;
}

@media (prefers-reduced-motion: reduce) {
    .motion-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .scroll-progress-bar {
        transition: none;
    }

    #hero {
        --hero-parallax: 0px !important;
    }

    #hero::after {
        background-position: center !important;
    }

    #my-work-hero {
        --my-work-hero-parallax: 0px !important;
    }

    #case-hero {
        --case-hero-parallax: 0px !important;
    }

    #blog-page-hero {
        --blog-page-hero-parallax: 0px !important;
    }

    #contact-page-hero {
        --contact-page-hero-parallax: 0px !important;
    }

    #blog-post-hero {
        --blog-post-hero-parallax: 0px !important;
    }
}

@media (min-width: 1500px) {
    .hero-left-side {
        max-width: 600px;
    }
}

@media (max-width: 1100px) {
    .hero-wrapper {
        gap: 0;
    }

    .hero-left-side {
        flex-basis: min(100%, 650px);
    }

    .hero-right-side {
        flex-basis: 0;
    }

    .hero-left-side {
        padding: 2.2rem 1.4rem;
    }

    .hero-left-side h1 {
        font-size: 2.55rem;
    }

    .hero-left-side p {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {

    .motion-reveal.reveal-left,
    .motion-reveal.reveal-right {
        transform: translate3d(0, 18px, 0);
    }

    #hero {
        min-height: 500px;
        height: min(72svh, 620px);
    }

    .hero-wrapper {
        min-height: 100%;
    }

    .hero-left-side {
        padding: 1.8rem 1.15rem;
    }

    .hero-left-side h1 {
        font-size: 2.15rem;
    }

    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 0.35rem;
        padding: 1.5rem 0.85rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.95rem;
    }

    .process-card {
        padding: 1.35rem 1rem 1.05rem;
    }

    .process-card:nth-child(2n)::after {
        display: none;
    }

    .process-card:not(:last-child)::after {
        right: -1.45rem;
    }

    #impact #impact-title {
        font-size: clamp(2.05rem, 6vw, 3rem);
        margin-bottom: 0.55rem;
    }

    #impact .section-subtitle {
        margin-bottom: 1.4rem;
    }

    .impact-card:nth-child(3),
    .impact-card:nth-child(4) {
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        padding-top: 1.2rem;
    }

    .impact-card:nth-child(3) {
        border-left: 0;
    }

    .about-content-grid {
        gap: 1.7rem;
    }

    .blog-header-wrapper {
        padding-bottom: 1.25rem;
    }

    #blog #blog-title {
        font-size: clamp(2rem, 3.5vw, 3rem) !important;
    }

    #blog .section-subtitle {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-card {
        padding: 1.6rem 1.2rem 1.3rem;
    }

    .blog-card-kicker {
        font-size: 1.45rem;
        margin-bottom: 0.55rem;
    }

    .blog-card h4 {
        font-size: clamp(1.3rem, 4.7vw, 1.8rem);
    }

    .blog-card-meta,
    .blog-card-excerpt {
        font-size: 1rem;
    }

    .blog-card-link {
        font-size: 1.15rem;
    }

    .blog-view-all {
        font-size: 1.05rem;
        padding: 0.75rem 1.4rem;
    }

    .pill {
        font-size: 0.88rem;
    }

    .contact-wrapper {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.1rem;
    }

    .contact-actions {
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.7rem;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 700px) {


    .hero-wrapper {
        flex-direction: column;
        justify-content: flex-end;
        padding: 45px 0;
    }

    .hero-right-side {
        display: none;
    }

    .hero-left-side {
        width: 100%;
        min-height: 470px;
        height: min(68svh, 560px);
        flex: none;
        align-items: flex-start;
        padding: 6rem 1.2rem 2rem;
        border-radius: 0;
        background: transparent;
    }

    #hero::before {
        background: linear-gradient(180deg,
                rgba(7, 8, 10, 0.84) 0%,
                rgba(7, 8, 10, 0.62) 42%,
                rgba(7, 8, 10, 0.36) 72%,
                rgba(7, 8, 10, 0.2) 100%);
    }

    .hero-left-side h1,
    .hero-left-side p,
    .hero-left-side .btn.cta {
        margin-left: 0;
    }

    .hero-left-side h1 {
        width: 100%;
        font-size: 2.5rem;
    }

    .hero-left-side p {
        width: 100%;
        font-size: 1.02rem;
    }

    .hero-action-btn {
        font-size: 0.95rem;
        padding: 0.58rem 0.92rem;
    }

    #hero .home-hero-scroll-trigger {
        bottom: 0.85rem;
    }

    #featured-work {
        padding: 4rem 1rem 3.75rem;
    }

    .blog-header-wrapper,
    .blog-content-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #impact {
        padding: 4.2rem 1rem 4.5rem;
    }

    #blog {
        padding: 3.4rem 0 3.6rem;
    }

    #process #process-title {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    #process .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .process-card {
        padding: 1.25rem 1rem 1.1rem;
    }

    .process-card:not(:last-child)::after {
        display: none;
    }

    .process-step {
        font-size: 0.82rem;
        min-width: 40px;
        height: 26px;
    }

    .process-icon {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .process-card h3 {
        font-size: 1.45rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        padding: 1rem 0.85rem;
    }

    #impact #impact-title {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    #impact .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .impact-card,
    .impact-card:not(:first-child),
    .impact-card:nth-child(3),
    .impact-card:nth-child(4) {
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        padding: 1rem 0.65rem;
    }

    .impact-card:first-child {
        border-top: 0;
    }

    .section-subtitle {
        margin-bottom: 1.4rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-thumb {
        height: 148px;
    }

    .view-more-projects {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    #about {
        padding: 3.9rem 1rem 4rem;
    }

    .about-avatar {
        width: 88px;
        height: 88px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .about-copy p {
        font-size: 0.98rem;
    }

    .skill-group h3 {
        font-size: 1rem;
    }

    #contact {
        padding: 3.4rem 1rem 3.6rem;
    }

    .contact-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        width: 100%;
    }

    #site-footer {
        padding: 3rem 1rem 1.7rem;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        padding-bottom: 1.3rem;
    }

    .footer-brand span {
        font-size: 1.5rem;
    }

    .footer-socials a {
        font-size: 1.75rem;
    }

    .footer-links-column a {
        font-size: 1.05rem;
    }
}




@media (max-width: 900px) {
    .nav {
        padding: 0.8rem 1rem;
    }

    .nav .logo {
        font-size: 1.25rem;
    }

    .nav .nav-links {
        gap: 0.75rem;
    }

    .nav .nav-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 700px) {
    body.nav-open {
        overflow: hidden;
    }

    body.is-resizing .nav .nav-links {
        transition: none;
    }

    body.is-resizing .nav-backdrop {
        transition: none;
    }

    .nav-wrapper {
        position: relative;
    }

    .nav-toggle {
        display: block;
    }

    .nav .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(86vw, 200px);
        flex-direction: column;
        background: #24242400;
        border-left: 1px solid rgba(255, 255, 255, 0.22);
        padding: 5.5rem 0.9rem 1rem;
        gap: 0.35rem;
        opacity: 1;
        transform: translateX(105%);
        pointer-events: none;
        transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.25, 1);
        backdrop-filter: blur(10px);
        z-index: 950;
    }

    .nav .nav-links::before {
        content: 'Navigate';
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.75rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        margin: 0 0.75rem 0.45rem;
    }

    .nav .nav-links li {
        width: 100%;
    }

    .nav .nav-links a {
        display: block;
        width: 100%;
        padding: 0.95rem 0.95rem;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.015em;
        border: 1px solid transparent;
        background: transparent;
        transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    }

    .nav .nav-links a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(255, 255, 255, 0.18);
        transform: translateX(-3px);
    }

    .nav .nav-links a.active {
        color: #fff;
        border-color: rgba(255, 125, 65, 0.5);
        background: linear-gradient(90deg, rgba(255, 125, 65, 0.25), rgba(255, 125, 65, 0.04));
    }

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

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        background: rgba(3, 4, 8, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 900;
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

/* My Work page */

.my-work-page {
    background: #0a0a0d;
}

#my-work-hero {
    --my-work-hero-parallax: 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.2rem 1.2rem 1.6rem;
    min-height: min(78vh, 760px);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 8, 12, 0.86) 0%, rgba(7, 7, 11, 0.7) 55%, rgba(36, 18, 8, 0.74) 100%),
        url('https://jrodcode.dev/uploads/1780350751_ccd48901_1780089132-eb0c502b-my-work-hero-image.png') no-repeat center calc(50% + var(--my-work-hero-parallax)) / cover;
    will-change: background-position;
}

.my-work-hero-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.my-work-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    padding: clamp(2.3rem, 4.2vw, 3.75rem);
    min-height: auto;
}

.my-work-kicker {
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #f97335;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.2vw, 1.85rem);
}

.my-work-hero-panel h1 {
    max-width: 600px;
    color: #f4f5f6;
    font-size: clamp(2.3rem, 6vw, 4rem);
    line-height: 0.98;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.my-work-hero-panel h1 span {
    color: #f97335;
}

.my-work-subtitle {
    max-width: 820px;
    color: #9ca0a6;
    font-size: clamp(1.28rem, 2.25vw, 1.5rem);
    margin-bottom: 2.35rem;
}

#my-work-hero .hero-scroll-cue {
    margin-top: 0;
}

#my-work-hero .projects-hero-scroll-trigger {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 2;
}

#my-work-hero .projects-hero-scroll-trigger.is-visible {
    transform: translateX(-50%);
}

.hero-scroll-cue {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.hero-scroll-cue:focus-visible {
    outline: 2px solid rgba(255, 125, 65, 0.85);
    outline-offset: 8px;
    border-radius: 12px;
}

.hero-scroll-text {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(245, 246, 248, 0.76);
}

.hero-scroll-icon {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(245, 246, 248, 0.68);
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-wheel {
    width: 4px;
    height: 9px;
    border-radius: 999px;
    background: #ff7d41;
    animation: hero-scroll-wheel 1.7s ease-in-out infinite;
}

@keyframes hero-scroll-wheel {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.jrod-hero-scroll-trigger {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 2;
}

.jrod-hero-scroll-trigger.is-visible {
    transform: translateX(-50%);
}

.my-work-stats {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.my-work-stat {
    padding-right: 2rem;
    margin-right: 2rem;
}

.my-work-stat:not(:last-child) {
    border-right: 1px solid rgba(234, 236, 241, 0.17);
}

.my-work-stat h2 {
    color: #f5f6f8;
    font-size: clamp(2.5rem, 3.3vw, 3.9rem) !important;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.my-work-stat h2 span {
    color: #f97335;
}

.my-work-stat p {
    color: #8d9197;
    font-size: clamp(1.2rem, 1.45vw, 1.65rem);
    font-weight: 600;
}

.my-work-status {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.78rem 1.5rem;
    color: #c8cbd1;
    background: rgba(255, 255, 255, 0.04);
    font-size: clamp(1.1rem, 1.45vw, 1.85rem);
    font-weight: 600;
    line-height: 1;
}

.my-work-status span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #47d985;
    box-shadow: 0 0 0 5px rgba(71, 217, 133, 0.2);
}

@media (max-width: 900px) {
    #my-work-hero {
        padding: 4.8rem 1rem 1.4rem;
    }

    .my-work-hero-panel {
        border-radius: 0;
        min-height: auto;
    }

    .my-work-hero-panel h1 {
        font-size: clamp(2.1rem, 10.5vw, 4rem);
        line-height: 1.02;
    }

    .my-work-subtitle {
        font-size: clamp(1.05rem, 3.5vw, 1.5rem);
        margin-bottom: 1.6rem;
    }

    .my-work-stats {
        gap: 0.9rem;
        margin-bottom: 1.45rem;
    }

    .my-work-stat {
        margin-right: 0;
        padding-right: 1rem;
    }

    .my-work-stat:not(:last-child) {
        border-right: 0;
    }

    .my-work-stat h2 {
        font-size: clamp(2.15rem, 6.2vw, 2.9rem) !important;
    }

    .my-work-stat p {
        font-size: 1.03rem;
    }

    .my-work-status {
        font-size: 1rem;
        padding: 0.68rem 1.15rem;
    }
}

@media (max-width: 700px) {
    #my-work-hero {
        padding: 4.8rem 1rem 1.15rem;
    }

    .my-work-hero-panel {
        border-radius: 0;
        padding: 1.2rem 0.2rem 1rem;
    }

    .my-work-kicker {
        margin-bottom: 0.95rem;
        font-size: 0.95rem;
    }

    .my-work-hero-panel h1 {
        font-size: clamp(2rem, 11vw, 2.9rem);
        margin-bottom: 1.1rem;
    }

    .my-work-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    #my-work-hero .projects-hero-scroll-trigger,
    .jrod-hero-scroll-trigger {
        bottom: 0.85rem;
    }

    .hero-scroll-text {
        font-size: 0.66rem;
    }

    .hero-scroll-icon {
        width: 24px;
        height: 38px;
    }

    .my-work-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.1rem;
    }

    .my-work-stat {
        border: 0;
        margin: 0;
        padding: 0;
    }

    .my-work-stat h2 {
        font-size: 2rem !important;
    }

    .my-work-stat p {
        font-size: 1rem;
    }

    .my-work-status {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
    }
}

.my-work-projects {
    background: #fff;
    padding: 1.2rem 1rem 2.4rem;
}

.my-work-projects-wrapper {
    width: min(1120px, 100%);
    margin: 7rem auto;
}

.page-projects .my-work-projects-wrapper {
    margin: 0 auto;
    padding: 3.5rem 0 2.4rem;
}

.page-projects .my-work-projects-wrapper .my-work-cta {
    margin-top: 2.5rem;
    width: 100%;
}

.page-projects .my-work-projects-wrapper .testimonials {
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 0;
}

.my-work-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.my-work-projects-header .section-kicker {
    margin-bottom: 0.25rem;
}

.my-work-projects-header h2 {
    color: #161616;
    font-size: clamp(1.9rem, 2.6vw, 2.8rem) !important;
}

.my-work-project-count {
    color: #303030;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    margin-top: 0.12rem;
}

.my-work-projects .project-grid {
    gap: 1rem;
    margin-bottom: 0;
}

.my-work-projects .project-card {
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 16px;
    box-shadow: none;
}

.my-work-projects .project-thumb {
    height: 178px;
}

.my-work-thumb-card {
    position: relative;
}

.my-work-thumb-card i {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.66);
}

.my-work-thumb-wood {
    background: linear-gradient(135deg, #533523 0%, #6f4a30 100%);
}

.my-work-thumb-rain {
    background: linear-gradient(135deg, #0f4f3a 0%, #2b6f52 100%);
}

.my-work-thumb-topdogs {
    background: linear-gradient(135deg, #311b4a 0%, #4a2b6e 100%);
}

.my-work-projects .project-card h3 {
    margin-bottom: 0.25rem;
}

.my-work-projects .project-card p {
    color: #3d3d3d;
    font-size: 0.98rem;
}

.my-work-projects .project-card-body {
    padding: 0.85rem 0.95rem 0.65rem;
}

.my-work-projects .project-card-footer {
    background: rgba(255, 255, 255, 0.35);
    border-top-color: #d2d2d2;
}

.my-work-projects .project-icon-link,
.my-work-projects .project-view-link {
    background: #f8f8f8;
    border-color: #c0c0c0;
}

.my-work-projects .project-view-link {
    font-size: 0.92rem;
    padding: 0.48rem 0.85rem;
}

.my-work-card-links {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.my-work-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 7rem;
    border: 1px solid #d8d2c9;
    background: linear-gradient(135deg, #fbf8f2 0%, #f2ede5 62%, #efe6db 100%);
    border-radius: 18px;
    padding: clamp(1.4rem, 2.5vw, 2rem);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.my-work-cta .section-kicker {
    margin-bottom: 0.35rem;
}

.my-work-cta h2 {
    color: #15161b;
    font-size: clamp(1.55rem, 3vw, 2.35rem) !important;
    margin-bottom: 0.45rem;
}

.my-work-cta p {
    color: #4f5258;
    max-width: 720px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 1rem;
}

.my-work-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.my-work-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.7rem 1.15rem;
    font-size: 0.98rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.my-work-cta-btn-solid {
    background: #ff7d41;
    color: #fff;
    border-color: #ff7d41;
}

.my-work-cta-btn-solid:hover {
    background: #e6672f;
    border-color: #e6672f;
    transform: translateY(-1px);
}

.my-work-cta-btn-outline {
    background: transparent;
    color: #15161b;
    border-color: rgba(21, 22, 27, 0.2);
}

.my-work-cta-btn-outline:hover {
    color: #ff7d41;
    border-color: #ff7d41;
    transform: translateY(-1px);
}

.testimonials {
    margin-top: 7rem;
    border-radius: 18px;
    /* background: linear-gradient(180deg, #f4f4f0 0%, #ecebe6 100%);
    border: 1px solid #d9d6cf; */
    padding: clamp(1.25rem, 2vw, 1.8rem);
    /* box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05); */
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    color: #15161b;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem) !important;
    margin-top: 0.15rem;
}

.testimonials-controls {
    display: flex;
    gap: 0.55rem;
}

.testimonial-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(21, 22, 27, 0.14);
    background: rgba(255, 255, 255, 0.75);
    color: #1e1f24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.testimonial-nav:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 125, 65, 0.4);
    background: rgba(255, 125, 65, 0.12);
}

.testimonials-shell {
    overflow: hidden;
    border-radius: 14px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    background: #fff;
    border: 1px solid #ddd8d0;
    padding: clamp(1.1rem, 1.8vw, 1.5rem);
}

.testimonial-quote {
    color: #2f3137;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7d41, #ffb067);
    color: #111;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.testimonial-meta h3 {
    color: #15161b;
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.testimonial-meta p {
    color: #676b74;
    font-size: 0.92rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(21, 22, 27, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.testimonial-dot.is-active {
    width: 28px;
    background: #ff7d41;
}

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

    .hero-scroll-wheel {
        animation: none;
    }

    .testimonial-nav,
    .testimonial-dot,
    .my-work-cta-btn {
        transition: none;
    }
}

@media (max-width: 900px) {
    .testimonials {
        margin-top: 1rem;
        border-radius: 14px;
    }

    .testimonials-header {
        align-items: center;
    }

    .testimonials-header h2 {
        font-size: clamp(1.35rem, 4.3vw, 1.9rem) !important;
    }

    .testimonial-nav {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 700px) {
    .testimonials {
        padding: 1rem;
    }

    .testimonials-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonials-controls {
        align-self: flex-end;
    }

    .testimonial-quote {
        font-size: 0.98rem;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 900px) {
    .my-work-projects {
        padding: 1rem 0.9rem 2rem;
    }

    .my-work-projects-header {
        margin-bottom: 0.85rem;
    }

    .my-work-projects .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .my-work-projects .project-thumb {
        height: 160px;
    }

    .my-work-projects .project-card h3 {
        font-size: 1.75rem;
    }

    .my-work-cta {
        margin-top: 1rem;
        border-radius: 14px;
    }

    .my-work-cta h2 {
        font-size: clamp(1.4rem, 4.8vw, 1.9rem) !important;
    }
}

@media (max-width: 700px) {
    .my-work-projects {
        padding: 0.9rem 0.65rem 1.65rem;
    }

    .my-work-projects-header {
        align-items: flex-start;
    }

    .my-work-project-count {
        font-size: 0.95rem;
    }

    .my-work-projects .project-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .my-work-projects .project-thumb {
        height: 148px;
    }

    .my-work-projects .project-card h3 {
        font-size: 1.55rem;
    }

    .my-work-cta {
        padding: 1.15rem 1rem;
    }

    .my-work-cta p {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }

    .my-work-cta-actions {
        flex-direction: column;
    }

    .my-work-cta-btn {
        width: 100%;
    }
}

/* Project case study page */

.project-case-page {
    background: #fff;
}

#case-hero {
    --case-hero-parallax: 0px;
    position: relative;
    padding: 7.5rem 1.2rem 3.2rem;
    overflow: hidden;
    background:
        radial-gradient(1200px 380px at 80% -10%, rgba(255, 125, 65, 0.2), rgba(255, 125, 65, 0) 70%),
        linear-gradient(160deg, #101216 0%, #1a1d22 100%);
    background-position: center calc(50% + var(--case-hero-parallax));
    will-change: background-position;
}

.case-hero-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.case-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #f2f3f5;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.case-back-link:hover {
    background: rgba(255, 125, 65, 0.18);
    border-color: rgba(255, 125, 65, 0.72);
    transform: translateY(-1px);
}

.case-back-link:focus-visible {
    outline: 2px solid #ff9a6d;
    outline-offset: 3px;
}

#case-hero .section-kicker {
    margin-bottom: 0.35rem;
}

#case-hero h1 {
    color: #f5f5f6;
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 0.65rem;
}

.case-subtitle {
    color: #c2c6cf;
    font-size: clamp(1.02rem, 2vw, 1.32rem);
    max-width: 760px;
    margin-bottom: 1.2rem;
}

.case-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.case-hero-meta>div {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.case-hero-meta p {
    color: #cfd2d8;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.case-hero-meta h2 {
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
}

.case-content {
    padding: 2.2rem 1.2rem 4rem;
}

.case-content-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.case-overview-grid,
.case-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.case-card {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    padding: 1.15rem;
}

.case-card h2 {
    color: #13151a;
    margin-bottom: 0.4rem;
}

.case-card p {
    color: #3c4048;
    font-size: 1.02rem;
}

.case-stack-card ul {
    margin-top: 0.45rem;
    padding-left: 1.1rem;
    color: #3c4048;
    display: grid;
    gap: 0.35rem;
}

.case-process,
.case-results,
.case-gallery,
.case-demo-video,
.case-next {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    padding: clamp(1rem, 2.2vw, 1.6rem);
}

.case-demo-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0f1720;
}

.case-demo-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.case-section-header {
    margin-bottom: 0.8rem;
}

.case-process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.case-step-card {
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 0.9rem;
    background: #fcfcfc;
}

.case-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 1.7rem;
    border-radius: 999px;
    background: rgba(255, 125, 65, 0.14);
    color: #bf531f;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.case-step-card h3 {
    color: #17191f;
    margin-bottom: 0.22rem;
}

.case-step-card p {
    color: #464b54;
}

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.case-result-card {
    border: 1px solid #e1d9cf;
    border-radius: 12px;
    background: linear-gradient(145deg, #fef7ef 0%, #f9f0e6 100%);
    padding: 0.9rem;
}

.case-result-card h3 {
    color: #15161b;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    margin-bottom: 0.15rem;
}

.case-result-card p {
    color: #474b53;
}

.case-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.case-shot-card {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #fafafa;
    padding: 0.8rem;
}

.case-shot-thumb {
    min-height: 134px;
    border-radius: 10px;
    background: linear-gradient(145deg, #1a365f 0%, #215385 100%);
    display: grid;
    place-items: center;
    margin-bottom: 0.65rem;
}

.case-shot-thumb i {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.8rem;
}

.case-shot-card h3 {
    color: #1a1c22;
    margin-bottom: 0.2rem;
}

.case-shot-card p {
    color: #4e525b;
}

.case-next {
    text-align: center;
    background: linear-gradient(135deg, #fbf8f2 0%, #f2ede5 62%, #efe6db 100%);
    border-color: #d8d2c9;
}

.case-next .section-kicker {
    margin-bottom: 0.3rem;
}

.case-next h2 {
    margin-bottom: 0.25rem;
}

.case-next p {
    color: #4f5258;
    margin-bottom: 0.8rem;
}

.case-next-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

@media (max-width: 900px) {
    #case-hero {
        padding-top: 6.8rem;
    }

    .case-hero-meta,
    .case-results-grid,
    .case-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-overview-grid,
    .case-split-grid,
    .case-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    #case-hero {
        padding: 6.2rem 1rem 2.4rem;
    }

    .case-content {
        padding: 1.4rem 0.9rem 3rem;
    }

    .case-back-link {
        font-size: 0.86rem;
        padding: 0.4rem 0.75rem;
        margin-bottom: 1rem;
    }

    .case-hero-meta,
    .case-results-grid,
    .case-gallery-grid {
        grid-template-columns: 1fr;
    }

    .case-card,
    .case-process,
    .case-results,
    .case-gallery,
    .case-next {
        padding: 0.95rem;
    }

    .case-next-actions {
        display: grid;
        width: 100%;
    }

    .case-next-actions a {
        width: 100%;
    }
}

/* Blog page */

.blog-page {
    background: #fff;
}

.blog-page main,
body.page-blog.jrod-theme {
    background: #fff;
}

.blog-page-featured,
.blog-page-list,
.blog-page-cta {
    background: #fff;
}

#blog-page-hero {
    --blog-page-hero-parallax: 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.2rem 1.2rem 1.6rem;
    min-height: min(78vh, 760px);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 8, 12, 0.86) 0%, rgba(7, 7, 11, 0.7) 55%, rgba(36, 18, 8, 0.74) 100%),
        url('https://jrodcode.dev/uploads/1780350751_846e2cea_1780089131-93b105fa-blog-hero-image.png') no-repeat center calc(50% + var(--blog-page-hero-parallax)) / cover;
    will-change: background-position;
}

#blog-page-hero .section-kicker {
    margin-bottom: 0.55rem;
}

.blog-page-hero-wrapper,
.blog-page-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.blog-page-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(2.3rem, 4.2vw, 3.75rem);
    min-height: auto;
}

#blog-page-hero h1 {
    color: #f4f5f6;
    font-size: clamp(2.15rem, 5.1vw, 4rem);
    line-height: 1.02;
    margin-bottom: 0.6rem;
}

.blog-page-subtitle {
    color: #c2c6cf;
    font-size: clamp(1.02rem, 2vw, 1.25rem);
    max-width: 760px;
    margin-bottom: 1.05rem;
}

.blog-page-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

#blog-page-hero .hero-scroll-cue {
    margin-top: 0;
}

#blog-page-hero .blog-hero-scroll-trigger {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    z-index: 2;
}

#blog-page-hero .blog-hero-scroll-trigger.is-visible {
    transform: translateX(-50%);
}

.blog-page-topics span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f4f5f6;
    padding: 0.34rem 0.74rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-page-featured,
.blog-page-list,
.blog-page-cta {
    padding: 6rem 1.2rem 1.35rem;
}

.blog-page-featured-card {
    background: linear-gradient(145deg, #fef7ef 0%, #f8efe4 100%);
    border: 1px solid #dfd4c8;
    border-radius: 16px;
    padding: clamp(1rem, 2.2vw, 1.5rem);
}

.blog-page-featured-card h2 {
    color: #15161b;
    margin-bottom: 0.35rem;
}

.blog-page-featured-card .blog-card-meta {
    margin-bottom: 0.75rem;
}

.blog-page-featured-excerpt {
    color: #3f434b;
    font-size: 1.03rem;
    margin-bottom: 0.9rem;
}

.blog-page-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    text-decoration: none;
    color: #171a22;
    border: 1px solid #ccbaaa;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    padding: 0.48rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-page-read-btn:hover {
    color: #bf531f;
    border-color: rgba(255, 125, 65, 0.66);
    background: rgba(255, 125, 65, 0.12);
    transform: translateY(-1px);
}

.blog-page-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-page-list-header h2 {
    color: #13151a;
}

.blog-page-post-count {
    color: #444;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-page-grid .blog-card {
    background: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 16px;
    padding: 1.35rem 1.15rem 1.2rem;
}

.blog-page-grid .blog-card-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 0.45rem;
}

.blog-page-grid .blog-card h4 {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    margin-bottom: 0.4rem;
}

.blog-page-grid .blog-card-meta {
    font-size: 0.92rem;
    color: #666;
}

.blog-page-grid .blog-card-excerpt {
    font-size: 0.96rem;
    color: #444;
}

.blog-page-grid .blog-card-link {
    font-size: 0.98rem;
}

.blog-page-list {
    padding-bottom: 1.5rem;
}

.blog-page-empty {
    color: #555;
    font-size: 1rem;
    padding: 1rem 0 2rem;
}

.blog-page-cta {
    padding-top: 1.1rem;
    padding-bottom: 3.6rem;
}

.blog-page-cta-card {
    border: 1px solid #d8d2c9;
    border-radius: 18px;
    background: linear-gradient(135deg, #fbf8f2 0%, #f2ede5 62%, #efe6db 100%);
    padding: clamp(1rem, 2.1vw, 1.5rem);
    text-align: center;
}

.blog-page-cta-card h2 {
    margin-bottom: 0.25rem;
}

.blog-page-cta-card p {
    color: #4f5258;
    margin-bottom: 0.8rem;
}

.blog-page-cta-actions {
    display: inline-flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-page-cta-actions .contact-btn {
    min-width: 148px;
    justify-content: center;
}

@media (max-width: 900px) {
    #blog-page-hero {
        padding-top: 6.8rem;
    }

    .blog-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    #blog-page-hero {
        padding: 4.8rem 1rem 1.15rem;
        min-height: min(72vh, 620px);
        background:
            linear-gradient(180deg, rgba(6, 8, 12, 0.86) 0%, rgba(7, 7, 11, 0.7) 60%, rgba(36, 18, 8, 0.6) 100%),
            url('https://jrodcode.dev/uploads/1780350751_846e2cea_1780089131-93b105fa-blog-hero-image.png') no-repeat center calc(50% + var(--blog-page-hero-parallax)) / cover;
    }

    .blog-page-hero-panel {
        padding: 1.2rem 0.2rem 1rem;
    }

    #blog-page-hero .blog-hero-scroll-trigger,
    .jrod-hero-scroll-trigger {
        bottom: 0.85rem;
    }

    #blog-page-hero .hero-scroll-cue {
        margin-top: 0;
    }

    .blog-page-featured,
    .blog-page-list,
    .blog-page-cta {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .blog-page-list-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.2rem;
    }

    .blog-page-post-count {
        font-size: 0.95rem;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .blog-page-cta-actions {
        display: grid;
        width: 100%;
    }

    .blog-page-cta-actions a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    #blog-page-hero {
        --blog-page-hero-parallax: 0px !important;
    }
}

/* Contact page */

.contact-page {
    background: #fff;
}

.contact-page main,
body.page-contact.jrod-theme {
    background: #fff;
    padding: 0;
}

.contact-page-options,
.contact-page-direct {
    background: #fff;
}

#contact-page-hero {
    --contact-page-hero-parallax: 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.4rem 1.2rem 2rem;
    min-height: min(84vh, 860px);
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(4, 8, 16, 0.9) 0%, rgba(5, 12, 22, 0.78) 42%, rgba(8, 14, 24, 0.28) 100%),
        radial-gradient(920px 380px at 82% -8%, rgba(255, 125, 65, 0.24), rgba(255, 125, 65, 0) 72%),
        url('https://jrodcode.dev/uploads/1780350751_cd9ddeb0_1780089131-a0523773-contact-hero-image.png') no-repeat center calc(50% + var(--contact-page-hero-parallax)) / cover;
    will-change: background-position, transform;
}

#contact-page-hero .section-kicker {
    margin-bottom: 0.55rem;
}

.contact-page-hero-wrapper,
.contact-page-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding-bottom: 55px;
}

.contact-page-hero-wrapper {
    display: block;
}

.contact-page-hero-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(1.8rem, 3.8vw, 2.8rem);
}

.contact-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

#contact-page-hero h1 {
    color: #f4f5f6;
    font-size: clamp(2.7rem, 6.2vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    max-width: 760px;
}

#contact-page-hero h1 span {
    color: #ff7d41;
}

.contact-page-subtitle {
    color: #bcc3ce;
    font-size: clamp(1.1rem, 1.8vw, 1.9rem);
    max-width: 640px;
    margin-bottom: 1.25rem;
}

.contact-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-page-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ebedf1;
    padding: 0.52rem 0.86rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-page-response {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #d7deea;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.48rem 0.92rem;
    font-size: 1.02rem;
    font-weight: 600;
}

#contact-page-hero .hero-scroll-cue {
    margin-top: 0;
}

.contact-page-options,
.contact-page-direct {
    padding: 4rem 1.2rem 1.25rem;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-page-header h2 {
    color: #13151a;
}

.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-option-card {
    background: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 16px;
    padding: 1.1rem;
}

.contact-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7c41;
    color: #fff;
    margin-bottom: 0.65rem;
    font-size: 1.35rem;
}

.contact-option-card h3 {
    color: #15161b;
    margin-bottom: 0.28rem;
}

.contact-option-card p {
    color: #454952;
}

.contact-page-direct {
    padding-bottom: 3.6rem;
}

.contact-page-direct-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 1rem;
}

.contact-page-direct-info,
.contact-request-card {
    border: 1px solid #d8d2c9;
    border-radius: 18px;
    background: #fff;
    padding: clamp(1rem, 2.1vw, 1.5rem);
}

.contact-page-direct-info h2,
.contact-request-card h3 {
    margin-bottom: 0.25rem;
}

.contact-page-direct-info p,
.contact-request-card p {
    color: #4f5258;
    margin-bottom: 0.8rem;
}

.contact-direct-items {
    display: grid;
    gap: 0.65rem;
}

.contact-direct-resume {
    margin-top: 0.8rem;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    border: 1px solid #d6cdc1;
    border-radius: 14px;
    padding: 0.72rem 0.78rem;
    background: rgba(255, 255, 255, 0.65);
    color: #1b1d23;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.contact-direct-item:hover {
    border-color: rgba(255, 125, 65, 0.62);
    background: rgba(255, 125, 65, 0.12);
    transform: translateY(-1px);
}

.contact-direct-item strong,
.contact-direct-item em {
    display: block;
    font-style: normal;
    line-height: 1.2;
}

.contact-direct-item em {
    color: #3f444c;
}

.contact-direct-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7c41;
    color: #fff;
    flex-shrink: 0;
}

.contact-request-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.contact-request-form label {
    display: grid;
    gap: 0.3rem;
    color: #1f2128;
    font-weight: 600;
    font-size: 0.92rem;
}

.contact-request-form input,
.contact-request-form select,
.contact-request-form textarea {
    border: 1px solid #cbc2b7;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    color: #1a1c22;
    padding: 0.65rem 0.72rem;
    font: inherit;
}

.contact-request-form input:focus,
.contact-request-form select:focus,
.contact-request-form textarea:focus {
    outline: 2px solid rgba(255, 125, 65, 0.6);
    outline-offset: 1px;
    border-color: #ff7d41;
}

.contact-request-full {
    grid-column: 1 / -1;
}

.contact-request-form button {
    width: fit-content;
}

.contact-request-card .forms-plugin-wrap {
    max-width: none;
    margin: 0;
}

.contact-request-card .forms-plugin-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.contact-request-card .forms-plugin-title {
    grid-column: 1 / -1;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    margin: 0 0 0.15rem;
    color: #15161b;
}

.contact-request-card .forms-plugin-field {
    gap: 0.3rem;
}

.contact-request-card .forms-plugin-label {
    font-size: 0.92rem;
    color: #1f2128;
}

.contact-request-card .forms-plugin-input,
.contact-request-card .forms-plugin-select,
.contact-request-card .forms-plugin-textarea {
    border: 1px solid #cbc2b7;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    color: #1a1c22;
    padding: 0.65rem 0.72rem;
    font: inherit;
}

.contact-request-card .forms-plugin-input:focus,
.contact-request-card .forms-plugin-select:focus,
.contact-request-card .forms-plugin-textarea:focus {
    outline: 2px solid rgba(255, 125, 65, 0.6);
    outline-offset: 1px;
    border-color: #ff7d41;
}

.contact-request-card .forms-plugin-textarea {
    min-height: 140px;
}

.contact-request-card .forms-plugin-field:has(.forms-plugin-textarea),
.contact-request-card .forms-plugin-submit,
.contact-request-card .forms-alert {
    grid-column: 1 / -1;
}

.contact-request-card .forms-plugin-submit {
    background: #ff7d41;
    border: none;
    border-radius: 999px;
    padding: 0.72rem 1.35rem;
    font-size: 0.98rem;
    font-weight: 700;
    width: fit-content;
}

.contact-request-card .forms-plugin-submit:hover {
    background: #e6672f;
}

.contact-direct-resume .contact-btn-outline {
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    #contact-page-hero {
        padding-top: 6.8rem;
        min-height: auto;
    }

    .contact-page-hero-panel {
        padding: 1.5rem 0.35rem 0.8rem;
    }

    .contact-hero-copy {
        align-items: center;
        text-align: center;
        padding-right: 0;
    }

    .contact-page-subtitle {
        max-width: 760px;
    }

    .contact-page-tags {
        justify-content: center;
    }

    .contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page-direct-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    #contact-page-hero {
        padding: 4.8rem 1rem 1.2rem;
        min-height: min(72vh, 620px);
        background:
            linear-gradient(180deg, rgba(4, 8, 16, 0.9) 0%, rgba(5, 12, 22, 0.72) 56%, rgba(8, 14, 24, 0.36) 100%),
            radial-gradient(660px 260px at 72% -6%, rgba(255, 125, 65, 0.2), rgba(255, 125, 65, 0) 72%),
            url('https://jrodcode.dev/uploads/1780350751_cd9ddeb0_1780089131-a0523773-contact-hero-image.png') no-repeat 68% calc(50% + var(--contact-page-hero-parallax)) / cover;

    }

    .contact-page-hero-panel {
        padding: 0.8rem 0.2rem 0.7rem;
    }

    #contact-page-hero h1 {
        font-size: clamp(2.2rem, 10.8vw, 3.1rem);
        line-height: 1.2;
    }

    .contact-page-subtitle {
        font-size: clamp(1rem, 4.6vw, 1.35rem);
    }

    .contact-page-tags span {
        font-size: 0.95rem;
        padding: 0.45rem 0.7rem;
    }

    .contact-page-response {
        font-size: 0.95rem;
    }

    #contact-page-hero .hero-scroll-cue {
        margin-top: 1rem;
    }

    .contact-page-options,
    .contact-page-direct {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .contact-option-grid {
        grid-template-columns: 1fr;
    }

    .contact-request-form {
        grid-template-columns: 1fr;
    }

    .contact-request-card .forms-plugin-form {
        grid-template-columns: 1fr;
    }

    .contact-request-card .forms-plugin-submit {
        width: 100%;
    }

    .contact-request-form button {
        width: 100%;
    }

    .contact-direct-resume {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    #contact-page-hero {
        --contact-page-hero-parallax: 0px !important;
    }
}

/* Blog post pages */

.blog-post-page {
    background: #fff;
}

.blog-post-page main,
body.page-blog-post.jrod-theme {
    background: #fff;
}

#blog-post-hero {
    --blog-post-hero-parallax: 0px;
    position: relative;
    padding: 7.4rem 1.2rem 2.7rem;
    overflow: hidden;
    background: radial-gradient(1100px 340px at 75% -10%, rgba(255, 125, 65, 0.2), rgba(255, 125, 65, 0) 72%),
        linear-gradient(160deg, #0f1218 0%, #171c27 100%);
    background-position: center calc(50% + var(--blog-post-hero-parallax));
    will-change: background-position;
}

.blog-post-hero-wrapper,
.blog-post-content-wrapper {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.blog-post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #f2f3f5;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-post-back-link:hover {
    background: rgba(255, 125, 65, 0.18);
    border-color: rgba(255, 125, 65, 0.72);
    transform: translateY(-1px);
}

.blog-post-back-link:focus-visible {
    outline: 2px solid #ff9a6d;
    outline-offset: 3px;
}

#blog-post-hero h1 {
    color: #f4f5f6;
    font-size: clamp(2.1rem, 4.8vw, 3.6rem);
    line-height: 1.04;
    margin-bottom: 0.55rem;
}

.blog-post-subtitle {
    color: #c2c6cf;
    font-size: clamp(1rem, 1.9vw, 1.2rem);
    max-width: 780px;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f2f3f6;
    padding: 0.33rem 0.72rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.blog-post-content {
    padding: 2rem 1.2rem 3.8rem;
    background: #fff;
}

.blog-post-article {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.blog-post-article section,
.blog-post-article div:not(.blog-post-callout) {
    background: transparent !important;
}

.blog-post-article h2,
.blog-post-article h3,
.blog-post-article h4 {
    color: #14161c;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-post-article h2:first-child,
.blog-post-article h3:first-child {
    margin-top: 0;
}

.blog-post-article p {
    margin: 1rem 0;
}

.blog-post-article img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.blog-post-article blockquote {
    border-left: 4px solid #ff7d41;
    padding: 0.85rem 1rem;
    margin: 1.5rem 0;
    background: #f8f8f8;
    color: #444;
}

.blog-post-article pre {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-article code {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 0.92em;
}

.blog-post-article :not(pre)>code {
    background: #f3f3f3;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 1rem;
}

.blog-post-article,
.blog-post-sidebar {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 16px;
    padding: 1.2rem;
}

.blog-post-page .blog-post-article {
    border: 0;
    padding: 0;
}

.blog-post-article section:not(:last-child) {
    margin-bottom: 1rem;
}

.blog-post-article h2 {
    color: #14161c;
    margin-bottom: 0.3rem;
}

.blog-post-article p,
.blog-post-article li {
    color: #3e434c;
    font-size: 1.03rem;
}

.blog-post-article ul {
    margin-top: 0.35rem;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.3rem;
}

.blog-post-callout {
    border: 1px solid #ddd2c6;
    background: linear-gradient(145deg, #fef7ef 0%, #f8efe4 100%);
    border-radius: 12px;
    padding: 0.85rem;
}

.blog-post-sidebar h3 {
    margin-bottom: 0.35rem;
}

.blog-post-sidebar ul {
    padding-left: 1rem;
    margin-bottom: 0.8rem;
    color: #3e434c;
    display: grid;
    gap: 0.3rem;
}

.blog-post-sidebar a {
    color: #bf531f;
    text-decoration: none;
    font-weight: 700;
}

.blog-post-sidebar a:hover {
    color: #9d3f14;
}

@media (max-width: 900px) {
    #blog-post-hero {
        padding-top: 6.8rem;
    }

    .blog-post-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    #blog-post-hero {
        padding: 6.2rem 1rem 2.2rem;
    }

    .blog-post-content {
        padding: 1.4rem 0.9rem 3rem;
    }

    .blog-post-back-link {
        font-size: 0.86rem;
        padding: 0.4rem 0.75rem;
    }

    .blog-post-article,
    .blog-post-sidebar {
        padding: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    #blog-post-hero {
        --blog-post-hero-parallax: 0px !important;
    }
}