:root {
    --h2-black: #050505;
    --h2-ink: #111111;
    --h2-red: #9f1016;
    --h2-red-deep: #740b10;
    --h2-white: #FFFFFF;
    --h2-gray: #d8d8d8;
    --h2-line: rgba(255, 255, 255, 0.34);
    --h2-max: 1180px;
    --h2-font: "Arial Narrow", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.h2-body {
    margin: 0;
    background: var(--h2-black);
    overflow-x: hidden;
}

body.h2-body.admin-bar .h2-page {
    min-height: calc(100vh - 32px);
}

.h2-page,
.h2-page * {
    box-sizing: border-box;
}

.h2-page {
    width: 100%;
    min-height: 100vh;
    overflow-x: clip;
    color: var(--h2-white);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 86px),
        radial-gradient(circle at 78% 8%, rgba(159, 16, 22, 0.26), transparent 28rem),
        var(--h2-black);
    font-family: var(--h2-font);
    letter-spacing: 0.02em;
}

.h2-page::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    opacity: 0.16;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 1px, transparent 1px, transparent 4px),
        radial-gradient(circle, rgba(255,255,255,0.18) 0 1px, transparent 1px);
    background-size: auto, 18px 18px;
    mix-blend-mode: screen;
}

.h2-header,
.h2-main,
.h2-footer {
    position: relative;
    z-index: 1;
}

.h2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: min(var(--h2-max), calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 18px;
    border-bottom: 5px solid var(--h2-red);
    background: linear-gradient(90deg, rgba(5,5,5,0.98), rgba(5,5,5,0.78));
}

.h2-header::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 34%;
    height: 5px;
    content: "";
    background: var(--h2-white);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.h2-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.h2-logo img {
    display: block;
    width: min(245px, 48vw);
    height: auto;
}

.h2-nav,
.h2-footer-nav,
.h2-sns {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.4vw, 30px);
    flex-wrap: wrap;
}

.h2-nav-link,
.h2-footer-link,
.h2-sns-link {
    position: relative;
    color: var(--h2-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.h2-nav-link::after,
.h2-footer-link::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    content: "";
    background: var(--h2-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.h2-nav-link:hover::after,
.h2-nav-link:focus-visible::after,
.h2-footer-link:hover::after,
.h2-footer-link:focus-visible::after {
    transform: scaleX(1);
}

.h2-main {
    width: min(var(--h2-max), calc(100% - 40px));
    margin: 0 auto;
}

.h2-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
    min-height: 640px;
    border-bottom: 6px solid var(--h2-white);
}

.h2-hero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 58px) clamp(44px, 6vw, 70px) 0;
}

.h2-hero-copy::before {
    position: absolute;
    top: 48px;
    left: -20px;
    width: 9px;
    height: calc(100% - 96px);
    content: "";
    background: var(--h2-red);
    box-shadow: 0 42px 0 var(--h2-white), 0 calc(100% - 42px) 0 var(--h2-white);
}

.h2-kicker,
.h2-section-label,
.h2-service-label,
.h2-scope-title {
    margin: 0;
    color: var(--h2-white);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.h2-kicker,
.h2-section-label {
    display: inline-block;
    width: fit-content;
    padding: 11px 18px;
    background: var(--h2-red);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 0 100%);
}

.h2-title {
    position: relative;
    margin: 18px 0 0;
    color: var(--h2-white);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.h2-title::before {
    position: absolute;
    left: 0;
    top: -14px;
    width: min(260px, 55vw);
    height: 4px;
    content: "";
    background: var(--h2-red);
    transform: scaleX(0);
    transform-origin: left;
}

.h2-title-main {
    max-width: 760px;
    margin-top: 26px;
}

.h2-hero-lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--h2-white);
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 700;
    line-height: 2;
}

.h2-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.h2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-width: 210px;
    min-height: 58px;
    padding: 15px 24px;
    border: 3px solid var(--h2-white);
    color: var(--h2-white);
    background: var(--h2-red);
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.h2-button-secondary,
.h2-button-light {
    color: var(--h2-black);
    background: var(--h2-white);
    border-color: var(--h2-white);
}

.h2-button:hover,
.h2-button:focus-visible {
    color: var(--h2-red);
    background: var(--h2-white);
    border-color: var(--h2-red);
}

.h2-button-secondary:hover,
.h2-button-secondary:focus-visible,
.h2-button-light:hover,
.h2-button-light:focus-visible {
    color: var(--h2-white);
    background: var(--h2-red);
    border-color: var(--h2-white);
}

