/* ==========================================================================
   Dynamic Loft Fit — studio stylesheet
   Palette: gunmetal structure, ice-blue signal, cold paper ground.
   Type: Optima / Candara for headings and labels, Times New Roman for reading.
   Namespace: .dlf-
   ========================================================================== */

:root {
  --gun-900: #171c21;
  --gun-800: #20262c;
  --gun-700: #2b333b;
  --gun-600: #3a444e;
  --gun-500: #4e5a66;
  --gun-400: #6d7a87;
  --gun-300: #96a3af;
  --gun-200: #c3ccd4;
  --gun-100: #dfe5ea;

  --ice-600: #1f7fa4;
  --ice-500: #2f9dc4;
  --ice-400: #52b9dd;
  --ice-300: #86d2ec;
  --ice-100: #dcf0f8;

  --paper: #f1f4f6;
  --sheet: #ffffff;
  --ink: #1a2026;
  --ink-soft: #57626d;

  --brass: #b08d4f;

  --face-display: Optima, Candara, "Gill Sans MT", "Trebuchet MS", "Segoe UI", sans-serif;
  --face-read: "Times New Roman", Times, "Liberation Serif", serif;
  --face-mono: "Courier New", Courier, monospace;

  --shell: 1180px;
  --gutter: 26px;
  --edge: 2px;

  --lift-1: 0 1px 2px rgba(23, 28, 33, .08);
  --lift-2: 0 10px 28px -18px rgba(23, 28, 33, .45);
  --lift-3: 0 26px 60px -34px rgba(23, 28, 33, .58);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.dlf-body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--face-read);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--ice-600); text-underline-offset: 3px; }
a:hover { color: var(--gun-800); }

p { margin: 0 0 1.05em; }

h1, h2, h3, h4, h5 {
  font-family: var(--face-display);
  font-weight: 600;
  color: var(--gun-900);
  line-height: 1.16;
  letter-spacing: -0.006em;
  margin: 0 0 .55em;
}

h1 { font-size: clamp(2.15rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.24rem; }
h4 { font-size: 1.06rem; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .38em; }

strong { color: var(--gun-900); }

hr {
  border: 0;
  border-top: 1px solid var(--gun-200);
  margin: 34px 0;
}

table { border-collapse: collapse; width: 100%; }

.dlf-vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.dlf-skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gun-900); color: #fff;
  padding: 12px 20px; font-family: var(--face-display);
}
.dlf-skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--ice-500);
  outline-offset: 2px;
}

.dlf-shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.dlf-masthead {
  background: var(--gun-900);
  color: var(--gun-100);
  border-bottom: var(--edge) solid var(--ice-600);
  position: sticky;
  top: 0;
  z-index: 60;
}

.dlf-masthead__bar {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dlf-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.dlf-mark__glyph {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--ice-500);
  color: var(--ice-400);
  font-size: .6rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.dlf-mark__words { display: flex; flex-direction: column; line-height: 1.18; }

.dlf-mark__name {
  font-family: var(--face-display);
  font-size: 1.16rem;
  letter-spacing: .04em;
  color: #fff;
}

.dlf-mark__sub {
  font-family: var(--face-display);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gun-300);
}

.dlf-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dlf-menu__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 2px;
}

.dlf-menu__item a {
  display: block;
  padding: 7px 10px;
  font-family: var(--face-display);
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--gun-200);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}

