:root {
    --knp-green: #0b3d2e;
    --knp-green-deep: #072b20;
    --knp-brown: #6b4f3a;
    --knp-gold: #d4a017;
    --knp-cream: #f7f5f0;
    --knp-charcoal: #1f1f1f;
    --knp-muted: #6b6b63;
    --knp-line: rgba(11, 61, 46, 0.12);
    --shadow-soft: 0 24px 80px rgba(7, 43, 32, 0.14);
    --shadow-card: 0 18px 40px rgba(11, 61, 46, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --nav-height: 84px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: var(--nav-height);
    font-family: "Open Sans", sans-serif;
    color: var(--knp-charcoal);
    background:
        radial-gradient(circle at top left, rgba(212, 160, 23, 0.08), transparent 24rem),
        radial-gradient(circle at bottom right, rgba(11, 61, 46, 0.1), transparent 26rem),
        var(--knp-cream);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand strong {
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.03em;
}

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

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

.site-navbar {
    padding: 1rem 0;
    background: rgba(247, 245, 240, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-navbar.is-scrolled {
    border-color: var(--knp-line);
    box-shadow: 0 12px 30px rgba(11, 61, 46, 0.08);
}

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

.brand-mark__badge {
    display: grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--knp-green), var(--knp-brown));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(11, 61, 46, 0.18);
}

.brand-mark span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-mark small {
    color: var(--knp-muted);
}

.nav-link {
    color: var(--knp-charcoal);
    font-weight: 600;
}

.btn {
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
}

.btn-accent {
    color: var(--knp-green-deep);
    background: linear-gradient(135deg, #f0c24c, var(--knp-gold));
    border: 0;
    box-shadow: 0 16px 32px rgba(212, 160, 23, 0.28);
}

.btn-primary-alt {
    color: #fff;
    background: linear-gradient(135deg, var(--knp-green), var(--knp-brown));
    border: 0;
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
}

.hero-section {
    --hero-bg-image: url("../img/backgrounds/coffee-berries-hero.c8e992f71c82.jpg");
    --hero-bg-color: #0b3d2e;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(7, 43, 32, 0.84), rgba(11, 61, 46, 0.56)),
        radial-gradient(circle at 22% 18%, rgba(212, 160, 23, 0.18), transparent 28%),
        var(--hero-bg-image) center 38% / cover no-repeat;
}

.hero-section.hero-section--background-color::before {
    background:
        linear-gradient(120deg, rgba(7, 43, 32, 0.34), rgba(11, 61, 46, 0.2)),
        radial-gradient(circle at 22% 18%, rgba(212, 160, 23, 0.28), transparent 36%),
        var(--hero-bg-color);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 43, 32, 0.9), rgba(11, 61, 46, 0.72)),
        radial-gradient(circle at 20% 20%, rgba(212, 160, 23, 0.22), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.12), transparent 30%);
}

.hero-shell,
.page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-shell {
    display: grid;
    gap: 2rem;
}

.hero-copy,
.page-hero .container {
    color: #fff;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.7rem, 8vw, 5.3rem);
    line-height: 0.98;
    max-width: 12ch;
    margin-bottom: 1rem;
}

