/* =====================================================================
   wachtel-IT · Philipp Wachtel — Onepager
   Ein System: helle/dunkle Tokens, rote CI (#A91E22), Barlow (DIN) + Mono.
   Auto Tag/Nacht via data-theme (in <head> gesetzt), Toggle überschreibt.
   ===================================================================== */

:root {
  /* ---- Hell (Standard, Tag) ---- */
  --bg:        #ffffff;
  --bg-soft:   #f6f7f9;
  --bg-panel:  #fbfbfc;
  --line:      rgba(17,24,33,.10);
  --line-2:    rgba(17,24,33,.16);
  --text:      #16191e;
  --muted:     #59616b;
  --muted-2:   #8a929b;

  --accent:    #a91e22;   /* Wappen-Rot */
  --accent-h:  #c62a2e;   /* Hover/heller */
  --accent-d:  #7f1418;   /* tief */
  --accent-soft: rgba(169,30,34,.08);
  --on-accent: #ffffff;

  --shadow:    0 18px 50px -24px rgba(20,25,35,.35);
  --shadow-sm: 0 6px 20px -10px rgba(20,25,35,.28);

  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 56px);
  --r:    18px;
  --r-lg: 26px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, monospace;
}

:root[data-theme="dark"] {
  --bg:        #0c0f14;
  --bg-soft:   #12161d;
  --bg-panel:  #151a22;
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.17);
  --text:      #eef2f6;
  --muted:     #9aa4b0;
  --muted-2:   #6b7581;

  --accent:    #e0484b;   /* auf Dunkel etwas heller für Kontrast */
  --accent-h:  #ee5c5f;
  --accent-d:  #b02024;
  --accent-soft: rgba(224,72,75,.12);
  --on-accent: #ffffff;

  --shadow:    0 24px 60px -26px rgba(0,0,0,.7);
  --shadow-sm: 0 8px 24px -12px rgba(0,0,0,.6);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden; transition: background .4s var(--ease), color .4s var(--ease);
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
h1,h2,h3,h4 { line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
::selection { background: var(--accent); color: #fff; }
[id] { scroll-margin-top: 88px; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Bausteine ---------- */
.kicker { display: inline-flex; align-items: center; font-family: var(--mono); font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.kicker--light { color: rgba(255,255,255,.85); }
.tag { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 13px;
  color: var(--muted); border: 1px solid var(--line-2); background: var(--bg-soft);
  border-radius: 100px; padding: 7px 14px; }
.tag__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600;
  padding: 14px 24px; border-radius: 12px; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .25s, background .2s, border-color .2s, color .2s; }
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 12px 26px -10px var(--accent); }
.btn--ghost { border: 1.5px solid var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--accent-d); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.btn--wghost { border: 1.5px solid rgba(255,255,255,.6); color: #fff; }
.btn--wghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ---------- Nav ---------- */
#navProgress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 60; transition: width .1s linear; }
#nav { position: fixed; inset: 0 0 auto 0; z-index: 50; backdrop-filter: blur(16px) saturate(150%);
  background: color-mix(in srgb, var(--bg) 72%, transparent); border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s; }
#nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav__inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: auto; height: 36px; flex: none; }
.brand__name { display: flex; flex-direction: column; font-weight: 700; font-size: 16px; line-height: 1.05; letter-spacing: -.01em; }
.brand__name small { font-family: var(--mono); font-weight: 500; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.nav__links { display: flex; gap: 2px; margin-left: auto; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--muted); padding: 8px 14px; border-radius: 9px; transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--text); background: var(--bg-soft); }
.nav__portal { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600 !important;
  color: var(--accent) !important; border: 1.5px solid color-mix(in srgb, var(--accent) 42%, var(--line-2));
  border-radius: 9px; padding: 8px 14px !important; margin-left: 8px; transition: background .2s, border-color .2s; }
.nav__portal:hover { background: var(--accent-soft) !important; border-color: var(--accent); }
.nav__portal svg { width: 14px; height: 14px; }
.theme-toggle { width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 11px; display: grid; place-items: center; color: var(--text); transition: border-color .2s, background .2s; }
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.nav__cta { font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: 11px; background: var(--accent); color: var(--on-accent); transition: transform .2s, background .2s; }
.nav__cta:hover { background: var(--accent-h); transform: translateY(-1px); }
.nav__burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 11px; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav__burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px var(--pad) 18px; gap: 2px; }
  .nav__links.open a { font-size: 17px; padding: 12px; }
}