.dlf-menu__item a:hover { color: #fff; border-bottom-color: var(--ice-500); }
.dlf-menu__item.is-here a { color: var(--ice-300); border-bottom-color: var(--ice-400); }

.dlf-menu__tail { display: flex; align-items: center; gap: 14px; }

.dlf-menu__call {
  font-family: var(--face-display);
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--ice-300);
  text-decoration: none;
  white-space: nowrap;
}
.dlf-menu__call:hover { color: #fff; }

.dlf-burger {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid var(--gun-600);
  color: var(--gun-100);
  padding: 8px 13px;
  font-family: var(--face-display);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}

.dlf-burger__lines { display: grid; gap: 4px; }
.dlf-burger__lines i { display: block; width: 18px; height: 1.5px; background: currentColor; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.dlf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--face-display);
  font-size: .86rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

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

.dlf-btn--solid { background: var(--ice-600); color: #fff; border-color: var(--ice-600); }
.dlf-btn--solid:hover { background: var(--ice-500); border-color: var(--ice-500); color: #fff; }

.dlf-btn--outline { background: transparent; color: var(--gun-800); border-color: var(--gun-400); }
.dlf-btn--outline:hover { border-color: var(--gun-800); background: var(--gun-800); color: #fff; }

.dlf-btn--ghost { background: transparent; color: var(--gun-100); border-color: var(--gun-500); }
.dlf-btn--ghost:hover { border-color: var(--ice-400); color: #fff; }

.dlf-btn--wide { width: 100%; }

/* --------------------------------------------------------------------------
   Shared section furniture
   -------------------------------------------------------------------------- */

.dlf-band { padding: 74px 0; }
.dlf-band--tight { padding: 50px 0; }
.dlf-band--tint { background: var(--sheet); }
.dlf-band--ice { background: var(--ice-100); }
.dlf-band--dark { background: var(--gun-800); color: var(--gun-100); }
.dlf-band--dark h2, .dlf-band--dark h3 { color: #fff; }
.dlf-band--dark a { color: var(--ice-300); }

.dlf-tag {
  display: inline-block;
  font-family: var(--face-display);
  font-size: .72rem;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--ice-600);
  margin-bottom: 12px;
}

.dlf-band--dark .dlf-tag { color: var(--ice-300); }

.dlf-heading { max-width: 720px; margin-bottom: 40px; }
.dlf-heading--mid { margin-left: auto; margin-right: auto; text-align: center; }

.dlf-lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.68;
}

.dlf-band--dark .dlf-lede { color: var(--gun-200); }

.dlf-hairline {
  width: 58px; height: 2px;
  background: var(--ice-500);
  margin: 0 0 20px;
}
.dlf-heading--mid .dlf-hairline { margin-left: auto; margin-right: auto; }

.dlf-mid { text-align: center; }

/* --------------------------------------------------------------------------
   Split hero — copy at left, spec ledger at right
   -------------------------------------------------------------------------- */

.dlf-hero {
  background:
    linear-gradient(102deg, var(--gun-900) 0%, var(--gun-800) 52%, var(--gun-700) 100%);
  color: var(--gun-100);
  padding: 78px 0 84px;
  position: relative;
  overflow: hidden;
}

.dlf-hero::after {
  content: "";
  position: absolute;
  right: -140px; top: -160px;
  width: 460px; height: 460px;
  border: 1px solid rgba(134, 210, 236, .16);
  border-radius: 50%;
  pointer-events: none;
}

.dlf-hero__split {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dlf-hero__kicker {
  font-family: var(--face-display);
  font-size: .74rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ice-300);
  display: block;
  margin-bottom: 18px;
}

.dlf-hero h1 { color: #fff; margin-bottom: .42em; }

.dlf-hero__copy p {
  color: var(--gun-200);
  font-size: 1.14rem;
  max-width: 34em;
}

.dlf-hero__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dlf-hero__note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--gun-600);
  font-size: .95rem;
  color: var(--gun-300);
}

/* the ledger panel */

.dlf-ledger {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--gun-600);
  border-top: 3px solid var(--ice-500);
  padding: 26px 26px 20px;
  box-shadow: var(--lift-3);
}

.dlf-ledger__cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gun-600);
  margin-bottom: 6px;
}

.dlf-ledger__title {
  font-family: var(--face-display);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.dlf-ledger__stamp {
  font-family: var(--face-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--ice-300);
  border: 1px solid rgba(134, 210, 236, .4);
  padding: 2px 7px;
}

.dlf-ledger table { font-size: .95rem; }

.dlf-ledger th, .dlf-ledger td {
  text-align: left;
  padding: 9px 0;
  border-bottom: 1px dotted var(--gun-600);
  vertical-align: baseline;
}

.dlf-ledger th {
  font-family: var(--face-display);
  font-weight: 400;
  font-size: .86rem;
  letter-spacing: .03em;
  color: var(--gun-300);
}

.dlf-ledger td {
  font-family: var(--face-mono);
  font-size: .88rem;
  color: var(--ice-300);
  text-align: right;
  white-space: nowrap;
}

.dlf-ledger tr:last-child th, .dlf-ledger tr:last-child td { border-bottom: 0; }

.dlf-ledger__foot {
  margin: 12px 0 0;
  font-size: .82rem;
  color: var(--gun-400);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Zigzag rows
   -------------------------------------------------------------------------- */

.dlf-zig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--gun-200);
}

