@charset "utf-8";

/* ============================================================
   Pfister & Saso, LLP
   Colour and type are taken directly from the brand style sheet.
   Nothing here invents a value that isn't in that document.
   ============================================================ */

/* ---------- fonts (self-hosted, subset to Latin) ---------- */

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/ebgaramond-400.v2.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/ebgaramond-italic-400.v2.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/ebgaramond-600.v2.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/sourcesans3-400.v2.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/sourcesans3-600.v2.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */

:root {
  /* primary — one hue, two registers */
  --ps-blue:    #133EAF;
  --ink:        #111C38;

  /* grounds */
  --linen:      #FBF2E2;   /* default ground, web */
  --champagne:  #F9EDDA;   /* print ground; used here for quiet section fills */
  --greige:     #E4E1D5;   /* rules, quiet fills */

  /* accent — one copper, two stops */
  --copper:     #C67B3A;   /* ornament only: rules, bullets, frames */
  --copper-ink: #9C5A22;   /* words: links, captions (WCAG AA) */

  /* derived, for text on the Ink ground */
  --on-ink:        #FFFFFF;
  --on-ink-quiet:  #E4E1D5;   /* Greige */
  --on-ink-mute:   #94969A;   /* Greige diluted 62% into Ink */

  /* derived, for secondary text on Linen — Ink diluted, never a new hue */
  --ink-soft:      #535868;   /* Ink 72% into Linen */
  --ink-mute:      #606572;   /* Ink 66% into Linen */

  --serif: "EB Garamond", Garamond, "Times New Roman", Times, serif;
  --sans:  "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --measure: 34rem;         /* prose column */
  --wrap:    68rem;         /* page gutter width */
  --gutter:  clamp(1.25rem, 0.75rem + 2vw, 3rem);

  --rule: 1px solid var(--greige);
}

/* ---------- reset ---------- */

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

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

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 1rem + 0.28vw, 1.1875rem);
  line-height: 1.62;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.16;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p, ul, ol { margin: 0 0 1.05em; }
ul, ol { padding-left: 1.15em; }
li { margin-bottom: 0.35em; }

a { color: var(--ps-blue); text-underline-offset: 0.16em; text-decoration-thickness: 0.055em; }
a:hover { color: var(--copper-ink); }

:focus-visible {
  outline: 2px solid var(--copper-ink);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- shared furniture ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute; left: -9999px;
  background: var(--linen); color: var(--ink);
  padding: 0.6rem 1rem; z-index: 100;
  font-family: var(--sans); font-size: 0.9rem;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-ink);
  margin: 0 0 0.9rem;
}

/* the one ornamental device: a short copper hairline */
.mark {
  width: 2.75rem; height: 2px;
  background: var(--copper);
  border: 0; margin: 0 0 1.5rem;
}

.prose { max-width: var(--measure); }
.prose ul { padding-left: 1.05em; }
.prose li::marker { color: var(--copper); }

.lede {
  font-size: 1.16em;
  line-height: 1.5;
}

/* ---------- top bar: the Ink band, now a slim rail ---------- */

.topbar {
  background: var(--ink);
  color: var(--on-ink);
  border-bottom: 3px solid var(--ps-blue);
}

.topbar__inner {
  max-width: 76rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  flex-wrap: wrap;
  padding-block: 0.62rem;
}

/* The rail's home link. Set as type rather than as a second lockup, so the
   vibrant mark below is the only mark on the page. */
.topbar__name {
  font-family: var(--sans);
  font-size: 0.755rem;      /* identical to the nav items */
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--on-ink);
  text-decoration: none;
  white-space: nowrap;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
}
.topbar__name span { color: var(--on-ink-quiet); letter-spacing: 0.13em; }
.topbar__name:hover { color: var(--on-ink); border-bottom-color: var(--copper); }
.topbar__name:hover span { color: var(--on-ink); }


/* On phones the submenu is always open, so the group needs its label to keep
   the two partners from reading as peers of the section links beside them.
   The group takes a full row; the names sit beneath it, indented and quieter. */
