/* ============================================================
   Launch Spec Fit — stylesheet
   Palette: midnight purple over brushed silver.
   Type: Cambria for display, Segoe UI for running text. System stacks only.
   Layout: fixed slim bar, asymmetric two-column reading grid.
   ============================================================ */

:root {
  --ink:        #14101c;
  --ink-soft:   #2b2338;
  --plum-900:   #1d1531;
  --plum-800:   #241a3d;
  --plum-700:   #33265a;
  --plum-600:   #45327a;
  --plum-500:   #5c42a2;
  --violet:     #8f74ee;
  --violet-dim: #6f57bf;
  --silver-100: #f7f7fb;
  --silver-200: #ecedf3;
  --silver-300: #dcdde6;
  --silver-400: #c2c5d2;
  --silver-500: #9ea3b4;
  --slate:      #5d6274;
  --paper:      #fbfbfd;
  --white:      #ffffff;

  --serif: Cambria, "Hoefler Text", "Liberation Serif", Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", "Segoe UI Web (West European)", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: Consolas, "Lucida Console", "DejaVu Sans Mono", monospace;

  --bar-h: 58px;
  --strip-h: 30px;
  --rail: clamp(18px, 4vw, 52px);
  --frame: 1180px;
  --radius: 3px;
  --lift: 0 1px 2px rgba(20, 16, 28, .06), 0 10px 28px rgba(29, 21, 49, .07);
  --lift-deep: 0 18px 48px rgba(29, 21, 49, .16);
  --ease: cubic-bezier(.22, .68, .32, 1);
}

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

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

body.lsf-shell {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
}

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

a { color: var(--plum-600); }
a:hover { color: var(--violet-dim); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--plum-900);
  font-weight: 700;
  letter-spacing: -.012em;
  margin: 0 0 .55em;
  line-height: 1.16;
}

h1 { font-size: clamp(2.05rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 2.7vw, 2.25rem); }
h3 { font-size: clamp(1.12rem, 1.5vw, 1.33rem); line-height: 1.3; }
h4 { font-size: 1.02rem; letter-spacing: .01em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

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

/* ---------- skip link ---------- */

.lsf-jump {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--plum-800);
  color: var(--white);
  padding: 10px 18px;
  font-size: .84rem;
}
.lsf-jump:focus { left: 12px; top: 10px; color: var(--white); }

/* ---------- fixed slim bar ---------- */

.lsf-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  background: rgba(29, 21, 49, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: box-shadow .25s var(--ease);
}
.lsf-bar.is-lifted { box-shadow: var(--lift-deep); }

.lsf-bar__inner {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 0 var(--rail);
  height: var(--bar-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

.lsf-sig { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }

.lsf-sig__glyph {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.lsf-sig__arc {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--violet);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(38deg);
}
.lsf-sig__dot {
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--silver-300);
}
.lsf-sig:hover .lsf-sig__arc { border-right-color: rgba(143, 116, 238, .35); }

.lsf-sig__words { display: flex; flex-direction: column; line-height: 1.1; }
.lsf-sig__name {
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .005em;
}
.lsf-sig__sub {
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--silver-500);
  margin-top: 2px;
}