.dlf-zig:last-child { border-bottom: 0; }

.dlf-zig:nth-of-type(even) .dlf-zig__panel { order: -1; }

.dlf-zig__body h2, .dlf-zig__body h3 { margin-bottom: .4em; }

.dlf-zig__index {
  font-family: var(--face-mono);
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--ice-600);
  display: block;
  margin-bottom: 10px;
}

.dlf-zig__panel {
  background: var(--sheet);
  border: 1px solid var(--gun-200);
  border-left: 3px solid var(--gun-700);
  padding: 26px 28px;
  box-shadow: var(--lift-2);
}

.dlf-zig__panel h3 {
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gun-500);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gun-100);
}

.dlf-zig__panel table { font-size: .95rem; }
.dlf-zig__panel th, .dlf-zig__panel td { padding: 8px 0; border-bottom: 1px solid var(--gun-100); text-align: left; }
.dlf-zig__panel th { font-family: var(--face-display); font-weight: 400; color: var(--gun-600); }
.dlf-zig__panel td { text-align: right; font-family: var(--face-mono); font-size: .86rem; color: var(--ice-600); }
.dlf-zig__panel tr:last-child th, .dlf-zig__panel tr:last-child td { border-bottom: 0; }

.dlf-zig__panel ul { list-style: none; padding: 0; margin: 4px 0 0; }
.dlf-zig__panel ul li {
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--gun-100);
  position: relative;
  font-size: .97rem;
}
.dlf-zig__panel ul li:last-child { border-bottom: 0; }
.dlf-zig__panel ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 18px;
  width: 8px; height: 1.5px;
  background: var(--ice-500);
}

/* --------------------------------------------------------------------------
   Card grids
   -------------------------------------------------------------------------- */

.dlf-rows { display: grid; gap: 24px; }
.dlf-rows--2 { grid-template-columns: repeat(2, 1fr); }
.dlf-rows--3 { grid-template-columns: repeat(3, 1fr); }
.dlf-rows--4 { grid-template-columns: repeat(4, 1fr); }

.dlf-card {
  background: var(--sheet);
  border: 1px solid var(--gun-200);
  padding: 28px 26px;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dlf-card:hover {
  border-color: var(--ice-400);
  box-shadow: var(--lift-2);
  transform: translateY(-3px);
}

.dlf-card__num {
  font-family: var(--face-mono);
  font-size: .74rem;
  letter-spacing: .2em;
  color: var(--gun-400);
  display: block;
  margin-bottom: 12px;
}

.dlf-card h3 { margin-bottom: .45em; }
.dlf-card p { font-size: .99rem; color: var(--ink-soft); }
.dlf-card p:last-of-type { margin-bottom: 0; }

.dlf-card__more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--face-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ice-600);
  border-bottom: 1px solid var(--ice-300);
  padding-bottom: 2px;
}
.dlf-card__more:hover { color: var(--gun-800); border-bottom-color: var(--gun-800); }

.dlf-chip {
  border: 1px solid var(--gun-200);
  background: var(--sheet);
  padding: 20px 18px;
  text-align: center;
}

.dlf-chip__abbr {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--ice-400);
  color: var(--ice-600);
  font-family: var(--face-display);
  font-size: .82rem;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.dlf-chip strong { display: block; font-family: var(--face-display); font-size: 1.03rem; }
.dlf-chip span { display: block; font-size: .86rem; color: var(--ink-soft); margin-top: 4px; }

/* --------------------------------------------------------------------------
   Numeric strip
   -------------------------------------------------------------------------- */

.dlf-strip {
  background: var(--gun-800);
  color: #fff;
  padding: 42px 0;
}

.dlf-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.dlf-strip__cell { border-left: 1px solid var(--gun-600); padding: 4px 12px; }
.dlf-strip__cell:first-child { border-left: 0; }