/* ==================== HERO ==================== */
.hero { position: relative; padding: 128px 0 70px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__bg .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.blob--a { width: 42vw; height: 42vw; top: -14%; right: -8%; background: radial-gradient(circle, var(--accent), transparent 68%); opacity: .28; animation: float1 16s var(--ease) infinite alternate; }
.blob--b { width: 32vw; height: 32vw; bottom: -20%; left: -10%; background: radial-gradient(circle, var(--accent-d), transparent 70%); opacity: .18; animation: float2 20s var(--ease) infinite alternate; }
@keyframes float1 { to { transform: translate(-40px, 40px) scale(1.1); } }
@keyframes float2 { to { transform: translate(50px, -30px) scale(1.12); } }
.hero__lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .7; }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.02; margin: 22px 0 20px; }
.hero__title .accent { color: var(--accent); }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--muted); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__proof { list-style: none; display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero__proof li { font-size: .9rem; color: var(--muted); }
.hero__proof b { display: block; font-family: var(--mono); font-size: 1.6rem; font-weight: 700; color: var(--text); letter-spacing: -.02em; }

/* Wappen im Hero — ruhig, ohne Effekte */
.hero__art { display: grid; place-items: center; }
.hero__wappen { width: min(280px, 62vw); height: auto; filter: drop-shadow(0 22px 40px rgba(169,30,34,.28)); }
@media (prefers-reduced-motion: reduce) { .blob { animation: none !important; } }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 1; width: 26px; height: 42px; border: 1.5px solid var(--line-2); border-radius: 14px; display: flex; justify-content: center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--accent); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

@media (max-width: 860px) {
  .hero { padding-top: 108px; }
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__art { order: -1; }
  .medallion { width: min(230px, 60vw); }
  .hero__scroll { display: none; }
}

/* ==================== SECTIONS ==================== */
.sec { padding: clamp(56px, 8vw, 104px) 0; }
.sec--alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.sec__head { max-width: 58ch; margin-bottom: clamp(32px, 5vw, 52px); }
.sec__title { font-size: clamp(1.8rem, 3.8vw, 2.8rem); margin-top: 12px; }
.sec__lead { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* ---------- Karten (Online-Dienste) ---------- */
.cards { display: grid; gap: 16px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line-2)); box-shadow: var(--shadow-sm); }
.card__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 18px; }
.card__ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--muted); font-size: .94rem; margin-top: 8px; }

/* ---------- Leistungen ---------- */
.svc { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.svc:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line-2)); }
.svc::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.svc:hover::before { transform: scaleY(1); }
.svc__no { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); }
.svc h3 { font-size: 1.3rem; margin: 8px 0 14px; }
.svc ul { list-style: none; display: grid; gap: 8px; }
.svc li { position: relative; padding-left: 20px; color: var(--muted); font-size: .96rem; }
.svc li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Werte ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.value { background: var(--bg); padding: 30px 28px; transition: background .3s; }
.value:hover { background: var(--bg-soft); }
.value__k { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.value__k::before { content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 3px; background: var(--accent); margin-right: 10px; vertical-align: middle; }
.value p { color: var(--muted); margin-top: 8px; }

/* ---------- Über mich ---------- */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about__media { display: grid; place-items: center; }
.about__card { position: relative; width: 100%; max-width: 360px; aspect-ratio: 4/5; border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--accent), var(--accent-d)); box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--line); }
.about__card::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -70px 90px -40px rgba(0,0,0,.5); border-radius: inherit; }
.about__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.about__badge { position: absolute; bottom: 16px; left: 16px; z-index: 2; font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--accent-d); background: #fff; padding: 6px 12px; border-radius: 100px; box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.about__motto { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 700; color: var(--accent); margin: 16px 0 18px; letter-spacing: -.01em; }
.about__text > p { color: var(--muted); max-width: 60ch; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.chips li { font-family: var(--mono); font-size: 12.5px; color: var(--text); border: 1px solid var(--line-2); border-radius: 100px; padding: 6px 13px; }
.partners { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); }
.partners__label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); width: 100%; }
.pill { font-size: 13px; font-weight: 600; border: 1px solid var(--line-2); border-radius: 100px; padding: 7px 14px; }
.pill--eco { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }

/* ==================== CTA ==================== */
.cta { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 120px) 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-d)); color: #fff; }
.cta__inner { position: relative; }
.cta__watermark { position: absolute; right: -30px; top: 50%; transform: translateY(-50%) rotate(6deg);
  width: min(340px, 42%); filter: brightness(0) invert(1); opacity: .1; pointer-events: none; }
.cta__content { position: relative; z-index: 1; max-width: 60ch; }
.cta__title { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 14px 0 14px; }
.cta__lead { font-size: 1.15rem; color: rgba(255,255,255,.9); max-width: 48ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.cta__meta { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,.8); }