@media (max-width: 47.99em) {
  .topbar__name { font-size: 0.72rem; letter-spacing: 0.14em; }
  .topbar__inner { gap: 0.5rem 1rem; padding-block: 0.55rem; }
  .topbar .nav ul { gap: 0.1rem 1rem; }
  .topbar .nav a { font-size: 0.72rem; letter-spacing: 0.06em; }


}

/* ---------- brand band: the vibrant lockup, with the monogram behind ---------- */

.brandband {
  position: relative;
  overflow: clip;
  background: var(--linen);
  padding-block: clamp(2rem, 1.5rem + 2.2vw, 3.5rem) clamp(1.25rem, 1rem + 1vw, 1.75rem);
  /* 0.766 is the tilted mark's height as a fraction of its width
     (sin4deg + cos4deg / 1.433), plus clearance above and below */
  min-height: calc(clamp(14rem, 26vw, 26rem) * 0.766 + 3.5rem);
}

/* the script monogram, ghosted in Greige and bleeding off the right edge —
   a signature pressed through the paper, never a competitor to the text */
/* The whole monogram shows — no edge of it is cropped. Its height is derived
   from the band with room left for the four-degree tilt, and it is held clear
   of the text column: Copper Ink reads 4.85:1 on Linen but only 4.11:1 over
   Greige, so no run of type may cross it. */
.brandband::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 62%;
  /* sized by width so it can never outrun the right edge; the band carries a
     matching min-height so it can never be cropped top or bottom either */
  width: min(clamp(14rem, 26vw, 26rem), calc(38% - 1.5rem));
  height: auto;
  aspect-ratio: 1.433;
  transform: translateY(-50%) rotate(-4deg);
  background: url("../img/monogram-ghost.svg") no-repeat center / contain;
  pointer-events: none;
}
.brandband .eyebrow,
.brandband h1,
.brandband .role,
.brandband .hero__statement { max-width: min(58%, 34rem); }



.brandband > .wrap { position: relative; z-index: 1; }

.brandband__logo {
  display: block;
  width: fit-content;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.brandband__logo img { width: clamp(15rem, 24vw, 19.75rem); }

.brandband .eyebrow { margin-bottom: 0.7rem; }
.brandband h1 {
  font-size: clamp(1.75rem, 1.15rem + 2.1vw, 2.7rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  max-width: min(58%, 34rem);
}

/* The accent is decoration only. It carries no emphasis, which is why it is a
   plain span rather than <em>. */
.brandband--person h1 { letter-spacing: 0; }

.brandband h1 .accent,
.hero__statement .accent { color: var(--ps-blue); font-style: normal; }
.brandband .role {
  font-family: var(--sans);
  font-size: 0.86rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--copper-ink); margin: 0.7rem 0 0;
}

/* home carries a larger lockup and more air */
.brandband--home {
  min-height: calc(clamp(17rem, 32vw, 31rem) * 0.766 + 4rem);
  padding-block: clamp(2.5rem, 1.75rem + 3vw, 4.5rem) clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}
.brandband--home .brandband__logo img { width: clamp(16.5rem, 30vw, 25rem); }
@media (min-width: 48em) {
  .brandband--home::after { width: min(clamp(17rem, 32vw, 31rem), calc(38% - 1.5rem)); }
}

/* ---------- navigation ---------- */

.nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 1.25rem;
  margin: 0; padding: 0;
}
.nav li { margin: 0; }
/* The links are inline-blocks, so each sits on its li's inherited line-box
   strut — which is sized from the body font, not the nav's. That pushed every
   nav item ~1.6px below the wordmark, which is a plain flex item with no strut.
   Zeroing the strut lets the line box take its height from the link itself. */
.nav ul { line-height: 0; }
.nav a, .nav__label { line-height: 1.62; }

.nav a {
  font-family: var(--sans);
  font-size: 0.755rem;
  font-weight: 600;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--on-ink-quiet);
  text-decoration: none;
  padding-block: 0.3rem;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--on-ink); border-bottom-color: var(--copper); }
