:root {
    --alepeo-bg: #ece4d7;
    --alepeo-paper: #f7f1e8;
    --alepeo-paper-strong: #fcf8f2;
    --alepeo-ink: #172019;
    --alepeo-muted: #677266;
    --alepeo-line: rgba(23, 32, 25, 0.1);
    --alepeo-olive: #60714b;
    --alepeo-laurel: #8b9c69;
    --alepeo-clay: #a86a49;
    --alepeo-gold: #b48a4d;
    --alepeo-shadow: 0 24px 70px rgba(26, 30, 24, 0.14);
    --alepeo-shadow-soft: 0 16px 42px rgba(26, 30, 24, 0.08);
    --alepeo-radius-xl: 38px;
    --alepeo-radius-lg: 28px;
    --alepeo-radius-md: 20px;
    --alepeo-hero-height: min(72vh, 760px);
    --alepeo-hero-top: clamp(6.6rem, 10vh, 8rem);
    --alepeo-hero-bottom: clamp(2rem, 4vh, 3rem);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(139, 156, 105, 0.14), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(168, 106, 73, 0.1), transparent 24%),
        linear-gradient(180deg, #f2ebdf 0%, var(--alepeo-bg) 100%);
    color: var(--alepeo-ink);
    font-family: "Instrument Sans", "Segoe UI", sans-serif;
    line-height: 1.7;
}

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

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

.container {
    width: min(1280px, calc(100% - 2rem));
}

.site-main {
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 19, 16, 0.64);
    backdrop-filter: blur(16px);
}

.topline {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.2rem 0;
}

.topline__label,
.topline__link {
    font-size: 0.78rem;
    color: rgba(247, 241, 232, 0.76);
}

.topline__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.alepeo-navbar {
    min-height: 82px;
    padding: 0.35rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark__seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.1rem;
    height: 5.1rem;
    overflow: hidden;
    flex: 0 0 auto;
}

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

.brand-mark__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-mark__logo {
    width: min(288px, 40vw);
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.85rem 0.95rem;
    color: rgba(247, 241, 232, 0.82);
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.55rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--alepeo-gold), var(--alepeo-laurel));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff8ee;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.section-kicker,
.insight-tile__eyebrow,
.editorial-note__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--alepeo-olive);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before,
.insight-tile__eyebrow::before,
.editorial-note__eyebrow::before {
    content: "";
    width: 2.1rem;
    height: 1px;
    background: rgba(96, 113, 75, 0.38);
}

.journal-cinema,
.insight-ribbon,
.editorial-feature,
.question-atlas,
.magazine-preview,
.process-rail,
.page-shell,
.single-shell,
.magazine-feed {
    padding: 3rem 0 4rem;
}

.journal-cinema {
    position: relative;
    padding: 0;
    min-height: var(--alepeo-hero-height);
    overflow: clip;
    background: #d5c6b0;
}

.journal-cinema::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 23, 20, 0.78) 0%, rgba(18, 23, 20, 0.62) 26%, rgba(18, 23, 20, 0.18) 54%, rgba(18, 23, 20, 0.05) 100%),
        linear-gradient(180deg, rgba(10, 14, 11, 0.2) 0%, rgba(10, 14, 11, 0.34) 100%);
    pointer-events: none;
}

.journal-cinema__container {
    position: relative;
    z-index: 2;
    min-height: var(--alepeo-hero-height);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: var(--alepeo-hero-top);
    padding-bottom: var(--alepeo-hero-bottom);
}

.journal-cinema__copy {
    max-width: 60rem;
    padding-top: 0;
}

.journal-cinema__title,
.section-header h2,
.editorial-feature__copy h2,
.magazine-hero__copy h1,
.page-panel h1,
.single-hero__copy h1,
.process-rail__intro h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.journal-cinema__title {
    max-width: 18ch;
    margin-bottom: 1.2rem;
    color: #fff6ea;
    font-size: clamp(3.15rem, 5.4vw, 5.5rem);
}

