/* ============================================================
   DevFlowCollective.com — stylesheet
   "Workflow Atlas" — warm bone paper, slab-serif display, hot
   coral accent, oversized chapter numerals, left-rail folio
   index. Asymmetric editorial grid. Distinct from prior projects.
   ============================================================ */

:root {
  --dfc-paper:   #F4EFE6;
  --dfc-paper-2: #EAE3D6;
  --dfc-cream:   #FAF6EC;
  --dfc-ink:     #1A1916;
  --dfc-ink-2:   #2B2A26;
  --dfc-graphite:#605D55;
  --dfc-mute:    #8A8678;
  --dfc-rule:    #C9C2B2;
  --dfc-rule-2:  #B5AC97;
  --dfc-coral:   #FF5B3A;
  --dfc-coral-2: #E4422A;
  --dfc-moss:    #4E6648;
  --dfc-amber:   #D69A2A;
  --dfc-pad:     2.5rem;
  --dfc-shell:   1320px;
  --dfc-shell-n: 880px;
  --dfc-rail:    72px;
  --dfc-ease:    cubic-bezier(.2,.8,.2,1);

  --dfc-serif:   'Fraunces', 'Cooper BT', 'Tiempos Headline', Georgia, serif;
  --dfc-sans:    'IBM Plex Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --dfc-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

@media (max-width: 760px) {
  :root { --dfc-pad: 1.4rem; --dfc-rail: 0; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--dfc-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--dfc-ink);
  background: var(--dfc-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s var(--dfc-ease); }
a:hover { color: var(--dfc-coral); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--dfc-coral); color: var(--dfc-cream); }

.dfc-skip {
  position: absolute; top: -100px; left: 0;
  background: var(--dfc-ink); color: var(--dfc-cream);
  padding: .75rem 1rem;
  font-family: var(--dfc-mono); font-size: 13px;
  z-index: 1000;
}
.dfc-skip:focus { top: 0; }

.dfc-shell {
  width: 100%;
  max-width: var(--dfc-shell);
  margin: 0 auto;
  padding-left: var(--dfc-pad);
  padding-right: var(--dfc-pad);
}
.dfc-shell--n { max-width: var(--dfc-shell-n); }

/* ── Left rail (folio index that runs down every page) ─────── */
.dfc-frame {
  position: relative;
  padding-left: var(--dfc-rail);
}
.dfc-rail {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: var(--dfc-rail);
  border-right: 1px solid var(--dfc-rule);
  pointer-events: none;
}
.dfc-rail__inner {
  position: sticky;
  top: 120px;
  padding: 1rem 0 1rem 1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--dfc-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dfc-graphite);
  display: flex; align-items: center; gap: 1.5rem;
}
.dfc-rail__inner strong { color: var(--dfc-coral); font-weight: 500; }
@media (max-width: 760px) {
  .dfc-rail { display: none; }
}

/* ── Masthead ──────────────────────────────────────────────── */
.dfc-mast {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dfc-paper);
  border-bottom: 1px solid var(--dfc-rule);
}
.dfc-mast__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 82px;
}

.dfc-brand {
  display: inline-flex; align-items: baseline; gap: .55rem;
  flex-shrink: 0;
}
.dfc-brand__mark {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dfc-ink); color: var(--dfc-cream);
  font-family: var(--dfc-serif); font-weight: 600;
  font-size: 22px; line-height: 1;
  position: relative;
}
.dfc-brand__mark::after {
  content: ''; position: absolute;
  right: -4px; bottom: -4px;
  width: 10px; height: 10px;
  background: var(--dfc-coral);
}
.dfc-brand__name {
  font-family: var(--dfc-serif); font-weight: 600;
  font-size: 22px; letter-spacing: -.01em; line-height: 1;
}
.dfc-brand__sub {
  font-family: var(--dfc-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite);
  display: block; margin-top: 3px;
}

.dfc-nav { display: flex; gap: 1.5rem; justify-content: center; }
.dfc-nav a {
  font-family: var(--dfc-sans); font-weight: 500; font-size: 14px;
  color: var(--dfc-ink-2);
  padding: .5rem 0;
  position: relative;
}
.dfc-nav a::before {
  content: attr(data-no);
  font-family: var(--dfc-mono); font-size: 10px;
  letter-spacing: .14em; color: var(--dfc-coral);
  margin-right: .4rem;
  font-weight: 500;
  vertical-align: 2px;
}
.dfc-nav a:hover, .dfc-nav a.is-active { color: var(--dfc-ink); }
.dfc-nav a.is-active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--dfc-coral);
}

.dfc-mast__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.15rem;
  background: var(--dfc-ink); color: var(--dfc-cream);
  font-family: var(--dfc-sans); font-weight: 500; font-size: 13.5px;
  border: 1px solid var(--dfc-ink);
  transition: background .15s var(--dfc-ease);
  border-radius: 999px;
}
.dfc-mast__cta:hover { background: var(--dfc-coral); border-color: var(--dfc-coral); color: var(--dfc-cream); }