.h2-button-arrow {
    display: inline-block;
    transition: transform 180ms ease;
}

.h2-button:hover .h2-button-arrow,
.h2-button:focus-visible .h2-button-arrow {
    transform: translateX(8px);
}

.h2-hero-visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-left: 5px solid var(--h2-white);
    background:
        linear-gradient(124deg, transparent 0 24%, var(--h2-red) 24% 43%, transparent 43% 100%),
        linear-gradient(32deg, transparent 0 55%, rgba(255,255,255,0.94) 55% 62%, transparent 62%),
        var(--h2-ink);
}

.h2-hero-visual::before,
.h2-hero-visual::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.h2-hero-visual::before {
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,0.10) 38px 39px);
}

.h2-hero-visual::after {
    right: -18%;
    bottom: -12%;
    width: 68%;
    height: 50%;
    background: var(--h2-red-deep);
    clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
}

.h2-moon {
    position: absolute;
    top: 42px;
    right: 32px;
    width: 180px;
    height: 180px;
    border: 4px solid var(--h2-white);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255,255,255,0.46) 0 12px, transparent 13px),
        radial-gradient(circle at 68% 62%, rgba(255,255,255,0.35) 0 18px, transparent 19px),
        #5e5e5e;
    opacity: 0.72;
}

.h2-ray {
    position: absolute;
    width: 86%;
    height: 20px;
    background: var(--h2-white);
    transform: rotate(-46deg);
    transform-origin: center;
}

.h2-ray-one { top: 140px; left: -95px; }
.h2-ray-two { right: -120px; bottom: 132px; }

.h2-rocket {
    position: absolute;
    left: 42%;
    bottom: 85px;
    width: 76px;
    height: 340px;
    border: 4px solid var(--h2-black);
    border-radius: 50% 50% 18% 18% / 12% 12% 8% 8%;
    background: var(--h2-white);
    box-shadow: inset 0 -118px 0 var(--h2-red), 0 0 0 5px var(--h2-white);
}

.h2-rocket::before {
    position: absolute;
    top: -78px;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border-right: 38px solid transparent;
    border-bottom: 84px solid var(--h2-white);
    border-left: 38px solid transparent;
    transform: translateX(-50%);
}

.h2-rocket-window {
    position: absolute;
    top: 82px;
    left: 50%;
    width: 24px;
    height: 24px;
    border: 4px solid var(--h2-black);
    border-radius: 50%;
    background: var(--h2-red);
    transform: translateX(-50%);
}

.h2-rocket-fin {
    position: absolute;
    bottom: -6px;
    width: 35px;
    height: 90px;
    background: var(--h2-white);
    border: 4px solid var(--h2-black);
}

.h2-rocket-fin-left { left: -32px; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.h2-rocket-fin-right { right: -32px; clip-path: polygon(0 0, 100% 100%, 0 100%); }

.h2-wp-mark,
.h2-cart-mark,
.h2-camera-mark,
.h2-film-mark,
.h2-clapper-mark,
.h2-monitor-mark {
    position: absolute;
    z-index: 2;
    border: 4px solid var(--h2-white);
    background: var(--h2-black);
    box-shadow: 10px 10px 0 rgba(159, 16, 22, 0.86);
}

.h2-wp-mark {
    top: 205px;
    right: 58px;
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 72px;
    font-weight: 700;
}

.h2-cart-mark {
    top: 80px;
    left: 34px;
    width: 112px;
    height: 92px;
}

.h2-cart-mark::before {
    position: absolute;
    left: 22px;
    top: 26px;
    width: 56px;
    height: 34px;
    content: "";
    border: 5px solid var(--h2-white);
    border-top: 0;
}

.h2-cart-mark::after {
    position: absolute;
    left: 29px;
    bottom: 14px;
    width: 14px;
    height: 14px;
    content: "";
    border-radius: 50%;
    background: var(--h2-white);
    box-shadow: 42px 0 0 var(--h2-white);
}

.h2-camera-mark {
    right: 30px;
    bottom: 70px;
    width: 245px;
    height: 172px;
}

.h2-camera-mark::before {
    position: absolute;
    left: 72px;
    top: 39px;
    width: 88px;
    height: 88px;
    content: "";
    border: 12px solid var(--h2-white);
    border-radius: 50%;
    background: var(--h2-black);
}

.h2-camera-mark::after {
    position: absolute;
    left: 26px;
    top: -28px;
    width: 78px;
    height: 30px;
    content: "";
    background: var(--h2-white);
}

.h2-film-mark {
    left: 70px;
    bottom: 55px;
    width: 138px;
    height: 88px;
}

.h2-film-mark::before,
.h2-film-mark::after {
    position: absolute;
    top: 8px;
    bottom: 8px;
    width: 15px;
    content: "";
    background: repeating-linear-gradient(0deg, var(--h2-white) 0 8px, transparent 8px 15px);
}

.h2-film-mark::before { left: 8px; }
.h2-film-mark::after { right: 8px; }

.h2-clapper-mark {
    top: 255px;
    left: 120px;
    width: 122px;
    height: 92px;
    transform: rotate(-8deg);
}

.h2-clapper-mark::before {
    position: absolute;
    left: -4px;
    top: -35px;
    width: calc(100% + 8px);
    height: 34px;
    content: "";
    background: repeating-linear-gradient(135deg, var(--h2-white) 0 18px, var(--h2-red) 18px 31px);
    border: 4px solid var(--h2-white);
}

.h2-monitor-mark {
    left: 255px;
    bottom: 42px;
    width: 142px;
    height: 102px;
}

.h2-monitor-mark::after {
    position: absolute;
    left: 50%;
    bottom: -30px;
    width: 70px;
    height: 24px;
    content: "";
    border-bottom: 6px solid var(--h2-white);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    transform: translateX(-50%);
}

.h2-section {
    padding: clamp(54px, 7vw, 88px) 0;
}

.h2-section-head {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}

.h2-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 3px solid var(--h2-white);
    border-left: 3px solid var(--h2-white);
}