.hero-copy__lead,
.page-hero p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.hero-inline-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.hero-inline-stats div,
.glass-panel,
.cta-panel,
.diagram-card,
.info-card,
.metric-card,
.story-card,
.program-card,
.team-card,
.contact-card,
.wizard-shell,
.map-card,
.simulator-results,
.simulator-preview {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.glass-panel {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    color: #fff;
}

.hero-list {
    margin: 1.5rem 0 0;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.income-orbit,
.coffee-pillar-card {
    position: relative;
    min-height: 320px;
    border-radius: 50%;
}

.hero-main-visual {
    overflow: hidden;
    margin-top: 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-main-visual img {
    width: 100%;
    height: auto;
}

.income-orbit__center,
.coffee-pillar-card__center {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c24c, var(--knp-gold));
    color: var(--knp-green-deep);
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(212, 160, 23, 0.25);
}

.income-orbit__node,
.coffee-pillar-card__ring {
    position: absolute;
    display: grid;
    place-items: center;
    width: 130px;
    min-height: 76px;
    padding: 0.9rem;
    border-radius: 999px;
    text-align: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.income-orbit__node--one,
.coffee-pillar-card__ring {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.income-orbit__node--two,
.coffee-pillar-card__ring--two {
    left: 0;
    top: 55%;
    transform: translateY(-50%);
}

.income-orbit__node--three,
.coffee-pillar-card__ring--three {
    right: 0;
    top: 55%;
    transform: translateY(-50%);
}

.coffee-pillar-card__ring--four {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    color: var(--knp-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.section-block,
.section-cta {
    padding: 4.5rem 0;
}

.section-block--tint {
    background: linear-gradient(180deg, rgba(11, 61, 46, 0.03), rgba(107, 79, 58, 0.08));
}

.section-block--dark {
    background: linear-gradient(135deg, var(--knp-green-deep), var(--knp-green));
    color: #fff;
}

.section-intro {
    max-width: 52rem;
    margin-bottom: 2rem;
}

.section-intro--light p {
    color: rgba(255, 255, 255, 0.78);
}

.info-card,
.diagram-card,
.program-card,
.team-card,
.contact-card,
.wizard-shell,
.map-card,
.simulator-results,
.simulator-preview {
    background: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-xl);
    padding: 1.6rem;
    border: 1px solid var(--knp-line);
}

.diagram-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(240, 236, 227, 0.92));
}

.section-illustration {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(11, 61, 46, 0.05), rgba(212, 160, 23, 0.08));
}

.section-illustration img,
.journey-step__visual img {
    width: 100%;
    height: auto;
}

.section-illustration--problem {
    min-height: 180px;
}

.section-illustration--shift {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(11, 61, 46, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(229, 208, 189, 0.5));
}

.diagram-card__row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.diagram-card__row:last-child {
    border-bottom: 0;
}

.comparison-stack,
.chip-row,
.simulator-tags,
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.comparison-chip,
.soft-chip,
.simulator-tags span,
.logo-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(11, 61, 46, 0.06);
    border: 1px solid rgba(11, 61, 46, 0.08);
}

.comparison-chip--accent {
    background: rgba(212, 160, 23, 0.16);
    color: var(--knp-green-deep);
}

.progress-run + .progress-run {
    margin-top: 1rem;
}

.progress {
    height: 0.6rem;
    margin: 0.55rem 0;
    border-radius: 999px;
    background: rgba(11, 61, 46, 0.09);
}

.progress-bar {
    background: linear-gradient(90deg, var(--knp-green), var(--knp-gold));
    border-radius: inherit;
}

.journey-grid,
.mission-grid {
    display: grid;
    gap: 1rem;
}

.journey-step {
    padding: 1.3rem;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--knp-line);
    box-shadow: var(--shadow-card);
}

.journey-step__visual {
    overflow: hidden;
    margin: -0.2rem -0.2rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(11, 61, 46, 0.04), rgba(212, 160, 23, 0.08));
}

.journey-step span {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.9rem;
    background: rgba(212, 160, 23, 0.16);
    color: var(--knp-green-deep);
    font-weight: 800;
}

.metric-card {
    position: relative;
    min-height: 100%;
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-card--light {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246, 241, 229, 0.92));
    color: var(--knp-charcoal);
    border: 1px solid var(--knp-line);
}

.metric-card strong {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
}

.story-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--knp-line);
}

.story-card__media {
    min-height: 11rem;
    background: linear-gradient(135deg, rgba(11,61,46,0.12), rgba(107,79,58,0.22));
}

.story-card__media--interactive {
    position: relative;
    cursor: pointer;
}

.story-card__media--interactive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(7, 43, 32, 0.34));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.story-card__media--interactive:hover::after,
.story-card__media--interactive:focus-visible::after {
    opacity: 1;
}

.story-card__media--interactive:focus-visible {
    outline: 3px solid rgba(212, 160, 23, 0.55);
    outline-offset: 2px;
}

.story-card--gallery .story-card__media img,
.story-card--video .story-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.media-launch {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--knp-green-deep);
    box-shadow: 0 12px 28px rgba(7, 43, 32, 0.28);
}

.media-launch svg {
    width: 1.4rem;
    height: 1.4rem;
}

.video-card__media {
    position: relative;
}

.video-card__play {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(11, 61, 46, 0.78);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 0;
    cursor: pointer;
}

