/* =========================================================
   Article prototype — square editorial longread V3
   File: /css/pages/article.css
   ========================================================= */

:root {
    --am-page: #f3efe8;
    --am-paper: #fffaf2;
    --am-ink: #151918;
    --am-muted: #68706a;
    --am-soft: #8b928b;
    --am-line: rgba(31, 37, 36, 0.14);
    --am-line-soft: rgba(31, 37, 36, 0.08);
    --am-accent: #9c5a3f;
    --am-dark: #151f1b;
    --am-container: 1380px;
    --am-article: 1080px;
}

.article-clean-square {
    margin: 0;
    background: var(--am-page);
    color: var(--am-ink);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

.article-clean-square main {
    display: block;
    overflow: hidden;
}

.article-clean-square img {
    display: block;
    max-width: 100%;
}

.article-clean-square * {
    border-radius: 0 !important;
}

.article {
    position: relative;
    isolation: isolate;
}

.article::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(31, 37, 36, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 37, 36, 0.026) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.42;
    pointer-events: none;
}

/* =========================================================
   01. ARTICLE MASTHEAD
   ========================================================= */

.article-masthead {
    position: relative;
    padding: clamp(72px, 8vw, 136px) 0 clamp(62px, 7vw, 108px);
}

.article-masthead__inner {
    width: min(var(--am-container), calc(100% - 72px));
    margin: 0 auto;
}

.article-masthead__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 760px;
    margin-bottom: clamp(46px, 5vw, 76px);
    border-top: 1px solid var(--am-line);
    border-bottom: 1px solid var(--am-line);
}

.article-masthead__meta span {
    min-height: 50px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--am-line-soft);
    color: var(--am-muted);
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.article-masthead__meta span:last-child {
    border-right: 0;
}

.article-masthead__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: clamp(48px, 7vw, 118px);
    align-items: start;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    color: var(--am-muted);
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-breadcrumbs a {
    text-decoration: none;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
    color: var(--am-accent);
}

.article-kicker,
.product-chapter__eyebrow,
.product-logic__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px;
    color: var(--am-accent);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.article-kicker::before,
.product-chapter__eyebrow::before,
.product-logic__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.article-masthead h1 {
    max-width: 930px;
    margin: 0;
    color: var(--am-ink);
    font-size: clamp(3.85rem, 6.9vw, 8.45rem);
    font-weight: 940;
    line-height: 0.88;
    letter-spacing: -0.072em;
    text-wrap: balance;
}

.article-masthead__intro {
    padding-top: clamp(42px, 5vw, 78px);
}

.article-masthead__intro p {
    max-width: 520px;
    margin: 0 0 22px;
    color: var(--am-muted);
    font-size: clamp(1.05rem, 1.18vw, 1.22rem);
    line-height: 1.75;
    letter-spacing: -0.005em;
}

.article-hero-image {
    width: min(980px, 100%);
    margin: clamp(58px, 6vw, 92px) auto 0;
}

.article-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    object-position: center 36%;
    box-shadow: 0 26px 74px rgba(31, 37, 36, 0.09);
}

.article-hero-image figcaption {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid var(--am-line);
    color: var(--am-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.article-hero-image figcaption::before {
    content: "hero image";
    color: var(--am-accent);
    font-size: 0.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* =========================================================
   02. INTRO COPY
   ========================================================= */

.article-intro-copy {
    width: min(var(--am-article), calc(100% - 72px));
    margin: 0 auto;
    padding: clamp(48px, 6vw, 86px) 0;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: clamp(42px, 6vw, 94px);
    border-top: 1px solid var(--am-line);
    border-bottom: 1px solid var(--am-line);
}

.article-intro-copy__side span {
    display: block;
    color: var(--am-accent);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.14em;
}

.article-intro-copy__side p {
    margin: 12px 0 0;
    color: var(--am-muted);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.article-intro-copy__text {
    columns: 2 320px;
    column-gap: clamp(40px, 5vw, 82px);
}

.article-intro-copy__text p {
    break-inside: avoid;
    margin: 0 0 22px;
    color: var(--am-ink);
    font-size: 1.04rem;
    line-height: 1.78;
    letter-spacing: -0.006em;
}

/* =========================================================
   03. PRODUCT CHAPTERS
   ========================================================= */

.product-chapter {
    position: relative;
    width: min(var(--am-container), calc(100% - 72px));
    margin: 0 auto;
    padding: clamp(82px, 8vw, 128px) 0 clamp(70px, 6.5vw, 108px);
    display: grid;
    grid-template-columns: minmax(390px, 0.74fr) minmax(520px, 0.94fr);
    grid-template-areas:
        "text visual"
        "related related"
        "logic logic";
    gap: clamp(30px, 3.6vw, 50px) clamp(56px, 7vw, 120px);
}

.product-chapter--reverse {
    grid-template-columns: minmax(520px, 0.94fr) minmax(390px, 0.74fr);
    grid-template-areas:
        "visual text"
        "related related"
        "logic logic";
}

.product-chapter+.product-chapter {
    padding-top: clamp(68px, 7vw, 108px);
}

.product-chapter__number {
    position: absolute;
    right: 0;
    top: clamp(72px, 8vw, 126px);
    color: rgba(31, 37, 36, 0.045);
    font-size: clamp(8rem, 16vw, 18rem);
    font-weight: 940;
    line-height: 0.72;
    letter-spacing: -0.12em;
    pointer-events: none;
}

.product-chapter__text {
    grid-area: text;
    position: relative;
    z-index: 2;
    align-self: center;
}

.product-chapter h2 {
    max-width: 760px;
    margin: 0;
    color: var(--am-ink);
    font-size: clamp(3.15rem, 5.45vw, 6.55rem);
    font-weight: 940;
    line-height: 0.88;
    letter-spacing: -0.068em;
    text-wrap: balance;
}

.product-chapter__lead {
    max-width: 700px;
    margin: 28px 0 0;
    color: var(--am-muted);
    font-size: clamp(1.08rem, 1.22vw, 1.28rem);
    font-weight: 620;
    line-height: 1.68;
    letter-spacing: -0.006em;
}

.product-chapter__text p:not(.product-chapter__lead):not(.product-chapter__eyebrow) {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--am-ink);
    font-size: 1.02rem;
    line-height: 1.78;
    letter-spacing: -0.004em;
}

.product-chapter__visual {
    grid-area: visual;
    align-self: center;
}

.product-photo {
    margin: 0;
    overflow: hidden;
    box-shadow: 0 30px 82px rgba(31, 37, 36, 0.1);
}

.product-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: center top;
}

.product-buyline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--am-line);
}