.dfc-mast__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--dfc-rule-2);
  border-radius: 999px;
  padding: 0; position: relative;
}
.dfc-mast__burger span,
.dfc-mast__burger span::before,
.dfc-mast__burger span::after {
  content: ''; display: block;
  width: 18px; height: 1.5px;
  background: var(--dfc-ink);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.dfc-mast__burger span::before { transform: translate(-50%, -7px); }
.dfc-mast__burger span::after  { transform: translate(-50%,  7px); }

.dfc-drawer {
  position: fixed; inset: 0;
  background: var(--dfc-paper); z-index: 100;
  transform: translateY(-100%);
  transition: transform .35s var(--dfc-ease);
  display: flex; flex-direction: column;
}
.dfc-drawer.is-open { transform: translateY(0); }
.dfc-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px; padding: 0 var(--dfc-pad);
  border-bottom: 1px solid var(--dfc-rule);
}
.dfc-drawer__close {
  width: 40px; height: 40px;
  border: 1px solid var(--dfc-rule-2); border-radius: 999px;
  background: transparent;
  font-family: var(--dfc-mono); font-size: 18px;
}
.dfc-drawer__nav {
  flex: 1;
  padding: var(--dfc-pad);
  display: flex; flex-direction: column; gap: .25rem;
}
.dfc-drawer__nav a {
  display: flex; align-items: baseline; gap: .75rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--dfc-rule);
  font-family: var(--dfc-serif); font-size: 26px;
  font-weight: 500; letter-spacing: -.012em;
}
.dfc-drawer__nav-no {
  font-family: var(--dfc-mono); font-size: 12px;
  color: var(--dfc-coral); letter-spacing: .08em;
}

@media (max-width: 1024px) {
  .dfc-nav { display: none; }
  .dfc-mast__burger { display: inline-flex; align-items: center; justify-content: center; }
  .dfc-mast__bar { grid-template-columns: auto auto; justify-content: space-between; }
  .dfc-mast__bar .dfc-mast__cta { display: none; }
}
@media (min-width: 1025px) {
  .dfc-drawer { display: none; }
}

/* ── Sections ──────────────────────────────────────────────── */
.dfc-sec { padding: 5.5rem 0; border-top: 1px solid var(--dfc-rule); position: relative; }
.dfc-sec--first { border-top: none; }
.dfc-sec--cream { background: var(--dfc-cream); }
.dfc-sec--ink   { background: var(--dfc-ink); color: var(--dfc-cream); border-top-color: var(--dfc-ink); }
.dfc-sec--ink a { color: var(--dfc-cream); }
@media (max-width: 760px) { .dfc-sec { padding: 4rem 0; } }

/* Section header with chapter number off to the side */
.dfc-chap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--dfc-rule);
  padding-bottom: 1.5rem;
}
.dfc-sec--ink .dfc-chap { border-bottom-color: rgba(244,239,230,.18); }
@media (max-width: 760px) { .dfc-chap { grid-template-columns: 1fr; gap: 1rem; } }

.dfc-chap__roman {
  font-family: var(--dfc-serif);
  font-weight: 300;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: .85;
  letter-spacing: -.03em;
  color: var(--dfc-coral);
  font-style: italic;
}
.dfc-chap__label {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 .65rem;
}
.dfc-sec--ink .dfc-chap__label { color: var(--dfc-rule); }
.dfc-chap__title {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0; color: var(--dfc-ink);
}
.dfc-sec--ink .dfc-chap__title { color: var(--dfc-cream); }
.dfc-chap__title em { font-style: italic; color: var(--dfc-coral); }
.dfc-chap__folio {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); margin-top: .85rem;
}

/* Display sizes */
.dfc-h1 {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .98; letter-spacing: -.028em;
  margin: 0 0 1.25rem; color: var(--dfc-ink);
}
.dfc-h1 em { font-style: italic; color: var(--dfc-coral); font-weight: 500; }

.dfc-h2 {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0 0 .85em; color: var(--dfc-ink);
}
.dfc-h2 em { font-style: italic; color: var(--dfc-coral); font-weight: 500; }

.dfc-h3 {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 1.4rem; line-height: 1.2;
  letter-spacing: -.014em; margin: 0 0 .5em;
}

.dfc-lede {
  font-family: var(--dfc-sans);
  font-size: 1.15rem; line-height: 1.55;
  color: var(--dfc-ink-2); max-width: 60ch;
  margin: 0 0 1.5rem;
}
.dfc-sec--ink .dfc-lede { color: rgba(244,239,230,.8); }

.dfc-eyebrow {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 1.5rem;
  display: inline-flex; align-items: center; gap: .65rem;
}
.dfc-eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--dfc-coral); }

/* ── Hero ──────────────────────────────────────────────────── */
.dfc-hero { padding: 5rem 0 4rem; }
.dfc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 3rem; align-items: end;
}
@media (max-width: 920px) { .dfc-hero__grid { grid-template-columns: 1fr; gap: 2rem; } }

.dfc-hero__edition {
  border: 1px solid var(--dfc-ink);
  background: var(--dfc-cream);
  padding: 0;
  font-family: var(--dfc-mono);
}
.dfc-hero__edition-head {
  background: var(--dfc-ink); color: var(--dfc-cream);
  padding: .65rem .9rem;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.dfc-hero__edition-head span:last-child { color: var(--dfc-coral); }
.dfc-hero__edition-row {
  display: grid; grid-template-columns: 1fr 1.2fr;
  border-bottom: 1px solid var(--dfc-rule);
  padding: .55rem .9rem;
  font-size: 12px;
  letter-spacing: .04em;
}
.dfc-hero__edition-row:last-child { border-bottom: none; }
.dfc-hero__edition-row dt {
  color: var(--dfc-graphite); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0;
}
.dfc-hero__edition-row dd { margin: 0; color: var(--dfc-ink); }
.dfc-hero__edition-row dd.is-on::before {
  content: '●'; color: var(--dfc-moss); margin-right: .35rem;
}

/* ── PRINCIPLES — paired rows with the principle number off to the left ── */
.dfc-tenets {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--dfc-rule);
}
.dfc-tenet {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--dfc-rule);
}
@media (max-width: 760px) { .dfc-tenet { grid-template-columns: 1fr; gap: .5rem; } }
.dfc-tenet__no {
  font-family: var(--dfc-serif); font-style: italic;
  font-weight: 400; font-size: 3.2rem; line-height: 1;
  color: var(--dfc-coral); letter-spacing: -.02em;
}
.dfc-tenet__t {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 1.55rem; line-height: 1.15;
  letter-spacing: -.018em; margin: 0 0 .5rem;
  color: var(--dfc-ink);
}
.dfc-tenet__b { margin: 0; color: var(--dfc-ink-2); font-size: 1rem; line-height: 1.55; max-width: 65ch; }

