/* MPSD — thème inspiré des services de création d’entreprise (UI revisitée) */
:root {
    --ink: #0c1222;
    --ink-soft: #3d4a63;
    --surface: #ffffff;
    --surface-2: #f0f3f9;
    --border: rgba(12, 18, 34, 0.08);
    --accent: #0f766e;
    --accent-2: #115e59;
    --accent-glow: rgba(15, 118, 110, 0.25);
    --warm: #c2410c;
    --radius: 1.25rem;
    --radius-sm: 0.75rem;
    --shadow: 0 18px 50px -12px rgba(12, 18, 34, 0.12);
    --shadow-sm: 0 8px 24px -8px rgba(12, 18, 34, 0.1);
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --max: 72rem;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --anim-dur: 0.7s;
    --anim-dur-fast: 0.45s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--surface-2);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

@keyframes header-in {
    from {
        opacity: 0;
        transform: translateY(-0.75rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wa-pulse {
    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    animation: header-in var(--anim-dur-fast) var(--ease-out) both;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}
.nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-soft);
}

.nav a:hover {
    color: var(--accent);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: var(--ink);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition:
        transform 0.2s var(--ease-soft),
        box-shadow 0.2s var(--ease-soft);
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(12, 18, 34, 0.2);
    color: #fff !important;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }
}

.nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .nav--open {
        position: static;
        flex-direction: row;
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0 4.5rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40% 30% auto -20%;
    height: 80%;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    pointer-events: none;
    animation: fade-in 1.2s var(--ease-out) both;
}

@media (prefers-reduced-motion: no-preference) {
    .hero .hero__badge {
        animation: hero-fade-up var(--anim-dur) var(--ease-out) both;
        animation-delay: 0.06s;
    }

    .hero h1 {
        animation: hero-fade-up var(--anim-dur) var(--ease-out) both;
        animation-delay: 0.12s;
    }

    .hero__lead {
        animation: hero-fade-up var(--anim-dur) var(--ease-out) both;
        animation-delay: 0.2s;
    }

    .hero__actions {
        animation: hero-fade-up var(--anim-dur) var(--ease-out) both;
        animation-delay: 0.28s;
    }

    .hero__panel {
        animation: hero-fade-up var(--anim-dur) var(--ease-out) both;
        animation-delay: 0.22s;
    }
}

.hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero__lead {
    margin: 0 0 1.75rem;
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 36ch;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition:
        transform 0.2s var(--ease-soft),
        box-shadow 0.2s var(--ease-soft),
        background-color 0.2s var(--ease-soft),
        border-color 0.2s var(--ease-soft);
    font-family: inherit;
}

.btn--primary {
    background: linear-gradient(145deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 10px 28px var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
}

.btn--ghost {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
    border-color: rgba(15, 118, 110, 0.35);
}

.hero__panel {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero__panel h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.hero__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero__list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.hero__check {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.15);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 800;
}

.section {
    padding: 4rem 0;
}

.section--surface {
    background: var(--surface);
}

.section__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm);
    margin: 0 0 0.5rem;
}

.section h2 {
    margin: 0 0 2rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 1rem;
}

.stat {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s var(--ease-soft),
        box-shadow 0.25s var(--ease-soft);
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat__value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.stat__label {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-top: 0.25rem;
}

.cards-3 {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .cards-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition:
        border-color 0.25s var(--ease-soft),
        box-shadow 0.25s var(--ease-soft),
        transform 0.25s var(--ease-soft);
}

.card:hover {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.steps {
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 3.25rem;
    background: var(--surface-2);
    border-radius: var(--radius);
    border: 1px dashed rgba(12, 18, 34, 0.12);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 1.25rem;
    top: 1.35rem;
    width: 1.65rem;
    height: 1.65rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.step h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
}

.step p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.faq {
    max-width: 48rem;
    margin-inline: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    background: none;
    border: none;
    font: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--ink);
}

.faq-item button span:last-child {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.faq-item.is-open button span:last-child {
    transform: rotate(45deg);
}

.faq-item__panel {
    display: none;
    padding: 0 0 1.15rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.faq-item.is-open .faq-item__panel {
    display: block;
}

.testimonials {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition:
        transform 0.25s var(--ease-soft),
        box-shadow 0.25s var(--ease-soft);
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.testimonial blockquote {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--ink);
    font-style: italic;
}

.testimonial footer {
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial footer span {
    color: var(--ink-soft);
    font-weight: 500;
}

.guides {
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 520px) {
    .guides {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 880px) {
    .guides {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .guides {
        grid-template-columns: repeat(4, 1fr);
    }
}

.guides--blog {
    gap: 1.35rem;
}

.guide {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(12, 18, 34, 0.04);
    transition:
        box-shadow 0.25s var(--ease-soft),
        transform 0.25s var(--ease-soft),
        border-color 0.25s var(--ease-soft);
}

.guide:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
    border-color: rgba(15, 118, 110, 0.22);
}

.guide__body {
    padding: 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guides--blog .guide__body {
    padding: 1rem 1.15rem 1.2rem;
}

.guide__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.4rem;
}

.guide__tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--accent);
}

.guide__date {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink-soft);
    opacity: 0.9;
}

.guide__title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.84rem, 0.45vw + 0.76rem, 0.98rem);
    font-weight: 700;
    line-height: 1.38;
    flex: 1;
    min-height: 2.75em;
}