.product-buyline p {
    max-width: 520px;
    margin: 0;
    color: var(--am-muted);
    font-size: 0.96rem;
    line-height: 1.52;
}

.product-buyline a {
    min-height: 48px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--am-dark);
    color: #fffaf2;
    text-decoration: none;
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(31, 37, 36, 0.12);
    transition: transform 180ms ease, background-color 180ms ease;
}

.product-buyline a:hover,
.product-buyline a:focus-visible {
    transform: translateY(-2px);
    background: var(--am-accent);
}

/* =========================================================
   04. RELATED PRODUCT GRID
   ========================================================= */

.related-products {
    grid-area: related;
    margin-top: clamp(4px, 0.8vw, 10px);
    background: rgba(255, 250, 242, 0.24);
    border-top: 1px solid var(--am-line);
}

.related-products__heading {
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: 32px;
    align-items: end;
    padding: 21px 0 18px;
    border-bottom: 1px solid var(--am-line-soft);
}

.related-products__heading span {
    display: block;
    color: var(--am-accent);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.related-products__heading p {
    max-width: 520px;
    margin: 0;
    color: var(--am-ink);
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: -0.022em;
}

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

.related-card {
    min-height: 164px;
    padding: 22px 20px 21px 106px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid var(--am-line-soft);
    border-bottom: 1px solid var(--am-line-soft);
    transition: background-color 180ms ease, transform 180ms ease;
}


.related-card:nth-child(3n) {
    border-right: 0;
}

.related-card:hover,
.related-card:focus-visible {
    background: rgba(255, 250, 242, 0.72);
    transform: translateY(-2px);
}

.related-card img {
    position: absolute;
    left: 17px;
    top: 50%;
    width: 76px;
    height: 76px;
    object-fit: contain;
    object-position: center top;
    transform: translateY(-50%);
}

.related-card span {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    color: var(--am-accent);
    font-size: 0.54rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.related-card strong {
    color: var(--am-ink);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.034em;
}

.related-card p {
    margin: 7px 0 0;
    color: var(--am-muted);
    font-size: 0.86rem;
    line-height: 1.42;
}

/* =========================================================
   05. PRODUCT LOGIC / SPEC BLOCK
   ========================================================= */

.product-logic {
    grid-area: logic;
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 0.92fr);
    gap: clamp(44px, 5.4vw, 90px);
    align-items: center;
}

.product-logic__media {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
    height: clamp(500px, 42vw, 660px);
}

.product-logic__image {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 22px 64px rgba(31, 37, 36, 0.09);
}

.product-logic__image--large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.product-logic__image--top {
    grid-column: 2;
    grid-row: 1;
}

.product-logic__image--bottom {
    grid-column: 2;
    grid-row: 2;
}

.product-logic__media--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    height: clamp(430px, 36vw, 580px);
}

.product-logic__media--two .product-logic__image--large,
.product-logic__media--two .product-logic__image--side {
    grid-row: 1;
    width: 100%;
    height: 100%;
}

.product-logic__copy h3 {
    max-width: 680px;
    margin: 0;
    color: var(--am-ink);
    font-size: clamp(2.15rem, 3.6vw, 4.25rem);
    font-weight: 930;
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.product-logic__copy p:not(.product-logic__eyebrow) {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--am-ink);
    font-size: 1rem;
    line-height: 1.76;
    letter-spacing: -0.004em;
}

.product-specs {
    max-width: 680px;
    margin: 31px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--am-line);
    border-left: 1px solid var(--am-line-soft);
}

.product-specs div {
    min-height: 92px;
    padding: 18px 18px 17px;
    border-right: 1px solid var(--am-line-soft);
    border-bottom: 1px solid var(--am-line-soft);
    background: rgba(255, 250, 242, 0.28);
}