.journal-cinema__lead,
.section-header__aside,
.editorial-feature__copy p,
.magazine-hero__copy p,
.single-hero__excerpt,
.page-content,
.process-rail__intro p,
.footer-copy,
.question-atlas__card p {
    color: var(--alepeo-muted);
}

.knowledge-hero {
    position: relative;
    min-height: var(--alepeo-hero-height);
    overflow: clip;
    background: #d9cebc;
}

.knowledge-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(19, 24, 20, 0.78) 0%, rgba(19, 24, 20, 0.58) 34%, rgba(19, 24, 20, 0.18) 60%, rgba(19, 24, 20, 0.08) 100%),
        linear-gradient(180deg, rgba(12, 16, 13, 0.14) 0%, rgba(12, 16, 13, 0.28) 100%);
    pointer-events: none;
}

.knowledge-hero__media,
.knowledge-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.knowledge-hero__media img {
    object-fit: cover;
}

.knowledge-hero__container {
    position: relative;
    z-index: 1;
    min-height: var(--alepeo-hero-height);
    display: flex;
    align-items: flex-start;
    padding-top: var(--alepeo-hero-top);
    padding-bottom: var(--alepeo-hero-bottom);
}

.knowledge-hero__copy {
    max-width: 62rem;
}

.knowledge-hero__copy h1 {
    max-width: 18ch;
    margin-bottom: 1.2rem;
    color: #fff7eb;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.85rem, 4.7vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.knowledge-hero__copy p {
    max-width: 48rem;
    color: rgba(247, 241, 232, 0.86);
    font-size: clamp(0.98rem, 1.45vw, 1.04rem);
}

.knowledge-intro,
.knowledge-card-section,
.knowledge-band,
.knowledge-steps {
    padding: 4.5rem 0;
}

.knowledge-intro__layout,
.ingredient-story-intro__layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    align-items: start;
}

