:root {
    --lep-ink: #171611;
    --lep-charcoal: #222019;
    --lep-paper: #f1ebdd;
    --lep-paper-deep: #e4dac6;
    --lep-white: #fffdf7;
    --lep-accent: #d96c28;
    --lep-accent-dark: #9e4318;
    --lep-line: rgba(23, 22, 17, 0.22);
    --lep-line-light: rgba(255, 253, 247, 0.22);
    --lep-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lep-serif: Georgia, "Times New Roman", serif;
    --lep-gutter: clamp(20px, 4vw, 72px);
    --lep-max: 1320px;
}

html {
    scroll-behavior: smooth;
}

body.lep-standalone,
.lepbarcoding-active {
    margin: 0;
    color: var(--lep-ink);
    background: var(--lep-paper);
    font-family: var(--lep-sans);
    font-size: 17px;
    line-height: 1.65;
}

.lep-standalone *,
.lep-publication *,
.lep-site-header *,
.lep-site-footer * {
    box-sizing: border-box;
}

.lep-standalone img,
.lep-publication img {
    display: block;
    max-width: 100%;
    height: auto;
}

.lep-standalone a,
.lep-publication a,
.lep-site-header a,
.lep-site-footer a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.lep-standalone a:focus-visible,
.lep-publication a:focus-visible,
.lep-site-header a:focus-visible,
.lep-site-footer a:focus-visible {
    outline: 3px solid var(--lep-accent);
    outline-offset: 4px;
}

.lep-skip {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--lep-white);
    background: var(--lep-ink);
    transform: translateY(-180%);
}

.lep-skip:focus {
    transform: translateY(0);
}

.lepbarcoding-active .screen-reader-text:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.lepbarcoding-active #page,
.lepbarcoding-active #content,
.lepbarcoding-active #primary,
.lepbarcoding-active #main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.lepbarcoding-active .site-content {
    display: block;
}

.lepbarcoding-active .content-area {
    float: none;
}

.lepbarcoding-active .wp-site-blocks,
.lepbarcoding-active .wp-site-blocks > main,
.lepbarcoding-active main#wp--skip-link--target,
.lepbarcoding-active .lep-block-theme-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.lepbarcoding-active .wp-site-blocks {
    overflow: clip;
}

.lepbarcoding-active .wp-site-blocks > * {
    margin-block-start: 0;
}

.lepbarcoding-active .site-header {
    border-bottom: 1px solid var(--lep-line);
    background: var(--lep-paper);
}

.lepbarcoding-active .inside-header {
    box-sizing: border-box;
    min-height: 76px;
    max-width: var(--lep-max);
    padding: 16px var(--lep-gutter);
}