.h2-service-card {
    position: relative;
    min-height: 350px;
    padding: 34px 24px 28px;
    color: var(--h2-black);
    background: var(--h2-white);
    border-right: 3px solid var(--h2-black);
    border-bottom: 3px solid var(--h2-black);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.h2-service-card:hover,
.h2-service-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 var(--h2-red);
}

.h2-card-line {
    position: absolute;
    top: 28px;
    left: 18px;
    width: 8px;
    height: 96px;
    background: var(--h2-red);
    transition: width 180ms ease;
}

.h2-service-card:hover .h2-card-line,
.h2-service-card:focus-within .h2-card-line {
    width: 14px;
}

.h2-service-icon {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    border: 5px solid var(--h2-black);
    border-radius: 50%;
    background: var(--h2-red);
}

.h2-service-icon-cart::before {
    position: absolute;
    left: 24px;
    top: 26px;
    width: 42px;
    height: 29px;
    content: "";
    border: 5px solid var(--h2-white);
    border-top: 0;
}

.h2-service-icon-cart::after {
    position: absolute;
    left: 28px;
    bottom: 20px;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 50%;
    background: var(--h2-white);
    box-shadow: 34px 0 0 var(--h2-white);
}

.h2-service-icon-wp::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    content: "W";
    color: var(--h2-white);
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 700;
}

.h2-service-icon-camera::before {
    position: absolute;
    left: 19px;
    top: 30px;
    width: 48px;
    height: 34px;
    content: "";
    border: 5px solid var(--h2-white);
}

.h2-service-icon-camera::after {
    position: absolute;
    left: 36px;
    top: 39px;
    width: 18px;
    height: 18px;
    content: "";
    border: 5px solid var(--h2-white);
    border-radius: 50%;
    background: var(--h2-black);
}

.h2-service-icon-film::before {
    position: absolute;
    left: 20px;
    top: 25px;
    width: 50px;
    height: 42px;
    content: "";
    border: 5px solid var(--h2-white);
    background: repeating-linear-gradient(90deg, transparent 0 12px, var(--h2-white) 12px 16px);
}

.h2-service-label {
    color: var(--h2-red);
    font-size: 11px;
    text-align: center;
}

.h2-service-title {
    margin: 14px 0 12px;
    color: var(--h2-black);
    font-size: 24px;
    font-weight: 950;
    line-height: 1.25;
    text-align: center;
}

.h2-service-text {
    margin: 0;
    color: var(--h2-black);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.85;
}

.h2-scope {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin: 0 0 clamp(48px, 7vw, 78px);
    padding: 24px;
    overflow: hidden;
    border: 3px solid var(--h2-white);
    background: var(--h2-red);
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 100%, 0 100%);
}

.h2-scope-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.h2-scope-item {
    padding: 16px 12px;
    color: var(--h2-white);
    background: var(--h2-black);
    border-left: 6px solid var(--h2-white);
    font-size: 15px;
    font-weight: 900;
    text-align: center;
}

.h2-works-box,
.h2-profile-box {
    border: 3px solid var(--h2-white);
    background: var(--h2-white);
    color: var(--h2-black);
}