.product-specs dt {
    margin: 0 0 8px;
    color: var(--am-accent);
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-specs dd {
    margin: 0;
    color: var(--am-ink);
    font-size: 0.96rem;
    font-weight: 720;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

/* =========================================================
   06. MOTION
   ========================================================= */

.float-photo {
    animation: amPhotoFloat 8s ease-in-out infinite;
}

.float-photo--late {
    animation-delay: -2.4s;
}

.reveal-block {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes amPhotoFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

/* =========================================================
   07. RESPONSIVE
   ========================================================= */

@media (max-width: 1220px) {

    .article-masthead__grid,
    .product-chapter,
    .product-chapter--reverse {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "visual"
            "related"
            "logic";
    }

    .article-masthead__intro {
        padding-top: 0;
    }

    .article-masthead__intro p {
        max-width: 760px;
    }

    .product-chapter__text,
    .product-chapter__visual {
        max-width: 820px;
    }

    .product-chapter__number {
        right: 0;
        top: 90px;
    }

    .product-logic {
        grid-template-columns: 1fr;
        max-width: 920px;
    }

    .product-logic__media {
        min-height: 640px;
        max-width: 760px;
    }
}

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

    .related-card:nth-child(3n) {
        border-right: 1px solid var(--am-line-soft);
    }

    .related-card:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 760px) {

    .article-masthead__inner,
    .article-intro-copy,
    .product-chapter,
    .product-chapter--reverse {
        width: min(100% - 32px, var(--am-container));
    }

    .article-masthead {
        padding-top: 58px;
    }

    .article-masthead__meta {
        grid-template-columns: 1fr;
    }

    .article-masthead__meta span {
        border-right: 0;
        border-bottom: 1px solid var(--am-line-soft);
    }

    .article-masthead__meta span:last-child {
        border-bottom: 0;
    }

    .article-masthead h1 {
        font-size: clamp(2.82rem, 14.4vw, 4.95rem);
        line-height: 0.94;
        letter-spacing: -0.052em;
    }

    .article-hero-image figcaption {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .article-intro-copy {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .article-intro-copy__text {
        columns: auto;
    }

    .product-chapter {
        padding: 70px 0;
        gap: 30px;
    }

    .product-chapter__number {
        display: none;
    }

    .product-chapter h2 {
        font-size: clamp(2.42rem, 12.6vw, 4.05rem);
        line-height: 0.94;
        letter-spacing: -0.052em;
    }

    .product-chapter__lead,
    .product-chapter__text p:not(.product-chapter__lead):not(.product-chapter__eyebrow) {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .product-buyline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-buyline a {
        width: 100%;
    }

    .related-products__heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .related-card {
        min-height: 148px;
        padding-left: 106px;
    }

    .related-card img {
        width: 64px;
        height: 82px;
    }

    .product-logic {
        margin-top: 20px;
        gap: 28px;
    }

    .product-logic__media {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .product-logic__image,
    .product-logic__image--large,
    .product-logic__image--top,
    .product-logic__image--bottom,
    .product-logic__media--two .product-logic__image--large,
    .product-logic__media--two .product-logic__image--side {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .product-logic__copy h3 {
        font-size: clamp(1.88rem, 9vw, 2.95rem);
        line-height: 1;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .related-products__grid {
        grid-template-columns: 1fr;
    }

    .related-card,
    .related-card:nth-child(2n),
    .related-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 460px) {

    .article-masthead__inner,
    .article-intro-copy,
    .product-chapter,
    .product-chapter--reverse {
        width: min(100% - 24px, var(--am-container));
    }

    .related-products__heading {
        padding: 20px 0 16px;
    }

    .related-card {
        padding: 18px 18px 18px 94px;
    }

    .related-card img {
        left: 18px;
        width: 58px;
        height: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .float-photo,
    .reveal-block {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .product-buyline a,
    .related-card {
        transition: none;
    }
}

/* =========================================================
   V5 PATCH — section number, related grid heading, logic notes
   ========================================================= */

/* 01. Keep background chapter numbers tied to text column, not whole section */
.product-chapter__number {
    display: none;
}

.product-chapter__text {
    isolation: isolate;
}

.product-chapter__text::after {
    content: attr(data-number);
    position: absolute;
    right: -0.04em;
    top: -0.18em;
    z-index: -1;
    color: rgba(31, 37, 36, 0.045);
    font-size: clamp(7.4rem, 13.5vw, 15rem);
    font-weight: 940;
    line-height: 0.72;
    letter-spacing: -0.12em;
    pointer-events: none;
}

/* 02. Cleaner related-products intro — no awkward rule/header strip */
.related-products {
    margin-top: clamp(4px, 0.7vw, 10px);
    background: transparent;
    border-top: 0;
}

.related-products__heading {
    display: block;
    padding: 0 0 17px;
    margin: 0 0 0;
    border-bottom: 0;
}

.related-products__heading span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
}

.related-products__heading span::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.75;
}

.related-products__heading p {
    max-width: 640px;
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    line-height: 1.25;
    letter-spacing: -0.026em;
}

.related-products__grid {
    border-top: 1px solid var(--am-line);
    border-left: 1px solid var(--am-line-soft);
}

.related-card {
    border-right: 1px solid var(--am-line-soft) !important;
    border-bottom: 1px solid var(--am-line-soft);
    background: rgba(255, 250, 242, 0.2);
}

.related-card:nth-child(3n) {
    border-right: 1px solid var(--am-line-soft) !important;
}

/* 03. Product-logic text block — less loud, less card-like */
.product-logic {
    margin-top: clamp(28px, 3vw, 48px);
}

.product-logic__copy h3 {
    max-width: 640px;
    font-size: clamp(1.62rem, 2.7vw, 3.18rem);
    line-height: 1;
    letter-spacing: -0.048em;
}

.product-logic__copy p:not(.product-logic__eyebrow) {
    max-width: 620px;
    margin-top: 22px;
    color: var(--am-muted);
}

.product-checklist {
    max-width: 680px;
    margin: 31px 0 0;
    padding: 0;
    display: grid;
    gap: 18px;
    list-style: none;
}

.product-checklist li {
    position: relative;
    min-height: 42px;
    padding-left: 50px;
    color: var(--am-muted);
}

.product-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.02em;
    color: var(--am-accent);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1;
}

.product-checklist strong {
    display: block;
    margin-bottom: 4px;
    color: var(--am-ink);
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.036em;
}

.product-checklist span {
    display: block;
    color: var(--am-muted);
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    line-height: 1.46;
    letter-spacing: -0.01em;
}

@media (max-width: 1220px) {
    .product-chapter__text::after {
        right: 0;
        top: -0.2em;
        font-size: clamp(7rem, 20vw, 13rem);
    }
}

@media (max-width: 760px) {
    .product-chapter__text::after {
        display: none;
    }

    .related-products__heading {
        padding-bottom: 14px;
    }

    .related-products__grid {
        border-left: 0;
    }

    .related-card {
        border-right: 0 !important;
    }

    .product-logic__copy h3 {
        font-size: clamp(1.78rem, 8.4vw, 2.58rem);
        line-height: 1.02;
    }

    .product-checklist {
        gap: 16px;
    }

    .product-checklist li {
        padding-left: 42px;
    }
}

/* =========================================================
   V6 PATCH — practical logic note with red rule
   ========================================================= */

.product-fieldnote {
    position: relative;
    max-width: 650px;
    margin: 30px 0 0 !important;
    padding-left: 54px;
    color: var(--am-muted) !important;
    font-size: clamp(0.98rem, 1vw, 1.08rem) !important;
    font-weight: 650;
    line-height: 1.58 !important;
    letter-spacing: -0.012em;
}

.product-fieldnote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.82em;
    width: 34px;
    height: 1px;
    background: var(--am-accent);
    opacity: 0.86;
}

.product-checklist li {
    min-height: 54px;
}

.product-checklist strong {
    margin-bottom: 6px;
}

@media (max-width: 760px) {
    .product-fieldnote {
        margin-top: 24px !important;
        padding-left: 42px;
        font-size: 0.94rem !important;
    }

    .product-fieldnote::before {
        width: 26px;
    }
}

@media (max-width: 460px) {
    .product-fieldnote {
        padding-left: 0;
    }

    .product-fieldnote::before {
        position: static;
        display: block;
        margin-bottom: 13px;
    }
}


/* =========================================================
   V7 PATCH — variation note under mini cards
   ========================================================= */
.related-variation {
    position: relative;
    display: grid;
    grid-template-columns: minmax(170px, 0.26fr) minmax(0, 1fr);
    gap: clamp(22px, 3vw, 46px);
    align-items: start;
    padding: clamp(23px, 2.4vw, 34px) clamp(22px, 2.6vw, 38px);
    border-left: 1px solid var(--am-line-soft);
    border-right: 1px solid var(--am-line-soft);
    border-bottom: 1px solid var(--am-line-soft);
    background: rgba(255, 250, 242, 0.18);
}

.related-variation::before {
    content: "";
    position: absolute;
    left: clamp(22px, 2.6vw, 38px);
    top: -1px;
    width: 72px;
    height: 2px;
    background: var(--am-accent);
}

.related-variation span {
    display: block;
    color: var(--am-accent);
    font-size: 0.63rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.related-variation p {
    max-width: 860px;
    margin: 0;
    color: var(--am-muted);
    font-size: clamp(0.98rem, 1.03vw, 1.08rem);
    font-weight: 560;
    line-height: 1.68;
    letter-spacing: -0.012em;
}

.related-products__grid+.related-variation {
    margin-top: 0;
}

@media (max-width: 760px) {
    .related-variation {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 20px;
        border-left: 0;
        border-right: 0;
    }

    .related-variation::before {
        left: 20px;
        width: 52px;
    }

    .related-variation p {
        font-size: 0.94rem;
        line-height: 1.58;
    }
}

/* =========================================================
   V8 PATCH — a softer editorial layer
   Small italic notes, softer accent rhythm, no rounded corners
   ========================================================= */

:root {
    --am-blush: #c99078;
    --am-blush-soft: rgba(201, 144, 120, 0.12);
    --am-ink-soft: rgba(21, 25, 24, 0.74);
    --am-script: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

.article-masthead__titleblock {
    position: relative;
}

.article-masthead__titleblock::after {
    content: "quietly pretty";
    position: absolute;
    right: clamp(12px, 4vw, 68px);
    bottom: clamp(-54px, -3.4vw, -34px);
    z-index: -1;
    color: rgba(156, 90, 63, 0.18);
    font-family: var(--am-script);
    font-size: clamp(2.5rem, 5.3vw, 6.6rem);
    font-style: italic;
    font-weight: 600;
    line-height: 0.86;
    letter-spacing: -0.045em;
    white-space: nowrap;
    pointer-events: none;
    animation: amScriptFloat 12s ease-in-out infinite;
}

.article-softline,
.article-script-note,
.article-reader-softnote,
.product-softline {
    font-family: var(--am-script);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.018em;
}

.article-softline {
    position: relative;
    max-width: 620px;
    margin: clamp(22px, 2.4vw, 34px) 0 0;
    padding-left: 58px;
    color: var(--am-blush);
    font-size: clamp(1.78rem, 2.55vw, 3.12rem);
    line-height: 1;
}

.article-softline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.82;
}

.article-script-note {
    position: relative;
    max-width: 520px !important;
    margin-top: 28px !important;
    padding-left: 46px;
    color: rgba(156, 90, 63, 0.78) !important;
    font-size: clamp(1.5rem, 2vw, 2.18rem) !important;
    line-height: 1.05 !important;
}

.article-script-note::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 30px;
    height: 1px;
    background: currentColor;
}

.article-reader-softnote {
    column-span: all;
    position: relative;
    max-width: 520px;
    margin: 8px 0 0 !important;
    padding-left: 52px;
    color: var(--am-blush) !important;
    font-size: clamp(1.42rem, 1.8vw, 2rem) !important;
    line-height: 1.06 !important;
}

.article-reader-softnote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64em;
    width: 34px;
    height: 1px;
    background: currentColor;
}

.product-chapter__text::before {
    content: "";
    position: absolute;
    left: -32px;
    top: clamp(74px, 8vw, 132px);
    z-index: -1;
    width: clamp(120px, 12vw, 220px);
    height: clamp(120px, 12vw, 220px);
    border: 1px solid rgba(156, 90, 63, 0.075);
    opacity: 0.78;
    pointer-events: none;
    animation: amSoftCircle 15s ease-in-out infinite;
}

.product-softline {
    position: relative;
    max-width: 520px;
    margin: 22px 0 0 !important;
    padding-left: 50px;
    color: var(--am-blush) !important;
    font-size: clamp(1.44rem, 2vw, 2.32rem) !important;
    line-height: 1.03 !important;
}

.product-softline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 32px;
    height: 1px;
    background: currentColor;
}

.related-products__heading {
    position: relative;
}

.related-products__heading::after {
    content: "edited, not endless";
    position: absolute;
    right: 0;
    bottom: 17px;
    color: rgba(156, 90, 63, 0.28);
    font-family: var(--am-script);
    font-size: clamp(1.5rem, 2.1vw, 2.7rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    pointer-events: none;
}

.related-card {
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.34), rgba(255, 250, 242, 0.16));
}

.related-card:hover,
.related-card:focus-visible {
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.82), rgba(255, 250, 242, 0.42));
}

.product-fieldnote {
    max-width: 720px;
}

.product-fieldnote strong,
.related-variation strong {
    color: var(--am-ink);
}

.product-logic__copy {
    position: relative;
}

.product-logic__copy::after {
    content: "Mei's note";
    position: absolute;
    right: clamp(0px, 1vw, 18px);
    bottom: -34px;
    color: rgba(156, 90, 63, 0.18);
    font-family: var(--am-script);
    font-size: clamp(2.2rem, 3.5vw, 4.8rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.045em;
    pointer-events: none;
    animation: amScriptFloat 13.5s ease-in-out infinite reverse;
}

.float-script {
    animation: amScriptFloat 11s ease-in-out infinite;
}

@keyframes amScriptFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-0.65deg);
    }

    50% {
        transform: translate3d(8px, -7px, 0) rotate(0.65deg);
    }
}