.nav a[aria-current="page"] { color: var(--on-ink); border-bottom-color: var(--copper); }
.nav :focus-visible { outline-color: var(--copper); }

/* partner group: a real submenu on wide screens, a plain list on narrow */
.nav__group { position: relative; }

.nav__label {
  font-family: var(--sans);
  font-size: 0.755rem; font-weight: 600;
  letter-spacing: 0.085em; text-transform: uppercase;
  color: var(--on-ink-quiet);
  background: none; border: 0;
  display: inline-block;   /* was inline, so its vertical padding was ignored
                              and it sat off the baseline of the links */
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  cursor: default;
}

.nav__sub {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 1.1rem;
}
.nav__sub a { letter-spacing: 0.06em; font-weight: 400; text-transform: none; font-size: 0.8rem; }

@media (min-width: 60em) {
  .nav__group:hover .nav__label,
  .nav__group:focus-within .nav__label { color: var(--on-ink); border-bottom-color: var(--copper); }

  .nav__sub {
    position: absolute; top: 100%; left: -0.9rem;
    display: block;
    min-width: 13.5rem;
    background: var(--ink);
    border: 1px solid rgba(228, 225, 213, 0.22);
    border-top: 2px solid var(--copper);
    padding: 0.5rem 0;
    opacity: 0; visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms;
    z-index: 40;
  }
  .nav__group:hover .nav__sub,
  .nav__group:focus-within .nav__sub {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .nav__sub li { display: block; }
  .nav__sub a {
    display: block;
    padding: 0.4rem 1.1rem;
    border-bottom: 0;
  }
  .nav__sub a:hover,
  .nav__sub a[aria-current="page"] { color: var(--on-ink); background: rgba(198, 123, 58, 0.16); }
}

/* On phones there is no room for the mark beside the text, so it sits below it
   instead — full width of the column, still entire. The band reserves the
   height for it, since an absolutely positioned pseudo-element adds none. */
@media (max-width: 47.99em) {
  .brandband,
  .brandband--home { min-height: 0; padding-bottom: calc(58vw * 0.766 + 3rem); }
  .brandband::after,
  .brandband--home::after {
    top: auto;
    bottom: 1.5rem;
    left: auto;
    right: var(--gutter);
    height: auto;
    width: 58vw;
    max-width: none;
    transform: rotate(-4deg);
  }
  .brandband .eyebrow,
  .brandband h1,
  .brandband .role,
  .brandband .hero__statement { max-width: none; }
}

/* Below the desktop hover breakpoint the partners menu is tap-to-open.
   
   It must NOT depend on :focus-within. WebKit — which is every browser on
   iOS, including Firefox and Chrome — does not give a <button> focus when
   you tap it, so a focus-driven menu simply never opens on an iPhone.
   The open state is therefore a class toggled by a click handler.

   Without JavaScript the group keeps its default styling: a plain inline
   list, always visible. The menu is never unreachable. */
@media (max-width: 59.99em) {
  .topbar .nav__group { position: relative; }

  /* no-JS fallback: the two names sit inline, like any other nav item */
  html:not(.js) .topbar .nav__group .nav__label { display: none; }
  html:not(.js) .topbar .nav__group .nav__sub { display: flex; gap: 0.1rem 1rem; }

  html.js .topbar .nav__group .nav__label {
    display: inline-block;
    padding: 0.55rem 0;        /* a comfortable tap target, not a hairline */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  html.js .topbar .nav__group .nav__label::after {
    content: "";
    display: inline-block;
    width: 0.36em; height: 0.36em;
    margin-left: 0.5em;
    border-right: 1.5px solid var(--copper);
    border-bottom: 1.5px solid var(--copper);
    transform: translateY(-0.15em) rotate(45deg);
    transition: transform 140ms ease;
  }
  html.js .topbar .nav__group.is-open .nav__label { color: var(--on-ink); }
  html.js .topbar .nav__group.is-open .nav__label::after {
    transform: translateY(0.1em) rotate(225deg);
  }

  html.js .topbar .nav__group .nav__sub {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: -0.75rem;
    z-index: 40;
    display: block;
    min-width: 12.5rem;
    background: var(--ink);
    border: 1px solid rgba(228, 225, 213, 0.22);
    border-top: 2px solid var(--copper);
    padding: 0.35rem 0;
    opacity: 0; visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms;
  }
  html.js .topbar .nav__group.is-open .nav__sub {
    opacity: 1; visibility: visible; transform: translateY(0);
  }

  .topbar .nav__sub li { display: block; }
  .topbar .nav__sub a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 0;
  }
  html:not(.js) .topbar .nav__group .nav__sub a { padding: 0.3rem 0; }
  .topbar .nav__sub a:hover,
  .topbar .nav__sub a[aria-current="page"] {
    color: var(--on-ink);
    background: rgba(198, 123, 58, 0.16);
  }
  html:not(.js) .topbar .nav__group .nav__sub a:hover,
  html:not(.js) .topbar .nav__group .nav__sub a[aria-current="page"] { background: none; }
}

/* ---------- page head ---------- */

main { padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem); }