.knowledge-intro__lead h2,
.ingredient-story-intro__lead h2,
.knowledge-section-header h2 {
    max-width: none;
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.knowledge-intro__text,
.ingredient-story-intro__text {
    display: grid;
    gap: 1rem;
}

.knowledge-intro__text p,
.ingredient-story-intro__text p,
.knowledge-band__copy p,
.knowledge-card p,
.knowledge-step p {
    margin: 0;
    color: var(--alepeo-muted);
    font-size: 1.02rem;
}

.knowledge-intro__media,
.ingredient-story-intro__media,
.knowledge-band__media {
    margin: 0;
    border-radius: var(--alepeo-radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: var(--alepeo-shadow-soft);
}

.knowledge-intro__media img,
.ingredient-story-intro__media img,
.knowledge-band__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-story-intro__media {
    min-height: 360px;
    grid-column: 1 / -1;
}

.knowledge-intro__media {
    min-height: 380px;
    grid-column: 1 / -1;
}

.knowledge-card-grid,
.knowledge-step-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.knowledge-section-header--wide .knowledge-section-header__copy {
    width: 100%;
}

.knowledge-section-header--wide h2 {
    max-width: none;
    width: 100%;
}

.knowledge-section-header--wide p {
    max-width: 64rem;
    margin: 1rem 0 0;
    color: var(--alepeo-muted);
    font-size: 1.02rem;
}

.section-header.knowledge-section-header h2,
.section-header.knowledge-section-header--wide h2,
.knowledge-card-section .section-header h2 {
    max-width: none;
    width: 100%;
}

.knowledge-card,
.knowledge-step {
    min-height: 100%;
    padding: 1.75rem;
    border: 1px solid rgba(23, 32, 25, 0.08);
    border-radius: 1.8rem;
    background: rgba(252, 248, 242, 0.7);
    box-shadow: var(--alepeo-shadow-soft);
}

.knowledge-card__eyebrow {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: var(--alepeo-olive);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.knowledge-card h3,
.knowledge-step h3,
.knowledge-band__copy h2 {
    margin: 0 0 0.85rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1;
    letter-spacing: -0.02em;
}

.knowledge-card h3,
.knowledge-step h3 {
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.knowledge-usage-grid {
    display: grid;
    gap: 2rem;
}

.knowledge-usage-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 1.8rem;
    align-items: stretch;
}

.knowledge-usage-card__media {
    margin: 0;
    min-height: 320px;
    border-radius: var(--alepeo-radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: var(--alepeo-shadow-soft);
}

.knowledge-usage-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.knowledge-usage-card__copy {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding: 0.3rem 0;
}

.knowledge-usage-card__copy h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.knowledge-usage-card__copy p {
    margin: 0;
    color: var(--alepeo-muted);
    font-size: 1.02rem;
}

.knowledge-band__layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
}

.knowledge-band__media {
    min-height: 460px;
}

.knowledge-band__copy h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.knowledge-step {
    position: relative;
    padding-top: 4.25rem;
}

.knowledge-step__number {
    position: absolute;
    top: 1.35rem;
    left: 1.55rem;
    color: rgba(96, 113, 75, 0.4);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.knowledge-card-section--questions .knowledge-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-cinema__lead {
    max-width: 64ch;
    color: rgba(247, 241, 232, 0.82);
    font-size: 1.08rem;
}

.journal-cinema__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.journal-cinema__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(58rem, 100%);
    margin-top: 2.2rem;
}

.journal-cinema__metrics article,
.magazine-hero__factbox,
.question-atlas__card,
.process-step,
.single-note,
.page-panel,
.editorial-note,
.insight-tile,
.footer-cta__panel,
.single-content,
.editorial-feature__shell {
    border: none;
    background: transparent;
    box-shadow: none;
}

.journal-cinema__metrics article {
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(247, 241, 232, 0.22);
    border-radius: 0;
}

.journal-cinema__metrics strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    color: #fff6ea;
}

.journal-cinema__metrics span {
    font-size: 0.9rem;
    color: rgba(247, 241, 232, 0.76);
}

.journal-cinema__stage {
    position: absolute;
    inset: 0;
    min-width: 0;
    margin-right: 0;
}

.motion-banner {
    position: absolute;
    inset: 0;
    min-height: 100%;
    padding: 0;
    border-radius: 0;
    background: #d5c6b0;
}

.motion-banner__frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    min-height: 100%;
    border-radius: 0;
    background: #cdbda7;
}

.motion-banner__loop {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.motion-banner__badge,
.journal-cinema__caption,
.magazine-hero__feature-copy {
    position: absolute;
    border: none;
    background: rgba(20, 26, 22, 0.64);
    color: #f7f1e8;
    backdrop-filter: blur(14px);
}

.motion-banner__badge {
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
}

.motion-banner__badge span,
.journal-cinema__caption span,
.magazine-hero__feature-copy span {
    display: block;
    margin-bottom: 0.18rem;
    color: rgba(247, 241, 232, 0.7);
    font-size: 0.73rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.motion-banner__badge strong,
.journal-cinema__caption strong,
.magazine-hero__feature-copy strong {
    font-size: 0.98rem;
}

.motion-banner__badge--upper {
    top: 1.5rem;
    right: 1.5rem;
}

.motion-banner__badge--lower {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 260px;
}

.journal-cinema__caption {
    position: relative;
    margin-top: auto;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: rgba(247, 241, 232, 0.86);
    backdrop-filter: none;
}

.journal-cinema__caption strong {
    color: #fff6ea;
}

.insight-ribbon {
    padding-top: 1.8rem;
}

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

.insight-tile {
    padding: 0.7rem 0 1.1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(23, 32, 25, 0.12);
}

.insight-tile h2,
.question-atlas__card h3,
.single-note h3,
.process-step h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.insight-tile h2 {
    margin-bottom: 0.7rem;
    font-size: 2rem;
    line-height: 1.04;
}

.editorial-feature__shell {
    display: grid;
    grid-template-columns: 1.12fr 0.9fr 0.72fr;
    gap: 1.4rem;
    padding: 0;
    border-radius: 0;
}

.editorial-feature__media,
.magazine-hero__feature {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 580px;
    border-radius: 18px;
}

.editorial-feature__media img,
.magazine-hero__feature img,
.single-hero__media img,
.soap-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editorial-feature__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.6rem 0.2rem;
}

.editorial-feature__copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.editorial-feature__meta,
.single-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.4rem;
    color: var(--alepeo-muted);
    font-size: 0.92rem;
}

.editorial-feature__notes {
    display: grid;
    gap: 1rem;
}

.editorial-note {
    padding: 1rem 0 0.9rem;
    border-radius: 0;
    border-top: 1px solid rgba(23, 32, 25, 0.12);
}

.editorial-note h3 {
    margin-bottom: 0.65rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.9rem;
    line-height: 1.04;
}

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

.section-header--split {
    align-items: start;
}

.section-header h2 {
    max-width: 16ch;
    margin-bottom: 0;
    font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}

.magazine-preview .section-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
}

