:root {
    --nre-ink: #11100e;
    --nre-charcoal: #1b1a17;
    --nre-cream: #f2efe8;
    --nre-paper: #fbfaf6;
    --nre-white: #ffffff;
    --nre-gold: #b79d69;
    --nre-lime: #d7ff4d;
    --nre-line: #d9d2c4;
    --nre-muted: #6f6a61;
    --nre-shadow: 0 26px 72px rgba(17, 16, 14, 0.14);
    --nre-serif: Georgia, "Times New Roman", serif;
    --nre-sans: Inter, "Segoe UI", Arial, sans-serif;
    --nre-page: min(1440px, calc(100vw - 64px));
}

html {
    scroll-behavior: smooth;
}

body.nre-storefront {
    background: var(--nre-cream);
    color: var(--nre-ink);
    font-family: var(--nre-sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.nre-storefront img {
    display: block;
    height: auto;
    max-width: 100%;
}

body.nre-storefront a {
    color: inherit;
    text-decoration: none;
}

body.nre-storefront button,
body.nre-storefront input,
body.nre-storefront select,
body.nre-storefront textarea {
    border-radius: 0;
    font: inherit;
}

body.nre-storefront button,
body.nre-storefront a {
    -webkit-tap-highlight-color: transparent;
}

.nre-skip-link {
    background: var(--nre-lime);
    color: var(--nre-ink);
    font-size: 13px;
    font-weight: 800;
    left: 16px;
    padding: 12px 18px;
    position: fixed;
    top: -80px;
    z-index: 100000;
}

.nre-skip-link:focus {
    top: 16px;
}

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

.screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    white-space: normal;
    width: auto;
}

.nre-announcement {
    align-items: center;
    background: var(--nre-ink);
    color: rgba(255, 255, 255, 0.78);
    display: grid;
    font-size: 10px;
    grid-template-columns: 1fr auto 1fr;
    letter-spacing: 0.14em;
    min-height: 34px;
    padding: 7px max(24px, 4vw);
    text-transform: uppercase;
}

.nre-announcement span {
    color: var(--nre-lime);
    font-weight: 800;
}

.nre-announcement p {
    margin: 0;
    text-align: center;
}

.nre-announcement a {
    justify-self: end;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nre-site-header {
    background: rgba(251, 250, 246, 0.94);
    border-bottom: 1px solid rgba(17, 16, 14, 0.11);
    position: relative;
    z-index: 100;
}

.nre-site-header.is-stuck {
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(17, 16, 14, 0.08);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}

.admin-bar .nre-site-header.is-stuck {
    top: 32px;
}

.nre-header-inner {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    margin: 0 auto;
    max-width: 1680px;
    min-height: 84px;
    padding: 0 max(24px, 4vw);
}

.nre-brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    justify-self: start;
}

.nre-brand-mark {
    display: flex;
    height: 34px;
    position: relative;
    width: 46px;
}

.nre-brand-mark i {
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    height: 22px;
    position: absolute;
    top: 8px;
    transform: rotate(45deg) skew(-7deg, -7deg);
    width: 22px;
}

.nre-brand-mark i:nth-child(1) {
    left: 2px;
}

.nre-brand-mark i:nth-child(2) {
    height: 30px;
    left: 13px;
    top: 1px;
    width: 30px;
}

.nre-brand-mark i:nth-child(3) {
    left: 27px;
}

.nre-brand-copy {
    display: grid;
    line-height: 1;
}

.nre-brand-copy strong {
    font-family: var(--nre-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nre-brand-copy small {
    color: var(--nre-muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.28em;
    margin-top: 7px;
    text-transform: uppercase;
}

.nre-primary-navigation {
    justify-self: center;
}

.nre-menu,
.nre-primary-navigation ul {
    align-items: center;
    display: flex;
    gap: clamp(22px, 3vw, 48px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nre-primary-navigation a {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    padding: 31px 0;
    position: relative;
    text-transform: uppercase;
}

.nre-primary-navigation a::after {
    background: var(--nre-ink);
    bottom: 24px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.28s ease;
    width: 100%;
}

.nre-primary-navigation a:hover::after,
.nre-primary-navigation a:focus-visible::after,
.nre-primary-navigation .current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nre-header-actions {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-self: end;
}

.nre-search-link {
    height: 28px;
    position: relative;
    width: 28px;
}

.nre-search-link span {
    border: 1.5px solid currentColor;
    border-radius: 50%;
    height: 15px;
    left: 4px;
    position: absolute;
    top: 4px;
    width: 15px;
}

.nre-search-link span::after {
    background: currentColor;
    content: "";
    height: 1.5px;
    left: 11px;
    position: absolute;
    top: 12px;
    transform: rotate(45deg);
    width: 8px;
}

.nre-cart-link {
    align-items: center;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nre-cart-count {
    align-items: center;
    background: var(--nre-ink);
    border-radius: 50%;
    color: var(--nre-white);
    display: inline-flex;
    font-size: 9px;
    height: 22px;
    justify-content: center;
    letter-spacing: 0;
    min-width: 22px;
}

.nre-menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 42px;
    padding: 10px;
    width: 42px;
}

.nre-menu-toggle > span:not(.screen-reader-text) {
    background: currentColor;
    display: block;
    height: 1px;
    margin: 6px auto;
    transition: transform 0.25s ease;
    width: 22px;
}

.nre-hero {
    background: var(--nre-ink);
    color: var(--nre-white);
    height: clamp(650px, calc(100svh - 118px), 900px);
    isolation: isolate;
    min-height: 650px;
    overflow: hidden;
    position: relative;
}

.nre-hero-slides,
.nre-hero-slide,
.nre-hero-slide picture,
.nre-hero-slide img,
.nre-hero-slide video {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.nre-hero-slide {
    margin: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 0.9s ease, transform 6s ease;
}

.nre-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.nre-hero-slide img,
.nre-hero-slide video {
    filter: saturate(0.82) contrast(1.05);
    object-fit: cover;
    object-position: center;
}

.nre-hero-slide video + picture img {
    opacity: 0;
}

.nre-hero-slide.has-video-error video {
    display: none;
}

.nre-hero-slide.has-video-error video + picture img {
    opacity: 1;
}

.nre-hero-shade {
    background:
        linear-gradient(90deg, rgba(6, 6, 5, 0.9) 0%, rgba(6, 6, 5, 0.53) 45%, rgba(6, 6, 5, 0.08) 78%),
        linear-gradient(0deg, rgba(6, 6, 5, 0.72), transparent 58%);
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.nre-hero-copy {
    bottom: clamp(82px, 9vw, 136px);
    left: max(24px, 6vw);
    max-width: 890px;
    position: absolute;
    z-index: 3;
}

.nre-eyebrow {
    align-items: center;
    color: #ead8b4;
    display: flex;
    font-size: 10px;
    font-weight: 800;
    gap: 12px;
    letter-spacing: 0.26em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.nre-eyebrow::before {
    background: currentColor;
    content: "";
    height: 1px;
    width: 46px;
}

.nre-eyebrow-dark {
    color: #76684c;
}

.nre-hero h1,
.nre-section h2,
.nre-campaign h2,
.nre-final-callout h2,
.nre-page-heading h1,
.nre-shop-heading h1,
.nre-not-found h1 {
    font-family: var(--nre-serif);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.nre-hero h1 {
    font-size: clamp(66px, 8.2vw, 132px);
    line-height: 0.84;
    margin: 0 0 30px;
}

.nre-hero h1 em {
    color: var(--nre-lime);
    font-weight: 400;
}

.nre-hero-copy > p {
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.7;
    margin: 0 0 34px;
    max-width: 630px;
}

.nre-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nre-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.15em;
    min-height: 52px;
    padding: 0 26px;
    text-transform: uppercase;
    transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.nre-button:hover,
.nre-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    transform: translateY(-2px);
}

.nre-button-light {
    background: var(--nre-white);
    border-color: var(--nre-white);
    color: var(--nre-ink);
}

.nre-button-light:hover,
.nre-button-light:focus-visible {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.nre-button-ghost {
    border-color: rgba(255, 255, 255, 0.58);
    color: var(--nre-white);
}

.nre-button-ghost:hover,
.nre-button-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.nre-button-dark,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--nre-ink);
    border-color: var(--nre-ink);
    color: var(--nre-white);
}

.nre-button-dark:hover,
.nre-button-dark:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: #302d27;
    color: var(--nre-white);
}

.nre-hero-controls {
    align-items: center;
    bottom: 38px;
    display: flex;
    gap: 12px;
    position: absolute;
    right: max(24px, 5vw);
    z-index: 4;
}

.nre-hero-controls button {
    align-items: center;
    background: rgba(10, 10, 9, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: var(--nre-white);
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.nre-hero-controls > span {
    font-family: var(--nre-serif);
    font-size: 20px;
    min-width: 78px;
    text-align: center;
}

.nre-motion-toggle {
    font-size: 11px;
    margin-left: 8px;
}

.nre-signature {
    background: var(--nre-ink);
    color: var(--nre-white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 max(24px, 5vw);
}

.nre-signature > div {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    padding: 25px 30px;
}

.nre-signature > div:last-child {
    border-right: 0;
}

.nre-signature strong {
    display: block;
    font-family: var(--nre-serif);
    font-size: 18px;
    font-weight: 400;
}

.nre-signature small {
    color: rgba(255, 255, 255, 0.52);
    display: block;
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-top: 5px;
    text-transform: uppercase;
}

.nre-section {
    margin: 0 auto;
    max-width: 1680px;
    padding: clamp(90px, 10vw, 160px) max(24px, 5vw);
}

.nre-intro {
    align-items: center;
    display: grid;
    gap: clamp(28px, 4vw, 72px);
    grid-template-columns: minmax(300px, 0.8fr) minmax(300px, 0.9fr) minmax(220px, 0.55fr);
}

.nre-intro-copy h2 {
    font-size: clamp(48px, 5.6vw, 86px);
    line-height: 0.96;
    margin: 0 0 28px;
}

.nre-intro-copy p {
    color: var(--nre-muted);
    margin: 0 0 28px;
    max-width: 520px;
}

.nre-text-link {
    border-bottom: 1px solid currentColor;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 14px;
    letter-spacing: 0.12em;
    padding-bottom: 7px;
    text-transform: uppercase;
}

.nre-intro figure {
    margin: 0;
}

.nre-intro-product {
    background: var(--nre-paper);
    box-shadow: var(--nre-shadow);
}

.nre-intro-product img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.nre-intro-product figcaption {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 22px;
}

.nre-intro-product figcaption > span {
    color: var(--nre-gold);
    font-family: var(--nre-serif);
    font-size: 24px;
    grid-row: 1 / 3;
    margin-right: 16px;
}

.nre-intro-product strong {
    font-family: var(--nre-serif);
    font-size: 20px;
    font-weight: 400;
}

.nre-intro-product small {
    color: var(--nre-muted);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nre-intro-editorial {
    align-self: end;
    margin-bottom: -80px !important;
}

.nre-intro-editorial img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.nre-section-heading {
    align-items: end;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr minmax(280px, 480px);
    margin-bottom: clamp(42px, 6vw, 82px);
}

.nre-section-heading h2 {
    font-size: clamp(52px, 6vw, 92px);
    line-height: 0.9;
    margin: 0;
}

.nre-section-heading > p {
    color: var(--nre-muted);
    margin: 0;
}

.nre-shapes {
    padding-top: clamp(150px, 15vw, 240px);
}

.nre-shape-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.nre-shape-card {
    background: var(--nre-ink);
    color: var(--nre-white);
    min-height: 570px;
    overflow: hidden;
    position: relative;
}

.nre-shape-card::after {
    background: linear-gradient(0deg, rgba(8, 8, 7, 0.76), transparent 58%);
    content: "";
    inset: 0;
    position: absolute;
}

.nre-shape-card img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
    width: 100%;
}

.nre-shape-card:hover img,
.nre-shape-card:focus-visible img {
    transform: scale(1.035);
}

.nre-shape-card > span {
    bottom: 0;
    display: grid;
    left: 0;
    padding: 32px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.nre-shape-card small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nre-shape-card strong {
    font-family: var(--nre-serif);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    margin: 6px 0 14px;
}

.nre-shape-card i {
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nre-collection {
    max-width: none;
}

.nre-collection > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1540px;
}

.nre-products .woocommerce {
    width: 100%;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    gap: clamp(16px, 2vw, 30px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: var(--nre-paper);
    border: 1px solid var(--nre-line);
    float: none !important;
    margin: 0 !important;
    overflow: hidden;
    padding: 0 0 18px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: auto !important;
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--nre-shadow);
    transform: translateY(-7px);
}

.woocommerce ul.products li.product a img {
    aspect-ratio: 1 / 1;
    filter: saturate(0.86);
    margin: 0 0 18px;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
    width: 100%;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.025);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--nre-serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
    padding: 0 18px 7px;
}

.woocommerce ul.products li.product .price {
    color: var(--nre-muted);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    padding: 0 18px;
}

.woocommerce ul.products li.product .price ins {
    color: var(--nre-ink);
    text-decoration: none;
}

.woocommerce ul.products li.product .button {
    margin: 16px 18px 0;
    min-height: 43px;
    padding: 0 16px;
}

.woocommerce span.onsale {
    background: var(--nre-lime);
    border-radius: 0;
    color: var(--nre-ink);
    font-size: 9px;
    font-weight: 800;
    left: 12px;
    letter-spacing: 0.12em;
    line-height: 1;
    min-height: 0;
    min-width: 0;
    padding: 9px 11px;
    right: auto;
    text-transform: uppercase;
    top: 12px;
}

.nre-collection-link {
    margin-top: 52px;
    text-align: center;
}

.nre-empty-collection {
    border: 1px solid var(--nre-line);
    color: var(--nre-muted);
    padding: 48px;
    text-align: center;
}

.nre-campaign {
    background: var(--nre-charcoal);
    color: var(--nre-white);
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(320px, 0.75fr) minmax(360px, 1fr) minmax(260px, 0.58fr);
    min-height: 760px;
    padding: clamp(70px, 8vw, 130px) max(24px, 5vw);
}

.nre-campaign-copy {
    align-self: center;
    max-width: 520px;
    padding-right: 30px;
}

.nre-campaign h2 {
    font-size: clamp(48px, 5vw, 84px);
    line-height: 0.93;
    margin: 0 0 28px;
}

.nre-campaign-copy p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 28px;
}

.nre-campaign-copy > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    gap: 12px;
    letter-spacing: 0.14em;
    padding-bottom: 7px;
    text-transform: uppercase;
}

.nre-campaign figure {
    margin: 0;
    min-height: 540px;
    overflow: hidden;
}

.nre-campaign figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.nre-campaign-side {
    align-self: end;
    height: 68%;
}

.nre-final-callout {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(9, 9, 8, 0.82), rgba(9, 9, 8, 0.2)),
        url("../images/eyewear/nr-hero-260720.jpg") center 38% / cover;
    color: var(--nre-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 620px;
    padding: 80px 24px;
    text-align: center;
}

.nre-final-callout .nre-eyebrow {
    justify-content: center;
}

.nre-final-callout h2 {
    font-size: clamp(54px, 6vw, 98px);
    line-height: 0.92;
    margin: 0 0 34px;
    max-width: 980px;
}

.nre-site-footer {
    background: #0e0e0c;
    color: var(--nre-white);
    padding: 0 max(24px, 5vw);
}

.nre-footer-main {
    display: grid;
    gap: clamp(50px, 8vw, 140px);
    grid-template-columns: 1.2fr 0.55fr 0.85fr;
    padding: clamp(70px, 8vw, 120px) 0;
}

.nre-brand-inverse .nre-brand-copy small {
    color: rgba(255, 255, 255, 0.48);
}

.nre-footer-brand p,
.nre-footer-note p {
    color: rgba(255, 255, 255, 0.54);
    margin: 28px 0 0;
    max-width: 430px;
}

.nre-footer-main h2 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    letter-spacing: 0.2em;
    margin: 0 0 26px;
    text-transform: uppercase;
}

.nre-footer-menu {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nre-footer-menu a {
    font-family: var(--nre-serif);
    font-size: 20px;
}

.nre-footer-note > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    gap: 12px;
    letter-spacing: 0.13em;
    margin-top: 24px;
    padding-bottom: 7px;
    text-transform: uppercase;
}

.nre-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    font-size: 9px;
    justify-content: space-between;
    letter-spacing: 0.12em;
    padding: 22px 0;
    text-transform: uppercase;
}

.nre-content-shell,
.nre-commerce-shell {
    margin: 0 auto;
    max-width: 1540px;
    min-height: 60vh;
    padding: clamp(80px, 9vw, 140px) max(24px, 4vw);
}

.nre-page-heading,
.nre-shop-heading {
    margin-bottom: clamp(48px, 6vw, 88px);
    max-width: 920px;
}

.nre-page-heading h1,
.nre-shop-heading h1,
.nre-not-found h1 {
    font-size: clamp(54px, 7vw, 104px);
    line-height: 0.9;
    margin: 0;
}

.nre-page-heading .term-description,
.nre-shop-heading .term-description,
.nre-archive-description {
    color: var(--nre-muted);
    margin-top: 24px;
    max-width: 680px;
}

.nre-entry-content {
    margin: 0 auto;
    max-width: 1100px;
}

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

.nre-entry-content > .alignwide {
    max-width: 1100px;
}

.nre-entry-content > .alignfull {
    max-width: none;
}

.nre-entry-content h2,
.nre-entry-content h3 {
    font-family: var(--nre-serif);
    font-weight: 400;
    line-height: 1.05;
}

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

.nre-post-card,
.nre-search-card {
    background: var(--nre-paper);
    border: 1px solid var(--nre-line);
}

.nre-post-card img,
.nre-search-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.nre-post-card > div,
.nre-search-card > div {
    padding: 24px;
}

.nre-post-card time {
    color: var(--nre-muted);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nre-post-card h2,
.nre-search-card h2 {
    font-family: var(--nre-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    margin: 9px 0;
}

.nre-featured-image {
    margin: 0 0 60px;
}

.nre-not-found {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    min-height: 70vh;
    padding: 80px 24px;
}

.nre-not-found p,
.nre-empty-search p {
    color: var(--nre-muted);
    font-size: 18px;
    max-width: 580px;
}

.nre-not-found > div {
    align-items: center;
    display: flex;
    gap: 26px;
    margin-top: 20px;
}

.nre-search-form {
    display: flex;
    margin-top: 34px;
    max-width: 680px;
}

.nre-search-form label {
    flex: 1;
}

.nre-search-form input[type="search"] {
    background: var(--nre-paper);
    border: 1px solid var(--nre-line);
    min-height: 54px;
    padding: 0 18px;
    width: 100%;
}

.nre-search-form button {
    background: var(--nre-ink);
    border: 1px solid var(--nre-ink);
    color: var(--nre-white);
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 0 24px;
    text-transform: uppercase;
}

.woocommerce .woocommerce-breadcrumb {
    color: var(--nre-muted);
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 34px;
    text-transform: uppercase;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 34px;
}

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

.woocommerce div.product {
    margin-top: 18px;
}

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

.woocommerce div.product div.summary {
    padding: clamp(10px, 3vw, 50px) 0 0 clamp(20px, 5vw, 90px);
}

.woocommerce div.product .product_title {
    font-family: var(--nre-serif);
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.95;
    margin-bottom: 24px;
}

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

.woocommerce-product-details__short-description {
    color: var(--nre-muted);
    margin: 22px 0 30px;
}

.woocommerce div.product form.cart {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.woocommerce .quantity .qty {
    border: 1px solid var(--nre-line);
    min-height: 52px;
    width: 76px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid var(--nre-line);
    margin: 0 0 36px;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 0 24px 0 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 10px;
    letter-spacing: 0.13em;
    padding: 14px 0;
    text-transform: uppercase;
}

.woocommerce table.shop_table {
    background: var(--nre-paper);
    border: 1px solid var(--nre-line);
    border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: var(--nre-line);
    padding: 18px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
    background: var(--nre-paper);
    border: 1px solid var(--nre-line);
    border-radius: 0;
    min-height: 50px;
    padding: 11px 13px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    background: var(--nre-paper);
    border: 1px solid var(--nre-line);
    border-radius: 0;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    background: var(--nre-paper);
    border-top-color: var(--nre-gold);
}

.woocommerce-info::before,
.woocommerce-message::before {
    color: var(--nre-gold);
}

.woocommerce-checkout #payment {
    background: #e8e3d9;
    border-radius: 0;
}

.woocommerce-checkout #payment div.payment_box {
    background: var(--nre-paper);
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: var(--nre-paper);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    border-bottom: 1px solid var(--nre-line);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 13px 0;
    text-transform: uppercase;
}

.nre-reveal {
    opacity: 1;
    transform: none;
}

.nre-reveal-enabled .nre-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.75, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.nre-reveal-enabled .nre-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .nre-header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .nre-menu-toggle {
        display: none;
        grid-column: 2;
        justify-self: end;
    }

    .nre-primary-navigation {
        background: var(--nre-paper);
        border-bottom: 1px solid var(--nre-line);
        display: block;
        grid-column: 1 / -1;
        padding: 12px max(24px, 4vw) 24px;
        position: static;
    }

    .nre-navigation-enabled .nre-menu-toggle {
        display: block;
    }

    .nre-navigation-enabled .nre-primary-navigation {
        display: none;
        left: 0;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .nre-navigation-enabled .nre-primary-navigation.is-open {
        display: block;
    }

    .nre-primary-navigation ul,
    .nre-menu {
        align-items: flex-start;
        display: grid;
        gap: 0;
    }

    .nre-primary-navigation a {
        border-bottom: 1px solid var(--nre-line);
        display: block;
        padding: 15px 0;
    }

    .nre-primary-navigation a::after {
        display: none;
    }

    .nre-header-actions {
        grid-column: 3;
    }

    .nre-intro {
        grid-template-columns: 1fr 1fr;
    }

    .nre-intro-copy {
        grid-column: 1 / -1;
    }

    .nre-intro-editorial {
        margin-bottom: 0 !important;
    }

    .nre-shape-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nre-shape-wide {
        grid-column: 1 / -1;
    }

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

    .nre-campaign {
        grid-template-columns: 1fr 1fr;
    }

    .nre-campaign-copy {
        grid-column: 1 / -1;
        max-width: 800px;
        padding: 0 0 32px;
    }

    .nre-campaign-side {
        height: auto;
    }
}

@media (max-width: 782px) {
    .admin-bar .nre-site-header.is-stuck {
        top: 46px;
    }
}

@media (max-width: 760px) {
    .nre-announcement {
        grid-template-columns: 1fr auto;
    }

    .nre-announcement p {
        display: none;
    }

    .nre-header-inner {
        min-height: 70px;
        padding: 0 18px;
    }

    .nre-brand-copy strong {
        font-size: 17px;
    }

    .nre-brand-mark {
        transform: scale(0.82);
        transform-origin: left center;
        width: 39px;
    }

    .nre-header-actions {
        gap: 8px;
    }

    .nre-cart-link {
        font-size: 0;
        gap: 0;
    }

    .nre-search-link {
        display: none;
    }

    .nre-hero {
        height: 720px;
        min-height: 720px;
    }

    .nre-hero-slide img,
    .nre-hero-slide video {
        object-position: 58% center;
    }

    .nre-hero-shade {
        background: linear-gradient(0deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.08) 88%);
    }

    .nre-hero-copy {
        bottom: 118px;
        left: 20px;
        right: 20px;
    }

    .nre-hero h1 {
        font-size: clamp(58px, 16.5vw, 82px);
    }

    .nre-hero-copy > p {
        font-size: 14px;
    }

    .nre-hero-actions {
        display: grid;
    }

    .nre-hero-controls {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }

    .nre-hero-controls > span {
        flex: 1;
    }

    .nre-signature {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .nre-signature > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
        border-right: 0;
        padding: 20px 0;
    }

    .nre-signature > div:last-child {
        border-bottom: 0;
    }

    .nre-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nre-intro {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nre-intro-copy,
    .nre-intro-product,
    .nre-intro-editorial {
        grid-column: auto;
    }

    .nre-section-heading {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .nre-shape-grid {
        grid-template-columns: 1fr;
    }

    .nre-shape-wide {
        grid-column: auto;
    }

    .nre-shape-card {
        min-height: 520px;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products {
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 17px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .woocommerce ul.products li.product .price {
        padding-left: 12px;
        padding-right: 12px;
    }

    .woocommerce ul.products li.product .button {
        font-size: 8px;
        margin-left: 12px;
        margin-right: 12px;
        padding: 0 10px;
        width: calc(100% - 24px);
    }

    .nre-campaign {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }

    .nre-campaign-copy {
        grid-column: auto;
    }

    .nre-campaign figure {
        min-height: 480px;
    }

    .nre-footer-main {
        grid-template-columns: 1fr;
    }

    .nre-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .nre-post-list,
    .nre-search-results {
        grid-template-columns: 1fr;
    }

    .nre-content-shell,
    .nre-commerce-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .woocommerce div.product div.summary {
        padding-left: 0;
    }

    .nre-not-found > div {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nre-announcement a {
        display: none;
    }

    .nre-announcement {
        display: block;
        text-align: center;
    }

    .nre-hero-actions .nre-button {
        width: 100%;
    }

    .nre-motion-toggle {
        display: none !important;
    }

    .woocommerce ul.products li.product .button {
        min-height: 40px;
    }
}

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

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

    .nre-reveal-enabled .nre-reveal {
        opacity: 1;
        transform: none;
    }
}