/* ── SERVICES — chapter scroll list ─────────────────────────── */
.dfc-chapters {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--dfc-ink);
}
.dfc-chapter {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--dfc-rule);
  transition: background .2s var(--dfc-ease);
  text-decoration: none;
}
.dfc-chapter:hover { background: var(--dfc-cream); }
.dfc-chapter__roman {
  font-family: var(--dfc-serif); font-style: italic;
  font-weight: 400; font-size: 3rem;
  letter-spacing: -.02em;
  color: var(--dfc-coral);
  line-height: .9;
}
.dfc-chapter__kicker {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 .35rem;
}
.dfc-chapter__name {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 1.85rem; letter-spacing: -.02em;
  line-height: 1.1; margin: 0 0 .5rem; color: var(--dfc-ink);
}
.dfc-chapter__lede { color: var(--dfc-ink-2); font-size: 1rem; line-height: 1.55; margin: 0 0 1rem; max-width: 65ch; }
.dfc-chapter__stack {
  display: flex; flex-wrap: wrap; gap: .4rem;
  font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .04em;
}
.dfc-chapter__stack span {
  padding: .2rem .5rem;
  background: var(--dfc-paper-2);
  color: var(--dfc-ink-2);
  border-radius: 4px;
}
.dfc-chapter__cta {
  font-family: var(--dfc-mono); font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-ink); white-space: nowrap;
  align-self: center;
}
.dfc-chapter__cta::after {
  content: ' →';
  display: inline-block;
  transition: transform .15s var(--dfc-ease);
}
.dfc-chapter:hover .dfc-chapter__cta { color: var(--dfc-coral); }
.dfc-chapter:hover .dfc-chapter__cta::after { transform: translateX(4px); }
@media (max-width: 760px) {
  .dfc-chapter { grid-template-columns: 1fr; gap: .75rem; }
}

/* ── JOURNEYS — asymmetric cards with metric callouts ───────── */
.dfc-journey {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--dfc-rule);
  align-items: start;
}
.dfc-journey:last-child { border-bottom: 1px solid var(--dfc-rule); }
.dfc-journey--flip { grid-template-columns: 1fr 1.4fr; }
.dfc-journey--flip .dfc-journey__body  { order: 2; }
.dfc-journey--flip .dfc-journey__aside { order: 1; }
@media (max-width: 900px) {
  .dfc-journey, .dfc-journey--flip { grid-template-columns: 1fr; gap: 1.5rem; }
  .dfc-journey--flip .dfc-journey__body  { order: 1; }
  .dfc-journey--flip .dfc-journey__aside { order: 2; }
}
.dfc-journey__doc {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); margin-bottom: 1rem;
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.dfc-journey__doc strong { color: var(--dfc-coral); font-weight: 500; }
.dfc-journey__brand {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -.025em; line-height: 1.05;
  margin: 0 0 .5rem;
}
.dfc-journey__pull {
  font-family: var(--dfc-serif); font-style: italic;
  font-weight: 400; font-size: 1.3rem; line-height: 1.4;
  color: var(--dfc-ink); margin: 1.5rem 0;
  max-width: 50ch;
  padding-left: 1rem;
  border-left: 2px solid var(--dfc-coral);
}
.dfc-journey__stack {
  font-family: var(--dfc-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--dfc-ink-2); margin-top: 1rem;
}
.dfc-journey__stack-label {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); display: block; margin-bottom: .35rem;
}

.dfc-metric-stack { display: flex; flex-direction: column; gap: 1rem; }
.dfc-metric {
  border-top: 2px solid var(--dfc-ink);
  padding: 1.25rem 0 1.5rem;
  background: transparent;
}
.dfc-metric__k {
  font-family: var(--dfc-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 .35rem;
}
.dfc-metric__v {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(2.2rem, 3.5vw, 3rem); line-height: 1;
  letter-spacing: -.028em; color: var(--dfc-coral); margin: 0;
}

/* ── LEDGER — four-column stat band ─────────────────────────── */
.dfc-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--dfc-cream);
  border-bottom: 2px solid var(--dfc-cream);
}
@media (max-width: 760px) { .dfc-ledger { grid-template-columns: 1fr 1fr; } }
.dfc-ledger__cell { padding: 2rem 1.5rem; border-right: 1px solid rgba(244,239,230,.18); }
.dfc-ledger__cell:last-child { border-right: none; }
@media (max-width: 760px) {
  .dfc-ledger__cell { border-right: 1px solid rgba(244,239,230,.18); border-bottom: 1px solid rgba(244,239,230,.18); }
  .dfc-ledger__cell:nth-child(2n) { border-right: none; }
  .dfc-ledger__cell:nth-last-child(-n+2) { border-bottom: none; }
}
.dfc-ledger__k {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dfc-rule); margin: 0 0 .65rem;
}
.dfc-ledger__v {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -.025em; line-height: 1;
  color: var(--dfc-cream); margin: 0;
}