.guide__title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide__title a:hover {
    color: var(--accent);
}

.guide__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    text-decoration: none;
}

.guide__link:hover {
    text-decoration: underline;
}

.guide__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface-2);
    flex-shrink: 0;
}

.guides--blog .guide__media {
    aspect-ratio: 5 / 4;
}

.guide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--ease-soft);
}

.guide:hover .guide__media img {
    transform: scale(1.04);
}

.guide__media--placeholder {
    background: linear-gradient(148deg, #e9eef6 0%, #dfe8f2 42%, #d4ebe6 100%);
    color: rgba(15, 118, 110, 0.32);
}

.guide__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 5.5rem;
}

.guides__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 2rem;
    text-align: center;
    color: var(--ink-soft);
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
}

.guides__empty a {
    color: var(--accent);
    font-weight: 600;
}

.cta {
    margin: 2rem 0;
    padding: 2.5rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--ink) 0%, #1e3a5f 100%);
    color: #e8eef7;
    text-align: center;
    transition: box-shadow 0.35s var(--ease-soft);
}

.cta:hover {
    box-shadow: 0 24px 48px -12px rgba(12, 18, 34, 0.35);
}

.cta h2 {
    margin: 0 0 0.5rem;
    color: #fff;
}

.cta p {
    margin: 0 0 1.25rem;
    opacity: 0.9;
    max-width: 40ch;
    margin-inline: auto;
}

.cta .btn--primary {
    background: #fff;
    color: var(--ink);
    box-shadow: none;
}

.cta .btn--primary:hover {
    background: var(--surface-2);
}

