.editorial-page {
    background: #fdfbf7;
}

.editorial-page .editorial-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(253, 251, 247, 0.96);
    border-bottom: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
}

.editorial-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.editorial-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.editorial-brand img {
    width: 34px;
    height: 34px;
}

.editorial-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.editorial-language-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--stroke-strong);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
}

.editorial-language-link:hover {
    color: var(--text);
    border-color: var(--primary);
}

.editorial-home-link {
    padding: 10px 20px;
    font-size: 0.88rem;
}

.editorial-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 22px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.editorial-breadcrumb a:hover {
    color: var(--primary-dark);
}

.editorial-hero {
    display: block;
    padding: 48px 0 68px;
}

.editorial-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: center;
    gap: clamp(42px, 7vw, 88px);
}

.editorial-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.editorial-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.editorial-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    line-height: 1.08;
}

.editorial-deck {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
    line-height: 1.65;
}

.editorial-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.editorial-meta span + span::before {
    content: "•";
    margin-right: 18px;
    color: var(--primary);
}

.editorial-hero-figure {
    position: relative;
    margin: 0;
}

.editorial-hero-figure::before {
    content: "";
    position: absolute;
    inset: 9% -7% -5% 12%;
    z-index: 0;
    border-radius: 42% 58% 48% 52% / 54% 44% 56% 46%;
    background: linear-gradient(145deg, rgba(64, 176, 192, 0.2), rgba(224, 112, 0, 0.1));
}

.editorial-hero-figure img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    object-position: center 32%;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(11, 18, 32, 0.16);
}

.editorial-hero-figure figcaption {
    position: relative;
    z-index: 1;
    margin-top: 13px;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.editorial-intro {
    padding: 68px 0;
    background: white;
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.editorial-reading-column {
    width: min(100%, 780px);
    margin: 0 auto;
}

.editorial-intro p {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.015em;
}

.editorial-intro p + p {
    margin-top: 22px;
}

.editorial-interview {
    padding: 84px 0 40px;
}

.interview-chapter {
    margin-bottom: 96px;
    scroll-margin-top: 100px;
}

.chapter-heading {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 50px;
}

.chapter-number {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.chapter-heading h2 {
    margin: 0;
    text-align: left;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.interview-qa {
    margin-left: 84px;
    padding: 0 0 48px;
    border-bottom: 1px solid var(--stroke);
}

.interview-qa + .interview-qa {
    padding-top: 48px;
}

.interview-question {
    max-width: 700px;
    margin: 0 0 22px;
    color: var(--text);
    font-size: clamp(1.2rem, 2vw, 1.48rem);
    font-weight: 750;
    line-height: 1.45;
    letter-spacing: -0.018em;
}

.interview-answer {
    max-width: 690px;
    padding-left: 24px;
    border-left: 3px solid rgba(64, 176, 192, 0.28);
}

.interview-answer p {
    margin-bottom: 18px;
    color: rgba(11, 18, 32, 0.76);
    font-size: 1.04rem;
    line-height: 1.82;
}

.interview-answer p:last-child {
    margin-bottom: 0;
}

.interview-answer .editorial-emphasis {
    color: var(--text);
    font-size: 1.12rem;
    font-weight: 700;
}

.editorial-photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: min(calc(100vw - 48px), 1080px);
    margin: -30px 0 90px 50%;
    transform: translateX(-50%);
}

.editorial-photo-gallery figure {
    display: grid;
    grid-template-rows: 610px auto;
    min-width: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--stroke);
    border-radius: 22px;
    background: white;
    box-shadow: 0 14px 34px rgba(11, 18, 32, 0.1);
}

.editorial-photo-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    background: #f7f7f4;
}

.editorial-photo-gallery figcaption {
    margin: 12px 4px 2px;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.editorial-quote {
    position: relative;
    margin: 12px 0 92px 84px;
    padding: 38px 44px;
    border-radius: 24px;
    background: var(--primary-ink);
    box-shadow: var(--shadow-lg);
}

.editorial-quote::before {
    content: "“";
    position: absolute;
    top: -14px;
    left: 24px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 6rem;
    line-height: 1;
}

.editorial-quote p {
    position: relative;
    margin: 0;
    color: white;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 650;
    line-height: 1.55;
}

.editorial-cta {
    padding: 30px 0 88px;
}

.editorial-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 36px 40px;
    border: 1px solid rgba(64, 176, 192, 0.18);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(64, 176, 192, 0.1), rgba(255, 255, 255, 0.82));
}

.editorial-cta-copy h2 {
    margin: 0 0 8px;
    text-align: left;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.editorial-cta-copy p {
    margin: 0;
    font-size: 0.98rem;
}

.editorial-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.editorial-store-link {
    display: inline-flex;
    align-items: center;
    border-radius: 9px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.editorial-store-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(11, 18, 32, 0.14);
}

.editorial-store-link img {
    display: block;
    width: auto;
    height: 44px;
}

.editorial-page .editorial-footer {
    margin-top: 0;
    padding: 42px 0;
}

.editorial-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.editorial-footer-brand {
    color: white;
    font-weight: 750;
}

.editorial-footer-brand p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.editorial-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.editorial-footer-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

.editorial-footer-links a:hover {
    color: white;
}

@media (max-width: 900px) {
    .editorial-hero-grid {
        grid-template-columns: 1fr;
    }

    .editorial-hero-copy {
        max-width: 760px;
    }

    .editorial-hero-figure {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .editorial-hero-figure img {
        max-height: 720px;
    }
}

@media (max-width: 700px) {
    .editorial-header-inner {
        gap: 10px;
    }

    .editorial-brand span {
        display: none;
    }

    .editorial-home-link {
        display: none;
    }

    .editorial-language-link {
        padding: 7px 12px;
    }

    .editorial-hero {
        padding: 34px 0 48px;
    }

    .editorial-hero-grid {
        gap: 34px;
    }

    .editorial-hero h1 {
        font-size: clamp(2rem, 10.5vw, 3rem);
    }

    .editorial-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .editorial-meta span + span::before {
        display: none;
    }

    .editorial-hero-figure::before {
        inset: 8% -2% -3% 7%;
    }

    .editorial-hero-figure img {
        border-radius: 22px;
    }

    .editorial-intro {
        padding: 52px 0;
    }

    .editorial-interview {
        padding-top: 64px;
    }

    .interview-chapter {
        margin-bottom: 72px;
    }

    .chapter-heading {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 35px;
    }

    .interview-qa,
    .editorial-quote {
        margin-left: 0;
    }

    .interview-qa {
        padding-bottom: 38px;
    }

    .interview-qa + .interview-qa {
        padding-top: 38px;
    }

    .interview-answer {
        padding-left: 18px;
    }

    .interview-answer p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .editorial-photo-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        margin-left: 0;
        margin-top: -14px;
        margin-bottom: 70px;
        transform: none;
    }

    .editorial-photo-gallery figure {
        grid-template-rows: auto auto;
        padding: 10px;
        border-radius: 18px;
    }

    .editorial-photo-gallery img {
        height: auto;
        max-height: none;
        object-fit: contain;
        border-radius: 12px;
    }

    .editorial-quote {
        margin-bottom: 70px;
        padding: 32px 26px;
    }

    .editorial-cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 24px;
    }

    .editorial-cta-actions {
        width: 100%;
    }

    .editorial-cta-actions .btn {
        width: 100%;
    }

    .editorial-store-link {
        flex: 1 1 140px;
        justify-content: center;
    }

    .editorial-store-link img {
        width: 100%;
        max-width: 180px;
        height: auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    .editorial-page *,
    .editorial-page *::before,
    .editorial-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}