/* ── CADENCE — sprint week grid ─────────────────────────────── */
.dfc-cadence {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--dfc-rule);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--dfc-rule);
  align-items: baseline;
}
.dfc-cadence:first-of-type { border-top: 1px solid var(--dfc-ink); }
.dfc-cadence__when {
  font-family: var(--dfc-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-coral); display: flex; gap: .5rem; align-items: center;
}
.dfc-cadence__when::before { content: ''; width: 8px; height: 8px; background: var(--dfc-coral); border-radius: 999px; flex-shrink: 0; }
.dfc-cadence__t { font-family: var(--dfc-serif); font-weight: 500; font-size: 1.2rem; letter-spacing: -.014em; margin: 0 0 .35rem; }
.dfc-cadence__b { margin: 0; color: var(--dfc-ink-2); font-size: 14.5px; line-height: 1.55; max-width: 70ch; }
@media (max-width: 760px) {
  .dfc-cadence { grid-template-columns: 1fr; gap: .35rem; }
}

/* ── STACK — bill of materials ──────────────────────────────── */
.dfc-bom { border-top: 1px solid var(--dfc-ink); }
.dfc-bom__row {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 2rem; padding: 1.15rem 0;
  border-bottom: 1px solid var(--dfc-rule);
  align-items: baseline;
}
.dfc-bom__cat {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--dfc-ink); display: flex; gap: .75rem; align-items: center;
}
.dfc-bom__cat::before { content: ''; width: 6px; height: 6px; background: var(--dfc-coral); display: inline-block; flex-shrink: 0; transform: rotate(45deg); }
.dfc-bom__items { font-size: 1.05rem; color: var(--dfc-ink-2); }
@media (max-width: 760px) {
  .dfc-bom__row { grid-template-columns: 1fr; gap: .35rem; }
}

/* ── VOICES ─────────────────────────────────────────────────── */
.dfc-voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--dfc-rule); }
@media (max-width: 920px) { .dfc-voices { grid-template-columns: 1fr; } }
.dfc-voice { padding: 2.5rem 1.75rem; border-right: 1px solid var(--dfc-rule); border-bottom: 1px solid var(--dfc-rule); }
.dfc-voice:last-child { border-right: none; }
@media (max-width: 920px) { .dfc-voice { border-right: none; } }
.dfc-voice__q {
  font-family: var(--dfc-serif); font-style: italic;
  font-weight: 400; font-size: 1.2rem; line-height: 1.45;
  color: var(--dfc-ink); margin: 0 0 1.5rem;
}
.dfc-voice__q::before {
  content: '“';
  font-family: var(--dfc-serif);
  font-size: 4rem; line-height: 0;
  color: var(--dfc-coral); display: block;
  position: relative; top: 1.5rem; left: -.25rem;
  margin-bottom: 1rem;
  font-style: normal;
}
.dfc-voice__cite { font-family: var(--dfc-mono); font-size: 12px; letter-spacing: .04em; color: var(--dfc-ink-2); }
.dfc-voice__cite strong { display: block; color: var(--dfc-ink); font-weight: 500; margin-bottom: .15rem; font-family: var(--dfc-sans); }

/* ── PRICING — sprint slider ─────────────────────────────────── */
.dfc-sprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--dfc-ink);
  background: var(--dfc-cream);
}
@media (max-width: 1080px) { .dfc-sprint-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .dfc-sprint-grid { grid-template-columns: 1fr; } }

.dfc-sprint {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--dfc-rule);
  position: relative;
  display: flex; flex-direction: column;
}
.dfc-sprint:last-child { border-right: none; }
@media (max-width: 1080px) {
  .dfc-sprint { border-right: 1px solid var(--dfc-rule); border-bottom: 1px solid var(--dfc-rule); }
  .dfc-sprint:nth-child(2n) { border-right: none; }
}
.dfc-sprint--feature { background: var(--dfc-ink); color: var(--dfc-cream); }
.dfc-sprint--feature .dfc-sprint__folio,
.dfc-sprint--feature .dfc-sprint__hint,
.dfc-sprint--feature .dfc-sprint__best-label { color: rgba(244,239,230,.65); }
.dfc-sprint--feature .dfc-sprint__weeks { color: var(--dfc-coral); }
.dfc-sprint--feature .dfc-sprint__discount { color: var(--dfc-coral); }

.dfc-sprint__flag {
  position: absolute; top: -1px; right: -1px;
  background: var(--dfc-coral); color: var(--dfc-cream);
  font-family: var(--dfc-mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .25rem .5rem;
}
.dfc-sprint__folio {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 .85rem;
}
.dfc-sprint__count {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 4.5rem; letter-spacing: -.03em;
  line-height: .9; margin: 0;
}
.dfc-sprint__count small {
  display: block;
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--dfc-graphite);
  margin-top: .35rem; font-weight: 400;
}
.dfc-sprint--feature .dfc-sprint__count small { color: rgba(244,239,230,.6); }