.lepbarcoding-active .site-branding {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.lepbarcoding-active .main-title,
.lepbarcoding-active .site-description {
    margin: 0;
    color: var(--lep-ink);
}

.lepbarcoding-active .main-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lepbarcoding-active .main-title a {
    color: var(--lep-ink);
    text-decoration: none;
}

.lepbarcoding-active .site-description {
    font-family: var(--lep-serif);
    font-size: 14px;
    font-style: italic;
}

.lep-publication {
    width: 100%;
    overflow: clip;
    color: var(--lep-ink);
    background: var(--lep-paper);
    font-family: var(--lep-sans);
}

.lep-publication h1,
.lep-publication h2,
.lep-publication h3,
.lep-site-footer h2,
.lep-site-footer h3 {
    margin-top: 0;
    color: inherit;
    font-family: var(--lep-serif);
    font-weight: 400;
    line-height: 1.02;
    text-wrap: balance;
}

.lep-publication p {
    text-wrap: pretty;
}

.lep-kicker,
.lep-eyebrow,
.lep-post-label {
    margin: 0;
    font-family: var(--lep-sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.lep-eyebrow,
.lep-post-label {
    color: var(--lep-accent);
}

.lep-button,
.lep-header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid var(--lep-accent);
    color: var(--lep-white) !important;
    background: var(--lep-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lep-button:hover,
.lep-header-action:hover {
    color: var(--lep-ink) !important;
    background: var(--lep-paper);
    transform: translateY(-2px);
}

.lep-button-light {
    color: var(--lep-ink) !important;
    background: var(--lep-paper);
}

.lep-button-light:hover {
    color: var(--lep-white) !important;
    background: transparent;
}

.lep-text-link,
.lep-quiet-link {
    font-size: 14px;
    font-weight: 750;
}

.lep-text-link span,
.lep-quiet-link span {
    display: inline-block;
    transition: transform 180ms ease;
}

.lep-text-link:hover span,
.lep-quiet-link:hover span {
    transform: translateX(4px);
}

.lep-site-header {
    box-sizing: border-box;
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 76px;
    padding: 14px var(--lep-gutter);
    border-bottom: 1px solid var(--lep-line);
    background: var(--lep-paper);
}

.lep-site-mark,
.lep-footer-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.lep-site-mark i {
    width: 32px;
    height: 12px;
    background: repeating-linear-gradient(90deg, var(--lep-ink) 0 2px, transparent 2px 5px);
}

.lep-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 44px);
}

.lep-nav a {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.lep-nav a:hover {
    color: var(--lep-accent-dark);
}

.lep-hero {
    --lep-hero-shift: 0px;
    position: relative;
    left: 50%;
    width: 100vw;
    min-height: calc(100svh - 76px);
    min-height: calc(100dvh - 76px);
    margin-left: -50vw;
    overflow: hidden;
    color: var(--lep-white);
    background: #0c0c0b;
}

.lep-hero-image,
.lep-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lep-hero-image {
    object-fit: cover;
    object-position: 54% center;
    transform: scale(1.035) translate3d(0, var(--lep-hero-shift), 0);
    transition: transform 120ms linear;
}

.lep-hero-shade {
    background:
        linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.9) 31%, rgba(7, 7, 6, 0.25) 64%, rgba(7, 7, 6, 0.2) 100%),
        linear-gradient(0deg, rgba(7, 7, 6, 0.72) 0%, transparent 34%);
}

.lep-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - 76px);
    min-height: calc(100dvh - 76px);
    width: min(690px, 88vw);
    margin: 0 max(var(--lep-gutter), calc((100vw - var(--lep-max)) / 2 + var(--lep-gutter)));
    padding: clamp(62px, 8vh, 110px) 0 88px;
    animation: lep-hero-enter 720ms cubic-bezier(.2,.75,.25,1) both;
}

.lep-hero h1 {
    margin: 22px 0 26px;
}

.lep-hero h1 strong,
.lep-hero h1 span {
    display: block;
}

.lep-hero h1 strong {
    max-width: 10ch;
    font-family: var(--lep-sans);
    font-size: clamp(62px, 10vw, 148px);
    font-weight: 850;
    letter-spacing: -0.075em;
    line-height: 0.78;
}

.lep-hero h1 span {
    max-width: 17ch;
    margin-top: 28px;
    font-size: clamp(31px, 4vw, 62px);
    line-height: 0.98;
}

.lep-lede {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 253, 247, 0.82);
    font-family: var(--lep-serif);
    font-size: clamp(18px, 1.8vw, 26px);
    line-height: 1.42;
}

.lep-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.lep-hero-rail {
    position: absolute;
    z-index: 3;
    right: var(--lep-gutter);
    bottom: 26px;
    left: var(--lep-gutter);
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 253, 247, 0.7);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.lep-hero-rail i {
    width: 40px;
    height: 8px;
    background: repeating-linear-gradient(90deg, rgba(255, 253, 247, 0.72) 0 1px, transparent 1px 4px);
}

