:root {
    --ink: #232d3b;
    --paper: #ffffff;
    --muted: #6b7280;
    --line: #d8dde3;
    --soft: #f4f5f6;
    --accent: #e85d3f;
    --page-pad: clamp(20px, 3.125vw, 48px);
    --section-gap: clamp(72px, 9vw, 132px);
    --header-height: 66px;
    --font-body: "Work Sans", Arial, sans-serif;
    --font-display: "Barlow Condensed", Impact, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body.drawer-open,
body.dialog-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
    letter-spacing: 0;
}

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

h1,
h2,
h3,
h4,
p,
figure {
    margin-top: 0;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 9999;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--paper);
    background: var(--ink);
}

.section-shell {
    width: 100%;
    max-width: 1536px;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
}

.site-main {
    min-height: 55vh;
}

.site-header {
    position: relative;
    z-index: 50;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    width: 100%;
    max-width: 1536px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--page-pad);
}

.site-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.site-brand__text,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.custom-logo {
    width: auto;
    max-width: 200px;
    height: 36px;
    object-fit: contain;
}

.site-nav {
    grid-column: 2;
    grid-row: 1;
}

.site-nav__list,
.site-nav .menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-actions {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-self: end;
    gap: 6px;
}

.icon-button {
    position: relative;
    display: inline-grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.icon-button::before {
    position: absolute;
    inset: 4px;
    background: var(--soft);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 150ms ease, transform 150ms ease;
}

.icon-button:hover::before,
.icon-button:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.icon-button .icon {
    position: relative;
    z-index: 1;
}

.header-cart__count {
    position: absolute;
    z-index: 2;
    top: 2px;
    right: 0;
    display: grid;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    place-items: center;
    color: var(--paper);
    background: var(--ink);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
}

.header-cart__count:empty,
.header-cart__count[aria-hidden="true"]:not(:is(:first-child)) {
    line-height: 17px;
}

.mobile-menu-button {
    display: none;
}

.mobile-drawer,
.drawer-backdrop,
.filter-drawer,
.filter-backdrop {
    visibility: hidden;
    opacity: 0;
}

.search-dialog {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 34px var(--page-pad) 42px;
    color: var(--ink);
    background: var(--paper);
    border: 0;
    box-shadow: 0 18px 40px rgba(18, 26, 37, 0.14);
}

.search-dialog::backdrop {
    background: rgba(20, 27, 36, 0.42);
}

.search-dialog__form {
    width: min(900px, calc(100% - 80px));
    margin: 0 auto;
}

.search-dialog__form label {
    display: block;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.search-dialog__field {
    display: grid;
    grid-template-columns: 1fr 48px;
    border-bottom: 2px solid var(--ink);
}

.search-dialog__field input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
}

.search-dialog__close {
    position: absolute;
    top: 22px;
    right: var(--page-pad);
}

.home-hero {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
    min-height: 440px;
    padding-top: 20px;
    padding-bottom: 56px;
}

.home-hero__copy h1 {
    max-width: 610px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(72px, 7vw, 112px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
}

.home-hero__media {
    width: 100%;
    margin: 0;
    aspect-ratio: 1.52 / 1;
    overflow: hidden;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-products {
    padding-top: 4px;
    padding-bottom: var(--section-gap);
}

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

.editorial-card {
    min-width: 0;
}

.editorial-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--soft);
}

.editorial-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.editorial-card:hover .editorial-card__media img {
    transform: scale(1.025);
}

.editorial-card__action {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    color: var(--paper);
    background: var(--ink);
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.editorial-card:hover .editorial-card__action,
.editorial-card__media:focus-visible .editorial-card__action {
    opacity: 1;
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    color: var(--paper);
    background: var(--ink);
    font-size: 12px;
}

.editorial-card__content {
    padding-top: 12px;
}

.editorial-card__content h2 {
    min-height: 20px;
    margin: 0 0 3px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.editorial-card__price,
.editorial-card__price p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.promo-banner {
    position: relative;
    min-height: clamp(420px, 58vw, 760px);
    padding: 0;
    overflow: hidden;
}

.promo-banner::after {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 27, 0.18);
    content: "";
}

.promo-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner__content {
    position: absolute;
    z-index: 1;
    right: var(--page-pad);
    bottom: clamp(30px, 6vw, 80px);
    left: var(--page-pad);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    color: var(--paper);
}

.promo-banner__content h2 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(58px, 7.2vw, 112px);
    line-height: 0.94;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    min-height: 40px;
    border-bottom: 1px solid currentColor;
    font-weight: 600;
}

.text-link .icon {
    transition: transform 160ms ease;
}

.text-link:hover .icon {
    transform: translateX(4px);
}

.text-link--light {
    color: var(--paper);
}

.social-marquee {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.social-marquee__track {
    display: flex;
    width: max-content;
    animation: stride-marquee 30s linear infinite;
}

.social-marquee__track span {
    display: inline-flex;
    align-items: center;
    height: 72px;
    padding: 0 32px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    white-space: nowrap;
}

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

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

.spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    min-height: 670px;
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.spotlight__media {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

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

.spotlight__eyebrow {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 7px 10px;
    color: var(--paper);
    background: var(--ink);
    font-size: 12px;
    font-weight: 600;
}

.spotlight__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 5vw, 72px);
    background: #f1ede7;
}

.spotlight__content h2 {
    max-width: 390px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(46px, 5vw, 76px);
    line-height: 0.98;
}

.spotlight__content p {
    font-size: 18px;
}

.brand-statement {
    padding-top: clamp(70px, 10vw, 150px);
    padding-bottom: clamp(70px, 10vw, 150px);
}

.brand-statement p {
    max-width: 1120px;
    margin-bottom: 42px;
    font-family: var(--font-display);
    font-size: clamp(46px, 5.7vw, 86px);
    font-weight: 600;
    line-height: 1;
}

.site-footer {
    color: var(--paper);
    background: var(--ink);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 60px;
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    padding: 72px var(--page-pad) 96px;
}

.footer-heading {
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.footer-heading--large {
    margin-bottom: 26px;
    font-size: 42px;
    line-height: 1;
}

.footer-menu,
.footer-menu .site-nav__list,
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li + li {
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 42px;
}

.footer-column a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--paper);
}