@keyframes amSoftCircle {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.54;
    }

    50% {
        transform: translate3d(12px, -10px, 0) scale(1.04);
        opacity: 0.78;
    }
}

@media (max-width: 1220px) {
    .related-products__heading::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .article-masthead__titleblock::after {
        right: auto;
        left: 8px;
        bottom: -44px;
        font-size: clamp(2.1rem, 13vw, 4.1rem);
        opacity: 0.14;
    }

    .article-softline {
        padding-left: 42px;
        font-size: clamp(1.42rem, 8vw, 2.25rem);
    }

    .article-softline::before {
        width: 28px;
    }

    .article-script-note,
    .article-reader-softnote,
    .product-softline {
        padding-left: 38px;
        font-size: clamp(1.28rem, 7vw, 1.82rem) !important;
    }

    .article-script-note::before,
    .article-reader-softnote::before,
    .product-softline::before {
        width: 24px;
    }

    .product-chapter__text::before {
        display: none;
    }

    .product-logic__copy::after {
        display: none;
    }
}

@media (max-width: 460px) {

    .article-softline,
    .article-script-note,
    .article-reader-softnote,
    .product-softline {
        padding-left: 0;
    }

    .article-softline::before,
    .article-script-note::before,
    .article-reader-softnote::before,
    .product-softline::before {
        position: static;
        display: block;
        margin-bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .float-script,
    .article-masthead__titleblock::after,
    .product-chapter__text::before,
    .product-logic__copy::after {
        animation: none !important;
    }
}


/* =========================================================
   V2 FIX — mobile reveal timing
   Mobile scroll should not show empty space before content appears.
   ========================================================= */

@media (max-width: 760px) {
    .reveal-block {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* =========================================================
   PRODUCT LOGIC — mixed image-count layouts
   Supports 1, 2, or 3 scene images per section.
   ========================================================= */

.product-logic__media--one {
    display: block;
    height: auto;
    max-width: 640px;
}

.product-logic__media--one .product-logic__image--large {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.product-logic__media--two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 14px;
    height: clamp(430px, 36vw, 580px);
}

.product-logic__media--two .product-logic__image--large,
.product-logic__media--two .product-logic__image--side {
    grid-column: auto;
    grid-row: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
}

.product-logic__media--three {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
    height: clamp(500px, 42vw, 660px);
}

@media (max-width: 1180px) {
    .product-logic__media--one {
        min-height: 0;
        max-width: 720px;
    }

    .product-logic__media--two {
        min-height: 0;
        max-width: 760px;
    }
}

@media (max-width: 900px) {

    .product-logic__media--one,
    .product-logic__media--two,
    .product-logic__media--three {
        height: auto;
        min-height: 0;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .product-logic__media--one .product-logic__image--large,
    .product-logic__media--two .product-logic__image--large,
    .product-logic__media--two .product-logic__image--side,
    .product-logic__media--three .product-logic__image--large,
    .product-logic__media--three .product-logic__image--top,
    .product-logic__media--three .product-logic__image--bottom {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        object-position: center top;
    }
}

/* =========================================================
   07. KITCHEN DISCLOSURE HERO
   Standalone editorial disclosure mini-hero
   Hero-style wide composition
   ========================================================= */


/* ---------- 07. DISCLOSURE HERO / section base ---------- */

.kitchen-disclosure-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(18px, 6.2vw, 80px) 0 clamp(94px, 6.8vw, 130px);
    background: var(--ks-bg);
    color: var(--ks-ink);
}

.kitchen-disclosure-hero::before {
    content: "";
    position: absolute;
    top: 18%;
    right: -7vw;
    z-index: -5;
    width: 56vw;
    height: 64%;
    background: rgba(95, 108, 88, 0.082);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 82%);
    pointer-events: none;
}

.kitchen-disclosure-hero::after {
    content: "";
    position: absolute;
    left: -9vw;
    top: 20%;
    z-index: -5;
    width: 31vw;
    height: 31vw;
    min-width: 390px;
    min-height: 390px;
    border: 1px solid rgba(31, 37, 36, 0.058);
    border-radius: 50%;
    pointer-events: none;
}


/* ---------- 07. DISCLOSURE HERO / layout ---------- */

.kitchen-disclosure-hero__inner {
    position: relative;
    z-index: 2;
    width: min(var(--ks-container), calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(640px, 1.08fr);
    grid-template-areas:
        "copy visual"
        "copy rail";
    gap: 20px clamp(56px, 6vw, 96px);
    align-items: center;
}

.kitchen-disclosure-hero__inner::before {
    content: "";
    position: absolute;
    right: 22px;
    top: 18px;
    z-index: -3;
    width: clamp(260px, 26vw, 420px);
    height: clamp(220px, 22vw, 340px);
    border: 1px solid rgba(31, 37, 36, 0.055);
    background:
        linear-gradient(90deg,
            rgba(31, 37, 36, 0.023) 1px,
            transparent 1px),
        linear-gradient(rgba(31, 37, 36, 0.019) 1px,
            transparent 1px);
    background-size: 38px 38px;
    opacity: 0.52;
    transform: rotate(1.8deg);
    animation: kitchenFloatSlow 9s ease-in-out infinite;
    pointer-events: none;
}

.kitchen-disclosure-hero__inner::after {
    content: "DISCLOSURE";
    position: absolute;
    left: 36%;
    bottom: 20px;
    z-index: -3;
    color: rgba(31, 37, 36, 0.031);
    font-size: clamp(4.2rem, 8vw, 10rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: 0.045em;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
}


/* ---------- 07. DISCLOSURE HERO / copy ---------- */

.kitchen-disclosure-hero__copy {
    grid-area: copy;
    position: relative;
    min-height: 520px;
    padding: 26px 0 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: kitchenFadeUp 720ms var(--ks-ease) both;
}

.kitchen-disclosure-hero__copy::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 82px;
    width: 4px;
    height: 104px;
    background: var(--ks-accent);
}

.kitchen-disclosure-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 22px;
    color: var(--ks-accent-dark);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.kitchen-disclosure-hero__eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.82;
}

.kitchen-disclosure-hero__title {
    max-width: 760px;
    margin: 0;
    color: var(--ks-heading);
    font-size: clamp(3.1rem, 5.2vw, 6.35rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.092em;
    text-wrap: balance;
}

.kitchen-disclosure-hero__text {
    position: relative;
    max-width: 635px;
    margin: 28px 0 0;
    padding: 18px 24px 19px 25px;
    border-left: 3px solid rgba(183, 111, 74, 0.54);
    background: rgba(255, 250, 242, 0.52);
    color: #505a55;
    font-size: clamp(1.02rem, 1.08vw, 1.18rem);
    font-weight: 520;
    line-height: 1.7;
    letter-spacing: -0.012em;
    box-shadow: 0 14px 34px rgba(31, 37, 36, 0.035);
    backdrop-filter: blur(6px);
}

.kitchen-disclosure-hero__rule {
    position: relative;
    max-width: 540px;
    margin-top: 30px;
    padding: 24px 28px 25px;
    overflow: hidden;
    background: rgba(255, 250, 242, 0.74);
    border: 1px solid rgba(31, 37, 36, 0.105);
    box-shadow: 0 18px 44px rgba(31, 37, 36, 0.055);
    animation: kitchenFloatCard 7s ease-in-out infinite;
}

.kitchen-disclosure-hero__rule::before {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-bottom: 15px;
    background: var(--ks-accent);
}

.kitchen-disclosure-hero__rule::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(183, 111, 74, 0.065);
    pointer-events: none;
}

.kitchen-disclosure-hero__rule span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    color: var(--ks-accent-dark);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.kitchen-disclosure-hero__rule p {
    position: relative;
    z-index: 1;
    max-width: 430px;
    margin: 0;
    color: var(--ks-heading);
    font-size: clamp(1.06rem, 1.18vw, 1.3rem);
    font-weight: 780;
    line-height: 1.24;
    letter-spacing: -0.04em;
}


/* ---------- 07. DISCLOSURE HERO / visual ---------- */

.kitchen-disclosure-hero__visual {
    grid-area: visual;
    position: relative;
    min-height: 510px;
    animation: kitchenFadeIn 820ms var(--ks-ease) 120ms both;
}

.kitchen-disclosure-hero__visual::before {
    content: "";
    position: absolute;
    right: 34px;
    top: -26px;
    z-index: -2;
    width: min(650px, 100%);
    height: 455px;
    border: 1px solid rgba(31, 37, 36, 0.075);
    background:
        linear-gradient(90deg,
            rgba(31, 37, 36, 0.026) 1px,
            transparent 1px),
        linear-gradient(rgba(31, 37, 36, 0.021) 1px,
            transparent 1px),
        radial-gradient(circle at 18% 24%,
            rgba(183, 111, 74, 0.11) 0 1.5px,
            transparent 2px),
        radial-gradient(circle at 74% 72%,
            rgba(95, 108, 88, 0.12) 0 1.5px,
            transparent 2px);
    background-size:
        38px 38px,
        38px 38px,
        42px 42px,
        54px 54px;
    opacity: 0.74;
    transform: rotate(1.2deg);
    animation: kitchenFloatSoft 10s ease-in-out infinite;
    pointer-events: none;
}

.kitchen-disclosure-hero__visual::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: 58px;
    z-index: -1;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(31, 37, 36, 0.06);
    background:
        repeating-linear-gradient(-45deg,
            rgba(143, 78, 53, 0.065) 0,
            rgba(143, 78, 53, 0.065) 1px,
            transparent 1px,
            transparent 10px);
    opacity: 0.62;
    animation: kitchenFloatSlow 11s ease-in-out infinite;
    pointer-events: none;
}

.kitchen-disclosure-hero__photo {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    height: 510px;
    margin: 0 0 0 auto;
    overflow: hidden;
    background: #d8d1c7;
    box-shadow: var(--ks-shadow-lg);
    animation: kitchenFloatCard 7.5s ease-in-out infinite;
}

.kitchen-disclosure-hero__photo::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 242, 0.42);
    pointer-events: none;
}