@keyframes lep-hero-enter {
    from { opacity: 0.7; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lep-rise {
    from { opacity: 0.76; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.lep-reveal {
    opacity: 1;
    visibility: visible;
}

.lep-js .lep-reveal.is-visible {
    animation: lep-rise 520ms ease-out both;
}

.lep-intro,
.lep-section-head {
    display: grid;
    grid-template-columns: minmax(160px, 0.8fr) minmax(0, 2.4fr);
    gap: clamp(24px, 7vw, 120px);
}

.lep-intro {
    max-width: var(--lep-max);
    margin: 0 auto;
    padding: clamp(92px, 12vw, 180px) var(--lep-gutter);
}

.lep-intro h2,
.lep-section-head h2 {
    max-width: 16ch;
    margin-bottom: 24px;
    font-size: clamp(42px, 6vw, 86px);
}

.lep-intro div > p,
.lep-section-head div > p {
    max-width: 720px;
    margin: 0;
    color: rgba(23, 22, 17, 0.74);
    font-size: clamp(17px, 1.5vw, 22px);
}

.lep-pillars {
    max-width: var(--lep-max);
    margin: 0 auto;
    padding: 0 var(--lep-gutter) clamp(100px, 13vw, 190px);
}

.lep-pillar {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: clamp(24px, 5vw, 80px);
    padding: 34px 0;
    border-top: 1px solid var(--lep-line);
    text-decoration: none;
}

.lep-pillar:last-child {
    border-bottom: 1px solid var(--lep-line);
}

.lep-pillar-number {
    color: var(--lep-accent-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.lep-pillar div {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr) auto;
    align-items: baseline;
    gap: clamp(24px, 5vw, 76px);
}

.lep-pillar h3 {
    margin: 0;
    font-size: clamp(29px, 3.1vw, 48px);
}

.lep-pillar p {
    margin: 0;
    color: rgba(23, 22, 17, 0.68);
}

.lep-pillar b {
    font-size: 13px;
    white-space: nowrap;
}

.lep-pillar:hover h3,
.lep-collection:hover h3,
.lep-related a:hover span {
    color: var(--lep-accent-dark);
}

.lep-collections {
    padding: clamp(90px, 11vw, 160px) max(var(--lep-gutter), calc((100vw - var(--lep-max)) / 2 + var(--lep-gutter)));
    color: var(--lep-white);
    background: var(--lep-charcoal);
}

.lep-collections .lep-section-head div > p {
    color: rgba(255, 253, 247, 0.65);
}

.lep-collection-list {
    margin-top: 80px;
}

.lep-collection {
    display: grid;
    grid-template-columns: 80px minmax(220px, 0.8fr) minmax(240px, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 4vw, 62px);
    padding: 29px 0;
    border-top: 1px solid var(--lep-line-light);
    text-decoration: none;
}

.lep-collection:last-child {
    border-bottom: 1px solid var(--lep-line-light);
}

.lep-collection > span,
.lep-collection > b {
    color: var(--lep-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.lep-collection h3 {
    margin: 0;
    font-size: clamp(30px, 3.5vw, 52px);
}

.lep-collection p {
    margin: 0;
    color: rgba(255, 253, 247, 0.62);
}

.lep-collection > b {
    font-size: 20px;
}

.lep-method {
    display: grid;
    grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.4fr);
    gap: clamp(60px, 10vw, 180px);
    max-width: var(--lep-max);
    margin: 0 auto;
    padding: clamp(100px, 13vw, 190px) var(--lep-gutter);
}

.lep-method-sticky {
    align-self: start;
    position: sticky;
    top: 32px;
}

.lep-method-sticky h2 {
    max-width: 8ch;
    margin: 22px 0;
    font-size: clamp(48px, 6vw, 90px);
}

.lep-method-sticky > p:last-child {
    max-width: 430px;
    color: rgba(23, 22, 17, 0.7);
}

.lep-method-list,
.lep-route-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lep-method-list li,
.lep-route-steps li {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-top: 1px solid var(--lep-line);
}

.lep-method-list li:last-child,
.lep-route-steps li:last-child {
    border-bottom: 1px solid var(--lep-line);
}

.lep-method-list li > span,
.lep-route-steps li > span {
    color: var(--lep-accent-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.16em;
}

.lep-method-list h3,
.lep-route-steps h3 {
    margin-bottom: 10px;
    font-size: clamp(28px, 3vw, 44px);
}

.lep-method-list p,
.lep-route-steps p {
    margin: 0;
    color: rgba(23, 22, 17, 0.7);
}

.lep-posts {
    padding: clamp(90px, 11vw, 160px) max(var(--lep-gutter), calc((100vw - var(--lep-max)) / 2 + var(--lep-gutter)));
    background: var(--lep-white);
}

.lep-post-list {
    display: block;
    visibility: visible;
    opacity: 1;
    margin-top: 76px;
}

.lep-post {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.4fr);
    gap: clamp(34px, 7vw, 110px);
    padding: 44px 0;
    border-top: 1px solid var(--lep-line);
}

.lep-post:last-child {
    border-bottom: 1px solid var(--lep-line);
}

.lep-post-no-media {
    grid-template-columns: minmax(0, 1fr);
    padding-left: min(30vw, 340px);
}

.lep-post-media {
    align-self: start;
    overflow: hidden;
    background: var(--lep-paper-deep);
}

.lep-post-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 400ms ease;
}

.lep-post-media:hover .lep-post-thumbnail {
    transform: scale(1.025);
}

.lep-post h3 {
    max-width: 18ch;
    margin: 16px 0 22px;
    font-size: clamp(36px, 4.8vw, 70px);
}

.lep-post h3 a {
    text-decoration: none;
}

.lep-post-preview {
    max-width: 760px;
    color: rgba(23, 22, 17, 0.78);
}

.lep-post-preview > *:first-child {
    margin-top: 0;
}

.lep-post-preview a {
    color: var(--lep-accent-dark);
}

.lep-final,
.lep-route-final {
    padding: clamp(100px, 14vw, 190px) var(--lep-gutter);
    text-align: center;
    color: var(--lep-white);
    background: var(--lep-accent-dark);
}

.lep-final h2 {
    max-width: 15ch;
    margin: 22px auto;
    font-size: clamp(50px, 7vw, 102px);
}

.lep-final > p:not(.lep-kicker) {
    max-width: 640px;
    margin: 0 auto 34px;
    color: rgba(255, 253, 247, 0.74);
}

.lep-route-hero {
    position: relative;
    min-height: clamp(520px, 68vh, 780px);
    overflow: hidden;
    color: var(--lep-white);
    background: var(--lep-charcoal);
}

.lep-route-barcode {
    position: absolute;
    top: -12%;
    right: -4%;
    width: min(46vw, 650px);
    height: 124%;
    opacity: 0.15;
    background: repeating-linear-gradient(90deg, transparent 0 7px, var(--lep-white) 7px 9px, transparent 9px 17px, var(--lep-white) 17px 24px, transparent 24px 29px);
    transform: rotate(8deg);
}

.lep-route-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(520px, 68vh, 780px);
    max-width: var(--lep-max);
    margin: 0 auto;
    padding: 90px var(--lep-gutter);
}

.lep-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: auto;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.06em;
}

.lep-breadcrumbs a {
    color: var(--lep-white);
}

.lep-route-hero h1 {
    max-width: 15ch;
    margin: 26px 0;
    font-size: clamp(54px, 8vw, 118px);
}

.lep-route-intro {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 253, 247, 0.72);
    font-family: var(--lep-serif);
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.42;
}

.lep-article-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.65fr);
    gap: clamp(54px, 10vw, 170px);
    max-width: var(--lep-max);
    margin: 0 auto;
    padding: clamp(90px, 12vw, 170px) var(--lep-gutter);
}