.dfc-sprint__weeks {
  font-family: var(--dfc-mono); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dfc-coral); margin: .65rem 0 1.25rem;
}
.dfc-sprint__lede {
  font-size: 14.5px; line-height: 1.55;
  margin: 0 0 1.25rem;
  opacity: .85;
  flex: 1;
}
.dfc-sprint__price {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 2.2rem; letter-spacing: -.025em;
  line-height: 1; margin: 0 0 .25rem;
}
.dfc-sprint__discount {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .12em; color: var(--dfc-coral);
  margin: 0 0 .5rem;
}
.dfc-sprint__hint {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .04em; color: var(--dfc-graphite);
  margin: 0 0 1.25rem; line-height: 1.5;
}
.dfc-sprint__best {
  margin: 0 0 1.25rem; padding: .85rem 0;
  border-top: 1px dashed var(--dfc-rule);
  border-bottom: 1px dashed var(--dfc-rule);
}
.dfc-sprint--feature .dfc-sprint__best { border-color: rgba(244,239,230,.18); }
.dfc-sprint__best-label {
  font-family: var(--dfc-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 .25rem;
}
.dfc-sprint__best-body { font-size: 13.5px; line-height: 1.5; margin: 0; opacity: .9; }

.dfc-sprint__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem 1rem;
  background: var(--dfc-ink); color: var(--dfc-cream);
  font-family: var(--dfc-sans); font-weight: 500; font-size: 13.5px;
  border: 1px solid var(--dfc-ink); width: 100%;
  border-radius: 999px;
  transition: background .15s var(--dfc-ease);
}
.dfc-sprint__cta:hover { background: var(--dfc-coral); border-color: var(--dfc-coral); color: var(--dfc-cream); }
.dfc-sprint--feature .dfc-sprint__cta { background: var(--dfc-coral); border-color: var(--dfc-coral); }
.dfc-sprint--feature .dfc-sprint__cta:hover { background: var(--dfc-coral-2); border-color: var(--dfc-coral-2); }

/* ── CONTINUITY — two-card ──────────────────────────────────── */
.dfc-continuity-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--dfc-ink);
  background: var(--dfc-cream);
}
@media (max-width: 760px) { .dfc-continuity-grid { grid-template-columns: 1fr; } }
.dfc-continuity {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--dfc-rule);
  display: flex; flex-direction: column;
}
.dfc-continuity:last-child { border-right: none; }
@media (max-width: 760px) {
  .dfc-continuity { border-right: none; border-bottom: 1px solid var(--dfc-rule); }
  .dfc-continuity:last-child { border-bottom: none; }
}
.dfc-continuity--feature { background: var(--dfc-ink); color: var(--dfc-cream); }
.dfc-continuity--feature .dfc-continuity__folio,
.dfc-continuity--feature .dfc-continuity__hint { color: rgba(244,239,230,.65); }
.dfc-continuity--feature .dfc-continuity__list li { border-color: rgba(244,239,230,.2); }
.dfc-continuity__folio {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 .65rem;
}
.dfc-continuity__name { font-family: var(--dfc-serif); font-weight: 500; font-size: 1.5rem; letter-spacing: -.02em; margin: 0 0 .5rem; }
.dfc-continuity__lede { font-size: 14.5px; line-height: 1.55; margin: 0 0 1.5rem; opacity: .85; }
.dfc-continuity__price {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 2.4rem; letter-spacing: -.025em;
  margin: 0 0 1rem; line-height: 1;
}
.dfc-continuity__price small { font-family: var(--dfc-mono); font-size: 12px; letter-spacing: .08em; opacity: .7; font-weight: 400; }
.dfc-continuity__list { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.dfc-continuity__list li {
  padding: .65rem 0 .65rem 1.25rem;
  border-bottom: 1px dotted var(--dfc-rule);
  font-size: 13.5px; line-height: 1.5;
  position: relative;
}
.dfc-continuity__list li::before {
  content: '+'; position: absolute; left: 0; top: .65rem;
  font-family: var(--dfc-mono); color: var(--dfc-coral); font-weight: 500;
}

/* ── HOURS — row layout ─────────────────────────────────────── */
.dfc-hour {
  display: grid; grid-template-columns: 90px 1fr 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--dfc-rule);
}
.dfc-hour:first-child { border-top: 1px solid var(--dfc-ink); }
.dfc-hour__h {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 2.4rem; letter-spacing: -.025em; line-height: 1;
  color: var(--dfc-ink);
}
.dfc-hour__h small { font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .14em; color: var(--dfc-graphite); display: block; margin-top: .25rem; font-weight: 400; }
.dfc-hour__lede { color: var(--dfc-ink-2); font-size: 14.5px; line-height: 1.5; }
.dfc-hour__price { font-family: var(--dfc-serif); font-weight: 500; font-size: 1.4rem; color: var(--dfc-coral); letter-spacing: -.018em; }
.dfc-hour__price small { font-family: var(--dfc-mono); font-size: 11px; color: var(--dfc-graphite); display: block; font-weight: 400; }
@media (max-width: 720px) {
  .dfc-hour { grid-template-columns: 1fr 1fr; }
  .dfc-hour form { grid-column: 1 / -1; }
}

/* ── BUILDER (Package Composer) ──────────────────────────────── */
.dfc-builder { border: 1px solid var(--dfc-ink); background: var(--dfc-cream); }
.dfc-builder__head {
  background: var(--dfc-ink); color: var(--dfc-cream);
  padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: .5rem;
}
.dfc-builder__head-t {
  font-family: var(--dfc-mono); font-size: 12px;
  letter-spacing: .15em; text-transform: uppercase;
}
.dfc-builder__head-id { font-family: var(--dfc-mono); font-size: 11px; color: var(--dfc-coral); letter-spacing: .14em; }
.dfc-builder__body { padding: 1.75rem; }