.dlf-strip__fig {
  display: block;
  font-family: var(--face-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--ice-300);
  line-height: 1.1;
}

.dlf-strip__cap {
  display: block;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gun-300);
  margin-top: 8px;
  font-family: var(--face-display);
}

/* --------------------------------------------------------------------------
   Numbered walkthrough
   -------------------------------------------------------------------------- */

.dlf-walk { counter-reset: dlfwalk; list-style: none; padding: 0; margin: 0; }

.dlf-walk > li {
  counter-increment: dlfwalk;
  position: relative;
  padding: 0 0 30px 76px;
  margin: 0;
  border-left: 1px solid var(--gun-200);
  margin-left: 22px;
}

.dlf-walk > li:last-child { border-left-color: transparent; padding-bottom: 0; }

.dlf-walk > li::before {
  content: counter(dlfwalk, decimal-leading-zero);
  position: absolute;
  left: -22px; top: -4px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--gun-800);
  color: var(--ice-300);
  font-family: var(--face-mono);
  font-size: .84rem;
  border-radius: 50%;
}

.dlf-walk h3 { margin-bottom: .35em; }
.dlf-walk p { color: var(--ink-soft); margin-bottom: .5em; }
.dlf-walk p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Quotes
   -------------------------------------------------------------------------- */

.dlf-quote {
  background: var(--sheet);
  border: 1px solid var(--gun-200);
  border-top: 3px solid var(--ice-500);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.dlf-quote__stars { color: var(--brass); letter-spacing: .18em; font-size: .9rem; margin-bottom: 10px; }

.dlf-quote blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.66;
}

.dlf-quote figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gun-100);
}

.dlf-quote__badge {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--gun-800);
  color: var(--ice-300);
  font-family: var(--face-display);
  font-size: .8rem;
  letter-spacing: .05em;
  flex: 0 0 auto;
}

.dlf-quote__who { display: flex; flex-direction: column; line-height: 1.35; }
.dlf-quote__who strong { font-family: var(--face-display); font-size: .98rem; }
.dlf-quote__who span { font-size: .82rem; color: var(--gun-400); letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */

.dlf-crown {
  background: var(--gun-800);
  color: var(--gun-100);
  padding: 58px 0 54px;
  border-bottom: var(--edge) solid var(--ice-600);
}

.dlf-crown__path {
  font-family: var(--face-display);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ice-300);
  display: block;
  margin-bottom: 14px;
}

.dlf-crown h1 { color: #fff; max-width: 18ch; }
.dlf-crown--full h1 { max-width: none; }

.dlf-crown p {
  color: var(--gun-200);
  max-width: 60ch;
  font-size: 1.08rem;
  margin-bottom: 0;
}

/* Breadcrumb links sit on gunmetal, so they take the light end of the ramp. */
.dlf-crown a {
  color: var(--ice-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(134, 210, 236, .4);
  padding-bottom: 1px;
}
.dlf-crown a:hover { color: #fff; border-bottom-color: #fff; }

/* --------------------------------------------------------------------------
   Prose column (long-form pages and journal entries)
   -------------------------------------------------------------------------- */

.dlf-column { max-width: 720px; }
.dlf-column--mid { margin: 0 auto; }

.dlf-column h2 { margin-top: 1.5em; }
.dlf-column h3 { margin-top: 1.4em; color: var(--gun-700); }
.dlf-column > *:first-child { margin-top: 0; }

.dlf-column ul li, .dlf-column ol li { margin-bottom: .5em; }

.dlf-pull {
  border-left: 3px solid var(--ice-500);
  background: var(--ice-100);
  padding: 20px 24px;
  margin: 30px 0;
  font-size: 1.04rem;
}
.dlf-pull p:last-child { margin-bottom: 0; }

.dlf-note {
  border: 1px dashed var(--gun-300);
  padding: 18px 22px;
  margin: 28px 0;
  font-size: .97rem;
  color: var(--ink-soft);
  background: var(--sheet);
}
.dlf-note p:last-child { margin-bottom: 0; }
.dlf-note strong { font-family: var(--face-display); letter-spacing: .04em; }

.dlf-figures {
  width: 100%;
  margin: 28px 0;
  font-size: .96rem;
  background: var(--sheet);
  border: 1px solid var(--gun-200);
}

.dlf-figures caption {
  caption-side: top;
  text-align: left;
  font-family: var(--face-display);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gun-500);
  padding: 0 0 10px;
}

.dlf-figures th, .dlf-figures td {
  text-align: left;
  padding: 11px 16px;
  border-bottom: 1px solid var(--gun-100);
}

.dlf-figures thead th {
  background: var(--gun-800);
  color: #fff;
  font-family: var(--face-display);
  font-weight: 400;
  font-size: .84rem;
  letter-spacing: .08em;
}

.dlf-figures tbody th { font-family: var(--face-display); font-weight: 400; color: var(--gun-700); }
.dlf-figures tbody td { font-family: var(--face-mono); font-size: .86rem; }
.dlf-figures tbody tr:last-child th, .dlf-figures tbody tr:last-child td { border-bottom: 0; }

.dlf-scroll { overflow-x: auto; }

/* --------------------------------------------------------------------------
   Journal listing and entry meta
   -------------------------------------------------------------------------- */

.dlf-stack { display: grid; gap: 0; }

.dlf-entry {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--gun-200);
  align-items: start;
}

.dlf-entry:first-child { border-top: 1px solid var(--gun-200); }

.dlf-entry__meta {
  font-family: var(--face-display);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gun-400);
  line-height: 1.7;
}