.h2-works-box {
    max-width: 860px;
    padding: clamp(28px, 5vw, 44px);
    border-left: 14px solid var(--h2-red);
}

.h2-works-text,
.h2-profile-text,
.h2-cta-text {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.9;
}

.h2-profile-box {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
    background:
        linear-gradient(135deg, transparent 0 16%, rgba(159,16,22,0.13) 16% 24%, transparent 24%),
        var(--h2-white);
}

.h2-profile-mark {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    color: var(--h2-white);
    background: var(--h2-black);
    border: 12px solid var(--h2-red);
    font-size: 58px;
    font-weight: 950;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.h2-profile-name {
    margin: 0 0 16px;
    color: var(--h2-black);
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 950;
    line-height: 1.35;
}

.h2-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    margin: 0 0 46px;
    padding: clamp(34px, 5vw, 54px);
    border: 5px solid var(--h2-white);
    background:
        linear-gradient(135deg, var(--h2-black) 0 14%, var(--h2-red) 14% 100%);
}

.h2-cta-title {
    margin: 18px 0 14px;
    color: var(--h2-white);
    font-size: clamp(32px, 4.8vw, 58px);
    font-weight: 950;
    line-height: 1.2;
}

.h2-footer {
    background: var(--h2-black);
    border-top: 5px solid var(--h2-red);
}

.h2-footer-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px 34px;
    align-items: center;
    width: min(var(--h2-max), calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0;
}

.h2-sns-link {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 2px solid var(--h2-white);
    font-weight: 950;
    transition: background-color 180ms ease, color 180ms ease;
}

.h2-sns-link:hover,
.h2-sns-link:focus-visible {
    color: var(--h2-white);
    background: var(--h2-red);
}

.h2-copy {
    grid-column: 2 / 4;
    margin: 0;
    color: var(--h2-gray);
    font-size: 13px;
    font-weight: 700;
}

[data-h2-reveal="panel"],
[data-h2-reveal="card"],
[data-h2-reveal="mask"],
[data-h2-reveal="title"] {
    opacity: 0;
}

[data-h2-reveal="panel"] {
    transform: translateY(22px) skewX(-2deg);
    clip-path: inset(18% 0 18% 0);
}

[data-h2-reveal="card"] {
    transform: translateX(-34px);
    clip-path: inset(0 100% 0 0);
}

[data-h2-reveal="mask"] {
    transform: translateX(-26px);
    clip-path: inset(0 100% 0 0);
}

[data-h2-reveal="title"] {
    transform: translateY(10px);
}

[data-h2-reveal].h2-is-visible {
    opacity: 1;
    transform: none;
    clip-path: inset(0 0 0 0);
    transition: opacity 220ms ease, transform 260ms ease, clip-path 320ms steps(3, end);
}

[data-h2-reveal="card"].h2-is-visible {
    transition-delay: calc(var(--h2-order, 0) * 90ms);
}

.h2-title.h2-is-visible::before {
    transform: scaleX(1);
    transition: transform 260ms ease 80ms;
}

.h2-title.h2-is-visible {
    transition-delay: 180ms;
}

@media (max-width: 1024px) {
    .h2-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .h2-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .h2-hero-copy {
        padding-right: 0;
        padding-left: 18px;
    }

    .h2-hero-visual {
        min-height: 480px;
        border-left: 0;
        border-top: 5px solid var(--h2-white);
    }

    .h2-service-grid,
    .h2-scope-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .h2-footer-inner {
        grid-template-columns: 1fr;
    }

    .h2-copy {
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    body.h2-body.admin-bar .h2-page {
        min-height: calc(100vh - 46px);
    }

    .h2-header,
    .h2-main,
    .h2-footer-inner {
        width: min(100% - 24px, var(--h2-max));
    }

    .h2-header {
        gap: 20px;
        padding-top: 18px;
    }

    .h2-nav,
    .h2-footer-nav,
    .h2-sns {
        gap: 12px 16px;
    }

    .h2-nav-link,
    .h2-footer-link {
        font-size: 13px;
    }

    .h2-hero-copy {
        padding: 44px 0 42px 16px;
    }

    .h2-hero-copy::before {
        left: 0;
        width: 6px;
    }

    .h2-buttons,
    .h2-button {
        width: 100%;
    }

    .h2-button {
        min-width: 0;
    }

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

    .h2-moon { width: 126px; height: 126px; }
    .h2-rocket { left: 42%; bottom: 58px; width: 56px; height: 244px; }
    .h2-wp-mark { width: 78px; height: 78px; font-size: 48px; right: 22px; top: 160px; }
    .h2-cart-mark { left: 16px; top: 54px; transform: scale(0.78); transform-origin: left top; }
    .h2-camera-mark { right: 16px; bottom: 46px; transform: scale(0.62); transform-origin: right bottom; }
    .h2-film-mark { left: 18px; bottom: 42px; transform: scale(0.72); transform-origin: left bottom; }
    .h2-clapper-mark,
    .h2-monitor-mark { display: none; }

    .h2-section-head,
    .h2-scope,
    .h2-profile-box,
    .h2-cta {
        grid-template-columns: 1fr;
    }

    .h2-service-grid,
    .h2-scope-list {
        grid-template-columns: 1fr;
    }

    .h2-service-card {
        min-height: auto;
    }

    .h2-profile-mark {
        max-width: 180px;
    }
}

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

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

    [data-h2-reveal] {
        opacity: 1;
        transform: none;
        clip-path: none;
    }

    .h2-title::before {
        transform: scaleX(1);
    }
}