.dfc-builder__step { margin-bottom: 1.5rem; }
.dfc-builder__step-h {
  font-family: var(--dfc-mono); font-size: 10.5px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--dfc-graphite); margin: 0 0 .85rem;
  display: flex; align-items: center; gap: .5rem;
}
.dfc-builder__step-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--dfc-coral); color: var(--dfc-cream);
  border-radius: 999px; font-family: var(--dfc-serif); font-size: 12px; font-weight: 500;
}

.dfc-radio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; }
@media (max-width: 720px) { .dfc-radio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dfc-radio-grid { grid-template-columns: 1fr; } }

.dfc-radio {
  display: block; padding: 1rem 1.1rem;
  border: 1px solid var(--dfc-rule);
  background: var(--dfc-paper); cursor: pointer;
  transition: border-color .15s var(--dfc-ease), background .15s var(--dfc-ease);
}
.dfc-radio:has(input:checked) { border-color: var(--dfc-coral); background: var(--dfc-cream); }
.dfc-radio input { accent-color: var(--dfc-coral); margin-right: .5rem; }
.dfc-radio__name { font-weight: 500; display: inline-block; font-size: 14.5px; }
.dfc-radio__hint {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .04em; color: var(--dfc-graphite);
  display: block; margin-top: .25rem;
}
.dfc-radio__hint strong { color: var(--dfc-ink); font-weight: 500; }

.dfc-modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dfc-rule);
  border-left: 1px solid var(--dfc-rule);
}
@media (max-width: 720px) { .dfc-modules-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dfc-modules-grid { grid-template-columns: 1fr; } }
.dfc-mod {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .85rem 1.1rem;
  border-right: 1px solid var(--dfc-rule);
  border-bottom: 1px solid var(--dfc-rule);
  font-size: 14px; cursor: pointer;
}
.dfc-mod:has(input:checked) { background: var(--dfc-cream); }
.dfc-mod__name { display: flex; align-items: center; gap: .65rem; }
.dfc-mod__name input { accent-color: var(--dfc-coral); }
.dfc-mod__folio { font-family: var(--dfc-mono); font-size: 10px; letter-spacing: .12em; color: var(--dfc-graphite); }
.dfc-mod__price { font-family: var(--dfc-mono); font-size: 13px; color: var(--dfc-ink); font-weight: 500; }

.dfc-builder__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 1.5rem -1.75rem -1.75rem;
  padding: 1.5rem 1.75rem;
  background: var(--dfc-ink); color: var(--dfc-cream);
}
.dfc-builder__total-k { font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.dfc-builder__total-v {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 2.4rem; letter-spacing: -.025em;
  color: var(--dfc-coral); line-height: 1;
}
.dfc-builder__cta-row {
  margin: 0 -1.75rem -1.75rem;
  padding: 1rem 1.75rem 1.75rem;
  background: var(--dfc-ink); display: flex; justify-content: flex-end;
}
.dfc-builder__cta {
  background: var(--dfc-coral); color: var(--dfc-cream);
  font-family: var(--dfc-sans); font-weight: 500; font-size: 13.5px;
  padding: .85rem 1.25rem; border: 1px solid var(--dfc-coral);
  cursor: pointer; border-radius: 999px;
}
.dfc-builder__cta:hover { background: var(--dfc-coral-2); border-color: var(--dfc-coral-2); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.dfc-faqs { border-top: 1px solid var(--dfc-ink); }
.dfc-faq { border-bottom: 1px solid var(--dfc-rule); }
.dfc-faq__q {
  width: 100%; background: transparent; border: none;
  padding: 1.5rem 0;
  font-family: var(--dfc-serif); font-size: 1.2rem; font-weight: 500;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -.015em; color: var(--dfc-ink); gap: 1rem;
}
.dfc-faq__q::after {
  content: '+'; font-family: var(--dfc-mono); font-size: 1.5rem;
  color: var(--dfc-coral); transition: transform .25s var(--dfc-ease);
  flex-shrink: 0;
}
.dfc-faq[aria-expanded="true"] .dfc-faq__q::after { transform: rotate(45deg); }
.dfc-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--dfc-ease); }
.dfc-faq[aria-expanded="true"] .dfc-faq__a { max-height: 600px; }
.dfc-faq__a-inner { padding: 0 0 1.5rem; color: var(--dfc-ink-2); line-height: 1.6; max-width: 70ch; }

/* ── FORMS ───────────────────────────────────────────────────── */
.dfc-form { display: flex; flex-direction: column; gap: 1.25rem; }
.dfc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .dfc-form__row { grid-template-columns: 1fr; } }
.dfc-form__hp { position: absolute; left: -10000px; opacity: 0; height: 0; overflow: hidden; }

.dfc-field { display: flex; flex-direction: column; gap: .35rem; }
.dfc-field__label {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--dfc-graphite);
}
.dfc-field__opt { color: var(--dfc-mute); text-transform: lowercase; letter-spacing: 0; font-size: 11px; }
.dfc-field input,
.dfc-field select,
.dfc-field textarea {
  font-family: var(--dfc-sans); font-size: 15px;
  padding: .85rem 1rem;
  background: var(--dfc-cream); color: var(--dfc-ink);
  border: 1px solid var(--dfc-rule-2);
  border-radius: 6px;
  transition: border-color .15s var(--dfc-ease);
}
.dfc-field input:focus, .dfc-field select:focus, .dfc-field textarea:focus {
  outline: none; border-color: var(--dfc-coral);
}
.dfc-field textarea { min-height: 160px; resize: vertical; line-height: 1.55; }
.dfc-field--check { flex-direction: row; align-items: flex-start; gap: .65rem; }
.dfc-field--check label { font-size: 13.5px; line-height: 1.5; color: var(--dfc-ink-2); font-family: var(--dfc-sans); }
.dfc-field--check input { accent-color: var(--dfc-coral); margin-top: .25rem; flex-shrink: 0; }