.lsf-menu { margin-left: auto; }
.lsf-menu ul { display: flex; align-items: center; gap: 3px; list-style: none; margin: 0; padding: 0; }
.lsf-menu li { margin: 0; }
.lsf-menu a {
  display: block;
  padding: 7px 10px;
  font-size: .795rem;
  color: var(--silver-300);
  text-decoration: none;
  letter-spacing: .012em;
  border-radius: var(--radius);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.lsf-menu a:hover { color: var(--white); background: rgba(143, 116, 238, .16); }
.lsf-menu li.is-here a { color: var(--white); box-shadow: inset 0 -2px 0 var(--violet); }
.lsf-menu__phone { display: none; }

.lsf-bar__right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lsf-bar__tel {
  font-size: .8rem;
  color: var(--silver-300);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lsf-bar__tel:hover { color: var(--white); }

.lsf-burger {
  display: none;
  width: 38px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.lsf-burger span {
  position: absolute;
  left: 9px;
  width: 18px;
  height: 1.5px;
  background: var(--silver-200);
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.lsf-burger span:nth-child(1) { top: 12px; }
.lsf-burger span:nth-child(2) { top: 18px; }
.lsf-burger.is-lit span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.lsf-burger.is-lit span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* thin status strip under the bar */
.lsf-strip {
  height: var(--strip-h);
  background: var(--plum-700);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
}
.lsf-strip__inner {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 0 var(--rail);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lsf-strip__tag {
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum-900);
  background: var(--silver-400);
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}
.lsf-strip__note {
  font-size: .705rem;
  color: rgba(236, 237, 243, .78);
  letter-spacing: .025em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lsf-content { padding-top: calc(var(--bar-h) + var(--strip-h)); }

/* ---------- containers and bands ---------- */

.lsf-frame { max-width: var(--frame); margin: 0 auto; padding: 0 var(--rail); }
.lsf-frame--tight { max-width: 830px; }

.lsf-band { padding: clamp(52px, 7vw, 88px) 0; }
.lsf-band--wash { background: var(--silver-100); border-top: 1px solid var(--silver-300); border-bottom: 1px solid var(--silver-300); }
.lsf-band--deep { background: var(--plum-900); color: rgba(236, 237, 243, .85); }
.lsf-band--deep h2, .lsf-band--deep h3 { color: var(--white); }
.lsf-band--deep a { color: var(--violet); }
.lsf-band--slim { padding: clamp(36px, 4.5vw, 54px) 0; }

/* ---------- asymmetric split ---------- */

.lsf-split {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  gap: clamp(30px, 4.6vw, 66px);
  align-items: start;
}
.lsf-split--flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.62fr); }
.lsf-split--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr); }

.lsf-aside {
  border: 1px solid var(--silver-300);
  border-top: 3px solid var(--plum-600);
  background: var(--white);
  padding: 24px 24px 26px;
  box-shadow: var(--lift);
}
.lsf-aside h3 { margin-bottom: .45em; }
.lsf-aside--dark {
  background: var(--plum-800);
  border-color: rgba(255, 255, 255, .1);
  border-top-color: var(--violet);
  color: rgba(236, 237, 243, .82);
}
.lsf-aside--dark h3 { color: var(--white); }

/* ---------- type helpers ---------- */

.lsf-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .655rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--plum-500);
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}
.lsf-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--violet);
}
.lsf-band--deep .lsf-tag { color: var(--violet); }

.lsf-head { max-width: 640px; margin-bottom: 34px; }
.lsf-head--mid { margin-left: auto; margin-right: auto; text-align: center; }
.lsf-head p { color: var(--slate); }

.lsf-lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--slate);
  line-height: 1.62;
}
.lsf-mid { text-align: center; }
.lsf-tight { max-width: 560px; }

/* ---------- buttons ---------- */

.lsf-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.lsf-key--solid { background: var(--violet-dim); color: var(--white); }
.lsf-key--solid:hover { background: var(--plum-600); color: var(--white); transform: translateY(-1px); }
.lsf-key--line { border-color: var(--plum-600); color: var(--plum-700); background: transparent; }
.lsf-key--line:hover { background: var(--plum-700); color: var(--white); }
.lsf-key--pale { border-color: rgba(255, 255, 255, .4); color: var(--white); background: transparent; }
.lsf-key--pale:hover { background: rgba(255, 255, 255, .12); color: var(--white); }
.lsf-key--wide { width: 100%; padding: 14px 22px; }
.lsf-bar .lsf-key { padding: 9px 15px; font-size: .72rem; }

.lsf-more {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--plum-600);
  border-bottom: 1px solid var(--silver-400);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.lsf-more:hover { color: var(--violet-dim); border-bottom-color: var(--violet); }

/* ---------- hero ---------- */

.lsf-open {
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(143, 116, 238, .2), transparent 62%),
    linear-gradient(168deg, var(--plum-900) 0%, #1a1329 58%, #120e1e 100%);
  color: rgba(236, 237, 243, .82);
  padding: clamp(58px, 8vw, 104px) 0 clamp(52px, 7vw, 92px);
  position: relative;
  overflow: hidden;
}
.lsf-open::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 116, 238, .55), transparent);
}
.lsf-open h1 { color: var(--white); }
.lsf-open__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.lsf-open__kicker {
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--violet);
  display: block;
  margin-bottom: 18px;
}
.lsf-open__text {
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  color: rgba(220, 221, 230, .8);
  max-width: 44em;
}
.lsf-open__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* readout panel */
.lsf-gauge {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
}
.lsf-gauge__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--mono);
  font-size: .655rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-400);
}
.lsf-gauge__live { color: var(--violet); display: inline-flex; align-items: center; gap: 6px; }
.lsf-gauge__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.lsf-gauge__body { padding: 16px 18px 20px; }
.lsf-gauge__row { margin-bottom: 15px; }
.lsf-gauge__row:last-child { margin-bottom: 0; }
.lsf-gauge__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .78rem;
  color: var(--silver-400);
  margin-bottom: 6px;
}
.lsf-gauge__val {
  font-family: var(--mono);
  color: var(--white);
  font-size: .88rem;
  font-variant-numeric: tabular-nums;
}
.lsf-gauge__band {
  height: 5px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.lsf-gauge__fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--violet-dim), var(--violet));
  border-radius: 3px;
}
.lsf-gauge__foot {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 11px 18px;
  font-size: .68rem;
  color: var(--silver-500);
  letter-spacing: .03em;
}