.section { padding-block: clamp(2rem, 1.5rem + 2vw, 3.25rem); }
.section--tint { background: var(--champagne); }
.section--top { padding-top: clamp(1.5rem, 1rem + 1.5vw, 2.25rem); }

h2 { font-size: clamp(1.35rem, 1.15rem + 0.85vw, 1.8rem); }
h3 { font-size: 1.12rem; margin-bottom: 0.35em; }

/* ---------- home ---------- */

.hero { padding-block: clamp(1.5rem, 1rem + 1.5vw, 2.25rem) clamp(2rem, 1.5rem + 2vw, 3rem); }

.hero__statement {
  font-size: clamp(1.75rem, 1.15rem + 2.6vw, 3.4rem);
  line-height: 1.28;
  font-weight: 400;
  max-width: 22ch;
  margin: 0 0 1.6rem;
  text-wrap: balance;
}
.hero__statement em { font-style: normal; color: var(--ps-blue); }

.hero__body { max-width: var(--measure); }

.doors {
  list-style: none;
  margin: 2.5rem 0 0; padding: 0;
  display: grid;
  gap: 1px;
  background: var(--greige);
  border-block: 1px solid var(--greige);
}
@media (min-width: 46em) { .doors { grid-template-columns: repeat(3, 1fr); } }

.doors li { margin: 0; background: var(--linen); }
.doors a {
  display: block;
  padding: 1.75rem 1.5rem 1.85rem;
  text-decoration: none;
  color: var(--ink);
  height: 100%;
  transition: background 140ms ease;
}
.doors a:hover { background: var(--champagne); }
.doors strong {
  display: block;
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--ps-blue);
  margin-bottom: 0.45rem;
}
.doors span {
  display: block;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- offices ---------- */

.offices {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 3rem);
  margin-top: 2.5rem;
}
@media (min-width: 48em) { .offices { grid-template-columns: repeat(3, 1fr); } }

.office img {
  width: 100%;
  border: 1px solid var(--greige);
  background: var(--greige);
}
.office h2 {
  font-size: 1.3rem;
  margin: 1.1rem 0 0.15rem;
}
.office__rule { width: 2rem; height: 2px; background: var(--copper); border: 0; margin: 0.55rem 0 0.85rem; }

.office address {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.55;
}
.office address a { text-decoration: none; }
.office address a:hover { text-decoration: underline; }
.office .tel { display: block; }
.office .tel a { display: inline-block; padding-block: 0.15rem; }
.office .directions {
  display: inline-block;
  margin-top: 0.6rem;
  padding-block: 0.15rem;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 1px;
}
.office .directions:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- bios ---------- */

.bio {
  display: grid;
  gap: clamp(2rem, 1.25rem + 3vw, 3.5rem);
  align-items: start;
  margin-top: 2.25rem;
}
@media (min-width: 56em) { .bio { grid-template-columns: 17rem minmax(0, 1fr); } }