.dfc-submit {
  align-self: flex-start;
  padding: .95rem 1.4rem;
  background: var(--dfc-ink); color: var(--dfc-cream);
  font-family: var(--dfc-sans); font-weight: 500; font-size: 14px;
  border: 1px solid var(--dfc-ink);
  border-radius: 999px;
  cursor: pointer;
}
.dfc-submit:hover { background: var(--dfc-coral); border-color: var(--dfc-coral); color: var(--dfc-cream); }
.dfc-submit[disabled] { opacity: .5; cursor: not-allowed; }

.dfc-form__msg { font-family: var(--dfc-mono); font-size: 12px; letter-spacing: .04em; min-height: 1em; color: var(--dfc-graphite); margin: 0; }
.dfc-form__msg.is-ok { color: var(--dfc-moss); }
.dfc-form__msg.is-err { color: var(--dfc-coral-2); }

/* ── CONTACT / CHECKOUT SPLIT ────────────────────────────────── */
.dfc-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .dfc-split { grid-template-columns: 1fr; gap: 2rem; } }
.dfc-aside {
  background: var(--dfc-ink); color: var(--dfc-cream);
  padding: 2.25rem; position: sticky; top: 110px;
}
.dfc-aside h3 { font-family: var(--dfc-serif); font-size: 1.4rem; font-weight: 500; margin: 0 0 1.5rem; letter-spacing: -.015em; }
.dfc-aside dl { margin: 0; font-family: var(--dfc-mono); font-size: 13px; }
.dfc-aside dt {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dfc-coral); margin-top: 1.25rem;
}
.dfc-aside dd { margin: .25rem 0 0; line-height: 1.55; color: rgba(244,239,230,.85); }
.dfc-aside a { color: rgba(244,239,230,.85); border-bottom: 1px solid rgba(244,239,230,.3); }
.dfc-aside a:hover { color: var(--dfc-coral); border-bottom-color: var(--dfc-coral); }

.dfc-order { background: var(--dfc-ink); color: var(--dfc-cream); padding: 2rem; position: sticky; top: 110px; }
.dfc-order h3 { margin: 0 0 1rem; font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dfc-coral); font-weight: 500; }
.dfc-order__line {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; padding: .85rem 0;
  border-bottom: 1px dashed rgba(244,239,230,.2);
  font-family: var(--dfc-mono); font-size: 13px;
}
.dfc-order__line strong { display: block; color: var(--dfc-cream); font-weight: 500; margin-bottom: .15rem; font-size: 14px; font-family: var(--dfc-sans); }
.dfc-order__sum {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(244,239,230,.4);
  font-family: var(--dfc-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.dfc-order__sum span:last-child {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 1.7rem; color: var(--dfc-coral);
  letter-spacing: -.02em; text-transform: none;
}
.dfc-order__vat { font-family: var(--dfc-mono); font-size: 11px; line-height: 1.5; color: rgba(244,239,230,.55); margin-top: 1rem; }

/* ── JOURNAL ─────────────────────────────────────────────────── */
.dfc-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--dfc-rule); }
@media (max-width: 920px) { .dfc-posts { grid-template-columns: 1fr; } }
.dfc-post {
  display: block; padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--dfc-rule);
  border-bottom: 1px solid var(--dfc-rule);
  transition: background .15s var(--dfc-ease);
}
.dfc-post:last-child { border-right: none; }
@media (max-width: 920px) { .dfc-post { border-right: none; } }
.dfc-post:hover { background: var(--dfc-cream); }
.dfc-post__meta {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dfc-graphite); display: flex; gap: 1rem; flex-wrap: wrap;
}
.dfc-post__meta span:first-child { color: var(--dfc-coral); }
.dfc-post__t {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: 1.5rem; letter-spacing: -.02em; line-height: 1.15;
  margin: 1.25rem 0 .65rem; color: var(--dfc-ink);
}
.dfc-post__lede { color: var(--dfc-ink-2); font-size: 14.5px; line-height: 1.55; margin: 0 0 1.25rem; }
.dfc-post__more { font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--dfc-coral); }

.dfc-article { max-width: 720px; margin: 0 auto; }
.dfc-article__head { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--dfc-rule); }
.dfc-article__meta {
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dfc-graphite); display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.dfc-article__meta span:first-child { color: var(--dfc-coral); }
.dfc-article__t {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05; letter-spacing: -.025em; margin: 0 0 1rem;
}
.dfc-article__byline { font-family: var(--dfc-mono); font-size: 12px; color: var(--dfc-graphite); }
.dfc-article__byline strong { color: var(--dfc-ink); font-weight: 500; }
.dfc-article__body { font-size: 1.05rem; line-height: 1.7; color: var(--dfc-ink-2); }
.dfc-article__body p { margin: 0 0 1.5em; }
.dfc-article__body p.is-intro {
  font-family: var(--dfc-serif); font-style: italic;
  font-weight: 400; font-size: 1.35rem; line-height: 1.45;
  color: var(--dfc-ink);
}