/* ---------- stat row ---------- */

.lsf-numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--silver-300);
  background: var(--white);
}
.lsf-numbers__cell {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--silver-300);
}
.lsf-numbers__cell:last-child { border-right: 0; }
.lsf-numbers__value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--plum-700);
  line-height: 1.1;
}
.lsf-numbers__label {
  display: block;
  margin-top: 7px;
  font-size: .715rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- decks and tiles ---------- */

.lsf-deck { display: grid; gap: 22px; }
.lsf-deck--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lsf-deck--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lsf-deck--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.lsf-tile {
  background: var(--white);
  border: 1px solid var(--silver-300);
  padding: 26px 24px 28px;
  position: relative;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.lsf-tile:hover { border-color: var(--plum-500); box-shadow: var(--lift); transform: translateY(-2px); }
.lsf-tile__index {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--silver-500);
  display: block;
  margin-bottom: 12px;
}
.lsf-tile p { color: var(--slate); font-size: .93rem; }
.lsf-tile .lsf-more { margin-top: 14px; }

.lsf-note {
  border-left: 3px solid var(--violet);
  background: var(--silver-100);
  padding: 18px 22px;
  margin: 26px 0;
  font-size: .95rem;
  color: var(--ink-soft);
}
.lsf-note strong { color: var(--plum-800); }

blockquote.lsf-pull {
  margin: 30px 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--plum-500);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--plum-800);
}

/* ---------- lists ---------- */

.lsf-ticks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.lsf-ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: .62em;
  font-size: .95rem;
}
.lsf-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--violet-dim);
  border-radius: 1px;
  transform: rotate(45deg);
}

.lsf-facts { margin: 0; }
.lsf-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dotted var(--silver-400);
  font-size: .88rem;
}
.lsf-facts div:last-child { border-bottom: 0; }
.lsf-facts dt { color: var(--slate); margin: 0; }
.lsf-facts dd {
  margin: 0;
  font-family: var(--mono);
  color: var(--plum-800);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.lsf-aside--dark .lsf-facts div { border-bottom-color: rgba(255, 255, 255, .16); }
.lsf-aside--dark .lsf-facts dt { color: var(--silver-400); }
.lsf-aside--dark .lsf-facts dd { color: var(--white); }

/* ---------- staged process ---------- */

.lsf-stage { list-style: none; padding: 0; margin: 0; counter-reset: stage; }
.lsf-stage__item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--silver-300);
  margin: 0;
}
.lsf-stage__item:last-child { border-bottom: 1px solid var(--silver-300); }
.lsf-stage__mark {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--silver-400);
  line-height: 1;
  padding-top: 2px;
}
.lsf-stage__body h3 { margin-bottom: .4em; }
.lsf-stage__body p { color: var(--slate); font-size: .95rem; }
.lsf-stage__clock {
  display: inline-block;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum-500);
  border: 1px solid var(--silver-300);
  padding: 2px 8px;
  margin-bottom: 8px;
}

/* ---------- data table ---------- */

