:root {
    --ink: #17211f;
    --ink-soft: #34413d;
    --muted: #66716d;
    --line: rgba(23, 33, 31, 0.12);
    --paper: #f7f7f4;
    --paper-strong: #ffffff;
    --paper-muted: #eef2ef;
    --forest: #1f332f;
    --forest-soft: #2f6f63;
    --clay: #9b6249;
    --blue: #496b7a;
    --mint: #dfeeea;
    --shadow: 0 24px 70px rgba(23, 33, 31, 0.12);
    --shadow-soft: 0 14px 38px rgba(23, 33, 31, 0.09);
    --radius: 8px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.08;
    letter-spacing: 0;
}

p {
    margin: 0;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 9999;
    background: var(--paper-strong);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(247, 247, 244, 0.88);
    border-bottom: 1px solid rgba(23, 33, 31, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(23, 33, 31, 0.08);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
}

.brand-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--forest);
}

.brand-role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.primary-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--forest-soft);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--forest);
    color: #ffffff !important;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    color: var(--forest);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background: var(--forest);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(19, 30, 28, 0.88) 0%, rgba(19, 30, 28, 0.72) 48%, rgba(19, 30, 28, 0.28) 100%),
        linear-gradient(180deg, rgba(19, 30, 28, 0.38) 0%, rgba(19, 30, 28, 0.82) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: calc(var(--header-height) + 54px) 0 70px;
}

.hero-copy {
    max-width: 720px;
    min-width: 0;
}

.eyebrow,
.section-kicker {
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.74);
}

.section-kicker {
    color: var(--clay);
}

.hero h1 {
    font-size: clamp(3.7rem, 9vw, 7.6rem);
    max-width: 800px;
}

.hero h1 span {
    display: block;
}

.hero-lead {
    margin-top: 24px;
    max-width: 670px;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.hero-text {
    margin-top: 18px;
    max-width: 640px;
    font-size: 1.06rem;
    color: rgba(255, 255, 255, 0.76);
}

.hero-actions,
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn-primary {
    background: var(--forest-soft);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--forest);
}

.btn-quiet {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    color: #ffffff;
}

.btn-quiet:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
}

.btn.full {
    width: 100%;
}

.section {
    padding: 96px 0;
}

.intro-band {
    padding: 76px 0;
    background: var(--forest);
    color: #ffffff;
}

.intro-grid,
.about-layout,
.method-layout,
.content-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 64px;
    align-items: start;
}

.intro-statement h2,
.about-copy h2,
.method-copy h2,
.content-copy h2,
.contact-copy h2,
.section-heading h2 {
    font-size: clamp(2rem, 4.2vw, 3.65rem);
    color: var(--ink);
}

.intro-statement h2 {
    color: #ffffff;
}

.intro-text {
    display: grid;
    gap: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.about-section {
    background: var(--paper-strong);
}

.portrait-block {
    position: sticky;
    top: 112px;
}

.portrait-block img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.portrait-caption {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.portrait-caption strong {
    color: var(--forest);
}

.about-copy,
.method-copy,
.content-copy,
.contact-copy {
    display: grid;
    gap: 18px;
}

.about-copy p,
.method-copy p,
.content-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.04rem;
}

.text-link {
    width: fit-content;
    margin-top: 10px;
    color: var(--forest-soft);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
}

.audience-section,
.concerns-section {
    background: var(--paper);
}

.section-heading {
    max-width: 790px;
    margin-bottom: 44px;
}

.section-heading.narrow {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.audience-card {
    min-height: 310px;
    padding: 28px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--mint);
    color: var(--forest);
}

.audience-card h3 {
    font-size: 1.45rem;
}

.audience-card p {
    color: var(--muted);
}

.audience-card a {
    margin-top: auto;
    color: var(--forest-soft);
    font-weight: 800;
    text-decoration: none;
}

.method-section,
.content-section {
    background: var(--paper-strong);
}

.principles-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.principle-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.principle-item span {
    color: var(--clay);
    font-weight: 900;
}

.principle-item p {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.concerns-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.concerns-grid span {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    color: var(--ink-soft);
    font-weight: 700;
}

.content-layout {
    align-items: center;
}

.content-links {
    display: grid;
    gap: 14px;
}

.resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 78px;
    padding: 20px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    font-weight: 900;
    background: var(--paper);
    transition: background 160ms ease, transform 160ms ease;
}

.resource-link:hover {
    background: var(--mint);
    transform: translateY(-1px);
}

.faq-section {
    background: var(--paper);
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    font-weight: 900;
}

.faq-question i {
    color: var(--clay);
    transition: transform 180ms ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    color: var(--muted);
}

.contact-section {
    background: var(--forest);
    color: #ffffff;
}

.contact-section .section-kicker {
    color: #b8d8d0;
}

.contact-copy h2 {
    color: #ffffff;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    gap: 18px;
}

.contact-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-row i {
    width: 22px;
    color: #b8d8d0;
    margin-top: 4px;
}

.contact-row div {
    display: grid;
    gap: 2px;
}

.contact-row strong {
    color: #ffffff;
}

.contact-row span,
.contact-row a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer {
    padding: 44px 0;
    background: #111816;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr;
    gap: 36px;
}

.footer-grid strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
}