/* ── LEGAL ───────────────────────────────────────────────────── */
.dfc-legal { max-width: 760px; margin: 0 auto; font-size: 16px; line-height: 1.7; color: var(--dfc-ink-2); }
.dfc-legal__updated { font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--dfc-graphite); margin-bottom: 1.5rem; }
.dfc-legal h1 { font-family: var(--dfc-serif); font-size: 2.6rem; font-weight: 500; letter-spacing: -.022em; line-height: 1.05; margin: 0 0 1.5rem; color: var(--dfc-ink); }
.dfc-legal h2 { font-family: var(--dfc-serif); font-size: 1.4rem; font-weight: 500; letter-spacing: -.014em; margin: 2.5rem 0 .75rem; color: var(--dfc-ink); }
.dfc-legal p { margin: 0 0 1.25em; }
.dfc-legal ul, .dfc-legal ol { padding-left: 1.25rem; margin: 0 0 1.25em; }
.dfc-legal li { margin-bottom: .35em; }
.dfc-legal a { color: var(--dfc-coral); border-bottom: 1px solid var(--dfc-coral); }
.dfc-legal__table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 14px; }
.dfc-legal__table th, .dfc-legal__table td {
  border: 1px solid var(--dfc-rule-2);
  padding: .85rem;
  text-align: left; vertical-align: top;
}
.dfc-legal__table th {
  background: var(--dfc-paper-2);
  font-family: var(--dfc-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
}
.dfc-legal__table code { font-family: var(--dfc-mono); font-size: 12px; background: var(--dfc-paper-2); padding: .15rem .35rem; border: 1px solid var(--dfc-rule); border-radius: 3px; }

/* ── RESULT (success / cancel / 404) ─────────────────────────── */
.dfc-result { max-width: 660px; margin: 0 auto; text-align: center; }
.dfc-result__t {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  letter-spacing: -.025em; line-height: 1.05; margin: 1.5rem 0 1rem;
}
.dfc-result__t em { font-style: italic; color: var(--dfc-coral); }
.dfc-result__b { font-size: 1.1rem; line-height: 1.6; color: var(--dfc-ink-2); margin: 0 0 1rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.dfc-result__ref {
  font-family: var(--dfc-mono); font-size: 13px;
  padding: .75rem 1rem; background: var(--dfc-cream);
  border: 1px solid var(--dfc-rule);
  display: inline-block; margin-top: 1rem;
  border-radius: 4px;
}
.dfc-result__ref strong { color: var(--dfc-coral); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.dfc-foot {
  background: var(--dfc-cream);
  border-top: 1px solid var(--dfc-rule);
  padding: 4rem 0 2rem;
}
.dfc-foot__cta { padding: 4rem 0 3rem; border-bottom: 1px solid var(--dfc-rule); margin-bottom: 3rem; }
.dfc-foot__cta-h {
  font-family: var(--dfc-serif); font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  letter-spacing: -.028em; line-height: 1.05;
  max-width: 22ch; margin: 0 0 1.5rem;
}
.dfc-foot__cta-h em { font-style: italic; color: var(--dfc-coral); }
.dfc-foot__cta-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 1.5rem;
  background: var(--dfc-ink); color: var(--dfc-cream);
  font-family: var(--dfc-sans); font-weight: 500; font-size: 14px;
  border: 1px solid var(--dfc-ink);
  border-radius: 999px;
}
.dfc-foot__cta-btn:hover { background: var(--dfc-coral); border-color: var(--dfc-coral); color: var(--dfc-cream); }

.dfc-foot__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 760px) { .dfc-foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dfc-foot__grid { grid-template-columns: 1fr; } }
.dfc-foot__col h4 { font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dfc-graphite); margin: 0 0 1rem; font-weight: 500; }
.dfc-foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: 14px; }
.dfc-foot__col li a { color: var(--dfc-ink-2); }
.dfc-foot__col li a:hover { color: var(--dfc-coral); }
.dfc-foot__col p { margin: 0 0 .5rem; font-size: 14px; color: var(--dfc-ink-2); line-height: 1.55; }

.dfc-foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; margin-top: 3rem;
  border-top: 1px solid var(--dfc-rule);
  font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .04em;
  color: var(--dfc-graphite); flex-wrap: wrap; gap: 1rem;
}

/* ── COOKIE BANNER ───────────────────────────────────────────── */
.dfc-cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  background: var(--dfc-ink); color: var(--dfc-cream);
  border: 1px solid var(--dfc-ink);
  padding: 1.25rem 1.5rem;
  display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
  z-index: 200;
  transform: translateY(150%);
  transition: transform .35s var(--dfc-ease);
  max-width: 720px; margin: 0 auto;
}
.dfc-cookie.is-open { transform: translateY(0); }
.dfc-cookie__t { font-family: var(--dfc-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dfc-coral); margin: 0; }
.dfc-cookie__b { margin: .35rem 0 0; font-size: 13px; line-height: 1.55; color: rgba(244,239,230,.85); flex: 1 1 280px; }
.dfc-cookie__buttons { display: flex; gap: .5rem; flex-shrink: 0; }
.dfc-cookie button {
  font-family: var(--dfc-sans); font-weight: 500; font-size: 12px;
  padding: .65rem .95rem; border-radius: 999px;
  border: 1px solid rgba(244,239,230,.3); background: transparent; color: var(--dfc-cream);
}
.dfc-cookie button.is-primary { background: var(--dfc-coral); border-color: var(--dfc-coral); color: var(--dfc-cream); }
.dfc-cookie button:hover { border-color: var(--dfc-cream); }
.dfc-cookie button.is-primary:hover { background: var(--dfc-coral-2); border-color: var(--dfc-coral-2); }

/* ── REVEAL ──────────────────────────────────────────────────── */
.dfc-rise { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--dfc-ease), transform .7s var(--dfc-ease); }
.dfc-rise.is-on { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .dfc-rise { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation-duration: 0s !important; }
}