.video-card__play:hover,
.video-card__play:focus-visible {
    background: rgba(11, 61, 46, 0.92);
}

.story-card__avatar,
.team-card__fallback {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 11rem;
    font-size: 3rem;
    font-family: "Poppins", sans-serif;
    color: var(--knp-green-deep);
}

.story-card__body,
.team-card__body {
    padding: 1.35rem;
}

.story-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding-top: 1rem;
    margin-top: 1rem;
    color: var(--knp-muted);
    border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.story-card__delta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.story-card--testimonial .story-card__body {
    display: grid;
    gap: 1rem;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.14), rgba(212, 160, 23, 0.24));
    color: var(--knp-green-deep);
    font-family: "Poppins", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
}

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

.testimonial-meta {
    margin: 0.3rem 0 0;
    color: var(--knp-muted);
}

.testimonial-quote {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.8;
}

.testimonial-result {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(212, 160, 23, 0.14);
    color: var(--knp-green-deep);
    font-weight: 700;
}

.table-shell {
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.story-article__body {
    display: grid;
    gap: 1rem;
    line-height: 1.9;
    color: rgba(31, 31, 31, 0.92);
}

.story-article__body p {
    margin: 0;
}

.story-hero {
    padding-top: 2.5rem;
}

.story-feature {
    display: grid;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(212, 160, 23, 0.14), transparent 22rem),
        linear-gradient(135deg, rgba(7, 43, 32, 0.96), rgba(11, 61, 46, 0.84));
    color: #fff;
    box-shadow: 0 28px 72px rgba(7, 43, 32, 0.28);
}

.story-feature h1 {
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 1rem;
    max-width: 13ch;
}

.story-feature__lead {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.8;
}

.story-feature__tags,
.story-feature__actions,
.story-feature__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.story-feature .soft-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.story-feature__actions {
    margin-top: 1.4rem;
}

.story-feature__image {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.story-feature__image img,
.story-feature__image .story-card__avatar {
    width: 100%;
    aspect-ratio: 4 / 4.3;
    object-fit: cover;
}

.story-feature__image .story-card__avatar {
    min-height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(212, 160, 23, 0.24));
    color: #fff;
}

.story-feature__stats {
    margin-top: 1rem;
}

.story-feature__stats div {
    flex: 1 1 180px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.story-feature__stats span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.story-feature__stats strong {
    font-size: 1.35rem;
    color: #fff;
}

.story-aside {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
}

.story-aside__card {
    padding: 1.45rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 239, 228, 0.96));
    border: 1px solid var(--knp-line);
    box-shadow: var(--shadow-card);
}

.story-aside__summary {
    color: var(--knp-muted);
    line-height: 1.75;
}

.story-aside__numbers {
    display: grid;
    gap: 0.9rem;
    margin: 1.2rem 0;
}

.story-aside__numbers div {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(11, 61, 46, 0.04);
    border: 1px solid rgba(11, 61, 46, 0.08);
}

.story-aside__numbers span {
    display: block;
    color: var(--knp-muted);
    margin-bottom: 0.35rem;
}

.story-aside__numbers strong {
    font-size: 1.2rem;
    color: var(--knp-green-deep);
}

.story-aside__note {
    padding-top: 1.1rem;
    border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.story-aside__note p {
    margin: 0.6rem 0 0;
    color: var(--knp-muted);
    line-height: 1.75;
}

.story-article {
    padding: 1.8rem;
}

.story-article__intro {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.story-article__intro p {
    margin: 0;
    max-width: 62ch;
    color: var(--knp-muted);
    line-height: 1.8;
}

.story-article__body h2,
.story-article__body h3 {
    margin: 0.6rem 0 0;
    color: var(--knp-green-deep);
}

.story-article__body blockquote {
    margin: 0.5rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--knp-gold);
    background: rgba(212, 160, 23, 0.08);
    border-radius: 0 18px 18px 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-article__body ul,
.story-article__body ol {
    margin: 0;
    padding-left: 1.35rem;
}

.story-article__body a {
    color: var(--knp-green);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
}

.story-article__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding-top: 1.5rem;
    margin-top: 1.2rem;
    border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.comment-thread {
    display: grid;
    gap: 1rem;
}

.comment-card {
    padding: 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 61, 46, 0.08);
    box-shadow: var(--shadow-card);
}

.comment-card--reply {
    margin-top: 0.9rem;
    margin-left: 1.6rem;
    background: rgba(247, 245, 240, 0.98);
}

.comment-card__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
    color: var(--knp-muted);
}

