:root {
    --theme-primary: #d94f2b;
    --ink: #171714;
    --muted: #706f68;
    --line: #dddcd4;
    --paper: #f4f2ec;
    --paper-dark: #e8e4da;
    --white: #fff;
    --radius: 0;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.panel-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

:is(.fa-solid, .fa-regular, .fa-brands) {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 48px), var(--shop-container-width, 1400px));
    max-width: none;
    margin-inline: auto;
    padding: 0;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 2000;
    padding: .75rem 1rem;
    color: #fff;
    background: var(--ink);
}

.skip-link:focus {
    top: 1rem;
}

.announcement-bar {
    display: flex;
    min-height: 33px;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .35rem 1.25rem;
    color: #fff;
    background: var(--ink);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.announcement-separator {
    color: var(--theme-primary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    isolation: isolate;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-grid {
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
}

.header-grid > * {
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 34px;
    max-width: 180px;
    object-position: left center;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
}

.desktop-nav > a,
.nav-dropdown > a {
    display: flex;
    height: var(--header-height);
    align-items: center;
    gap: .3rem;
    border-bottom: 2px solid transparent;
    font-size: .77rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.desktop-nav > a:hover,
.nav-dropdown:hover > a {
    border-color: var(--ink);
}

.nav-dropdown {
    height: 100%;
}

.nav-dropdown-panel {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    display: grid;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    padding: 2.5rem max(24px, calc((100vw - min(calc(100vw - 48px), var(--shop-container-width, 1400px))) / 2));
    grid-template-columns: minmax(260px, .6fr) 1.4fr;
    gap: 5rem;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 38px rgba(23, 23, 20, .08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition:
        opacity .16s ease,
        transform .16s ease,
        visibility 0s linear .16s;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.nav-dropdown-panel > div:first-child strong {
    display: block;
    max-width: 17ch;
    margin-top: .8rem;
    font-size: 1.8rem;
    line-height: 1.1;
}

.menu-kicker,
.eyebrow {
    color: var(--theme-primary);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav-category-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 2rem;
}

.nav-category-links a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.nav-category-links a > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.nav-category-links a:hover span {
    color: var(--theme-primary);
}

.nav-category-links small {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .9rem;
}

.icon-button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    background: transparent;
    border: 0;
}

.icon-button > i,
.account-link > i,
.cart-link > i {
    width: 21px;
    text-align: center;
    font-size: 1.08rem;
}

.account-link {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.menu-trigger {
    display: none;
}

.account-link,
.cart-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cart-link b {
    display: grid;
    min-width: 23px;
    height: 23px;
    padding: 0 .3rem;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-size: .65rem;
}

.mobile-menu,
.search-panel {
    position: fixed;
    z-index: 500;
    visibility: hidden;
    background: #fff;
    opacity: 0;
    transition: .28s ease;
}

.mobile-menu {
    top: 0;
    left: 0;
    width: min(460px, calc(100vw - 32px));
    height: 100dvh;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.panel-close {
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
}

.panel-close i {
    font-size: 1.35rem;
}

.mobile-menu > .panel-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.mobile-menu nav {
    margin-top: 1.5rem;
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.45rem;
    font-weight: 750;
    letter-spacing: -.04em;
}

.mobile-menu-contact {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    display: grid;
    gap: .25rem;
}

.mobile-menu-contact small {
    margin-bottom: .35rem;
    color: var(--muted);
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.panel-backdrop {
    position: fixed;
    z-index: 450;
    visibility: hidden;
    inset: 0;
    background: rgba(15, 15, 13, .46);
    opacity: 0;
    transition: .25s ease;
}

.panel-backdrop.is-open {
    visibility: visible;
    opacity: 1;
}

.search-panel {
    top: 0;
    right: 0;
    left: 0;
    padding: 3rem 0 4rem;
    transform: translateY(-100%);
}

.search-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-form {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: 1fr auto;
    border-bottom: 2px solid var(--ink);
}

.search-form input {
    min-width: 0;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: clamp(2rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -.06em;
}

.search-form button {
    padding: 0 0 0 2rem;
    background: transparent;
    border: 0;
    font-weight: 750;
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin-top: 1rem;
    font-size: .8rem;
}

.search-suggestions span {
    color: var(--muted);
}

.home-hero {
    overflow: hidden;
    background: var(--paper);
}

.hero-layout {
    display: grid;
    min-height: min(760px, calc(100vh - 109px));
    grid-template-columns: 47% 53%;
}

.hero-copy {
    display: flex;
    padding: 5.5rem 5rem 4.5rem 0;
    container-type: inline-size;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-copy h1,
.page-hero h1,
.catalog-heading h1,
.product-summary h1,
.checkout-header h1 {
    margin: 1.25rem 0 0;
    font-size: clamp(3.9rem, 7vw, 7.6rem);
    font-weight: 790;
    letter-spacing: -.075em;
    line-height: .88;
}

.hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 3.9vw, 4.8rem);
    font-size: clamp(3.2rem, 13cqi, 4.8rem);
    overflow-wrap: break-word;
    word-break: normal;
}

.hero-copy > p {
    max-width: 34rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-top: 2.25rem;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: .9rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-dark {
    color: #fff;
    background: var(--ink);
}

.button-dark:hover {
    color: #fff;
    background: var(--theme-primary);
}

.button-primary {
    color: #fff;
    background: var(--theme-primary);
}

.button-primary:hover {
    color: #fff;
    background: var(--ink);
}

.button-primary:disabled,
.button:disabled {
    cursor: not-allowed;
    background: #aaa9a3;
    transform: none;
}

.button-light {
    color: var(--ink);
    background: #fff;
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding-bottom: .2rem;
    border-bottom: 1px solid var(--ink);
    font-size: .78rem;
    font-weight: 750;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.4rem;
    margin-top: 3rem;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 650;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero-note span::before {
    margin-right: .45rem;
    color: var(--theme-primary);
    content: "●";
    font-size: .45rem;
}

.hero-visual {
    position: relative;
    min-height: 610px;
    background: var(--paper-dark);
}

.hero-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product-caption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
}

.hero-product-caption span {
    display: grid;
    min-width: 0;
}

.hero-product-caption small,
.product-card-info small {
    overflow: hidden;
    color: var(--muted);
    font-size: .65rem;
    letter-spacing: .06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-product-caption strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1rem;
}

.hero-product-caption > b {
    font-size: .9rem;
}

.media-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 230px;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: rgba(23, 23, 20, .66);
    background:
        linear-gradient(135deg, transparent 49.7%, rgba(23, 23, 20, .08) 50%, transparent 50.3%),
        radial-gradient(circle at 70% 30%, rgba(217, 79, 43, .18), transparent 30%),
        #e7e4dc;
    text-align: center;
}

.media-placeholder > span {
    font-size: clamp(1.3rem, 3vw, 2.4rem);
    font-weight: 850;
    letter-spacing: -.06em;
}

.media-placeholder > small {
    max-width: 18rem;
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.media-placeholder-hero {
    min-height: 100%;
}

.hero-marquee {
    overflow: hidden;
    padding: 1rem 0;
    color: #fff;
    background: var(--theme-primary);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-marquee div {
    width: max-content;
    animation: marquee 36s linear infinite;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section-space {
    padding: 8rem 0;
}

.section-space-top {
    padding: 5rem 0 8rem;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.section-heading.align-end {
    align-items: flex-end;
}

.section-heading h2,
.story-copy h2,
.newsletter h2 {
    margin: .8rem 0 0;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 780;
    letter-spacing: -.07em;
    line-height: .94;
}

.section-heading > p {
    max-width: 28rem;
    margin: 2rem 0 0;
    color: var(--muted);
}

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

.category-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.category-media {
    position: relative;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: var(--paper);
}

.category-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .6, .2, 1);
}

.category-card:hover .category-media > img {
    transform: scale(1.035);
}

.category-count {
    position: absolute;
    top: .8rem;
    right: .8rem;
    padding: .4rem .6rem;
    background: rgba(255, 255, 255, .9);
    font-size: .62rem;
    font-weight: 750;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.category-card-footer {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding-top: .85rem;
    border-top: 1px solid var(--ink);
}

.category-card-footer h3 {
    margin: 0;
    padding-right: .75rem;
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: -.03em;
}

.category-card-footer > span {
    font-size: 1.25rem;
    transition: transform .2s ease;
}

.category-card:hover .category-card-footer > span {
    transform: translate(3px, -3px);
}

.feature-story {
    background: var(--paper);
}

.story-panel {
    display: grid;
    min-height: 600px;
    padding: 5rem;
    grid-template-columns: .35fr 1fr .65fr;
    align-items: start;
    gap: 3rem;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(23, 23, 20, .98), rgba(23, 23, 20, .82)),
        var(--ink);
}

.story-number {
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .8;
}

.eyebrow-light {
    color: #f1ad98;
}

.story-copy {
    align-self: center;
}

.story-copy p {
    max-width: 35rem;
    margin: 1.5rem 0 2rem;
    color: rgba(255, 255, 255, .65);
    font-size: 1.1rem;
}

.story-stats {
    display: grid;
    align-self: end;
}

.story-stats div {
    display: grid;
    padding: 1.25rem 0;
    grid-template-columns: 90px 1fr;
    align-items: baseline;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.story-stats strong {
    font-size: 1.65rem;
}

.story-stats span {
    color: rgba(255, 255, 255, .65);
    font-size: .72rem;
}

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

.product-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
}

.product-media {
    position: relative;
    display: block;
    aspect-ratio: .82;
    overflow: hidden;
    background: var(--paper);
}

.product-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .6, .2, 1);
}

.product-card:hover .product-media > img {
    transform: scale(1.035);
}

.product-placeholder {
    min-height: 100%;
}

.product-badges {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: flex;
    gap: .35rem;
}

.product-badges span {
    padding: .42rem .58rem;
    color: var(--ink);
    background: #fff;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-badges .badge-sale {
    color: #fff;
    background: var(--theme-primary);
}

.product-card-info {
    display: flex;
    min-height: 70px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .9rem;
}

.product-card-info > div {
    min-width: 0;
}

.product-card-info h3 {
    margin: .25rem 0 0;
    font-size: .98rem;
    font-weight: 720;
    letter-spacing: -.025em;
}

.product-card-info h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card-info h3 a:hover {
    color: var(--theme-primary);
}

.quick-add {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    background: transparent;
    border: 1px solid var(--ink);
    font-size: 1.2rem;
    line-height: 1;
    transition: .2s ease;
}

.quick-add i {
    font-size: .9rem;
}

.quick-add:hover {
    color: #fff;
    background: var(--ink);
}

.quick-add:disabled {
    color: #aaa;
    border-color: #ccc;
    cursor: not-allowed;
}

.product-price {
    display: flex;
    gap: .65rem;
    margin-top: auto;
    padding-top: .3rem;
    align-items: center;
    font-size: .84rem;
}

.product-price del,
.detail-price del {
    color: var(--muted);
}

.service-strip {
    padding: 4rem 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-grid > div {
    padding: 0 2rem;
    border-right: 1px solid var(--line);
}

.service-grid > div:first-child {
    padding-left: 0;
}

.service-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.service-grid span {
    color: var(--theme-primary);
    font-size: .62rem;
    font-weight: 800;
}

.service-grid h3 {
    margin: .8rem 0 .25rem;
    font-size: 1rem;
}

.service-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem;
}

.newsletter {
    background: #fff;
}

.newsletter-inner {
    display: grid;
    padding: 5rem;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    background: var(--paper);
}

.newsletter-inner > div:last-child {
    align-self: end;
}

.newsletter-inner p {
    max-width: 32rem;
    color: var(--muted);
}

.newsletter-form {
    display: grid;
    margin-top: 1.5rem;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid var(--ink);
}

.newsletter-form input {
    min-width: 0;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    outline: 0;
}

.newsletter-form button {
    padding: 0 0 0 1rem;
    background: transparent;
    border: 0;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.newsletter-inner small {
    display: block;
    margin-top: .7rem;
    color: var(--muted);
    font-size: .65rem;
}

.empty-store-state {
    display: flex;
    min-height: 330px;
    padding: 3rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--paper);
}

.empty-store-state.wide {
    grid-column: 1 / -1;
}

.empty-store-state > span {
    color: var(--theme-primary);
    font-size: .65rem;
    font-weight: 800;
}

.empty-store-state h3 {
    max-width: 24rem;
    margin: 1rem 0 .5rem;
    font-size: 2rem;
    letter-spacing: -.05em;
}

.empty-store-state p {
    max-width: 32rem;
    color: var(--muted);
}

.empty-store-state a {
    margin-top: .7rem;
    border-bottom: 1px solid var(--ink);
    font-size: .75rem;
    font-weight: 750;
}

.page-hero {
    padding: 6rem 0;
    background: var(--paper);
}

.page-hero-editorial {
    padding: 7rem 0 5rem;
}

.page-title-row {
    display: grid;
    margin-top: 1.5rem;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 5rem;
}

.page-title-row h1 {
    margin: 0;
}

.page-title-row p {
    max-width: 32rem;
    margin: 0 0 .6rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.category-index-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.category-index-card {
    display: grid;
    min-height: 360px;
    grid-template-columns: .8fr 1.2fr;
    background: #fff;
}

.category-index-card:nth-child(even) {
    grid-template-columns: 1.2fr .8fr;
}

.category-index-card:nth-child(even) .category-index-media {
    grid-column: 2;
    grid-row: 1;
}

.category-index-media {
    min-height: 360px;
    overflow: hidden;
    background: var(--paper);
}

.category-index-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.category-index-card:hover .category-index-media > img {
    transform: scale(1.025);
}

.category-index-copy {
    display: grid;
    padding: 3.5rem;
    align-content: center;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.category-index-copy small {
    color: var(--theme-primary);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-index-copy h2 {
    margin: .65rem 0 0;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 780;
    letter-spacing: -.065em;
    line-height: .95;
    overflow-wrap: anywhere;
}

.category-index-copy p {
    align-self: end;
    color: var(--muted);
}

.category-index-copy > span {
    grid-column: 2;
    font-size: .74rem;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: .25rem;
}

.catalog-hero {
    padding: 2rem 0 4.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.breadcrumb-line {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 4rem;
    color: var(--muted);
    font-size: .7rem;
}

.breadcrumb-line a:hover {
    color: var(--ink);
}

.breadcrumb-line b {
    color: var(--ink);
    font-weight: 650;
}

.catalog-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 430px);
    align-items: end;
    gap: 4rem;
}

.catalog-heading h1 {
    font-size: clamp(3.4rem, 7vw, 7rem);
}

.catalog-heading > p {
    margin: 0 0 .5rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 3rem;
}

.subcategories a {
    display: inline-flex;
    gap: 1rem;
    padding: .65rem .8rem;
    background: #fff;
    border: 1px solid var(--line);
    font-size: .72rem;
    font-weight: 700;
}

.catalog-toolbar {
    display: grid;
    padding: 0 0 1rem;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    border-bottom: 1px solid var(--ink);
    font-size: .72rem;
}

.catalog-toolbar > div {
    color: var(--muted);
}

.catalog-toolbar label {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.catalog-toolbar select {
    padding: .45rem 2rem .45rem .6rem;
    background: transparent;
    border: 1px solid var(--line);
}

.filter-open {
    display: none;
    justify-content: space-between;
    padding: .7rem 0;
    background: transparent;
    border: 0;
    font-weight: 750;
}

.catalog-body {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.filter-panel {
    align-self: start;
}

.filter-panel-mobile-head {
    display: none;
}

.filter-group {
    border-bottom: 1px solid var(--line);
}

.filter-group > button {
    display: flex;
    width: 100%;
    padding: 1.1rem 0;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.filter-group-body {
    padding: 0 0 1.25rem;
}

.filter-group.is-collapsed .filter-group-body {
    display: none;
}

.filter-search {
    width: 100%;
    padding: .75rem .85rem;
    background: var(--paper);
    border: 1px solid transparent;
    outline: 0;
}

.filter-search:focus {
    border-color: var(--ink);
}

.filter-options {
    display: grid;
    gap: .7rem;
}

.filter-options label {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: .55rem;
    color: var(--muted);
    cursor: pointer;
    font-size: .78rem;
}

.filter-options input {
    width: 16px;
    height: 16px;
    accent-color: var(--ink);
}

.filter-options small {
    color: #aaa;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.price-inputs label span {
    display: block;
    margin-bottom: .35rem;
    color: var(--muted);
    font-size: .63rem;
}

.price-inputs input {
    width: 100%;
    padding: .65rem .55rem;
    border: 1px solid var(--line);
}

.filter-reset {
    margin-top: 1rem;
    padding: .4rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    font-size: .7rem;
    font-weight: 700;
}

.product-grid-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-empty {
    padding: 6rem 2rem;
    background: var(--paper);
    text-align: center;
}

.filter-empty strong {
    font-size: 1.5rem;
}

.filter-empty p {
    color: var(--muted);
}

.filter-empty button {
    padding: .6rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    font-weight: 700;
}

.category-bottom-copy {
    display: grid;
    margin-top: 8rem;
    padding-top: 3rem;
    grid-template-columns: .6fr 1.4fr;
    gap: 4rem;
    border-top: 1px solid var(--ink);
}

.category-bottom-copy h2 {
    margin: 0;
    font-size: 1.7rem;
}

.category-bottom-copy p {
    max-width: 50rem;
    margin: 0;
    color: var(--muted);
}

.product-detail {
    padding: 2rem 0 7rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
    gap: 5rem;
}

.product-gallery-main {
    position: relative;
    aspect-ratio: .92;
    overflow: hidden;
    background: var(--paper);
}

.product-gallery-main > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-placeholder {
    min-height: 100%;
}

.gallery-thumbs {
    display: grid;
    margin-top: .75rem;
    grid-template-columns: repeat(5, 1fr);
    gap: .6rem;
}

.gallery-thumbs button {
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid transparent;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
    border-color: var(--ink);
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-summary {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
    padding-top: 2rem;
}

.product-summary h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.detail-price {
    display: flex;
    gap: .9rem;
    margin-top: 1.5rem;
    align-items: center;
    font-size: 1rem;
}

.detail-price strong {
    font-size: 1.35rem;
}

.product-lead {
    max-width: 39rem;
    margin: 2rem 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.availability-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: .72rem;
}

.availability-row small {
    margin-left: auto;
    color: var(--theme-primary);
    font-weight: 750;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #428653;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(66, 134, 83, .12);
}

.status-dot-muted {
    background: #999;
    box-shadow: 0 0 0 4px rgba(100, 100, 100, .12);
}

.purchase-row {
    display: grid;
    margin-top: 1.25rem;
    grid-template-columns: 130px 1fr;
    gap: .7rem;
}

.quantity-control {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    border: 1px solid var(--ink);
}

.quantity-control button,
.quantity-control input {
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: center;
}

.quantity-control input {
    width: 100%;
    appearance: textfield;
    font-size: .8rem;
    font-weight: 750;
}

.quantity-control button {
    cursor: pointer;
    font-size: .72rem;
    line-height: 1;
}

.add-detail {
    min-height: 56px;
}

.summary-notes {
    display: grid;
    margin: 2rem 0;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.summary-notes > div {
    display: flex;
    gap: .7rem;
}

.summary-notes > div > span {
    font-size: 1.25rem;
}

.summary-notes p {
    display: grid;
    margin: 0;
    font-size: .75rem;
}

.summary-notes small {
    margin-top: .2rem;
    color: var(--muted);
    font-size: .65rem;
}

.accordion {
    border-top: 1px solid var(--ink);
}

.accordion details {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: flex;
    padding: 1.1rem 0;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 800;
    list-style: none;
    text-transform: uppercase;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion details[open] summary i {
    transform: rotate(45deg);
}

.accordion details > p {
    margin: 0;
    padding: 0 0 1.2rem;
    color: var(--muted);
    font-size: .85rem;
}

.accordion dl {
    margin: 0;
    padding-bottom: 1rem;
}

.accordion dl div {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: .4rem 0;
    color: var(--muted);
    font-size: .78rem;
}

.accordion dt {
    font-weight: 500;
}

.accordion dd {
    margin: 0;
    color: var(--ink);
}

.related-products {
    padding: 7rem 0;
    background: var(--paper);
}

.checkout-page {
    min-height: 70vh;
    padding: 5rem 0 8rem;
    background: var(--paper);
}

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

.checkout-header.compact {
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.checkout-header > a {
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--ink);
    font-size: .73rem;
    font-weight: 750;
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: start;
    gap: 3rem;
}

.cart-content,
.checkout-form {
    min-width: 0;
}

.cart-table-head {
    display: grid;
    padding: 0 0 .8rem;
    grid-template-columns: 1fr 140px 120px;
    color: var(--muted);
    border-bottom: 1px solid var(--ink);
    font-size: .63rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-item {
    display: grid;
    padding: 1.25rem 0;
    grid-template-columns: 1fr 140px 120px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.cart-item-product {
    display: grid;
    grid-template-columns: 95px 1fr;
    align-items: center;
    gap: 1rem;
}

.cart-item-image {
    width: 95px;
    aspect-ratio: .85;
    overflow: hidden;
    background: var(--paper-dark);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--muted);
    font-size: .6rem;
    font-weight: 800;
}

.cart-item-product h3 {
    margin: 0 0 .3rem;
    font-size: .92rem;
}

.cart-item-product button {
    padding: 0;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    font-size: .64rem;
}

.cart-item .quantity-control {
    width: 108px;
    height: 42px;
}

.cart-item-total {
    font-size: .82rem;
    font-weight: 750;
}

.cart-empty {
    padding: 6rem 1rem;
    text-align: center;
}

.cart-empty > span {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto 1rem;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-weight: 800;
}

.cart-empty h2 {
    font-size: 2rem;
    letter-spacing: -.05em;
}

.cart-empty p {
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.cart-note {
    margin-top: 2rem;
}

.cart-note label {
    display: block;
    margin-bottom: .5rem;
    font-size: .7rem;
    font-weight: 750;
}

.cart-note textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--line);
    outline: 0;
    resize: vertical;
}

.order-summary {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--line);
}

.order-summary h2 {
    margin: .6rem 0 2rem;
    font-size: 2rem;
    letter-spacing: -.05em;
}

.order-summary dl {
    margin: 0;
}

.order-summary dl div,
.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .65rem 0;
    font-size: .78rem;
}

.order-summary dt {
    color: var(--muted);
    font-weight: 500;
}

.order-summary dd {
    margin: 0;
}

.summary-total {
    margin: .6rem 0 1.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--ink);
    font-weight: 750;
}

.summary-total strong {
    font-size: 1.25rem;
}

.summary-safe {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: .64rem;
    text-align: center;
}

.checkout-layout {
    margin: 0;
}

.checkout-section {
    padding: 2.5rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.checkout-section + .checkout-section {
    margin-top: 1rem;
}

.checkout-section-head {
    display: grid;
    margin-bottom: 2rem;
    grid-template-columns: 42px 1fr;
    gap: .75rem;
}

.checkout-section-head > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-size: .62rem;
    font-weight: 800;
}

.checkout-section-head h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -.035em;
}

.checkout-section-head p {
    margin: .25rem 0 0;
    color: var(--muted);
    font-size: .75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.field {
    display: grid;
    gap: .45rem;
}

.field-wide {
    grid-column: 1 / -1;
}

.field > span {
    font-size: .67rem;
    font-weight: 700;
}

.field input {
    width: 100%;
    padding: .85rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    outline: 0;
    font-size: .87rem;
}

.field input:focus {
    border-color: var(--ink);
}

.field textarea {
    width: 100%;
    padding: .85rem;
    background: transparent;
    border: 1px solid var(--line);
    outline: 0;
    font: inherit;
    resize: vertical;
}

.field textarea:focus {
    border-color: var(--ink);
}

.billing-same-check {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .74rem;
    font-weight: 700;
}

.billing-same-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--ink);
}

.billing-fields {
    min-width: 0;
    margin: 1.5rem 0 0;
    padding: 0;
    border: 0;
}

.order-confirmation-shell {
    max-width: 1180px;
}

.order-confirmation-hero {
    max-width: 850px;
    margin-bottom: 4rem;
}

.order-confirmation-mark {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 1.5rem;
    place-items: center;
    color: #fff;
    background: #386a48;
    border-radius: 50%;
    font-size: 1.4rem;
}

.order-confirmation-hero h1 {
    margin: .7rem 0 1rem;
    font-size: clamp(3rem, 7vw, 6rem);
}

.order-confirmation-hero > p {
    max-width: 650px;
    color: var(--muted);
}

.order-confirmation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 2rem;
    margin-top: 2rem;
    font-size: .72rem;
}

.order-confirmation-meta span {
    display: grid;
    gap: .25rem;
    color: var(--muted);
}

.order-confirmation-meta strong {
    color: var(--ink);
}

.order-confirmation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
    align-items: start;
    gap: 1rem;
}

.order-detail-card {
    padding: 2.2rem;
    background: #fff;
    border: 1px solid var(--line);
}

.order-detail-stack {
    display: grid;
    gap: 1rem;
}

.order-detail-heading {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.5rem;
}

.order-detail-heading span {
    color: var(--theme-primary);
    font-size: .65rem;
    font-weight: 800;
}

.order-detail-heading h2 {
    margin: 0;
    font-size: 1.3rem;
}

.order-detail-card p {
    margin: .7rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.order-detail-card p strong {
    color: var(--ink);
}

.order-confirmation-item,
.order-confirmation-totals div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.order-confirmation-item > div {
    display: grid;
    gap: .25rem;
}

.order-confirmation-item small {
    color: var(--muted);
}

.order-confirmation-totals {
    max-width: 420px;
    margin: 1.5rem 0 0 auto;
}

.order-confirmation-totals dd {
    margin: 0;
}

.order-confirmation-totals .total {
    border-bottom: 0;
    font-size: 1.15rem;
    font-weight: 800;
}

.order-confirmation-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.account-orders {
    margin-top: 2rem;
    padding: 2.5rem;
    background: #fff;
}

.account-order-list {
    border-top: 1px solid var(--ink);
}

.account-order-row {
    display: grid;
    padding: 1rem 0;
    grid-template-columns: minmax(170px, 1fr) minmax(130px, .7fr) 110px 20px;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    font-size: .75rem;
}

.account-order-row > span:first-child {
    display: grid;
    gap: .25rem;
}

.account-order-row small,
.account-orders-empty {
    color: var(--muted);
}

.account-order-row i {
    font-style: normal;
}

.order-status {
    font-weight: 750;
}

.order-status-success {
    color: #386a48;
}

.order-status-danger {
    color: #9b3333;
}

.order-status-warning {
    color: #8d621d;
}

@media (max-width: 820px) {
    .order-confirmation-grid {
        grid-template-columns: 1fr;
    }

    .order-confirmation-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .order-detail-card {
        padding: 1.4rem;
    }

    .account-order-row {
        grid-template-columns: 1fr auto;
    }

    .account-order-row b,
    .account-order-row i {
        display: none;
    }
}

.choice-list {
    display: grid;
    gap: .65rem;
}

.choice-card {
    display: grid;
    padding: 1rem;
    grid-template-columns: 20px 1fr auto;
    align-items: center;
    gap: .8rem;
    border: 1px solid var(--line);
    cursor: pointer;
}

.choice-card:has(input:checked) {
    border-color: var(--ink);
    box-shadow: inset 3px 0 var(--theme-primary);
}

.choice-card > input {
    position: absolute;
    opacity: 0;
}

.choice-radio {
    width: 15px;
    height: 15px;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.choice-card input:checked + .choice-radio {
    border: 4px solid var(--ink);
}

.choice-copy {
    display: grid;
}

.choice-copy strong {
    font-size: .78rem;
}

.choice-copy small {
    margin-top: .2rem;
    color: var(--muted);
    font-size: .66rem;
}

.choice-card > b {
    max-width: 150px;
    font-size: .68rem;
    text-align: right;
}

.checkout-warning {
    padding: 1rem;
    color: #775213;
    background: #fff4d9;
    border: 1px solid #ead8ad;
    font-size: .75rem;
}

.form-notice {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid;
    font-size: .76rem;
}

.form-notice ul {
    margin: .45rem 0 0;
    padding-left: 1.15rem;
}

.form-notice-success {
    color: #315b3a;
    background: #edf8ef;
    border-color: #b9dabf;
}

.form-notice-error {
    color: #812d2d;
    background: #fff0f0;
    border-color: #e5bcbc;
}

.account-page {
    min-height: 70vh;
    padding: 6rem 0 8rem;
    background: var(--paper);
}

.account-shell {
    display: grid;
    max-width: 1080px;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    align-items: start;
    gap: 7rem;
}

.account-intro {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
}

.account-intro h1,
.account-profile-head h1 {
    margin: 1rem 0 1.2rem;
    font-size: clamp(3rem, 6vw, 5.8rem);
    letter-spacing: -.07em;
}

.account-intro p,
.account-profile-head p {
    max-width: 34rem;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.account-card {
    padding: 2.5rem;
    background: #fff;
    border: 1px solid var(--line);
}

.account-form {
    display: grid;
    gap: 1.4rem;
}

.account-check {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--muted);
    font-size: .72rem;
}

.account-check input {
    accent-color: var(--ink);
}

.account-links {
    display: grid;
    margin-top: 1.5rem;
    gap: .55rem;
    font-size: .72rem;
    text-align: center;
}

.account-links a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.account-hint,
.account-message {
    margin: 1rem 0 1.4rem;
    color: var(--muted);
    font-size: .72rem;
}

.registration-consent {
    display: grid;
    grid-template-columns: 17px 1fr;
    align-items: start;
    gap: .65rem;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.55;
}

.registration-consent input {
    margin-top: .15rem;
    accent-color: var(--ink);
}

.registration-consent p {
    margin: 0;
}

.registration-consent a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.account-profile-shell {
    max-width: 980px;
}

.account-profile-head {
    display: flex;
    margin-bottom: 3rem;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.account-profile-head h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.text-button {
    padding: .6rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    font-size: .72rem;
    font-weight: 750;
}

.account-verification {
    display: flex;
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #775213;
    background: #fff4d9;
    border: 1px solid #ead8ad;
    font-size: .72rem;
}

.account-verification > div {
    display: grid;
}

.account-verification a {
    font-weight: 750;
    text-decoration: underline;
}

.account-profile-form {
    display: grid;
    gap: 1rem;
}

.account-profile-form .checkout-section {
    border: 1px solid var(--line);
}

.account-profile-form > .button {
    margin-top: 1rem;
    justify-self: end;
}

.checkout-summary {
    top: calc(var(--header-height) + 2rem);
}

.checkout-mini-cart {
    display: grid;
    max-height: 290px;
    margin: 1.5rem 0;
    gap: .8rem;
    overflow: auto;
}

.checkout-mini-item {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: .7rem;
}

.checkout-mini-item > div:first-child {
    position: relative;
    width: 55px;
    aspect-ratio: .85;
    overflow: hidden;
    background: var(--paper);
}

.checkout-mini-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-mini-item i {
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-size: .55rem;
    font-style: normal;
}

.checkout-mini-item span {
    display: grid;
    font-size: .7rem;
}

.checkout-mini-item small {
    color: var(--muted);
}

.checkout-mini-item b {
    font-size: .69rem;
}

.terms-check {
    display: grid;
    margin: .5rem 0 1.25rem;
    grid-template-columns: 17px 1fr;
    gap: .6rem;
    color: var(--muted);
    font-size: .65rem;
}

.terms-check input {
    margin-top: .15rem;
    accent-color: var(--ink);
}

.terms-check a {
    color: var(--ink);
    text-decoration: underline;
}

.legal-hero {
    padding: 2rem 0 6rem;
}

.legal-hero h1 {
    max-width: 12ch;
    margin-top: 1.2rem;
}

.legal-hero > .container > p {
    max-width: 40rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.legal-layout {
    padding: 6rem 0 9rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 760px);
    justify-content: space-between;
    gap: 6rem;
}

.legal-grid > aside {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: grid;
    align-self: start;
    border-top: 1px solid var(--ink);
}

.legal-grid > aside > span {
    padding: 1rem 0;
    color: var(--muted);
    font-size: .63rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-grid > aside a {
    padding: .65rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .72rem;
}

.legal-grid > aside small {
    margin-top: 1.2rem;
    color: var(--muted);
    font-size: .62rem;
}

.legal-notice {
    display: grid;
    margin-bottom: 4rem;
    padding: 1.5rem;
    grid-template-columns: 130px 1fr;
    gap: 1rem;
    color: #67491a;
    background: #fff3d9;
    border-left: 3px solid #d39b3f;
}

.legal-notice p {
    margin: 0;
    font-size: .82rem;
}

.legal-grid article > section {
    padding: 0 0 3.5rem;
}

.legal-grid article h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    letter-spacing: -.045em;
}

.legal-grid article p,
.legal-grid article li {
    color: #53534e;
    line-height: 1.8;
}

.legal-grid article ul {
    padding-left: 1.2rem;
}

.content-page-body {
    max-width: 860px;
    margin: 0 auto;
}

.content-page-body h2,
.content-page-body h3,
.content-page-body h4 {
    margin: 2.5rem 0 1rem;
    letter-spacing: -.025em;
}

.content-page-body p,
.content-page-body li {
    color: var(--muted);
    line-height: 1.75;
}

.content-page-body a {
    color: var(--theme-primary);
    text-decoration: underline;
    text-underline-offset: .2em;
}

.content-page-body blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--theme-primary);
    background: var(--paper);
}

.site-footer {
    padding: 5rem 0 1.5rem;
    color: #fff;
    background: var(--ink);
}

.footer-top {
    display: grid;
    padding-bottom: 5rem;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 4rem;
}

.footer-brand p {
    max-width: 22rem;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, .55);
    font-size: .84rem;
}

.footer-brand .brand img {
    height: 40px;
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: rgba(255, 255, 255, .88);
    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.social-links a:hover {
    border-color: var(--theme-primary);
    color: #fff;
    background: var(--theme-primary);
    transform: translateY(-2px);
}

.social-links a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.social-links i {
    width: 18px;
    height: 18px;
    font-size: 1rem;
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: .65rem;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: .65rem;
    color: rgba(255, 255, 255, .45);
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, .78);
    font-size: .76rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, .38);
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: .63rem;
}

.toast-message {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 800;
    display: grid;
    width: min(390px, calc(100vw - 3rem));
    padding: 1rem;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: .8rem;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: .25s ease;
}

.toast-message.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.toast-message > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--ink);
    background: #fff;
    border-radius: 50%;
}

.toast-message > div {
    display: grid;
}

.toast-message strong {
    font-size: .76rem;
}

.toast-message small {
    color: rgba(255, 255, 255, .6);
    font-size: .63rem;
}

.toast-message > a {
    font-size: .68rem;
    font-weight: 750;
}

@media (max-width: 1199.98px) {
    .header-grid {
        grid-template-columns: 180px 1fr 180px;
    }

    .desktop-nav {
        gap: 1.35rem;
    }

    .account-link span {
        display: none;
    }

    .hero-copy {
        padding-right: 3rem;
    }

    .story-panel {
        padding: 4rem 3rem;
        grid-template-columns: .25fr 1fr;
    }

    .story-stats {
        grid-column: 2;
        grid-template-columns: repeat(3, 1fr);
    }

    .story-stats div {
        grid-template-columns: 1fr;
    }

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

    .cart-layout,
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) 350px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(calc(100% - 36px), var(--shop-container-width, 1400px));
    }

    .header-grid {
        grid-template-columns: 1fr auto 1fr;
    }

    .header-grid > .brand {
        justify-self: center;
    }

    .desktop-nav {
        display: none;
    }

    .menu-trigger {
        display: inline-grid;
        justify-self: start;
    }

    .cart-link span,
    .account-link span,
    .search-trigger {
        display: none;
    }

    .account-shell {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .account-intro {
        position: static;
    }

    .hero-layout {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 570px;
        padding: 5rem 0;
    }

    .hero-visual {
        min-height: 680px;
    }

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

    .story-panel {
        min-height: 0;
        padding: 4rem 2rem;
        grid-template-columns: 1fr;
    }

    .story-number {
        font-size: 5rem;
    }

    .story-stats {
        grid-column: auto;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 0;
    }

    .service-grid > div:nth-child(2) {
        border-right: 0;
    }

    .service-grid > div:nth-child(3) {
        padding-left: 0;
    }

    .newsletter-inner {
        padding: 4rem 2.5rem;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .category-index-copy {
        grid-template-columns: 1fr;
    }

    .category-index-copy > span {
        grid-column: 1;
    }

    .catalog-toolbar {
        grid-template-columns: 1fr auto;
    }

    .catalog-toolbar > div {
        display: none;
    }

    .filter-open {
        display: flex;
    }

    .catalog-body {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 700;
        width: min(400px, calc(100vw - 28px));
        height: 100dvh;
        padding: 1.5rem;
        overflow: auto;
        visibility: hidden;
        background: #fff;
        opacity: 0;
        transform: translateX(-100%);
        transition: .25s ease;
    }

    .filter-panel.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .filter-panel-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--ink);
    }

    .filter-panel-mobile-head button {
        background: transparent;
        border: 0;
        font-size: 1.8rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-summary {
        position: static;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .checkout-summary {
        grid-row: 1;
    }

    .legal-grid {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }

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

    .footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .container {
        width: calc(100% - 28px);
    }

    .account-page {
        padding: 4rem 0 5rem;
    }

    .account-card,
    .account-profile-form .checkout-section {
        padding: 1.5rem;
    }

    .account-profile-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .announcement-bar {
        min-height: 29px;
        font-size: .56rem;
    }

    .announcement-bar span:nth-child(3),
    .announcement-separator {
        display: none;
    }

    .hero-copy {
        min-height: 500px;
        padding: 4rem 0;
    }

    .hero-copy h1,
    .page-hero h1,
    .catalog-heading h1,
    .checkout-header h1 {
        font-size: clamp(2.9rem, 11.5vw, 4.4rem);
    }

    .hero-copy > p {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-note {
        display: grid;
        gap: .4rem;
    }

    .hero-visual {
        min-height: 450px;
    }

    .section-space {
        padding: 5rem 0;
    }

    .section-space-top {
        padding: 3rem 0 5rem;
    }

    .section-heading {
        margin-bottom: 2.2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-heading.align-end {
        align-items: flex-start;
    }

    .section-heading h2,
    .story-copy h2,
    .newsletter h2 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .category-grid,
    .product-grid,
    .product-grid-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.2rem .7rem;
    }

    .category-card-footer h3,
    .product-card-info h3 {
        font-size: .82rem;
    }

    .category-card-footer {
        min-height: 50px;
        align-items: flex-start;
    }

    .product-card-info {
        min-height: 62px;
    }

    .product-card-info small {
        font-size: .55rem;
    }

    .quick-add {
        width: 32px;
        height: 32px;
    }

    .story-panel {
        padding: 3rem 1.4rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .story-stats div {
        grid-template-columns: 90px 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-grid > div {
        padding: 0 0 1.5rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-grid > div:nth-child(3) {
        padding-left: 0;
    }

    .service-grid > div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .newsletter-inner {
        padding: 3rem 1.25rem;
    }

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

    .newsletter-form button {
        padding: .8rem 0;
        text-align: left;
    }

    .page-hero-editorial {
        padding: 4.5rem 0 3.5rem;
    }

    .page-title-row,
    .catalog-heading {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-index-card,
    .category-index-card:nth-child(even) {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .category-index-card:nth-child(even) .category-index-media {
        grid-column: auto;
        grid-row: auto;
    }

    .category-index-media {
        min-height: 300px;
    }

    .category-index-copy {
        padding: 2rem 1.25rem;
        gap: 1rem;
    }

    .catalog-hero {
        padding-bottom: 3rem;
    }

    .breadcrumb-line {
        margin-bottom: 2.5rem;
    }

    .catalog-toolbar label > span {
        display: none;
    }

    .category-bottom-copy {
        margin-top: 5rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-detail {
        padding-bottom: 4.5rem;
    }

    .product-gallery-main {
        width: calc(100% + 28px);
        margin-left: -14px;
    }

    .purchase-row {
        grid-template-columns: 110px 1fr;
    }

    .summary-notes {
        grid-template-columns: 1fr;
    }

    .related-products {
        padding: 5rem 0;
    }

    .checkout-page {
        padding: 3.5rem 0 5rem;
    }

    .checkout-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 2.5rem;
    }

    .cart-table-head {
        display: none;
    }

    .cart-item {
        position: relative;
        grid-template-columns: 1fr auto;
        gap: .8rem;
    }

    .cart-item-product {
        grid-column: 1 / -1;
    }

    .cart-item-total {
        justify-self: end;
    }

    .checkout-section {
        padding: 1.5rem 1.1rem;
    }

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

    .field-wide {
        grid-column: auto;
    }

    .choice-card {
        grid-template-columns: 18px 1fr;
    }

    .choice-card > b {
        grid-column: 2;
        text-align: left;
    }

    .legal-hero {
        padding-bottom: 4rem;
    }

    .legal-layout {
        padding: 4rem 0 6rem;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-grid > aside {
        position: static;
    }

    .legal-notice {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-panel {
        padding: 2rem 0 3rem;
    }

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

    .search-form input {
        font-size: 2.3rem;
    }

    .search-form button {
        padding: .8rem 0;
        text-align: left;
    }
}

@media (max-width: 420px) {
    .purchase-row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Blog */
.blog-hero {
    padding: 2rem 0 3.75rem;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--theme-primary) 9%, transparent), transparent 28rem),
        var(--paper);
}

.blog-hero-copy {
    max-width: 790px;
    padding: 4.5rem 0 2.8rem;
}

.blog-hero h1,
.blog-article-header h1 {
    max-width: 950px;
    margin: .55rem 0 1.15rem;
    font-size: clamp(3.25rem, 7.2vw, 7.5rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .95;
}

.blog-hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.13rem;
    line-height: 1.75;
}

.blog-category-nav {
    display: flex;
    gap: .65rem;
    overflow-x: auto;
    padding-bottom: .25rem;
    scrollbar-width: thin;
}

.blog-category-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .5rem;
    padding: .68rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color .2s ease, background-color .2s ease;
}

.blog-category-nav a:hover {
    border-color: var(--ink);
    background: var(--surface);
}

.blog-category-nav small {
    display: grid;
    min-width: 1.5rem;
    height: 1.5rem;
    place-items: center;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ink) 8%, transparent);
    font-size: .68rem;
}

.blog-index {
    padding: 5rem 0 7rem;
}

.home-blog {
    border-top: 1px solid var(--line);
    background: var(--paper);
}

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

.blog-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
}

.blog-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e7e4de;
    color: var(--ink);
    text-decoration: none;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.025);
}

.blog-media-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background:
        linear-gradient(135deg, transparent 49.7%, rgba(20, 20, 18, .08) 50%, transparent 50.3%),
        #e7e4de;
    font-size: clamp(1.7rem, 4vw, 3.2rem);
    letter-spacing: .18em;
}

.blog-media-placeholder small {
    margin-top: .35rem;
    color: var(--muted);
    font-size: .65rem;
    letter-spacing: .35em;
    text-transform: uppercase;
}

.blog-card-body {
    display: flex;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 1.4rem;
}

.blog-card-meta,
.blog-article-byline {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-card-meta > :first-child {
    color: var(--theme-primary);
    text-decoration: none;
}

.blog-card-meta > :first-child::after {
    margin-left: .7rem;
    color: var(--line-dark);
    content: "·";
}

.blog-card h2,
.blog-card h3 {
    margin: .8rem 0 .75rem;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.blog-card h2 a,
.blog-card h3 a {
    color: var(--ink);
    text-decoration: none;
}

.blog-card-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 1.2rem;
    color: var(--muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.7;
}

.blog-card-body > .text-link {
    margin-top: auto;
}

.blog-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 4.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.blog-pagination a {
    color: var(--ink);
    text-decoration: none;
}

.blog-pagination a:last-child {
    text-align: right;
}

.blog-pagination > span {
    color: var(--muted);
}

.blog-empty {
    max-width: 700px;
    margin: 2rem auto;
    padding: 5rem 2rem;
    text-align: center;
}

.blog-empty h2 {
    margin: .8rem 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -.05em;
}

.blog-empty p {
    margin: 0 auto 2rem;
    color: var(--muted);
    line-height: 1.7;
}

.blog-article-header {
    padding: 2rem 0 3.75rem;
    background: var(--paper);
}

.blog-article-container {
    max-width: 880px;
}

.blog-article-kicker {
    margin-top: 5rem;
    color: var(--theme-primary);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blog-article-kicker a {
    color: inherit;
    text-decoration: none;
}

.blog-article-header h1 {
    font-size: clamp(3rem, 6vw, 6.3rem);
}

.blog-article-lead {
    max-width: 740px;
    margin: 0 0 1.6rem;
    color: var(--muted);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.65;
}

.blog-article-byline > :first-child::after {
    margin-left: .7rem;
    color: var(--line-dark);
    content: "·";
}

.blog-featured-image {
    max-width: var(--shop-container-width);
    margin-top: 1rem;
}

.blog-featured-image img {
    width: 100%;
    max-height: 780px;
    object-fit: cover;
}

.blog-article-content {
    padding: 5.5rem 0 4rem;
    color: #272622;
    font-size: 1.08rem;
    line-height: 1.85;
}

.blog-article-content > * {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.blog-article-content h2,
.blog-article-content h3 {
    margin-top: 2.6em;
    margin-bottom: .7em;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.blog-article-content h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.blog-article-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.blog-article-content a {
    color: var(--theme-primary);
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
}

.blog-article-content blockquote {
    max-width: 830px;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: .2rem 0 .2rem 2rem;
    border-left: 3px solid var(--theme-primary);
    color: var(--ink);
    font-size: clamp(1.35rem, 2.7vw, 2rem);
    letter-spacing: -.025em;
    line-height: 1.45;
}

.blog-article-content img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.blog-article-footer {
    padding: 0 0 5rem;
    border-bottom: 1px solid var(--line);
}

.blog-related {
    padding: 5.5rem 0 7rem;
}

.blog-grid-related {
    margin-top: 2.5rem;
}

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

@media (max-width: 680px) {
    .blog-hero {
        padding-top: 1.2rem;
    }

    .blog-hero-copy {
        padding: 3.3rem 0 2.2rem;
    }

    .blog-hero h1,
    .blog-article-header h1 {
        font-size: clamp(2.85rem, 15vw, 4.8rem);
    }

    .blog-index {
        padding: 3.5rem 0 5rem;
    }

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

    .blog-card-media {
        aspect-ratio: 16 / 11;
    }

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

    .blog-pagination > span {
        display: none;
    }

    .blog-article-kicker {
        margin-top: 3.5rem;
    }

    .blog-article-header {
        padding-bottom: 2.75rem;
    }

    .blog-featured-image {
        width: 100%;
        padding: 0;
    }

    .blog-article-content {
        padding: 3.75rem 0 3rem;
        font-size: 1rem;
    }

    .blog-article-content blockquote {
        padding-left: 1.25rem;
    }

    .blog-related {
        padding: 4rem 0 5rem;
    }
}