.newsletter-form input,
.newsletter-form button {
    height: 52px;
    color: var(--paper);
    background: transparent;
    border: 0;
}

.newsletter-form input {
    min-width: 0;
    outline: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.newsletter-form button {
    padding: 0 4px 0 24px;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-note {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.site-footer__utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 12px var(--page-pad);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

.site-footer__utility p {
    margin: 0;
}

.footer-socials a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
}

/* Catalog */
.shop-shell {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.catalog-heading {
    padding: 26px var(--page-pad) 42px;
}

.catalog-heading h1,
.woocommerce-products-header__title,
.page-heading h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(46px, 4.8vw, 72px);
    line-height: 1;
}

.woocommerce-products-header {
    display: none;
}

.catalog-tools {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 var(--page-pad);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.catalog-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.catalog-filter-lines,
.catalog-filter-lines::before,
.catalog-filter-lines::after {
    display: block;
    width: 15px;
    height: 1px;
    background: currentColor;
    content: "";
}

.catalog-filter-lines::before {
    transform: translateY(-4px);
}

.catalog-filter-lines::after {
    width: 9px;
    transform: translateY(3px);
}

.catalog-tools__spacer {
    flex: 1;
}

.catalog-grid-icon {
    display: grid;
    grid-template-columns: repeat(2, 5px);
    grid-template-rows: repeat(2, 5px);
    gap: 3px;
    width: 30px;
    height: 30px;
    place-content: center;
    background: var(--soft);
}

.catalog-grid-icon i {
    width: 5px;
    height: 5px;
    background: currentColor;
}

.woocommerce-content > .woocommerce {
    padding: 0 var(--page-pad) var(--section-gap);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-top: 20px;
    margin-bottom: 26px;
}

.woocommerce .woocommerce-ordering select {
    min-height: 42px;
    padding: 0 42px 0 14px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 20px;
    clear: both;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    margin: 0 0 12px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: var(--soft);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.woocommerce ul.products li.product .price {
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.woocommerce span.onsale {
    top: 10px;
    right: 10px;
    left: auto;
    min-width: 0;
    min-height: 0;
    padding: 5px 8px;
    color: var(--paper);
    background: var(--ink);
    border-radius: 0;
    line-height: 1.4;
}

.woocommerce ul.products li.product .button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 12px;
    padding: 10px 14px;
    color: var(--paper);
    background: var(--ink);
    border-radius: 0;
}

.filter-drawer {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    width: min(420px, 92vw);
    height: 100dvh;
    padding: 0 28px 40px;
    overflow-y: auto;
    background: var(--paper);
    transform: translateX(-100%);
    transition: transform 240ms ease, visibility 240ms ease, opacity 240ms ease;
}

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

.filter-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    border-bottom: 1px solid var(--line);
}

.filter-drawer__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 32px;
}

.filter-drawer__content {
    padding-top: 26px;
}

.filter-backdrop,
.drawer-backdrop {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(20, 27, 36, 0.42);
    transition: opacity 240ms ease, visibility 240ms ease;
}

.filter-backdrop.is-open,
.drawer-backdrop.is-open {
    visibility: visible;
    opacity: 1;
}

.filter-widget {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.filter-widget__title {
    font-size: 15px;
}

/* Product */
.single-product .shop-shell {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
}

.single-product div.product {
    padding-top: 0;
}

.single-product div.product::after {
    display: table;
    clear: both;
    content: "";
}

.single-product div.product div.images,
.single-product div.product div.summary {
    margin-bottom: 80px;
}

.single-product div.product div.images {
    width: 65%;
}

.single-product div.product div.summary {
    position: sticky;
    top: 86px;
    width: 31%;
    padding: 28px 0 40px;
}

.single-product .product_title {
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: clamp(38px, 3.2vw, 54px);
    line-height: 1;
}

.single-product div.product p.price,
.single-product div.product span.price {
    color: var(--ink);
    font-size: 15px;
}

.single-product .woocommerce-product-details__short-description {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.single-product form.cart {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.single-product div.product form.cart .variations th {
    padding: 10px 14px 10px 0;
    text-align: left;
}

.single-product div.product form.cart .variations select {
    min-width: 160px;
    height: 46px;
    padding: 0 12px;
    background: var(--paper);
    border: 1px solid #aec8c4;
}

.single-product div.product form.cart .variations select.stride-select-enhanced {
    position: absolute;
    width: 1px;
    min-width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.stride-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 8px;
}

.stride-swatch {
    min-width: 66px;
    min-height: 46px;
    padding: 8px 14px;
    background: var(--paper);
    border: 1px solid #aec8c4;
    cursor: pointer;
}

.stride-swatch:hover,
.stride-swatch:focus-visible,
.stride-swatch.is-selected {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.stride-swatch:disabled {
    color: #9ca3af;
    background: var(--soft);
    border-color: var(--line);
    cursor: not-allowed;
    text-decoration: line-through;
}

.woocommerce .quantity .qty {
    height: 48px;
    border: 1px solid var(--line);
}

.woocommerce div.product form.cart .button,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.button {
    min-height: 48px;
    padding: 12px 22px;
    color: var(--paper);
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 0;
    font-weight: 600;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce .button:hover,
.button:hover {
    color: var(--paper);
    background: #3c495b;
}

.single-product .woocommerce-product-gallery__wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
}

.single-product .woocommerce-product-gallery__image {
    width: 100% !important;
}

.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    aspect-ratio: 1 / 1.32;
    object-fit: cover;
}

.single-product .flex-control-thumbs {
    display: none;
}

.single-product .product_meta {
    display: none;
}

.single-product .woocommerce-tabs,
.single-product .related {
    clear: both;
    padding-bottom: 84px;
}

.single-product .related > h2 {
    font-family: var(--font-display);
    font-size: 42px;
}

/* Cart, checkout, account and content */
.woocommerce-cart .shop-shell,
.woocommerce-checkout .shop-shell,
.woocommerce-account .shop-shell,
.content-shell {
    padding-top: 54px;
    padding-bottom: 96px;
}

.content-shell--narrow {
    max-width: 920px;
}

.page-heading {
    margin-bottom: 48px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.75;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 1.8em;
    font-family: var(--font-display);
    line-height: 1.1;
}

.entry-content h2 {
    font-size: 36px;
}

.entry-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-page {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
    gap: clamp(60px, 10vw, 160px);
    padding-top: 64px;
    padding-bottom: 120px;
}

.contact-page__eyebrow {
    margin-bottom: 18px;
    font-weight: 600;
}

.contact-page__intro h1 {
    max-width: 520px;
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(60px, 7vw, 104px);
    line-height: 0.94;
}

.contact-page__intro > p:last-child {
    max-width: 430px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contact-form label {
    align-self: end;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-width: 2px;
}

.contact-form .button {
    width: max-content;
    margin-top: 22px;
    cursor: pointer;
}

.contact-form__trap {
    position: absolute;
    left: -9999px;
}

.form-notice {
    margin-bottom: 24px;
    padding: 14px 16px;
    color: #7a271a;
    background: #fff0ed;
    border-left: 3px solid var(--accent);
}

.form-notice--success {
    color: #174b3c;
    background: #e9f6f1;
    border-color: #287c65;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
}

.post-card__image {
    display: block;
    margin-bottom: 18px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card h2 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.05;
}

.woocommerce table.shop_table {
    border-color: var(--line);
    border-radius: 0;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single {
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 0;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    border-top-color: var(--ink);
    background: var(--soft);
}

.empty-state {
    display: flex;
    min-height: 62vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.empty-state__code {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 16px;
}

.empty-state h1 {
    margin-bottom: 30px;
    font-family: var(--font-display);
    font-size: 68px;
    line-height: 1;
}

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

    .site-brand {
        grid-column: 2;
        justify-self: center;
    }

    .site-nav {
        display: none;
    }

    .mobile-menu-button {
        display: inline-grid;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .site-actions {
        gap: 0;
    }

    .desktop-account {
        display: none;
    }

    .mobile-drawer {
        position: fixed;
        z-index: 101;
        top: 0;
        left: 0;
        width: min(400px, 90vw);
        height: 100dvh;
        padding: 0 24px 32px;
        overflow-y: auto;
        background: var(--paper);
        transform: translateX(-100%);
        transition: transform 240ms ease, visibility 240ms ease, opacity 240ms ease;
    }

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

    .mobile-drawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
        border-bottom: 1px solid var(--line);
    }

    .mobile-nav__list,
    .mobile-nav .menu,
    .mobile-nav ul {
        margin: 0;
        padding: 22px 0;
        list-style: none;
    }

    .mobile-nav a {
        display: flex;
        align-items: center;
        min-height: 52px;
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
    }

    .mobile-drawer__account {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 54px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .home-hero {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 36px;
    }

    .home-hero__copy h1 {
        font-size: 68px;
    }

    .editorial-product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spotlight {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .single-product div.product div.images,
    .single-product div.product div.summary {
        float: none;
        width: 100%;
    }

    .single-product div.product div.summary {
        position: static;
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 700px) {
    :root {
        --page-pad: 16px;
        --section-gap: 72px;
        --header-height: 64px;
    }

    .site-header__inner {
        padding-right: 10px;
        padding-left: 10px;
    }

    .site-brand__text {
        font-size: 15px;
    }

    .search-dialog {
        padding-top: 70px;
    }

    .search-dialog__form {
        width: 100%;
    }

    .search-dialog__form label {
        font-size: 34px;
    }

    .home-hero {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding-top: 28px;
        padding-bottom: 46px;
    }

    .home-hero__copy h1 {
        max-width: 360px;
        font-size: 62px;
    }

    .home-hero__media {
        aspect-ratio: 1.18 / 1;
    }

    .editorial-product-grid,
    .woocommerce ul.products {
        gap: 28px 12px;
    }

    .editorial-card__media,
    .woocommerce ul.products li.product a img {
        aspect-ratio: 0.82 / 1;
    }

    .editorial-card__action {
        display: none;
    }

    .editorial-card__content h2,
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px;
    }

    .promo-banner {
        min-height: 520px;
    }

    .promo-banner__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-banner__content h2 {
        max-width: 420px;
        font-size: 58px;
    }

    .social-marquee__track span {
        height: 60px;
        padding: 0 22px;
        font-size: 24px;
    }

    .spotlight {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .spotlight__media {
        min-height: 470px;
    }

    .spotlight__content {
        min-height: 340px;
        padding: 34px 24px;
    }

    .spotlight__content h2 {
        font-size: 48px;
    }

    .brand-statement p {
        font-size: 44px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 54px;
        padding-bottom: 64px;
    }

    .footer-links {
        padding-top: 0;
    }

    .footer-heading--large {
        font-size: 36px;
    }

    .catalog-heading {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .catalog-heading h1 {
        font-size: 42px;
    }

    .woocommerce .woocommerce-result-count,
    .woocommerce .woocommerce-ordering {
        float: none;
        width: 100%;
    }

    .woocommerce .woocommerce-ordering select {
        width: 100%;
    }

    .single-product .shop-shell {
        padding-right: 0;
        padding-left: 0;
    }

    .single-product .woocommerce-breadcrumb,
    .single-product div.product div.summary,
    .single-product .woocommerce-tabs,
    .single-product .related {
        padding-right: var(--page-pad);
        padding-left: var(--page-pad);
    }

    .single-product .woocommerce-product-gallery__wrapper {
        gap: 1px;
    }

    .single-product .woocommerce-product-gallery__image img {
        aspect-ratio: 0.78 / 1;
    }

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

    .contact-page {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 38px;
        padding-bottom: 80px;
    }

    .contact-page__intro h1 {
        font-size: 58px;
    }

    .site-footer__utility {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 390px) {
    .home-hero__copy h1 {
        font-size: 54px;
    }

    .brand-statement p {
        font-size: 38px;
    }

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

    .newsletter-form button {
        justify-self: start;
        height: 42px;
        padding-left: 0;
    }
}