.dlf-entry__meta strong { display: block; color: var(--ice-600); font-weight: 400; }

.dlf-entry h2 { font-size: 1.42rem; margin-bottom: .35em; }
.dlf-entry h2 a { color: var(--gun-900); text-decoration: none; }
.dlf-entry h2 a:hover { color: var(--ice-600); }
.dlf-entry p { color: var(--ink-soft); margin-bottom: .6em; }

/* The meta column carries a rule that thickens as the row is approached. */
.dlf-entry__meta { border-left: 2px solid var(--gun-200); padding-left: 14px; transition: border-color .2s ease; }
.dlf-entry:hover .dlf-entry__meta { border-left-color: var(--ice-500); }

.dlf-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 0 20px;
  border-top: 1px solid var(--gun-200);
  border-bottom: 1px solid var(--gun-200);
  margin-bottom: 30px;
  font-family: var(--face-display);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gun-500);
}

.dlf-next {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--gun-200);
}
.dlf-next h2 { font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gun-500); }
.dlf-next ul { list-style: none; padding: 0; }
.dlf-next li { padding: 7px 0; border-bottom: 1px solid var(--gun-100); }

/* --------------------------------------------------------------------------
   Rates
   -------------------------------------------------------------------------- */

.dlf-rate {
  background: var(--sheet);
  border: 1px solid var(--gun-200);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
}

.dlf-rate--pick { border-color: var(--ice-500); box-shadow: var(--lift-2); }

.dlf-rate__flag {
  display: inline-block;
  font-family: var(--face-display);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--ice-600);
  color: #fff;
  padding: 3px 10px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.dlf-rate h3 { margin-bottom: .3em; }

.dlf-rate__cost {
  font-family: var(--face-display);
  font-size: 2.1rem;
  color: var(--gun-900);
  line-height: 1.1;
  margin: 6px 0 2px;
}

.dlf-rate__span {
  font-family: var(--face-mono);
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--gun-400);
  display: block;
  margin-bottom: 16px;
}

.dlf-rate ul { list-style: none; padding: 0; margin: 0 0 22px; }
.dlf-rate ul li {
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--gun-100);
  position: relative;
  font-size: .95rem;
}
.dlf-rate ul li::before {
  content: "\2013";
  position: absolute; left: 0; top: 8px;
  color: var(--ice-500);
}
.dlf-rate .dlf-btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   Accordion (FAQ) — native details, no script
   -------------------------------------------------------------------------- */

.dlf-ask {
  background: var(--sheet);
  border: 1px solid var(--gun-200);
  margin-bottom: 12px;
}