.kitchen-disclosure-hero__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(21, 25, 24, 0.015),
            rgba(21, 25, 24, 0.14)),
        linear-gradient(110deg,
            rgba(255, 250, 242, 0.07),
            transparent 45%);
    pointer-events: none;
}

.kitchen-disclosure-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    animation: kitchenImageDrift 14s ease-in-out infinite alternate;
}

.kitchen-disclosure-hero__badge {
    position: absolute;
    left: -34px;
    bottom: 38px;
    z-index: 4;
    width: min(430px, 58%);
    padding: 27px 31px 29px;
    overflow: hidden;
    background: var(--ks-charcoal);
    color: var(--ks-surface);
    box-shadow: 0 30px 76px rgba(31, 37, 36, 0.2);
    animation: kitchenFloatCard 7s ease-in-out 400ms infinite;
}

.kitchen-disclosure-hero__badge::before {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-bottom: 15px;
    background: var(--ks-accent-soft);
}

.kitchen-disclosure-hero__badge::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    border: 1px solid rgba(255, 250, 242, 0.1);
    pointer-events: none;
}

.kitchen-disclosure-hero__badge span {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    color: var(--ks-accent-soft);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.kitchen-disclosure-hero__badge strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 330px;
    color: rgba(255, 250, 242, 0.92);
    font-size: clamp(1.08rem, 1.24vw, 1.38rem);
    font-weight: 820;
    line-height: 1.14;
    letter-spacing: -0.044em;
}