.lsf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .89rem;
  background: var(--white);
  border: 1px solid var(--silver-300);
}
.lsf-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  padding-bottom: 10px;
}
.lsf-table th, .lsf-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--silver-200); }
.lsf-table thead th {
  background: var(--plum-800);
  color: var(--white);
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.lsf-table tbody th { font-weight: 600; color: var(--plum-800); }
.lsf-table tbody tr:last-child th, .lsf-table tbody tr:last-child td { border-bottom: 0; }
.lsf-table td.lsf-num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.lsf-scroll { overflow-x: auto; }

/* ---------- masthead for interior pages ---------- */

.lsf-masthead {
  background: linear-gradient(150deg, var(--plum-800) 0%, #201735 62%, #171122 100%);
  color: rgba(236, 237, 243, .8);
  padding: clamp(44px, 6vw, 76px) 0 clamp(38px, 5vw, 62px);
  border-bottom: 1px solid rgba(143, 116, 238, .3);
}
.lsf-masthead h1 { color: var(--white); max-width: 18em; }
.lsf-masthead .lsf-lede { color: rgba(220, 221, 230, .78); max-width: 44em; }
.lsf-crumb {
  display: block;
  font-family: var(--mono);
  font-size: .655rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 15px;
}

/* ---------- prose column ---------- */

.lsf-prose { font-size: 1.02rem; }
.lsf-prose h2 { margin-top: 1.9em; }
.lsf-prose h2:first-child { margin-top: 0; }
.lsf-prose h3 { margin-top: 1.5em; }
.lsf-prose ul, .lsf-prose ol { color: var(--ink-soft); }
.lsf-prose li { margin-bottom: .5em; }

.lsf-byline {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-top: 14px;
}

/* ---------- question and answer ---------- */

.lsf-qa { border-top: 1px solid var(--silver-300); }
.lsf-qa__item { border-bottom: 1px solid var(--silver-300); padding: 24px 0; }
.lsf-qa__q {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--plum-900);
  margin: 0 0 .5em;
  display: flex;
  gap: 12px;
}
.lsf-qa__q span {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--violet-dim);
  padding-top: .35em;
  flex-shrink: 0;
}
.lsf-qa__a { color: var(--slate); font-size: .96rem; }

/* ---------- follow-up reports ---------- */

.lsf-say {
  background: var(--white);
  border: 1px solid var(--silver-300);
  border-bottom: 3px solid var(--plum-600);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lsf-say__rate { color: var(--violet-dim); font-size: .85rem; letter-spacing: .18em; margin-bottom: 12px; }
.lsf-say__body { font-size: .95rem; color: var(--ink-soft); flex-grow: 1; }
.lsf-say__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--silver-200);
}
.lsf-say__badge {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--plum-700);
  color: var(--white);
  font-family: var(--mono);
  font-size: .74rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
}
.lsf-say__who strong { display: block; font-size: .9rem; color: var(--plum-900); }
.lsf-say__who span { display: block; font-size: .74rem; color: var(--slate); letter-spacing: .06em; text-transform: uppercase; }

/* ---------- people ---------- */

.lsf-person {
  background: var(--white);
  border: 1px solid var(--silver-300);
  padding: 26px 24px 28px;
}
.lsf-person__badge {
  width: 52px;
  height: 52px;
  border: 1px solid var(--plum-500);
  color: var(--plum-700);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lsf-person h3 { margin-bottom: .25em; }
.lsf-person__role {
  display: block;
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-dim);
  margin-bottom: 14px;
}
.lsf-person p { font-size: .92rem; color: var(--slate); }

/* ---------- component wall ---------- */

.lsf-wall { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--silver-300); border: 1px solid var(--silver-300); }
.lsf-wall__cell { background: var(--white); padding: 24px 20px; text-align: center; }
.lsf-wall__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--silver-100);
  border: 1px solid var(--silver-300);
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--plum-700);
  margin-bottom: 12px;
}
.lsf-wall__cell strong { display: block; font-size: .95rem; color: var(--plum-900); }
.lsf-wall__cell span.lsf-wall__kind { display: block; font-size: .74rem; color: var(--slate); margin-top: 4px; }

/* ---------- rate cards ---------- */