/* ==================== FOOTER ==================== */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-top: clamp(44px, 6vw, 68px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__tag { color: var(--muted); font-size: .94rem; max-width: 34ch; }
.footer__addr { display: block; font-style: normal; color: var(--muted-2); font-size: .86rem; line-height: 1.6; margin-top: 14px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; font-weight: 600; }
.footer__col a { display: block; color: var(--muted); font-size: .95rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 22px 0 34px; margin-top: 8px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--muted-2); }

@media (max-width: 1000px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } .values { grid-template-columns: repeat(2, 1fr); } .about { grid-template-columns: 1fr; } .about__media { order: -1; } .about__card { max-width: 260px; aspect-ratio: 5/4; } .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards--4, .cards--3, .values { grid-template-columns: 1fr; } .footer__grid { grid-template-columns: 1fr; gap: 24px; } .cta__watermark { opacity: .07; } }

/* ==================== Rechtsseiten (Impressum / Datenschutz) ==================== */
.legal { padding: 130px 0 80px; }
.legal__body { max-width: 780px; }
.legal__head { margin-bottom: 40px; }
.legal__back { display: inline-block; font-family: var(--mono); font-size: 13px; color: var(--accent); margin-bottom: 20px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal__lead { color: var(--muted); margin-top: 12px; }
.legal__body h2 { font-size: 1.3rem; margin: 38px 0 12px; }
.legal__body p, .legal__body li { color: var(--muted); }
.legal__body p { margin-bottom: 14px; }
.legal__body ul { margin: 0 0 16px 20px; display: grid; gap: 6px; }
.legal__body a { color: var(--accent); }
.legal__card { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-panel); padding: 26px 28px; margin: 8px 0; }
.legal__card .k { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.legal__card .v { color: var(--text); margin: 2px 0 14px; }
.legal__card .v:last-child { margin-bottom: 0; }

/* ==================== BLOG ==================== */
.blog-head { padding: 124px 0 6px; }
.blog-head .sec__lead { max-width: 60ch; }
.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 30px 0 clamp(60px,8vw,100px); }
.post-card { display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg-panel); padding: 28px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.post-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line-2)); box-shadow: var(--shadow-sm); }
.post-card__meta { font-family: var(--mono); font-size: 12px; color: var(--muted-2); display: flex; flex-wrap: wrap; gap: 4px 12px; }
.post-card__meta .tag { color: var(--accent); }
.post-card h2, .post-card h3 { font-size: 1.32rem; letter-spacing: -.01em; }
.post-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.post-card__more { color: var(--accent); font-weight: 600; font-size: .9rem; }
@media (max-width: 700px) { .post-list { grid-template-columns: 1fr; } }

.article-wrap { padding: 112px 0 40px; }
.crumbs { font-family: var(--mono); font-size: 12px; color: var(--muted-2); margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs a { color: var(--muted-2); } .crumbs a:hover { color: var(--accent); } .crumbs .sep { opacity: .5; }
.article { max-width: 760px; margin: 0 auto; }
.article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.article__tags span { font-family: var(--mono); font-size: 11px; color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line-2)); border-radius: 100px; padding: 4px 12px; }
.article__title { font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.1; }
.article__meta { font-family: var(--mono); font-size: 13px; color: var(--muted-2); margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 16px; }
.prose { margin-top: 36px; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: 1.55rem; margin-top: 1.9em; letter-spacing: -.01em; }
.prose h3 { font-size: 1.22rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--text); font-size: 1.06rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: .45em; }
.prose li { padding-left: .2em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { font-weight: 700; }
.prose blockquote { border-left: 3px solid var(--accent); padding: 2px 0 2px 18px; color: var(--muted); font-style: italic; }
.prose code { font-family: var(--mono); font-size: .9em; background: var(--bg-soft); padding: 2px 6px; border-radius: 6px; }
.prose pre { background: #0c0f14; color: #eef2f6; padding: 18px 20px; border-radius: 12px; overflow: auto; font-size: .92rem; }
.prose pre code { background: none; padding: 0; color: inherit; }
.article__foot { max-width: 760px; margin: 46px auto 0; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.article__back { font-weight: 600; color: var(--accent); }
.article__cta { max-width: 760px; margin: 40px auto 0; background: linear-gradient(135deg, var(--accent), var(--accent-d)); color: #fff; border-radius: var(--r-lg); padding: clamp(26px,4vw,40px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; box-shadow: 0 20px 50px -24px var(--accent); }
.article__cta h3 { font-size: 1.4rem; }
.article__cta p { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: 4px; }