.comment-card__head strong {
    color: var(--knp-charcoal);
}

.comment-replies {
    margin-top: 1rem;
}

.comment-reply-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(212, 160, 23, 0.14);
    border: 1px solid rgba(212, 160, 23, 0.28);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    background: transparent;
}

.comparison-table th {
    color: var(--knp-green);
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.program-card__header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.list-check {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.65rem;
}

.list-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--knp-green), var(--knp-gold));
}

.section-cta .cta-panel {
    display: grid;
    gap: 1.25rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--knp-green), var(--knp-brown));
    border-radius: var(--radius-xl);
    color: #fff;
}

.footer-card {
    padding: 1.25rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
}

.site-footer {
    padding: 4rem 0 2rem;
    background: var(--knp-green-deep);
    color: rgba(255, 255, 255, 0.74);
}

.site-footer h6,
.site-footer strong {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 0.55rem;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-lines {
    display: grid;
    gap: 0.9rem;
}

.auth-shell {
    max-width: 34rem;
    padding: 1.6rem;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244, 239, 228, 0.96));
    border: 1px solid var(--knp-line);
    box-shadow: var(--shadow-card);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 14px;
    border: 1px solid rgba(11, 61, 46, 0.14);
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.92);
}

.wizard-shell,
.simulator-results {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244, 239, 228, 0.96));
}

.content-grid {
    display: grid;
    gap: 1.5rem;
}

.editor-panel {
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 239, 228, 0.95));
    border: 1px solid var(--knp-line);
    box-shadow: var(--shadow-card);
}

.editor-panel__head {
    margin-bottom: 1.2rem;
}

.editor-split {
    display: grid;
    gap: 1.25rem;
}

.editor-split__media,
.editor-split__content {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(11, 61, 46, 0.03);
    border: 1px solid rgba(11, 61, 46, 0.08);
}

.preview-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.preview-grid--compact {
    margin-bottom: 1rem;
}

.preview-card {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(11, 61, 46, 0.04);
    border: 1px solid rgba(11, 61, 46, 0.08);
}

.preview-card__media {
    overflow: hidden;
    margin-top: 0.7rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(11, 61, 46, 0.05), rgba(212, 160, 23, 0.08));
}

.preview-card__media img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-card__fallback {
    display: grid;
    place-items: center;
    min-height: 180px;
    font-size: 3rem;
    font-family: "Poppins", sans-serif;
    color: var(--knp-green-deep);
}

.editor-form__grid,
.editor-table__row {
    display: grid;
    gap: 1rem;
}

.editor-form__full {
    grid-column: 1 / -1;
}

.stack-list {
    display: grid;
    gap: 1rem;
}

.editor-item {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(11, 61, 46, 0.03);
    border: 1px solid rgba(11, 61, 46, 0.08);
}

.editor-item--split {
    display: grid;
    gap: 1.25rem;
}

.editor-item__media,
.editor-item__content {
    min-width: 0;
}

.editor-subtitle {
    margin-bottom: 1rem;
}

.editor-table {
    display: grid;
    gap: 0.9rem;
}

.wizard-steps {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.wizard-steps span {
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(11, 61, 46, 0.08);
    color: var(--knp-green);
    font-weight: 800;
}

.wizard-steps .active {
    background: linear-gradient(135deg, var(--knp-green), var(--knp-brown));
    color: #fff;
}

.checkbox-grid ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkbox-grid li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(11, 61, 46, 0.05);
    border: 1px solid rgba(11, 61, 46, 0.08);
}

.simulator-preview__top,
.simulator-bars div,
.map-point {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.simulator-bars label {
    color: var(--knp-muted);
}

.chart-shell {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(11, 61, 46, 0.04);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.logo-tile {
    min-height: 108px;
    border-radius: var(--radius-md);
    background: rgba(11, 61, 46, 0.04);
}

.logo-tile img {
    max-height: 52px;
    width: auto;
}

.flash-wrapper {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: 0;
    right: 0;
    z-index: 1050;
}

.media-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.media-modal[hidden] {
    display: none;
}

.media-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 43, 32, 0.82);
    backdrop-filter: blur(10px);
}