/* ---------- 07. DISCLOSURE HERO / bottom rail ---------- */

.kitchen-disclosure-hero__rail {
    grid-area: rail;
    position: relative;
    z-index: 4;
    width: min(720px, 100%);
    margin: -8px 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(255, 250, 242, 0.84);
    border: 1px solid rgba(31, 37, 36, 0.12);
    box-shadow: 0 22px 58px rgba(31, 37, 36, 0.075);
    backdrop-filter: blur(10px);
}

.kitchen-disclosure-hero__rail::before {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    width: 86px;
    height: 3px;
    background: var(--ks-accent);
    pointer-events: none;
}

.kitchen-disclosure-hero__rail a {
    position: relative;
    min-height: 84px;
    padding: 21px 24px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    overflow: hidden;
    color: var(--ks-heading);
    text-decoration: none;
    border-right: 1px solid rgba(31, 37, 36, 0.12);
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.kitchen-disclosure-hero__rail a:last-child {
    border-right: 0;
}

.kitchen-disclosure-hero__rail a::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(183, 111, 74, 0.075);
    opacity: 0;
    transform: scale(0.78);
    transition:
        opacity 200ms ease,
        transform 200ms ease;
    pointer-events: none;
}

.kitchen-disclosure-hero__rail a:hover,
.kitchen-disclosure-hero__rail a:focus-visible {
    background: var(--ks-surface);
    transform: translateY(-3px);
}