.lsf-rate {
  background: var(--white);
  border: 1px solid var(--silver-300);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lsf-rate--pick { border-color: var(--plum-600); box-shadow: var(--lift); position: relative; }
.lsf-rate--pick::before {
  content: "Most booked";
  position: absolute;
  top: -11px;
  left: 26px;
  background: var(--plum-700);
  color: var(--white);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.lsf-rate__amount {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--plum-800);
  line-height: 1;
  display: block;
  margin: 6px 0 4px;
}
.lsf-rate__term { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 18px; }
.lsf-rate .lsf-ticks { flex-grow: 1; }
.lsf-rate .lsf-key { margin-top: 16px; }

/* ---------- form ---------- */

.lsf-form {
  background: var(--white);
  border: 1px solid var(--silver-300);
  border-top: 3px solid var(--plum-600);
  padding: 28px 26px 30px;
  box-shadow: var(--lift);
}
.lsf-form__pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.lsf-form__field { margin-bottom: 16px; }
.lsf-form__field label {
  display: block;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
  font-weight: 600;
}
.lsf-form__field input,
.lsf-form__field select,
.lsf-form__field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .93rem;
  color: var(--ink);
  padding: 10px 12px;
  border: 1px solid var(--silver-400);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.lsf-form__field textarea { resize: vertical; min-height: 104px; }
.lsf-form__field input:focus,
.lsf-form__field select:focus,
.lsf-form__field textarea:focus {
  outline: none;
  border-color: var(--plum-500);
  box-shadow: 0 0 0 3px rgba(143, 116, 238, .16);
  background: var(--white);
}
.lsf-form__note { font-size: .78rem; color: var(--slate); margin-top: 14px; }

/* ---------- plotted location card ---------- */

.lsf-plot {
  position: relative;
  height: 210px;
  border: 1px solid var(--silver-300);
  background:
    linear-gradient(var(--silver-200) 1px, transparent 1px) 0 0 / 100% 26px,
    linear-gradient(90deg, var(--silver-200) 1px, transparent 1px) 0 0 / 26px 100%,
    var(--silver-100);
  overflow: hidden;
}
.lsf-plot__pin {
  position: absolute;
  left: 46%;
  top: 44%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--violet-dim);
  box-shadow: 0 0 0 6px rgba(143, 116, 238, .2);
}
.lsf-plot__road {
  position: absolute;
  left: 0;
  right: 0;
  top: 62%;
  height: 8px;
  background: var(--silver-400);
}
.lsf-plot__road--cross { top: 0; bottom: 0; left: 22%; width: 8px; height: auto; right: auto; }
.lsf-plot__label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum-800);
  background: rgba(255, 255, 255, .9);
  padding: 4px 8px;
}
.lsf-plot__coord {
  position: absolute;
  right: 14px;
  top: 12px;
  font-family: var(--mono);
  font-size: .64rem;
  color: var(--slate);
}

/* ---------- closing call ---------- */

.lsf-call {
  background:
    radial-gradient(760px 320px at 18% 0%, rgba(143, 116, 238, .26), transparent 60%),
    var(--plum-900);
  color: rgba(236, 237, 243, .82);
  padding: clamp(48px, 6vw, 76px) 0;
}
.lsf-call h2 { color: var(--white); }
.lsf-call__inner { max-width: 720px; }
.lsf-call__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- error page ---------- */

.lsf-lost { text-align: center; padding: clamp(70px, 10vw, 130px) 0; }
.lsf-lost__code {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--silver-300);
  line-height: 1;
  margin-bottom: 10px;
}
.lsf-lost p { max-width: 480px; margin: 0 auto 26px; color: var(--slate); }
.lsf-lost__acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- blog cards ---------- */

.lsf-post { display: flex; flex-direction: column; height: 100%; }
.lsf-post__meta {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-dim);
  display: block;
  margin-bottom: 10px;
}
.lsf-post h3 { margin-bottom: .45em; }
.lsf-post p { flex-grow: 1; }

/* ---------- translation log index ----------
   Row-based listing rather than a card grid, so the note titles read as a
   sequence of entries in a working log. */

.lsf-log { list-style: none; padding: 0; margin: 0; }
.lsf-log__row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  margin: 0;
  border-top: 1px solid var(--silver-300);
}
.lsf-log__row:last-child { border-bottom: 1px solid var(--silver-300); }
.lsf-log__stamp {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 3px;
  border-right: 1px solid var(--silver-300);
  padding-right: 18px;
}
.lsf-log__index {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--plum-600);
}
.lsf-log__date {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--silver-500);
  font-variant-numeric: tabular-nums;
}
.lsf-log__body h2 {
  font-size: clamp(1.2rem, 1.9vw, 1.52rem);
  margin-bottom: .4em;
}
.lsf-log__body h2 a {
  color: var(--plum-900);
  text-decoration: none;
  background-image: linear-gradient(var(--violet), var(--violet));
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size .28s var(--ease), color .2s var(--ease);
}
.lsf-log__body h2 a:hover { color: var(--plum-600); background-size: 100% 1px; }
.lsf-log__body p { color: var(--slate); font-size: .95rem; margin-bottom: .7em; }
.lsf-log__body .lsf-byline { margin-top: 0; }

.lsf-masthead .lsf-byline { color: rgba(194, 197, 210, .82); }

/* ---------- footer ---------- */