.h2-content-main {
    padding: clamp(48px, 8vw, 92px) 0;
}

.h2-content-card,
.h2-archive-header,
.h2-post-card {
    border: 3px solid var(--h2-white);
    background: var(--h2-white);
    color: var(--h2-black);
}

.h2-content-card,
.h2-archive-header {
    padding: clamp(28px, 5vw, 56px);
    border-left: 14px solid var(--h2-red);
}

.h2-content-header {
    margin-bottom: 32px;
}

.h2-content-title {
    color: var(--h2-black);
    margin-bottom: 18px;
}

.h2-content-title::before {
    background: var(--h2-red);
}

.h2-featured-image {
    margin: 0 0 32px;
    border: 3px solid var(--h2-black);
}

.h2-featured-image img,
.h2-post-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.h2-entry-content {
    color: var(--h2-black);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.95;
}

.h2-entry-content > *:first-child {
    margin-top: 0;
}

.h2-entry-content a,
.h2-post-meta a,
.h2-post-nav a {
    color: var(--h2-red);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.h2-entry-content img {
    max-width: 100%;
    height: auto;
}

.h2-entry-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 8px solid var(--h2-red);
    background: rgba(5, 5, 5, 0.06);
}

.h2-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.h2-post-card {
    position: relative;
    min-height: 260px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.h2-post-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 90px;
    content: "";
    background: var(--h2-red);
}

.h2-post-card:hover,
.h2-post-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 var(--h2-red);
}

.h2-post-card-link {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 28px 24px 24px;
    color: var(--h2-black);
    text-decoration: none;
}

.h2-post-thumb {
    order: -2;
    margin: -28px -24px 22px;
    border-bottom: 3px solid var(--h2-black);
    background: var(--h2-black);
}

.h2-post-date,
.h2-post-meta {
    color: var(--h2-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.h2-post-title {
    margin: 14px 0 12px;
    color: var(--h2-black);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 950;
    line-height: 1.35;
}

.h2-post-excerpt {
    margin: 0 0 22px;
    color: var(--h2-black);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.85;
}

.h2-text-link {
    margin-top: auto;
    color: var(--h2-red);
    font-weight: 950;
}

.h2-pagination {
    margin-top: 34px;
    color: var(--h2-white);
}

.h2-pagination .nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.h2-pagination a,
.h2-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 2px solid var(--h2-white);
    color: var(--h2-white);
    background: var(--h2-black);
    font-weight: 900;
    text-decoration: none;
}

.h2-pagination .current,
.h2-pagination a:hover,
.h2-pagination a:focus-visible {
    background: var(--h2-red);
}

.h2-post-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.h2-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 3px solid var(--h2-black);
}

.h2-archive-description {
    margin-top: 24px;
    color: var(--h2-black);
    font-weight: 700;
    line-height: 1.8;
}

.h2-nav ul,
.h2-footer-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.4vw, 30px);
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.h2-nav a,
.h2-footer-nav a {
    position: relative;
    color: var(--h2-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
}

.h2-nav a::after,
.h2-footer-nav a::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    content: "";
    background: var(--h2-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

@media (max-width: 1024px) {
    .h2-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .h2-post-grid,
    .h2-post-nav {
        grid-template-columns: 1fr;
    }

    .h2-content-card,
    .h2-archive-header {
        padding: 26px 18px;
        border-left-width: 8px;
    }
}

.h2-nav,
.h2-footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.h2-nav li,
.h2-footer-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}