.footer-grid p {
    max-width: 460px;
}

.footer-grid nav,
.footer-meta {
    display: grid;
    gap: 8px;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-meta {
    justify-items: end;
    align-content: start;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 950;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1100;
    width: min(520px, calc(100% - 40px));
    display: none;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--paper-strong);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.cookie-banner.show {
    display: grid;
}

.cookie-banner p {
    font-size: 0.92rem;
    color: var(--muted);
}

.cookie-banner .btn-quiet {
    color: var(--ink);
    border-color: var(--line);
    background: var(--paper);
}

.reveal-animation {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-animation.revealed {
    opacity: 1;
    transform: translateY(0);
}

.page-hero {
    padding: calc(var(--header-height) + 70px) 0 78px;
    background: var(--forest);
    color: #ffffff;
}

.page-hero .container {
    max-width: 980px;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.page-hero p {
    max-width: 760px;
    margin-top: 22px;
    font-size: 1.22rem;
    color: rgba(255, 255, 255, 0.78);
}

.page-section {
    padding: 82px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
    align-items: start;
}

.rich-text {
    display: grid;
    gap: 18px;
    color: var(--muted);
    font-size: 1.04rem;
}

.rich-text h2 {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.note-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.note-panel h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.note-panel ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.note-panel li + li {
    margin-top: 10px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.article-card {
    min-height: 280px;
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--paper-strong);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.article-card .tag {
    width: fit-content;
    padding: 6px 10px;
    border-radius: var(--radius);
    background: var(--mint);
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
    font-size: 1.45rem;
}

.article-card p {
    color: var(--muted);
}

.article-card a {
    margin-top: auto;
    color: var(--forest-soft);
    font-weight: 900;
    text-decoration: none;
}

.blog-status,
.admin-status {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--mint);
    color: var(--forest);
    font-weight: 700;
}

.admin-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    max-width: min(420px, calc(100vw - 44px));
    padding: 16px 18px;
    border-radius: var(--radius);
    background: var(--forest);
    color: #ffffff;
    box-shadow: var(--shadow);
    font-weight: 800;
    line-height: 1.45;
}

.admin-toast[data-tone="error"] {
    background: #7a2e1c;
}

.admin-toast[data-tone="success"] {
    background: var(--forest-soft);
}

.admin-status[data-tone="error"] {
    background: #f6dfd7;
    color: #7a2e1c;
}

.admin-status[data-tone="success"] {
    background: var(--mint);
    color: var(--forest);
}

.post-card {
    overflow: hidden;
}

.post-card-image {
    width: calc(100% + 52px);
    max-width: none;
    height: 180px;
    object-fit: cover;
    margin: -26px -26px 8px;
}

.post-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
}

.empty-state h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.empty-state p {
    color: var(--muted);
}

.post-hero {
    padding: calc(var(--header-height) + 70px) 0 70px;
    background: var(--forest);
    color: #ffffff;
}

.post-hero .container {
    max-width: 940px;
}

.post-hero h1 {
    max-width: 920px;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.post-hero p {
    max-width: 760px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.article-body-shell {
    max-width: 880px;
    padding: 66px 0 86px;
}

.article-cover {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 44px;
}

.article-content {
    color: var(--ink-soft);
    font-size: 1.12rem;
    line-height: 1.82;
}

.article-content > * + * {
    margin-top: 1.2em;
}

.article-content h2,
.article-content h3 {
    color: var(--ink);
    margin-top: 1.8em;
    line-height: 1.16;
}

.article-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.article-content h3 {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-content blockquote {
    margin: 1.8em 0;
    padding: 22px 26px;
    border-left: 4px solid var(--clay);
    background: var(--paper-muted);
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.45;
}

.article-content ul,
.article-content ol {
    padding-left: 1.3em;
}

.article-content li + li {
    margin-top: 0.4em;
}

.article-content a {
    color: var(--forest-soft);
    font-weight: 800;
}

.article-content img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.article-content hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 2.2em 0;
}

.admin-page {
    background: #eef2ef;
}

.admin-shell {
    width: min(1440px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.admin-topbar h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.admin-topbar-actions {
    display: flex;
    gap: 10px;
}

.setup-notice,
.login-panel,
.admin-layout {
    border-radius: var(--radius);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.setup-notice,
.login-panel {
    display: grid;
    gap: 18px;
    max-width: 720px;
    padding: 30px;
}

.setup-notice h2,
.login-panel h2,
.admin-sidebar h2 {
    font-size: 1.65rem;
}

.setup-notice p,
.login-panel p {
    color: var(--muted);
}

.login-form,
.post-editor-panel {
    display: grid;
    gap: 18px;
}

.login-form label,
.post-editor-panel label {
    display: grid;
    gap: 7px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 900;
}

.login-form input,
.post-editor-panel input,
.post-editor-panel textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    padding: 12px 13px;
}

.login-form input:focus,
.post-editor-panel input:focus,
.post-editor-panel textarea:focus,
.post-content-editor:focus {
    outline: 2px solid rgba(47, 111, 99, 0.26);
    border-color: var(--forest-soft);
}

.admin-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
}

.admin-sidebar {
    padding: 22px;
    border-right: 1px solid var(--line);
    background: #f7f7f4;
}

.admin-sidebar h2 {
    margin: 24px 0 12px;
}

.post-list {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-list-item {
    width: 100%;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.post-list-item span {
    font-weight: 900;
}

.post-list-item small {
    color: var(--muted);
}

.post-editor-panel {
    padding: 24px;
}

.post-editor-panel.is-saving {
    opacity: 0.72;
    pointer-events: none;
}

.editor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cover-preview {
    min-height: 110px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--muted);
}

.cover-preview img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.editor-toolbar button {
    min-width: 40px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

.post-content-editor {
    min-height: 460px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink-soft);
    line-height: 1.8;
}

.post-content-editor h2,
.post-content-editor h3 {
    color: var(--ink);
    margin: 1.2em 0 0.4em;
}

.post-content-editor blockquote {
    margin: 1.4em 0;
    padding: 18px 20px;
    border-left: 4px solid var(--clay);
    background: var(--paper);
}

.post-content-editor img {
    max-width: 100%;
    border-radius: var(--radius);
}

.editor-meta {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.seo-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: var(--paper);
}

.seo-panel summary {
    cursor: pointer;
    font-weight: 900;
}

.seo-panel .editor-grid {
    margin-top: 16px;
}

.editor-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.editor-actions .btn[disabled] {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.btn.danger {
    border-color: rgba(122, 46, 28, 0.24);
    color: #7a2e1c;
    background: #f6dfd7;
}

@media (max-width: 980px) {
    :root {
        --header-height: 74px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 20px 26px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
    }

    .primary-nav.active {
        display: flex;
    }

    .primary-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(23, 33, 31, 0.08);
    }

    .primary-nav .nav-cta {
        margin-top: 14px;
        justify-content: center;
        border-bottom: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(19, 30, 28, 0.9) 0%, rgba(19, 30, 28, 0.78) 60%, rgba(19, 30, 28, 0.9) 100%);
    }

    .intro-grid,
    .about-layout,
    .method-layout,
    .content-layout,
    .contact-layout,
    .split-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .portrait-block {
        position: relative;
        top: auto;
        max-width: 520px;
    }

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

    .audience-card {
        min-height: auto;
    }

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

    .footer-meta {
        justify-items: start;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

@media (max-width: 640px) {
    .container {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .brand-name {
        font-size: 1.12rem;
    }

    .brand-role {
        font-size: 0.68rem;
    }

    .hero-inner {
        padding: calc(var(--header-height) + 40px) 0 54px;
    }

    .hero-copy,
    .hero-copy p,
    .hero-copy h1 {
        width: 100%;
        max-width: calc(100vw - 28px);
    }

    .hero h1 {
        font-size: clamp(2.85rem, 14.5vw, 3.65rem);
        max-width: 100%;
        overflow-wrap: normal;
    }

    .hero-lead {
        font-size: 1.18rem;
    }

    .hero-text,
    .hero-lead,
    .eyebrow {
        max-width: 100%;
    }

    .eyebrow,
    .section-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .hero-actions,
    .cookie-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .cookie-actions .btn {
        width: 100%;
    }

    .section,
    .page-section {
        padding: 66px 0;
    }

    .intro-band {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .audience-card,
    .contact-panel,
    .note-panel,
    .article-card {
        padding: 22px;
    }

    .principle-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
        width: calc(100vw - 40px);
    }

    .admin-shell {
        width: calc(100% - 24px);
        padding-top: 12px;
    }

    .admin-topbar,
    .admin-topbar-actions,
    .editor-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .post-editor-panel,
    .admin-sidebar,
    .setup-notice,
    .login-panel {
        padding: 18px;
    }

    .post-content-editor {
        min-height: 360px;
        padding: 18px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal-animation {
        opacity: 1;
        transform: none;
    }
}