.kitchen-disclosure-hero__rail a:hover::before,
.kitchen-disclosure-hero__rail a:focus-visible::before {
    opacity: 1;
    transform: scale(1.2);
}

.kitchen-disclosure-hero__rail span {
    position: relative;
    z-index: 1;
    color: var(--ks-accent-dark);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.11em;
}

.kitchen-disclosure-hero__rail strong {
    position: relative;
    z-index: 1;
    color: var(--ks-heading);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   07. DISCLOSURE HERO / responsive
   ========================================================= */

@media (max-width: 1180px) {
    .kitchen-disclosure-hero__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "rail";
        gap: 34px;
        width: min(980px, calc(100% - 48px));
    }

    .kitchen-disclosure-hero__copy {
        min-height: 0;
        max-width: 860px;
    }

    .kitchen-disclosure-hero__copy::before {
        left: -28px;
    }

    .kitchen-disclosure-hero__visual {
        min-height: 500px;
        max-width: 860px;
    }

    .kitchen-disclosure-hero__photo {
        width: 100%;
        height: 500px;
        margin: 0;
    }

    .kitchen-disclosure-hero__badge {
        left: 34px;
    }

    .kitchen-disclosure-hero__rail {
        width: min(860px, 100%);
        margin: -4px 0 0;
    }

    .kitchen-disclosure-hero__inner::after {
        left: 6%;
        bottom: 18px;
        font-size: clamp(3.6rem, 12vw, 8rem);
    }
}