.magazine-preview .section-header h2 {
    max-width: none;
}

.magazine-preview .section-link {
    justify-self: start;
}

.section-header__aside {
    max-width: 40rem;
    margin: 0;
    font-size: 1rem;
}

.question-atlas__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.78fr);
    gap: 1.6rem;
    align-items: end;
    margin-bottom: 2.4rem;
}

.question-atlas__intro-copy h2 {
    max-width: 18ch;
}

.question-atlas__visual {
    margin: 0;
    min-height: 340px;
    overflow: hidden;
    border-radius: 18px;
}

.question-atlas__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.question-atlas__grid,
.process-rail__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.question-atlas__card,
.process-step {
    padding: 0.15rem 0 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(23, 32, 25, 0.12);
}

.question-atlas__card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.9rem;
    line-height: 1.02;
}

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

.soap-card {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: transparent;
    box-shadow: none;
}

.soap-card__media {
    aspect-ratio: 1.08 / 1;
    overflow: hidden;
    border-radius: 16px;
}

.soap-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 0 0;
}

.soap-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
    color: var(--alepeo-muted);
    font-size: 0.83rem;
}

.soap-card__eyebrow {
    color: var(--alepeo-olive);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.soap-card__title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1.02;
}

.soap-card__excerpt {
    margin: 0;
    color: var(--alepeo-muted);
}

.soap-card__link,
.section-link,
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
}

.ingredient-focus__header {
    margin-bottom: 2.2rem;
}

.ingredient-focus__header-copy {
    max-width: none;
}

.ingredient-focus__header h2 {
    max-width: none;
}

.ingredient-focus__aside {
    max-width: 58rem;
    margin-top: 1rem;
}

.ingredient-focus__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.35rem;
    align-items: start;
}

.ingredient-focus__feature,
.ingredient-focus__card {
    overflow: hidden;
    border-radius: 18px;
}

.ingredient-focus__feature {
    grid-row: span 2;
    min-height: 620px;
}

.ingredient-focus__feature img,
.ingredient-focus__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ingredient-focus__card {
    display: grid;
    grid-template-columns: minmax(180px, 0.46fr) minmax(0, 0.54fr);
    min-height: 300px;
    background: rgba(247, 241, 232, 0.42);
}

.ingredient-focus__card-copy {
    padding: 1.4rem 1.4rem 1.2rem;
}

.ingredient-focus__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--alepeo-olive);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ingredient-focus__card h3,
.ingredient-focus__quote p {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.ingredient-focus__card h3 {
    margin-bottom: 0.7rem;
    font-size: 2rem;
    line-height: 1.04;
}

.ingredient-focus__card p {
    margin: 0;
    color: var(--alepeo-muted);
}

.ingredient-focus__quote {
    padding: 0.4rem 0 0;
    border-top: 1px solid rgba(23, 32, 25, 0.12);
}

.ingredient-focus__quote p {
    max-width: 44rem;
    margin: 0;
    font-size: 2rem;
    line-height: 1.08;
    color: var(--alepeo-ink);
}

.process-rail__shell {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 1.2rem;
    align-items: start;
}

.process-rail__intro {
    padding-right: 1rem;
}

.process-rail__intro h2 {
    max-width: 11ch;
    margin-bottom: 1rem;
    font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}

.process-step__number {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--alepeo-clay);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.process-step h3 {
    margin-bottom: 0.65rem;
    font-size: 1.7rem;
    line-height: 1.04;
}

.magazine-hero {
    padding: 3rem 0;
}

.magazine-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
    gap: 1.5rem;
    align-items: stretch;
    min-height: var(--alepeo-hero-height);
    padding-top: var(--alepeo-hero-top);
    padding-bottom: var(--alepeo-hero-bottom);
}