.lep-article-aside {
    align-self: start;
    position: sticky;
    top: 28px;
}

.lep-article-aside dl {
    margin: 26px 0 0;
}

.lep-article-aside dl > div {
    padding: 18px 0;
    border-top: 1px solid var(--lep-line);
}

.lep-article-aside dt {
    margin-bottom: 5px;
    color: var(--lep-accent-dark);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lep-article-aside dd {
    margin: 0;
    font-family: var(--lep-serif);
    font-size: 20px;
    line-height: 1.3;
}

.lep-aside-note {
    padding-top: 22px;
    border-top: 1px solid var(--lep-line);
    color: rgba(23, 22, 17, 0.62);
    font-size: 13px;
}

.lep-article-copy > section {
    margin-bottom: clamp(78px, 10vw, 132px);
}

.lep-article-copy h2 {
    max-width: 14ch;
    margin: 20px 0 26px;
    font-size: clamp(45px, 6vw, 82px);
}

.lep-article-copy > section > p:not(.lep-kicker) {
    max-width: 780px;
    color: rgba(23, 22, 17, 0.74);
    font-size: clamp(17px, 1.45vw, 21px);
}

.lep-taxonomy dl {
    margin: 46px 0 0;
}

.lep-taxonomy dl > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: baseline;
    gap: 26px;
    padding: 20px 0;
    border-top: 1px solid var(--lep-line);
}