.bio__aside { position: static; }
@media (min-width: 56em) { .bio__aside { position: sticky; top: 1.75rem; } }

.bio__portrait { width: 100%; }

.card {
  margin-top: 1.35rem;
  font-family: var(--sans);
  font-size: 0.93rem;
  line-height: 1.55;
}
.card h2 {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin: 0 0 0.15rem;
}
.card hr { width: 2rem; height: 2px; background: var(--copper); border: 0; margin: 0.5rem 0 0.9rem; }
.card p { margin: 0 0 0.9rem; }
.card a { text-decoration: none; }
.card a:hover { text-decoration: underline; }
.card .label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.1rem;
}
.card .links {
  list-style: none; margin: 0; padding: 0;
  border-top: var(--rule); padding-top: 0.9rem;
}
.card .links li { margin-bottom: 0.4rem; }
.card .links a, .card p > a { display: inline-block; padding-block: 0.15rem; }

/* Rating badge below the vCard link. Given its own top rule so it reads as a
   distinct block rather than a trailing item of the links list. Displayed at
   half the asset's native width; the 2x file keeps the fine print sharp. */
.card .badge {
  border-top: var(--rule);
  padding-top: 0.95rem;
  margin: 0.85rem 0 0;
}
.card .badge img { display: block; width: 100%; max-width: 130px; height: auto; }

/* representative matters */

.matters { list-style: none; margin: 0; padding: 0; }
.matters > li {
  margin: 0;
  padding: 1.35rem 0;
  border-top: var(--rule);
}
.matters > li:last-child { border-bottom: var(--rule); }
.matters p { margin: 0 0 0.5rem; }
.matters .cite {
  display: block;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.matters .cite em { font-style: italic; }
.matters .source,
.prose .source {
  display: block;          /* block, so a second source stacks under the first
                              rather than running on beside it */
  width: fit-content;
  margin-top: 0.55rem;
  padding-block: 0.15rem;
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--copper-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 1px;
}
.matters .source + .source,
.prose .source + .source { margin-top: 0.4rem; }

/* several documents for one matter sit on a single row rather than stacking,
   so a heavily-documented entry does not tower over its neighbours */
.matters .sources,
.prose .sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.6rem;
  margin: 0.55rem 0 0;
}

/* in running prose the row is followed by another paragraph, so it needs a
   bottom margin larger than a normal paragraph gap: the links then read as an
   annotation belonging to the paragraph above rather than a peer of the text below */
.prose .sources { margin-bottom: 1.6rem; }
.matters .sources .source,
.matters .sources .source + .source,
.prose .sources .source,
.prose .sources .source + .source { margin-top: 0; }
.matters .source:hover,
.prose .source:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* credential blocks */

.creds { margin-top: 2.5rem; }
.creds h2 { font-size: 1.3rem; margin-bottom: 0.9rem; }

.facts { margin: 0 0 2rem; }
.facts dt {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--copper-ink);
  margin-bottom: 0.45rem;
}
.facts dd { margin: 0 0 1.5rem; }
.facts ul { list-style: none; margin: 0; padding: 0; }
.facts li {
  margin: 0;
  padding: 0.42rem 0;
  border-bottom: var(--rule);
}
.facts li:first-child { border-top: var(--rule); }
.facts .detail {
  display: block;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}
.facts .year {
  font-family: var(--serif);
  font-size: 0.92em;
  color: var(--ink-mute);
  margin-left: 0.45em;
}

/* ---------- city strip + footer ---------- */

.cities {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.25rem;
  margin: 0; padding: 0;
  list-style: none;
}
.cities li { margin: 0; }

.sitefoot {
  background: var(--ink);
  color: var(--on-ink-quiet);
  padding-block: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}
.sitefoot .cities { color: var(--on-ink); margin-bottom: 1.75rem; }