.media-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 239, 228, 0.96));
    border: 1px solid rgba(11, 61, 46, 0.12);
    box-shadow: 0 30px 80px rgba(7, 43, 32, 0.34);
}

.media-modal__dialog--image {
    width: min(100%, 1240px);
}

.media-modal__dialog--video {
    width: min(100%, 1180px);
    transition: width 0.2s ease, max-height 0.2s ease, border-radius 0.2s ease, padding 0.2s ease;
}

.media-modal__dialog--video.is-expanded {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    padding: 1rem;
    border-radius: 20px;
}

.media-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.media-modal__header--stack {
    align-items: flex-start;
}

.media-modal__caption {
    margin: 0.35rem 0 0;
    color: var(--knp-muted);
}

.media-modal__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.media-modal__close {
    position: sticky;
    top: 0;
    left: calc(100% - 6rem);
    z-index: 2;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 0;
    background: rgba(11, 61, 46, 0.92);
    color: #fff;
    font-weight: 700;
}

.video-player-shell {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background: #091b15;
}

.media-modal__dialog--video.is-expanded .video-player-shell {
    aspect-ratio: auto;
    height: calc(100vh - 8rem);
}

.video-player-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.image-viewer-stage {
    position: relative;
    min-height: min(70vh, 720px);
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(212, 160, 23, 0.16), transparent 24rem),
        linear-gradient(180deg, rgba(11, 61, 46, 0.08), rgba(11, 61, 46, 0.02));
    cursor: grab;
    perspective: 1600px;
    transform-style: preserve-3d;
}

.image-viewer-stage.is-dragging {
    cursor: grabbing;
}

.image-viewer-stage.is-tilt-enabled {
    background:
        radial-gradient(circle at top left, rgba(212, 160, 23, 0.22), transparent 20rem),
        radial-gradient(circle at bottom right, rgba(11, 61, 46, 0.18), transparent 20rem),
        linear-gradient(180deg, rgba(11, 61, 46, 0.1), rgba(11, 61, 46, 0.03));
}

.image-viewer-stage img {
    max-width: min(92vw, 980px);
    max-height: min(64vh, 760px);
    will-change: transform;
    transition: transform 0.18s ease;
    transform-origin: center center;
    user-select: none;
    pointer-events: auto;
    backface-visibility: hidden;
    border-radius: 18px;
    box-shadow: 0 24px 44px rgba(7, 43, 32, 0.16);
}

.image-viewer-stage.is-tilt-enabled img,
.image-viewer-stage.is-dragging img {
    transition: none;
}

body.is-modal-open {
    overflow: hidden;
}

.page-hero--compact h1 {
    font-size: clamp(2.3rem, 7vw, 4rem);
}

.page-hero--dashboard {
    padding: 1rem 0 0.5rem;
}

.page-hero--dashboard h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 0.25rem;
}

.page-hero--dashboard .eyebrow {
    margin-bottom: 0.15rem;
}

.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.dashboard-hero__copy p {
    display: none;
}

.dashboard-hero__panel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.dashboard-hero__panel-copy {
    display: grid;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.82);
}

.dashboard-hero__panel-copy strong {
    color: #fff;
}