.lep-taxonomy dl > div:last-child {
    border-bottom: 1px solid var(--lep-line);
}

.lep-taxonomy dt {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lep-taxonomy dd {
    margin: 0;
    font-family: var(--lep-serif);
    font-size: clamp(28px, 3vw, 44px);
}

.lep-principles {
    margin-top: 52px;
}

.lep-principles > div {
    display: grid;
    grid-template-columns: 62px 0.8fr 1.2fr;
    align-items: baseline;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--lep-line);
}

.lep-principles > div:last-child {
    border-bottom: 1px solid var(--lep-line);
}

.lep-principles span {
    color: var(--lep-accent-dark);
    font-size: 11px;
    font-weight: 850;
}

.lep-principles h3 {
    margin: 0;
    font-size: 28px;
}

.lep-principles p {
    margin: 0;
    color: rgba(23, 22, 17, 0.68);
}

.lep-route-note {
    padding: clamp(40px, 5vw, 72px);
    color: var(--lep-white);
    background: var(--lep-accent-dark);
}

.lep-route-note h2,
.lep-route-note p:not(.lep-kicker) {
    color: var(--lep-white) !important;
}

.lep-related {
    padding: clamp(90px, 11vw, 150px) max(var(--lep-gutter), calc((100vw - var(--lep-max)) / 2 + var(--lep-gutter)));
    color: var(--lep-white);
    background: var(--lep-charcoal);
}

.lep-related h2 {
    margin: 20px 0 48px;
    font-size: clamp(44px, 6vw, 82px);
}

.lep-related a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0;
    border-top: 1px solid var(--lep-line-light);
    font-family: var(--lep-serif);
    font-size: clamp(24px, 3vw, 42px);
    text-decoration: none;
}

.lep-related a:last-child {
    border-bottom: 1px solid var(--lep-line-light);
}

.lep-related a b {
    color: var(--lep-accent);
}

.lep-route-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-right: max(var(--lep-gutter), calc((100vw - var(--lep-max)) / 2 + var(--lep-gutter)));
    padding-left: max(var(--lep-gutter), calc((100vw - var(--lep-max)) / 2 + var(--lep-gutter)));
    text-align: left;
}

.lep-route-final h2 {
    max-width: 14ch;
    margin: 18px 0 0;
    font-size: clamp(42px, 5vw, 72px);
}

.lep-site-footer {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 0.7fr) minmax(260px, 0.8fr);
    gap: clamp(40px, 7vw, 110px);
    padding: clamp(70px, 9vw, 120px) max(var(--lep-gutter), calc((100vw - var(--lep-max)) / 2 + var(--lep-gutter)));
    color: var(--lep-white);
    background: #0d0d0b;
}

.lep-footer-mark {
    margin-bottom: 22px;
    color: var(--lep-white) !important;
}

.lep-footer-mark b {
    color: var(--lep-accent);
}

.lep-site-footer p {
    margin: 0;
    color: rgba(255, 253, 247, 0.6);
}

.lep-site-footer nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.lep-site-footer nav a {
    color: var(--lep-white);
}

.lep-footer-note {
    font-size: 13px;
}

.lepbarcoding-active .site-footer {
    border-top: 0;
    color: rgba(255, 253, 247, 0.65);
    background: #0d0d0b;
}

.lepbarcoding-active .site-info {
    background: transparent;
}