/* The three cities are a single line or they are nothing — wrapped, they read
   as a list rather than as a masthead. Type and tracking tighten together so
   the row survives down to 320px. */
@media (max-width: 47.99em) {
  .sitefoot .cities {
    font-size: clamp(0.67rem, 0.45rem + 1.02vw, 0.75rem);
    letter-spacing: 0.13em;
    gap: 0.4rem clamp(0.85rem, 0.2rem + 2.6vw, 1.75rem);
    flex-wrap: nowrap;
  }
  .sitefoot .cities li { white-space: nowrap; }
}
.sitefoot__logo { width: 11.5rem; margin-bottom: 1.6rem; opacity: 0.92; }

.sitefoot__links {
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem;
  font-family: var(--sans); font-size: 0.9rem;
}
.sitefoot__links li { margin: 0; }
.sitefoot__links a { display: inline-block; padding-block: 0.2rem; }
.sitefoot__links a { color: var(--on-ink-quiet); text-decoration: none; border-bottom: 1px solid rgba(198,123,58,0.55); padding-bottom: 1px; }
.sitefoot__links a:hover { color: var(--on-ink); border-bottom-color: var(--copper); }
.sitefoot :focus-visible { outline-color: var(--copper); }

.sitefoot__rule { border: 0; border-top: 1px solid rgba(228,225,213,0.2); margin: 0 0 1.35rem; }

.sitefoot small {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--on-ink-mute);
  display: block;
}

/* ---------- motion + print ---------- */

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

@media print {
  .topbar, .nav, .sitefoot, .doors, .skip { display: none !important; }
  .brandband::after { display: none !important; }
  .brandband { padding-block: 0 1rem; }
  .brandband__logo img { width: 2.4in; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .office img, .bio__portrait { display: none; }
  a { color: #000; text-decoration: underline; }
  .bio { display: block; }
}

/* Visible only to screen readers. Clipped rather than hidden: display:none or
   visibility:hidden would remove it from the accessibility tree too, which is
   the opposite of the point. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* bankruptcy history — timeline (Treatment 3: the Recess) */
.tl { border-left: 2px solid var(--greige); margin: 2.5rem 0 0 0.5rem; padding-left: 2rem; }
.tl__era { margin-bottom: 3rem; }
.tl__entry { position: relative; margin: 0 0 1.5rem; }
.tl__node { position: absolute; left: calc(-2rem - 7px); top: 0.42em; width: 12px; height: 12px;
  border-radius: 50%; background: var(--copper); }
.tl__node--major { width: 18px; height: 18px; left: calc(-2rem - 10px); top: 1.1rem; }
.tl__node--minor { width: 8px; height: 8px; left: calc(-2rem - 5px); background: var(--linen); border: 2px solid var(--copper); }
.tl__plate { background: var(--champagne); border-left: 4px solid var(--copper); padding: 1.2rem 1.5rem; }
.tl__plate h2 { font-family: "EB Garamond", Georgia, serif; font-weight: 600; font-size: 1.6rem; line-height: 1.2; color: var(--ps-blue); margin: 0; }
.tl__span { font-family: "Source Sans 3", Arial, sans-serif; font-weight: 600; font-size: 0.72rem; line-height: 1;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper-ink); margin: 0.25rem 0 0.7rem; }
.tl__cite { font-weight: 600; margin: 0 0 0.3rem; }
.tl__label { font-family: "Source Sans 3", Arial, sans-serif; font-weight: 600; font-size: 0.7rem; line-height: 1;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper-ink); }
.tl__official { margin: 0 0 0.5rem; font-size: 0.95rem; }
.tl__gap { font-family: "Source Sans 3", Arial, sans-serif; font-weight: 600; font-size: 0.75rem; line-height: 1;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper-ink);
  margin: 2.2rem 0; padding: 0.9rem 0; border-top: 1px solid var(--greige); border-bottom: 1px solid var(--greige); }
