/* ============================================================
   Article / blog template. Reusable across on-site essays.
   Editorial layout: reading progress bar, top nav, mailing CTA.
   ============================================================ */
body.article { background: #fbf9f4; color: #26221c; font-family: 'Inter', sans-serif; margin: 0; }

.article__progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; background: linear-gradient(90deg, #d1613a, #e8a02d); z-index: 100; transition: width 0.1s linear; }

.article__bar { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(20px, 5vw, 48px); background: rgba(251, 249, 244, 0.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(38, 34, 28, 0.08); }
.article__brand { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 18px; color: #26221c; text-decoration: none; }
.article__nav { display: flex; gap: clamp(14px, 3vw, 28px); }
.article__nav a { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #6b6355; text-decoration: none; }
.article__nav a:hover { color: #d1613a; }

.article__body { max-width: 680px; margin: 0 auto; padding: clamp(32px, 7vw, 72px) clamp(20px, 5vw, 24px) 80px; }
.article__kicker { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #d1613a; margin: 0 0 14px; }
.article__title { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(32px, 6vw, 52px); line-height: 1.1; margin: 0 0 18px; color: #1c1913; }
.article__dek { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: clamp(19px, 2.6vw, 24px); line-height: 1.4; color: #4a4436; margin: 0 0 20px; }
.article__meta { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #8a8172; margin: 0 0 40px; padding-bottom: 28px; border-bottom: 1px solid rgba(38, 34, 28, 0.12); }

.article__prose p { font-size: 18px; line-height: 1.75; margin: 0 0 22px; color: #2e2a22; }
.article__prose h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(23px, 3.4vw, 30px); line-height: 1.2; margin: 40px 0 14px; color: #1c1913; }
.article__prose a { color: #d1613a; text-decoration: underline; text-underline-offset: 3px; }

.article__cta { margin: 54px 0 0; padding: clamp(28px, 5vw, 42px); background: #1c1913; color: #f4efe6; border-radius: 20px; text-align: center; }
.article__cta-kicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #e8a02d; margin: 0 0 10px; }
.article__cta-title { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(24px, 4vw, 34px); margin: 0 0 10px; color: #fff; }
.article__cta-text { font-size: 15px; line-height: 1.6; color: rgba(244, 239, 230, 0.8); max-width: 42ch; margin: 0 auto 22px; }
.article__form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 460px; margin: 0 auto; }
.article__form input { flex: 1 1 140px; min-width: 0; font-family: 'Inter', sans-serif; font-size: 15px; padding: 13px 16px; border-radius: 10px; border: 1px solid rgba(244, 239, 230, 0.25); background: rgba(255, 255, 255, 0.06); color: #fff; }
.article__form input::placeholder { color: rgba(244, 239, 230, 0.5); }
.article__form input:focus { outline: 2px solid #e8a02d; border-color: #e8a02d; }
.article__form button { flex: 0 0 auto; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 26px; border-radius: 10px; border: 0; background: #e8a02d; color: #1c1913; cursor: pointer; font-weight: 700; }
.article__form button:hover { background: #f4b445; }
.article__form-thanks { flex-basis: 100%; display: none; margin: 6px 0 0; font-family: 'Fraunces', Georgia, serif; font-style: italic; color: #e8a02d; }
.article__form.is-sent input, .article__form.is-sent button { display: none; }
.article__form.is-sent .article__form-thanks { display: block; }

.article__back { display: inline-block; margin-top: 40px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #6b6355; text-decoration: none; }
.article__back:hover { color: #d1613a; }