@media (max-width: 760px) {
    .kitchen-disclosure-hero {
        padding: 68px 0 88px;
    }

    .kitchen-disclosure-hero__inner {
        width: min(100% - 32px, var(--ks-container));
        gap: 28px;
    }

    .kitchen-disclosure-hero__copy::before {
        left: 0;
        top: 0;
        height: 72px;
    }

    .kitchen-disclosure-hero__title {
        font-size: clamp(2.15rem, 10.5vw, 3.35rem);
        line-height: 0.92;
        letter-spacing: -0.078em;
    }

    .kitchen-disclosure-hero__text {
        margin-top: 19px;
        padding: 16px 18px 17px;
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .kitchen-disclosure-hero__rule {
        margin-top: 22px;
        padding: 22px 22px 23px;
    }

    .kitchen-disclosure-hero__visual {
        min-height: 390px;
    }

    .kitchen-disclosure-hero__visual::before {
        right: 12px;
        top: -16px;
        height: 330px;
        background-size:
            30px 30px,
            30px 30px,
            36px 36px,
            44px 44px;
    }

    .kitchen-disclosure-hero__visual::after {
        right: -18px;
        bottom: 42px;
        width: 92px;
        height: 92px;
    }

    .kitchen-disclosure-hero__photo {
        height: 390px;
    }

    .kitchen-disclosure-hero__badge {
        left: 22px;
        right: 22px;
        bottom: 18px;
        width: auto;
        padding: 23px 24px 24px;
    }

    .kitchen-disclosure-hero__badge strong {
        font-size: clamp(1.02rem, 5vw, 1.24rem);
    }

    .kitchen-disclosure-hero__rail {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .kitchen-disclosure-hero__rail a {
        min-height: 72px;
        padding: 19px 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(31, 37, 36, 0.12);
    }

    .kitchen-disclosure-hero__rail a:last-child {
        border-bottom: 0;
    }

    .kitchen-disclosure-hero__inner::after {
        letter-spacing: 0.05em;
        opacity: 0.7;
    }
}

@media (max-width: 460px) {
    .kitchen-disclosure-hero__visual {
        min-height: 350px;
    }

    .kitchen-disclosure-hero__photo {
        height: 350px;
    }
}


/* =========================================================
   07. DISCLOSURE HERO / reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kitchen-disclosure-hero__inner::before,
    .kitchen-disclosure-hero__visual::before,
    .kitchen-disclosure-hero__visual::after,
    .kitchen-disclosure-hero__photo,
    .kitchen-disclosure-hero__photo img,
    .kitchen-disclosure-hero__badge,
    .kitchen-disclosure-hero__rule {
        animation: none;
    }

    .kitchen-disclosure-hero__rail a,
    .kitchen-disclosure-hero__rail a::before {
        transition: none;
    }

    .kitchen-disclosure-hero__rail a:hover,
    .kitchen-disclosure-hero__rail a:focus-visible {
        transform: none;
    }
}