@media (max-width: 980px) {
    .lep-site-header {
        grid-template-columns: 1fr auto;
    }

    .lep-nav {
        display: none;
    }

    .lep-hero-shade {
        background: linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0%, rgba(7, 7, 6, 0.75) 52%, rgba(7, 7, 6, 0.34) 100%);
    }

    .lep-pillar div {
        grid-template-columns: 1fr 1.15fr;
    }

    .lep-pillar b {
        grid-column: 1 / -1;
    }

    .lep-collection {
        grid-template-columns: 52px 1fr auto;
    }

    .lep-collection p {
        grid-column: 2 / -1;
    }

    .lep-method,
    .lep-article-layout {
        grid-template-columns: 1fr;
    }

    .lep-method-sticky,
    .lep-article-aside {
        position: static;
    }

    .lep-article-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .lep-site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .lep-footer-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    body.lep-standalone,
    .lepbarcoding-active {
        font-size: 16px;
    }

    .lepbarcoding-active .inside-header {
        min-height: 64px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .lepbarcoding-active .site-branding {
        display: block;
    }

    .lepbarcoding-active .site-description {
        margin-top: 3px;
        font-size: 12px;
    }

    .lep-site-header {
        min-height: 68px;
    }

    .lep-header-action {
        min-height: 42px;
        padding: 9px 12px;
        font-size: 10px;
    }

    .lep-hero,
    .lep-hero-inner {
        min-height: calc(100svh - 86px);
        min-height: calc(100dvh - 86px);
    }

    .lep-hero-image {
        object-position: 64% center;
    }

    .lep-hero-shade {
        background: linear-gradient(90deg, rgba(7, 7, 6, 0.97) 0%, rgba(7, 7, 6, 0.87) 68%, rgba(7, 7, 6, 0.5) 100%);
    }

    .lep-hero-inner {
        width: auto;
        margin: 0 var(--lep-gutter);
        padding-top: 44px;
        padding-bottom: 74px;
    }

    .lep-hero h1 strong {
        font-size: clamp(56px, 19vw, 86px);
    }

    .lep-hero h1 span {
        margin-top: 22px;
        font-size: clamp(30px, 9vw, 44px);
    }

    .lep-lede {
        max-width: 32ch;
        font-size: 17px;
    }

    .lep-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-top: 26px;
    }

    .lep-hero-rail {
        gap: 7px;
        letter-spacing: 0.1em;
    }

    .lep-hero-rail i {
        width: 22px;
    }

    .lep-intro,
    .lep-section-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lep-intro h2,
    .lep-section-head h2 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .lep-pillar {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 16px;
    }

    .lep-pillar div {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lep-pillar h3 {
        font-size: 32px;
    }

    .lep-collection-list {
        margin-top: 50px;
    }

    .lep-collection {
        grid-template-columns: 32px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .lep-collection h3 {
        font-size: 30px;
    }

    .lep-collection p {
        grid-column: 2 / -1;
    }

    .lep-method-list li,
    .lep-route-steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .lep-post {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .lep-post-no-media {
        padding-left: 0;
    }

    .lep-post h3 {
        font-size: clamp(34px, 11vw, 50px);
    }

    .lep-route-hero,
    .lep-route-hero-inner {
        min-height: 560px;
    }

    .lep-route-hero-inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lep-route-hero h1 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .lep-article-aside {
        display: block;
    }

    .lep-taxonomy dl > div,
    .lep-principles > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .lep-principles span {
        margin-bottom: 8px;
    }

    .lep-route-final {
        align-items: flex-start;
        flex-direction: column;
        text-align: left;
    }

    .lep-site-footer {
        grid-template-columns: 1fr;
    }

    .lep-footer-note {
        grid-column: auto;
    }
}

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

    .lep-hero-inner,
    .lep-js .lep-reveal.is-visible {
        animation: none;
    }

    .lep-hero-image,
    .lep-post-thumbnail,
    .lep-button,
    .lep-header-action,
    .lep-text-link span,
    .lep-quiet-link span {
        transition: none;
    }
}