@media (max-width: 640px) {
  .tl { margin-left: 0.1rem; padding-left: 1.3rem; }
  .tl__node { left: calc(-1.3rem - 7px); }
  .tl__node--major { left: calc(-1.3rem - 10px); }
  .tl__node--minor { left: calc(-1.3rem - 5px); }
  .tl__plate { padding: 1rem 1.1rem; }
}

/* secondary document line beneath a statute link — words in copper ink per the two-stop rule */

/* Timeline revision — subsequent legislation carries the plate treatment, indented beneath its act */
.tl__entry:not(.tl__entry--main) {
  background: var(--champagne);
  border-left: 4px solid var(--copper);
  padding: 1rem 1.25rem;
  margin-left: 2rem;
}
.tl__entry:not(.tl__entry--main) .tl__node--minor {
  left: calc(-4rem - 9px);
}

/* Timeline document links — stacked, uniform PS Blue */
.tl .source {
  display: block;
  width: fit-content;
  margin-top: 0.55rem;
  color: var(--ps-blue);
}
.tl .source + .source { margin-top: 0.3rem; }

/* Popular short title of an amendment — blue, like its parent act's heading */
.tl__name {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ps-blue);
}

/* ── Statute text pages ─────────────────────────────────────────────── */
.act__cite      { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; margin: 0 0 .15rem; }
.act__official  { font-family: var(--serif); font-size: 1rem; margin: 0 0 .5rem; }
.act__note      { font-family: var(--sans); font-size: .82rem; letter-spacing: .02em;
                  color: var(--copper-ink); margin: 0 0 1.1rem; }
.act__prov      { font-family: var(--sans); font-size: .85rem; line-height: 1.55;
                  background: var(--champagne); border-left: 3px solid var(--copper);
                  padding: .7rem .9rem; margin: 0 0 1.1rem; }

.act__links .source { display: block; width: fit-content; margin-top: .85rem; color: var(--ps-blue); }
.act__links          { margin: 0 0 1.6rem; }
.act .act__sec  { margin: 0 0 1.05rem; text-align: left; }
.act__num       { font-variant: small-caps; font-weight: 600; }
.act__back      { margin-top: 2rem; font-family: var(--sans); font-size: .9rem; }

/* ── Statute text pages: two-column layout with sticky section index ── */
.act-layout { display: block; }
.act-nav {
  margin: 0 0 1.6rem;
  font-family: var(--sans);
}
.act-nav__title {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--copper-ink); margin: 0 0 .55rem;
}
.act-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(2.6rem, 1fr)); gap: .3rem;
}
.act-nav__list a {
  display: block; text-align: center; padding: .22rem .1rem;
  font-size: .78rem; color: var(--ps-blue); text-decoration: none;
  border: 1px solid var(--greige); border-radius: 3px; background: #fff;
}
.act-nav__list a:hover, .act-nav__list a:focus { border-color: var(--copper); background: var(--champagne); }
.act-nav__group { margin-top: .8rem; }
.act-nav__group-label {
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); opacity: .62; margin: 0 0 .3rem;
}

@media (min-width: 60em) {
  .act-layout {
    display: grid;
    grid-template-columns: var(--measure) minmax(12rem, 1fr);
    column-gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }
  .act-layout > .act { grid-column: 1; }
  .act-nav {
    grid-column: 2; grid-row: 1;
    position: sticky; top: 1.5rem;
    max-height: calc(100vh - 3rem); overflow-y: auto;
    margin: 0; padding-right: .25rem;
  }
  .act-nav__list { grid-template-columns: repeat(auto-fill, minmax(2.4rem, 1fr)); }
}

.act__sec { scroll-margin-top: 1.5rem; }
.act__sec:target { background: var(--champagne); box-shadow: 0 0 0 .45rem var(--champagne); border-radius: 2px; }
.act__part {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-align: center;
  color: var(--copper-ink); margin: 2.2rem 0 1.4rem;
}
.act__part::before, .act__part::after { content: "\2014\00a0"; opacity: .45; }
.act__part::after { content: "\00a0\2014"; }
.tl .source-text { display: block; color: var(--ps-blue); font-weight: 600; }