.magazine-hero__copy,
.magazine-hero__factbox {
    padding: 0.8rem 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.magazine-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.magazine-hero__copy h1,
.page-panel h1,
.single-hero__copy h1 {
    margin-bottom: 1rem;
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.magazine-hero__feature {
    min-height: 100%;
}

.magazine-hero__feature-copy {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
}

.magazine-feed {
    padding-top: 0;
}

.page-shell {
    padding-top: 3rem;
}

.page-panel {
    max-width: 980px;
    margin: 0 auto;
    padding: 0.6rem 0;
    border-radius: 0;
}

.ingredient-story-hero,
.ingredient-story-intro,
.ingredient-story-cards,
.ingredient-origin,
.ingredient-quality,
.ingredient-process,
.ingredient-inci,
.ingredient-closing {
    padding: 3.2rem 0 4rem;
}

.ingredient-story-hero {
    position: relative;
    min-height: var(--alepeo-hero-height);
    padding: 0;
    overflow: clip;
    background: #d9d0c2;
}

.ingredient-story-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 19, 16, 0.82) 0%, rgba(14, 19, 16, 0.48) 48%, rgba(14, 19, 16, 0.12) 100%),
        linear-gradient(180deg, rgba(14, 19, 16, 0.18) 0%, rgba(14, 19, 16, 0.36) 100%);
}

.ingredient-story-hero__media {
    position: absolute;
    inset: 0;
}

.ingredient-story-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ingredient-story-hero__container {
    position: relative;
    z-index: 2;
    min-height: var(--alepeo-hero-height);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
    gap: 2rem;
    align-items: start;
    padding-top: var(--alepeo-hero-top);
    padding-bottom: var(--alepeo-hero-bottom);
}

.ingredient-story-hero__copy {
    max-width: 62rem;
}

.ingredient-story-hero__copy h1 {
    margin: 0 0 1rem;
    max-width: 18ch;
    color: #fff6ea;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.95rem, 4.9vw, 5.1rem);
    line-height: 0.98;
}

.ingredient-story-hero__copy p {
    max-width: 48rem;
    margin: 0;
    color: rgba(247, 241, 232, 0.85);
    font-size: 1rem;
}

.ingredient-story-hero__facts {
    display: grid;
    gap: 0.9rem;
    align-self: end;
}

.ingredient-story-hero__facts article {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(247, 241, 232, 0.26);
}

.ingredient-story-hero__facts strong {
    display: block;
    margin-bottom: 0.22rem;
    color: #fff6ea;
    font-size: 1rem;
}

.ingredient-story-hero__facts span {
    color: rgba(247, 241, 232, 0.78);
    font-size: 0.92rem;
}

.ingredient-story-intro__layout,
.ingredient-inci__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: start;
}

.ingredient-story-intro__lead h2,
.ingredient-origin__intro h2,
.ingredient-quality__copy h2,
.ingredient-inci__intro h2,
.ingredient-closing__panel h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
    line-height: 0.98;
    color: var(--alepeo-ink);
}

.ingredient-story-intro__text p,
.ingredient-origin__lead p,
.ingredient-quality__copy p,
.ingredient-inci__intro p,
.ingredient-closing__panel p {
    color: var(--alepeo-muted);
}

.ingredient-story-cards__grid,
.ingredient-quality__grid,
.ingredient-process__steps,
.ingredient-inci__cards {
    display: grid;
    gap: 1.35rem;
}

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

.ingredient-story-card {
    overflow: hidden;
}

.ingredient-story-card__media {
    margin: 0;
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
}