.dlf-ask summary {
  cursor: pointer;
  padding: 18px 46px 18px 22px;
  font-family: var(--face-display);
  font-size: 1.04rem;
  color: var(--gun-900);
  position: relative;
  list-style: none;
}

.dlf-ask summary::-webkit-details-marker { display: none; }

.dlf-ask summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--ice-600);
  font-size: 1.3rem;
  line-height: 1;
}

.dlf-ask[open] summary::after { content: "\2013"; }
.dlf-ask[open] summary { border-bottom: 1px solid var(--gun-100); color: var(--ice-600); }
.dlf-ask summary:hover { background: var(--ice-100); }

.dlf-ask__body { padding: 18px 22px 6px; }
.dlf-ask__body p { color: var(--ink-soft); font-size: .99rem; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.dlf-form {
  background: var(--sheet);
  border: 1px solid var(--gun-200);
  border-top: 3px solid var(--gun-800);
  padding: 30px 28px;
}

.dlf-form__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.dlf-field { margin-bottom: 18px; }

.dlf-field label {
  display: block;
  font-family: var(--face-display);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gun-600);
  margin-bottom: 7px;
}

.dlf-field input,
.dlf-field select,
.dlf-field textarea {
  width: 100%;
  font-family: var(--face-read);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--gun-200);
  padding: 11px 13px;
  transition: border-color .18s ease, background .18s ease;
}

.dlf-field input:focus,
.dlf-field select:focus,
.dlf-field textarea:focus {
  border-color: var(--ice-500);
  background: #fff;
  outline: none;
}

.dlf-field textarea { min-height: 130px; resize: vertical; }

.dlf-field__hint { font-size: .84rem; color: var(--gun-400); margin: 6px 0 0; }

.dlf-form__legal { font-size: .86rem; color: var(--gun-400); margin: 14px 0 0; }

/* --------------------------------------------------------------------------
   Contact block
   -------------------------------------------------------------------------- */

.dlf-slab {
  background: var(--sheet);
  border: 1px solid var(--gun-200);
  padding: 26px 24px;
  margin-bottom: 20px;
}

.dlf-slab h3 {
  font-size: .86rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gun-500);
  margin-bottom: 14px;
}

.dlf-slab address { font-style: normal; }

.dlf-slab table { font-size: .95rem; }
.dlf-slab th, .dlf-slab td { padding: 7px 0; border-bottom: 1px solid var(--gun-100); text-align: left; }
.dlf-slab th { font-family: var(--face-display); font-weight: 400; color: var(--gun-600); }
.dlf-slab td { text-align: right; font-size: .9rem; color: var(--ink-soft); }
.dlf-slab tr:last-child th, .dlf-slab tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   Closing call to action
   -------------------------------------------------------------------------- */

.dlf-close {
  background: var(--gun-900);
  color: #fff;
  padding: 66px 0;
  text-align: center;
}

.dlf-close h2 { color: #fff; }
.dlf-close p { color: var(--gun-300); max-width: 58ch; margin: 0 auto 26px; }

.dlf-close__acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.dlf-lost { padding: 92px 0; text-align: center; }

.dlf-lost__code {
  font-family: var(--face-display);
  font-size: clamp(4rem, 13vw, 8rem);
  color: var(--gun-200);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.dlf-foot {
  background: var(--gun-900);
  color: var(--gun-200);
  padding-top: 58px;
  font-size: .96rem;
}

.dlf-foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}

.dlf-foot__word {
  font-family: var(--face-display);
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}

.dlf-foot__blurb { color: var(--gun-300); }

.dlf-foot__flags { list-style: none; padding: 0; margin: 18px 0 0; }
.dlf-foot__flags li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: .88rem;
  color: var(--gun-400);
}
.dlf-foot__flags li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 8px; height: 1px; background: var(--ice-500);
}

.dlf-foot__head {
  font-family: var(--face-display);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice-300);
  margin-bottom: 14px;
}

.dlf-foot__head--gap { margin-top: 26px; }

.dlf-foot__addr { font-style: normal; color: var(--gun-300); margin-bottom: 10px; }
.dlf-foot__line { margin: 0 0 4px; }
.dlf-foot a { color: var(--gun-200); text-decoration: none; }
.dlf-foot a:hover { color: var(--ice-300); }