.dashboard-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 992px) {
    .hero-shell {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
        min-height: calc(100vh - var(--nav-height) - 3rem);
    }

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

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

    .section-cta .cta-panel {
        grid-template-columns: minmax(0, 1.4fr) auto;
        align-items: center;
    }

    .footer-meta {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .dashboard-nav {
        position: sticky;
        top: calc(var(--nav-height) + 1.5rem);
        display: grid;
        gap: 0.5rem;
    }

    .dashboard-nav__link {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.9rem 1.25rem;
        border-radius: 14px;
        background: transparent;
        border: 1px solid transparent;
        color: var(--knp-muted);
        font-weight: 600;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .dashboard-nav__link:hover {
        background: rgba(11, 61, 46, 0.05);
        color: var(--knp-green);
    }

    .dashboard-nav__link.is-active {
        background: #fff;
        border-color: var(--knp-line);
        color: var(--knp-green);
        box-shadow: 0 8px 20px rgba(11, 61, 46, 0.06);
    }

    .content-area {
        display: grid;
        gap: 2.5rem;
    }

    .editor-section {
        display: none;
    }

    .editor-section.is-active {
        display: block;
        animation: fadeIn 0.4s ease forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

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

    .editor-form__grid,
    .editor-table__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .editor-split {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: start;
    }

    .editor-item--split {
        grid-template-columns: 320px minmax(0, 1fr);
        align-items: start;
    }


    .story-feature {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        align-items: center;
    }
}

@media (max-width: 991px) {
    .site-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(247, 245, 240, 0.96);
        border: 1px solid var(--knp-line);
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 78px;
    }

    .hero-section,
    .page-hero,
    .section-block,
    .section-cta {
        padding: 3.5rem 0;
    }

    .glass-panel,
    .diagram-card,
    .info-card,
    .program-card,
    .team-card,
    .contact-card,
    .wizard-shell,
    .map-card,
    .simulator-results,
    .simulator-preview,
    .cta-panel {
        padding: 1.2rem;
    }

    .income-orbit,
    .coffee-pillar-card {
        min-height: 290px;
    }

    .income-orbit__node,
    .coffee-pillar-card__ring {
        width: 112px;
        font-size: 0.85rem;
    }

    .story-feature,
    .story-article,
    .story-aside__card {
        padding: 1.25rem;
    }

    .page-hero--dashboard {
        padding: 2.2rem 0 1rem;
    }

    .story-aside {
        position: static;
    }

    .story-feature h1 {
        max-width: none;
    }

    .media-modal__header,
    .media-modal__header--stack {
        flex-direction: column;
        align-items: flex-start;
    }

    .media-modal__controls {
        width: 100%;
    }

    .image-viewer-stage {
        min-height: 56vh;
    }

    .image-viewer-stage img {
        max-width: 100%;
        max-height: 52vh;
    }
}

@media (max-width: 991px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dashboard-nav {
        position: sticky;
        top: calc(var(--nav-height) - 1px);
        z-index: 100;
        display: flex;
        overflow-x: auto;
        padding: 0.75rem 0.25rem;
        margin: 0 -1rem 1rem;
        background: var(--knp-cream);
        border-bottom: 1px solid var(--knp-line);
        scrollbar-width: none;
    }

    .dashboard-nav::-webkit-scrollbar {
        display: none;
    }

    .dashboard-nav__link {
        flex: 0 0 auto;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .dashboard-nav__link.is-active {
        background-color: var(--knp-green);
        color: #fff;
        box-shadow: none;
    }
}


/* -------------------------------------------------------------------------- */
/* CORPORATE SHIFT SECTION                                                     */
/* -------------------------------------------------------------------------- */

.text-green-dark { color: #072b20; }
.text-muted-600 { color: #5a5a54; }

.shift-narrative-box {
    max-width: 480px;
}

/* Strategic Roadmap Timeline */
.strategic-roadmap {
    display: grid;
    gap: 1.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.strategic-roadmap::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: linear-gradient(180deg, var(--knp-gold), rgba(11, 61, 46, 0.1));
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.roadmap-bullet {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--knp-gold);
    margin-top: 5px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.roadmap-item:hover .roadmap-bullet {
    background: var(--knp-gold);
    transform: scale(1.2);
    transition: all 0.2s ease;
}

.roadmap-content {
    flex: 1;
}

.roadmap-status {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: var(--knp-gold);
    background: rgba(212, 160, 23, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 160, 23, 0.12);
}

.strategy-card__footer {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

/* Minimalist Corporate Card Elements */
.bg-cream-dark {
    background: rgba(11, 61, 46, 0.03);
    border: 1px solid rgba(11, 61, 46, 0.05);
}

.tracking-widest {
    letter-spacing: 0.12em;
}

.text-muted-opacity {
    color: var(--knp-muted);
    opacity: 0.65;
}

.text-green-deep {
    color: var(--knp-green-deep);
    transition: color 0.2s ease;
}

.text-green-deep:hover {
    color: var(--knp-gold);
}

.strategy-card__footer svg {
    margin-bottom: 1px;
}