.ingredient-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ingredient-story-card__copy {
    padding: 1.2rem 0 0;
}

.ingredient-story-card__eyebrow,
.ingredient-process__number {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--alepeo-olive);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ingredient-story-card h3,
.ingredient-quality__card h3,
.ingredient-process__step h3,
.ingredient-inci__card h3,
.ingredient-origin__aside-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.ingredient-story-card h3 {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    line-height: 1.04;
}

.ingredient-story-card p,
.ingredient-quality__card p,
.ingredient-process__step p,
.ingredient-inci__card p,
.ingredient-origin__aside-card p {
    margin: 0;
    color: var(--alepeo-muted);
}

.ingredient-origin__intro {
    margin-bottom: 1.7rem;
}

.ingredient-origin__intro h2 {
    max-width: none;
}

.ingredient-origin__lead {
    max-width: 68rem;
}

.ingredient-origin__hero-image,
.ingredient-quality__media {
    overflow: hidden;
    border-radius: 18px;
}

.ingredient-origin__hero-image img,
.ingredient-quality__media img,
.ingredient-origin__support-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ingredient-origin__hero-image {
    margin: 0 0 1.2rem;
    min-height: 460px;
}

.ingredient-origin__support-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.ingredient-origin__support-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 0.55fr);
    gap: 1rem;
    overflow: hidden;
    background: rgba(247, 241, 232, 0.42);
    border-radius: 18px;
    min-height: 260px;
}

.ingredient-origin__support-card div {
    padding: 1.25rem 1.25rem 1.1rem 0;
}

.ingredient-origin__support-card--text {
    display: block;
    padding: 1.5rem;
}

.ingredient-origin__support-card--text div {
    padding: 0;
}

.ingredient-quality__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
    gap: 1.6rem;
    align-items: stretch;
    margin-bottom: 1.8rem;
}

.ingredient-quality__media {
    min-height: 520px;
}

.ingredient-quality__copy {
    align-self: center;
}

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

.ingredient-quality__card,
.ingredient-process__step,
.ingredient-inci__card {
    padding: 1.45rem;
    background: rgba(247, 241, 232, 0.42);
    border-radius: 18px;
}

.ingredient-quality__card h3,
.ingredient-process__step h3,
.ingredient-inci__card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.72rem;
    line-height: 1.04;
}

.ingredient-process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ingredient-process__number {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

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

.ingredient-closing {
    padding-top: 1rem;
}

.ingredient-closing__panel {
    display: grid;
    gap: 1.7rem;
    border-top: 1px solid rgba(23, 32, 25, 0.1);
    background: transparent;
    padding: 1.6rem 0 0;
}

.ingredient-closing__intro,
.ingredient-closing__body {
    width: 100%;
}

.ingredient-closing__intro h2 {
    max-width: none;
}

.ingredient-closing__body {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 1.4rem;
    align-items: stretch;
}

.ingredient-closing__text {
    align-self: center;
}

.ingredient-closing__image {
    margin: 0;
    min-height: 360px;
    overflow: hidden;
    border-radius: 18px;
}

.ingredient-closing__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ingredient-story-section-header {
    margin-bottom: 1.7rem;
}

.ingredient-story-section-header,
.ingredient-story-section-header > div {
    width: 100%;
}

.ingredient-story-section-header h2 {
    max-width: none;
}

.page-content h2,
.page-content h3,
.single-content h2,
.single-content h3 {
    margin-top: 2rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.1rem;
}

.single-shell {
    padding-top: 3rem;
}

.back-link {
    margin-bottom: 1.4rem;
    color: var(--alepeo-muted);
}

.single-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) 500px;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.single-hero__media {
    min-height: 520px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: none;
}

.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    align-items: start;
}

.single-content {
    padding: 0.4rem 0;
    border-radius: 0;
}

.single-note {
    padding: 1rem 0 0.95rem;
    border-radius: 0;
    border-top: 1px solid rgba(23, 32, 25, 0.12);
}

.single-note + .single-note {
    margin-top: 1rem;
}