.site-footer {
    padding: 3rem 0 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.site-footer__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

.site-footer h4 {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.site-footer a:hover {
    color: var(--accent);
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-align: center;
}

.fab-wa {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 40;
    transition: transform 0.25s var(--ease-soft);
    animation: wa-pulse 3s ease-in-out infinite;
}

.fab-wa:hover {
    transform: scale(1.08);
    animation: none;
}

/* Scroll-triggered fade-up (class toggled by site.js) */
.reveal {
    opacity: 0;
    transform: translateY(1.35rem);
    transition:
        opacity var(--anim-dur) var(--ease-out),
        transform var(--anim-dur) var(--ease-out);
    will-change: opacity, transform;
}

.reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Staggered children when parent .reveal enters view */
.reveal.is-inview .stats > .stat,
.reveal.is-inview .cards-3 > .card,
.reveal.is-inview .steps > .step,
.reveal.is-inview .faq > .faq-item,
.reveal.is-inview .testimonials > .testimonial,
.reveal.is-inview .guides > .guide {
    animation: hero-fade-up var(--anim-dur-fast) var(--ease-out) both;
}

.reveal.is-inview .stats > .stat:nth-child(1),
.reveal.is-inview .cards-3 > .card:nth-child(1),
.reveal.is-inview .steps > .step:nth-child(1),
.reveal.is-inview .faq > .faq-item:nth-child(1),
.reveal.is-inview .testimonials > .testimonial:nth-child(1),
.reveal.is-inview .guides > .guide:nth-child(1) {
    animation-delay: 0.04s;
}

.reveal.is-inview .stats > .stat:nth-child(2),
.reveal.is-inview .cards-3 > .card:nth-child(2),
.reveal.is-inview .steps > .step:nth-child(2),
.reveal.is-inview .faq > .faq-item:nth-child(2),
.reveal.is-inview .testimonials > .testimonial:nth-child(2),
.reveal.is-inview .guides > .guide:nth-child(2) {
    animation-delay: 0.1s;
}

.reveal.is-inview .stats > .stat:nth-child(3),
.reveal.is-inview .cards-3 > .card:nth-child(3),
.reveal.is-inview .steps > .step:nth-child(3),
.reveal.is-inview .faq > .faq-item:nth-child(3),
.reveal.is-inview .testimonials > .testimonial:nth-child(3),
.reveal.is-inview .guides > .guide:nth-child(3) {
    animation-delay: 0.16s;
}

.reveal.is-inview .stats > .stat:nth-child(4),
.reveal.is-inview .cards-3 > .card:nth-child(4),
.reveal.is-inview .steps > .step:nth-child(4),
.reveal.is-inview .faq > .faq-item:nth-child(4),
.reveal.is-inview .testimonials > .testimonial:nth-child(4),
.reveal.is-inview .guides > .guide:nth-child(4) {
    animation-delay: 0.22s;
}

.reveal.is-inview .stats > .stat:nth-child(5),
.reveal.is-inview .cards-3 > .card:nth-child(5),
.reveal.is-inview .steps > .step:nth-child(5),
.reveal.is-inview .faq > .faq-item:nth-child(5),
.reveal.is-inview .testimonials > .testimonial:nth-child(5),
.reveal.is-inview .guides > .guide:nth-child(5) {
    animation-delay: 0.28s;
}

.reveal.is-inview .stats > .stat:nth-child(6),
.reveal.is-inview .cards-3 > .card:nth-child(6),
.reveal.is-inview .guides > .guide:nth-child(6) {
    animation-delay: 0.34s;
}

.reveal.is-inview .guides > .guide:nth-child(7) {
    animation-delay: 0.4s;
}

.reveal.is-inview .guides > .guide:nth-child(8) {
    animation-delay: 0.46s;
}

.reveal.is-inview .guides > .guide:nth-child(9) {
    animation-delay: 0.52s;
}

.reveal.is-inview .guides > .guide:nth-child(10) {
    animation-delay: 0.58s;
}

.reveal.is-inview .guides > .guide:nth-child(11) {
    animation-delay: 0.64s;
}

.reveal.is-inview .guides > .guide:nth-child(12) {
    animation-delay: 0.7s;
}

.reveal.is-inview .guides > .guide:nth-child(13) {
    animation-delay: 0.76s;
}

.reveal.is-inview .guides > .guide:nth-child(14) {
    animation-delay: 0.82s;
}

.reveal.is-inview .guides > .guide:nth-child(15) {
    animation-delay: 0.88s;
}

.reveal.is-inview .guides > .guide:nth-child(16) {
    animation-delay: 0.94s;
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .hero::before,
    .fab-wa {
        animation: none;
    }

    .fab-wa {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    }

    .hero .hero__badge,
    .hero h1,
    .hero__lead,
    .hero__actions,
    .hero__panel {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .reveal.is-inview .stats > .stat,
    .reveal.is-inview .cards-3 > .card,
    .reveal.is-inview .steps > .step,
    .reveal.is-inview .faq > .faq-item,
    .reveal.is-inview .testimonials > .testimonial,
    .reveal.is-inview .guides > .guide {
        animation: none;
    }

    .card:hover,
    .stat:hover,
    .guide:hover,
    .testimonial:hover {
        transform: none;
    }
}

/* Pages simples */
.page-hero {
    padding: 3rem 0 2rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
}

.page-hero p {
    margin: 0;
    color: var(--ink-soft);
    max-width: 50ch;
}

.page-hero__meta {
    margin: 0.75rem 0 0 !important;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.article-hero-img {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.article-hero-img img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.container--article {
    max-width: 48rem;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.article-body > *:first-child {
    margin-top: 0;
}

.article-body h2,
.article-body h3 {
    color: var(--ink);
    margin: 1.75rem 0 0.75rem;
    line-height: 1.3;
}

.article-body p {
    margin: 0 0 1rem;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1rem 1.25rem;
}

.article-body a {
    color: var(--accent);
    font-weight: 600;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.article-back {
    margin: 2.5rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.article-back a {
    font-weight: 600;
    color: var(--accent);
}

.page-content {
    padding: 2.5rem 0 4rem;
}

.prose {
    max-width: 42rem;
}

.prose p {
    color: var(--ink-soft);
    margin: 0 0 1rem;
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
}

.form-stack label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-stack input,
.form-stack textarea {
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font: inherit;
}

.form-stack textarea {
    min-height: 8rem;
    resize: vertical;
}