.dlf-foot__hours { margin-top: 16px; font-size: .85rem; }
.dlf-foot__hours th, .dlf-foot__hours td { padding: 4px 0; text-align: left; font-weight: 400; }
.dlf-foot__hours th { color: var(--gun-400); font-family: var(--face-display); }
.dlf-foot__hours td { text-align: right; color: var(--gun-300); }

.dlf-foot__links { list-style: none; padding: 0; margin: 0; }
.dlf-foot__links li { margin-bottom: 6px; }

.dlf-foot__rule {
  border-top: 1px solid var(--gun-700);
  padding: 20px 0;
}

.dlf-foot__rule-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: .84rem;
  color: var(--gun-400);
}

.dlf-foot__rule-inner p { margin: 0; }

/* --------------------------------------------------------------------------
   Scroll reveal — inert until the script confirms it is running.
   Without .js-on the content is simply visible.
   -------------------------------------------------------------------------- */

.js-on .dlf-rise {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.js-on .dlf-rise.is-shown {
  opacity: 1;
  transform: none;
}

.js-on .dlf-rise:nth-child(2) { transition-delay: .08s; }
.js-on .dlf-rise:nth-child(3) { transition-delay: .16s; }
.js-on .dlf-rise:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-on .dlf-rise { opacity: 1; transform: none; transition: none; }
  .dlf-card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .dlf-menu__list { gap: 0; }
  .dlf-menu__item a { padding: 7px 7px; font-size: .78rem; }
  .dlf-menu__call { display: none; }
  .dlf-hero__split { gap: 38px; }
  .dlf-rows--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .dlf-burger { display: inline-flex; }

  .dlf-menu {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    margin: 0;
    background: var(--gun-900);
    border-bottom: 2px solid var(--ice-600);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 22px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .32s ease, visibility 0s linear .32s;
  }

  .dlf-menu.is-open {
    max-height: 640px;
    visibility: visible;
    transition: max-height .32s ease, visibility 0s;
  }

  .dlf-menu__list { flex-direction: column; }
  .dlf-menu__item a {
    padding: 12px 2px;
    font-size: .95rem;
    border-bottom: 1px solid var(--gun-700);
  }
  .dlf-menu__item.is-here a { border-bottom-color: var(--ice-500); }

  .dlf-menu__tail {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
  }
  .dlf-menu__call { display: block; text-align: center; font-size: 1.05rem; }
  .dlf-masthead__bar { position: relative; }

  .dlf-hero__split { grid-template-columns: 1fr; gap: 36px; }
  .dlf-zig { grid-template-columns: 1fr; gap: 28px; padding: 34px 0; }
  .dlf-zig:nth-of-type(even) .dlf-zig__panel { order: 0; }
  .dlf-rows--3 { grid-template-columns: repeat(2, 1fr); }
  .dlf-foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dlf-foot__block--wide { grid-column: 1 / -1; }
  .dlf-entry { grid-template-columns: 1fr; gap: 12px; }
  .dlf-entry__meta { border-left: 0; padding-left: 0; }
  .dlf-entry__meta strong { display: inline; margin-right: 12px; }
}

@media (max-width: 680px) {
  body.dlf-body { font-size: 17px; }
  :root { --gutter: 18px; }

  .dlf-band { padding: 52px 0; }
  .dlf-hero { padding: 54px 0 60px; }
  .dlf-rows--2, .dlf-rows--3, .dlf-rows--4 { grid-template-columns: 1fr; }
  .dlf-strip__row { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .dlf-strip__cell:nth-child(odd) { border-left: 0; }
  .dlf-form__pair { grid-template-columns: 1fr; gap: 0; }
  .dlf-foot__grid { grid-template-columns: 1fr; }
  .dlf-ledger { padding: 20px 18px 16px; }
  .dlf-walk > li { padding-left: 60px; }
  .dlf-crown { padding: 44px 0 40px; }
  .dlf-close { padding: 50px 0; }
  .dlf-lost { padding: 64px 0; }
  .dlf-mark__sub { display: none; }
  .dlf-zig__panel { padding: 20px 18px; }
  .dlf-figures th, .dlf-figures td { padding: 9px 12px; }
}