.single-note h3 {
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
    line-height: 1.03;
}

.single-note__list {
    margin: 0;
    padding-left: 1rem;
}

.footer-cta {
    padding-top: 1rem;
}

.footer-cta__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.2rem 0 0;
    border-radius: 0;
    border-top: 1px solid rgba(23, 32, 25, 0.14);
}

.footer-cta__panel h2,
.footer-brand {
    font-family: "Cormorant Garamond", Georgia, serif;
}

.footer-cta__panel h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1;
}

.footer-lower {
    padding: 2rem 0 2.2rem;
}

.footer-brand {
    font-size: 2.2rem;
}

.footer-nav {
    columns: 2;
    gap: 1rem;
}

.footer-nav__item {
    break-inside: avoid;
    margin-bottom: 0.5rem;
}

.footer-nav__link,
.footer-meta {
    color: var(--alepeo-muted);
}

.pagination-shell .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-shell .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.8rem;
    height: 2.8rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--alepeo-line);
    background: rgba(247, 241, 232, 0.9);
}

.pagination-shell .page-numbers.current {
    background: #151d16;
    color: #fff8ee;
}

.page-content .nbcc-form-wrap {
    margin-top: 2.4rem;
    padding: 2rem;
    border: 1px solid rgba(28, 38, 30, 0.12);
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(173, 185, 132, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(249, 246, 239, 0.96), rgba(244, 238, 228, 0.96));
    box-shadow: 0 24px 60px rgba(31, 36, 28, 0.08);
}

.page-content .nbcc-contact-form {
    display: grid;
    gap: 1.2rem;
}

.page-content .nbcc-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.15rem;
}

.page-content .nbcc-field {
    margin: 0;
}

.page-content .nbcc-field label {
    display: block;
    margin-bottom: 0.45rem;
    color: #253126;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-content .nbcc-contact-form input[type="text"],
.page-content .nbcc-contact-form input[type="email"],
.page-content .nbcc-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(34, 46, 37, 0.14);
    border-radius: 1.1rem;
    background: rgba(255, 252, 246, 0.96);
    color: #223024;
    font-size: 1rem;
    line-height: 1.55;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.page-content .nbcc-contact-form input[type="text"],
.page-content .nbcc-contact-form input[type="email"] {
    min-height: 3.45rem;
    padding: 0.95rem 1.1rem;
}

.page-content .nbcc-contact-form textarea {
    min-height: 12rem;
    padding: 1rem 1.1rem;
    resize: vertical;
}

.page-content .nbcc-contact-form input::placeholder,
.page-content .nbcc-contact-form textarea::placeholder {
    color: rgba(66, 78, 68, 0.72);
}

.page-content .nbcc-contact-form input:focus,
.page-content .nbcc-contact-form textarea:focus {
    outline: none;
    border-color: rgba(86, 112, 67, 0.45);
    background: #fffdf9;
    box-shadow: 0 0 0 0.24rem rgba(130, 154, 104, 0.14);
}

.page-content .nbcc-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    margin-top: 0.25rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(34, 46, 37, 0.1);
    border-radius: 1.1rem;
    background: rgba(255, 250, 242, 0.84);
}

.page-content .nbcc-consent input[type="checkbox"] {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.18rem;
    accent-color: #485d3a;
}

.page-content .nbcc-consent span {
    color: #48554a;
    font-size: 0.96rem;
    line-height: 1.65;
}

.page-content .nbcc-consent a {
    color: #2e4d38;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.15em;
}

.page-content .nbcc-contact-form .btn.btn-site {
    justify-self: start;
    min-height: 3.45rem;
    padding-inline: 1.5rem;
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(28, 34, 29, 0.12);
}

.page-content .nbcc-form-notice {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
}