.lsf-base { background: var(--ink); color: rgba(220, 221, 230, .68); padding-top: clamp(44px, 5vw, 64px); font-size: .9rem; }
.lsf-base__grid {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 0 var(--rail) clamp(36px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, .9fr);
  gap: 34px;
}
.lsf-base h2 {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-400);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 14px;
}
.lsf-base__wordmark {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.lsf-base__lead p { max-width: 40em; }
.lsf-base__seals { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.lsf-base__seals li {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 4px 9px;
  color: var(--silver-400);
  margin: 0;
}
.lsf-base address { font-style: normal; line-height: 1.7; }
.lsf-base__contact a, .lsf-base__list a { color: rgba(220, 221, 230, .78); text-decoration: none; }
.lsf-base__contact a:hover, .lsf-base__list a:hover { color: var(--violet); }
.lsf-base__list { list-style: none; padding: 0; margin: 0; }
.lsf-base__list li { margin-bottom: .5em; }
.lsf-base__hours { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: .78rem; }
.lsf-base__hours caption {
  caption-side: top;
  text-align: left;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-500);
  padding-bottom: 6px;
}
.lsf-base__hours th { text-align: left; font-weight: 400; color: var(--silver-500); padding: 3px 0; }
.lsf-base__hours td { text-align: right; color: rgba(220, 221, 230, .8); padding: 3px 0; }
.lsf-base__rule { border-top: 1px solid rgba(255, 255, 255, .09); }
.lsf-base__rule-inner {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 18px var(--rail);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: .76rem;
  color: var(--silver-500);
}
.lsf-base__rule p { margin: 0; }

/* ---------- scroll reveal, gated on JS being present ----------
   Without the js-on class the content is fully visible, so a crawler that
   never runs scripts still sees every word. */

.js-on .lsf-rise {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.js-on .lsf-rise.is-shown { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-on .lsf-rise { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .lsf-menu a { padding: 7px 7px; font-size: .755rem; }
  .lsf-bar__tel { display: none; }
}

@media (max-width: 1000px) {
  .lsf-burger { display: block; margin-left: auto; }
  .lsf-bar__right { display: none; }
  .lsf-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--bar-h) + var(--strip-h));
    background: var(--plum-900);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s var(--ease);
    margin-left: 0;
  }
  .lsf-menu.is-open { max-height: 78vh; overflow-y: auto; }
  .lsf-menu ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--rail) 18px; }
  .lsf-menu li { border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .lsf-menu a { padding: 13px 0; font-size: .92rem; }
  .lsf-menu a:hover { background: transparent; }
  .lsf-menu li.is-here a { box-shadow: none; color: var(--violet); }
  .lsf-menu__phone { display: block; border-bottom: 0; margin-top: 10px; }
  .lsf-menu__phone a { color: var(--violet); font-weight: 600; }

  .lsf-open__grid, .lsf-split, .lsf-split--flip, .lsf-split--even { grid-template-columns: minmax(0, 1fr); }
  .lsf-split--flip > *:first-child { order: 2; }
  .lsf-deck--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lsf-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lsf-base__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body.lsf-shell { font-size: 16px; }
  .lsf-deck--2, .lsf-deck--3, .lsf-deck--4 { grid-template-columns: minmax(0, 1fr); }
  .lsf-numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lsf-numbers__cell:nth-child(2) { border-right: 0; }
  .lsf-numbers__cell:nth-child(1), .lsf-numbers__cell:nth-child(2) { border-bottom: 1px solid var(--silver-300); }
  .lsf-form__pair { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .lsf-stage__item { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; }
  .lsf-stage__mark { font-size: 1.3rem; }
  .lsf-sig__sub { display: none; }
  .lsf-strip__note { font-size: .655rem; }
  .lsf-base__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .lsf-open__acts .lsf-key, .lsf-call__acts .lsf-key, .lsf-lost__acts .lsf-key { flex: 1 1 100%; }
  .lsf-log__row { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 22px 0; }
  .lsf-log__stamp {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    border-right: 0;
    padding-right: 0;
    padding-top: 0;
  }
}

@media (max-width: 420px) {
  .lsf-strip__tag { display: none; }
  .lsf-wall { grid-template-columns: minmax(0, 1fr); }
}

@media print {
  .lsf-bar, .lsf-call, .lsf-base__seals { display: none; }
  body.lsf-shell { color: #000; background: #fff; }
  .lsf-content { padding-top: 0; }
}