@media (max-width: 1199.98px) {
    .magazine-hero__shell,
    .question-atlas__intro,
    .ingredient-focus__grid,
    .knowledge-usage-card,
    .ingredient-story-intro__layout,
    .ingredient-quality__shell,
    .ingredient-inci__layout,
    .process-rail__shell,
    .single-hero,
    .single-layout,
    .editorial-feature__shell {
        grid-template-columns: 1fr;
    }

    .journal-cinema__stage {
        margin-right: 0;
        padding-right: 0;
    }

    .journal-cinema__container {
        min-height: 760px;
        justify-content: end;
    }

    .journal-cinema__copy {
        max-width: 42rem;
    }

    .question-atlas__grid,
    .process-rail__steps,
    .journal-cinema__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .editorial-feature__media,
    .magazine-hero__feature {
        min-height: 420px;
    }

    .question-atlas__visual {
        min-height: 300px;
    }

    .ingredient-focus__feature {
        min-height: 420px;
    }

    .ingredient-story-hero__container,
    .ingredient-story-cards__grid,
    .ingredient-quality__grid,
    .ingredient-process__steps,
    .ingredient-inci__cards {
        grid-template-columns: 1fr;
    }

    .ingredient-origin__support-grid,
    .ingredient-origin__support-card,
    .ingredient-closing__body,
    .ingredient-closing__panel {
        grid-template-columns: 1fr;
    }

    .ingredient-quality__media,
    .ingredient-origin__hero-image,
    .ingredient-story-card__media {
        min-height: 320px;
    }

    .motion-banner,
    .motion-banner__frame,
    .motion-banner__loop {
        min-height: 100%;
        border-radius: 0;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: static;
    }

    .navbar-nav {
        padding-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-nav .nav-link::after {
        left: 0;
        right: auto;
        width: 3rem;
    }

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

@media (max-width: 767.98px) {
    .page-content .nbcc-form-wrap {
        padding: 1.25rem;
        border-radius: 1.25rem;
    }

    .page-content .nbcc-field-grid {
        grid-template-columns: 1fr;
    }

    .soap-grid,
    .insight-ribbon__grid,
    .question-atlas__grid,
    .ingredient-focus__grid,
    .ingredient-story-cards__grid,
    .ingredient-quality__grid,
    .ingredient-process__steps,
    .ingredient-inci__cards,
    .process-rail__steps,
    .journal-cinema__metrics {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: start;
    }

    .question-atlas__intro {
        gap: 1.1rem;
        margin-bottom: 2rem;
    }

    .question-atlas__visual {
        min-height: 240px;
    }

    .ingredient-focus__card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ingredient-story-hero {
        min-height: 0;
    }

    .ingredient-story-hero__container {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding-top: 7rem;
        padding-bottom: 1.8rem;
    }

    .ingredient-story-hero__copy h1 {
        max-width: none;
        font-size: clamp(2.9rem, 12vw, 4.4rem);
    }

    .ingredient-story-intro,
    .ingredient-story-cards,
    .ingredient-origin,
    .ingredient-quality,
    .ingredient-process,
    .ingredient-inci,
    .ingredient-closing {
        padding: 2.5rem 0 3rem;
    }

    .ingredient-origin__support-card div {
        padding: 0 1.2rem 1.2rem;
    }

    .ingredient-origin__support-card--text {
        padding: 1.2rem;
    }

    .ingredient-focus__quote p {
        font-size: 1.6rem;
    }

    .journal-cinema {
        min-height: 0;
    }

    .journal-cinema__container {
        min-height: 620px;
        justify-content: end;
        padding-top: 7rem;
        padding-bottom: 1.8rem;
    }

    .journal-cinema__title {
        font-size: clamp(3rem, 12vw, 4.6rem);
    }

    .motion-banner,
    .motion-banner__frame,
    .motion-banner__loop {
        min-height: 100%;
        border-radius: 0;
    }

    .motion-banner__badge--upper {
        top: 1rem;
        right: 1rem;
    }

    .motion-banner__badge--lower {
        left: auto;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

    .journal-cinema__caption {
        left: auto;
        right: auto;
        bottom: auto;
    }

    .page-panel,
    .single-content,
    .question-atlas__card,
    .process-step,
    .insight-tile,
    .editorial-note,
    .magazine-hero__copy,
    .magazine-hero__factbox {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-nav {
        columns: 1;
    }
}
