/* ============================================================
   CPL Crisis Management — Film Noir Counsel
   Dark cinematic title-sequence treatment.
   Motion canon tokens minted below; one easing family throughout.
   ============================================================ */

:root {
  --ink: #0b0c0e;
  --ink-2: #101216;
  --navy: #16233a;
  --ivory: #f2efe6;
  --smoke: #8f8f96;
  --gold: #c9a25e;
  --hairline: rgba(201, 162, 94, 0.34);
  --hairline-soft: rgba(242, 239, 230, 0.13);

  --duration-instant: 100ms;
  --duration-fast: 180ms;
  --duration-base: 240ms;
  --duration-slow: 400ms;
  --duration-cinematic: 900ms;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1);

  --font-display: "Fraunces", "Georgia", serif;
  --font-label: "Archivo", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;

  --gutter: clamp(20px, 5vw, 72px);
  --measure: 1220px;
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 340;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Film grain — cheap static SVG turbulence, never animated */
.grain {
  position: fixed;
  inset: -2%;
  z-index: 900;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--ink); }

img { max-width: 100%; height: auto; }

a { color: var(--ivory); text-decoration: none; }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1200;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: top var(--duration-fast) var(--ease-out-quart);
}
.skip-link:focus { top: 12px; }

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

.kicker {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--smoke);
}

.rule {
  display: block;
  height: 1px;
  border: 0;
  background: var(--hairline);
  width: 100%;
  margin: 0;
  transform-origin: 0 50%;
}

.container {
  max-width: var(--measure);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.section { padding: clamp(72px, 12vh, 148px) 0; }
.section--navy { background: var(--navy); }
.section--tint { background: var(--ink-2); }

.chapter { margin-bottom: clamp(40px, 7vh, 84px); }
.chapter .chapter-no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.chapter h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 340;
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 14px 0 26px;
  max-width: 18em;
}
.chapter .lede {
  color: var(--smoke);
  max-width: 44em;
  margin: 22px 0 0;
  font-size: 18px;
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1120;
  transition: background var(--duration-base) var(--ease-out-quart),
              border-color var(--duration-base) var(--ease-out-quart);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 12, 14, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline-soft);
}
.header-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
}
.wordmark em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  padding: 0 0.35em;
}
.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li + li { border-left: 1px solid var(--hairline-soft); }
.main-nav a {
  display: inline-block;
  position: relative;
  padding: 8px 18px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color var(--duration-fast) var(--ease-out-quart);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--duration-base) var(--ease-out-quart);
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--ivory); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold); }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1102;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: var(--ivory);
  transition: transform var(--duration-base) var(--ease-out-quart),
              opacity var(--duration-fast) var(--ease-out-quart),
              top var(--duration-base) var(--ease-out-quart);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out-quart),
              visibility 0s linear var(--duration-slow);
}
.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--duration-slow) var(--ease-out-quart);
}
.nav-overlay ul { list-style: none; margin: 0; padding: 0; }
.nav-overlay li {
  border-bottom: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.nav-overlay a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 7.4vw, 44px);
  font-weight: 340;
  color: var(--ivory);
  transform: translateY(0);
  transition: color var(--duration-fast) var(--ease-out-quart),
              transform var(--duration-slow) var(--ease-out-quart);
}
.nav-overlay a .mono { flex: none; }
.nav-overlay a:hover, .nav-overlay a:focus-visible { color: var(--gold); }
.nav-overlay a[aria-current="page"] { color: var(--gold); }
.nav-overlay:not(.is-open) a { transform: translateY(30px); }

/* ---------- hero (home) ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  overflow: hidden;
}
#dust {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: 100%;
}
.hero .kicker { margin-bottom: 26px; }

.hero-title {
  margin: 0;
  font-size: clamp(44px, 7.2vw, 96px);
  font-weight: 320;
  line-height: 1.04;
  letter-spacing: 0.002em;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .line-inner { display: block; will-change: transform; }
.hero-title .esq {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-rule { margin: 30px 0 26px; max-width: 420px; }

.hero-sub {
  color: var(--smoke);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 34em;
  margin: 0 0 38px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 0; }
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid var(--hairline);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out-quart),
              border-color var(--duration-fast) var(--ease-out-quart),
              background var(--duration-fast) var(--ease-out-quart);
}
.btn:hover, .btn:focus-visible { border-color: var(--gold); color: var(--gold); }
.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--solid:hover, .btn--solid:focus-visible {
  background: transparent;
  color: var(--gold);
}

.portrait-arch {
  margin: 0;
  border: 1px solid var(--hairline);
  border-radius: 999px 999px 0 0;
  padding: clamp(10px, 1.4vw, 16px);
  max-width: 380px;
  justify-self: end;
  transition: border-color var(--duration-slow) var(--ease-out-quart);
}
.portrait-arch:hover { border-color: var(--gold); }
.portrait-arch .arch-frame {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  aspect-ratio: 36 / 50;
}
.portrait-arch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  transform: scale(1.06);
  animation: kenburns 1.6s var(--ease-out-quart) 0.35s forwards;
}
@keyframes kenburns { to { transform: scale(1); } }
.portrait-arch figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
}

.hero-meta {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  z-index: 1;
}
.hero-meta .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.hero-meta .mono { color: rgba(143, 143, 150, 0.8); }

/* ---------- inner page hero ---------- */

.page-hero {
  padding: clamp(150px, 22vh, 220px) 0 clamp(48px, 8vh, 88px);
}
.page-hero .kicker { margin-bottom: 20px; }
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 320;
  line-height: 1.06;
  max-width: 14em;
}
.page-hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.page-hero h1 .line-inner { display: block; }
.page-hero .rule { margin-top: 34px; max-width: 320px; }
.page-hero .lede {
  color: var(--smoke);
  font-size: 18px;
  max-width: 40em;
  margin: 26px 0 0;
}

/* ---------- statement band ---------- */

.statement {
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.statement .statement-bg {
  position: absolute;
  inset: -14% 0;
  z-index: -1;
}
.statement .statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.3) contrast(1.08);
  will-change: transform;
}
.statement .statement-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11, 12, 14, 0.25) 30%, rgba(11, 12, 14, 0.25) 70%, var(--ink) 100%);
}
.statement blockquote {
  margin: 0 auto;
  max-width: 16em;
  text-align: center;
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.22;
}
.statement .kicker { display: block; text-align: center; margin-bottom: 30px; }
.statement figcaption, .statement .attribution {
  display: block;
  text-align: center;
  margin-top: 34px;
}

/* ---------- chapter cards (home trio) ---------- */

.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.trio-card {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--duration-base) var(--ease-out-quart);
}
.trio-card:hover { border-top-color: var(--gold); }
.trio-card .mono { color: var(--gold); }
.trio-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 380;
  line-height: 1.2;
}
.trio-card h3 a { transition: color var(--duration-fast) var(--ease-out-quart); }
.trio-card h3 a:hover, .trio-card h3 a:focus-visible { color: var(--gold); }
.trio-card p { margin: 0; color: var(--smoke); font-size: 15.5px; }

.link-more {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  align-self: flex-start;
  padding-bottom: 5px;
  margin-top: auto;
}
.link-more::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: 0 50%;
  transition: transform var(--duration-base) var(--ease-out-quart);
}
.link-more:hover::after, .link-more:focus-visible::after { transform: scaleX(1); }

/* ---------- post rows ---------- */

.post-list { list-style: none; margin: 0; padding: 0; }
.post-row a {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: clamp(18px, 3vw, 44px);
  padding: 34px 0;
  border-bottom: 1px solid var(--hairline-soft);
  transition: border-color var(--duration-base) var(--ease-out-quart);
}
.post-list li:first-child .post-row a { border-top: 1px solid var(--hairline-soft); }
.post-row a:hover, .post-row a:focus-visible { border-bottom-color: var(--gold); }
.post-row .post-title {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 360;
  line-height: 1.25;
  transition: transform var(--duration-base) var(--ease-out-quart),
              color var(--duration-fast) var(--ease-out-quart);
}
.post-row a:hover .post-title, .post-row a:focus-visible .post-title {
  transform: translateX(8px);
  color: var(--gold);
}
.post-row .post-excerpt {
  margin: 10px 0 0;
  color: var(--smoke);
  font-size: 15.5px;
  max-width: 52em;
}
.post-row .post-arrow {
  font-family: var(--font-mono);
  color: var(--smoke);
  font-size: 14px;
  transition: color var(--duration-fast) var(--ease-out-quart),
              transform var(--duration-base) var(--ease-out-quart);
}
.post-row a:hover .post-arrow { color: var(--gold); transform: translateX(4px); }
.post-row .post-thumb { display: none; }

/* post rows with thumbs (HR corner) */
.post-row--thumb a { grid-template-columns: 220px 130px minmax(0, 1fr) auto; align-items: center; }
.post-row--thumb .post-thumb {
  display: block;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  aspect-ratio: 4 / 3;
}
.post-row--thumb .post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) brightness(0.82) contrast(1.05);
  transition: filter var(--duration-slow) var(--ease-out-quart),
              transform var(--duration-slow) var(--ease-out-quart);
}
.post-row--thumb a:hover .post-thumb img {
  filter: grayscale(0.1) brightness(0.95);
  transform: scale(1.04);
}
.post-row--thumb .post-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.post-row--thumb .post-thumb--empty .mono { color: var(--gold); }

/* ---------- services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 52px) clamp(28px, 4vw, 56px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 24px;
  transition: border-color var(--duration-base) var(--ease-out-quart);
}
.service-card:hover { border-top-color: var(--gold); }
.service-card .mono { color: var(--gold); display: block; margin-bottom: 14px; }
.service-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 420;
  line-height: 1.3;
}
.service-card p { margin: 0 0 12px; color: var(--smoke); font-size: 15.5px; }
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--smoke);
  font-size: 15.5px;
}
.service-card li { padding: 5px 0 5px 20px; position: relative; }
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.service-card--plain { min-height: 120px; }

/* ---------- resources ---------- */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 56px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.resource-card {
  border: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  transition: border-color var(--duration-base) var(--ease-out-quart);
}
.resource-card:hover { border-color: var(--gold); }
.resource-card .resource-img {
  aspect-ratio: 366 / 200;
  overflow: hidden;
  background: var(--navy);
}
.resource-card .resource-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.88);
  transition: filter var(--duration-slow) var(--ease-out-quart);
}
.resource-card:hover .resource-img img { filter: saturate(0.95) brightness(1); }
.resource-card .resource-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.resource-card .mono { color: var(--gold); }
.resource-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

/* ---------- article (blog posts, privacy) ---------- */

.article-head { padding: clamp(150px, 22vh, 210px) 0 0; }
.article-head .mono { color: var(--gold); display: block; margin-bottom: 18px; }
.article-head h1 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 340;
  line-height: 1.15;
  max-width: 20em;
}
.article-head .rule { margin-top: 34px; max-width: 320px; }
.article-body { padding: clamp(44px, 7vh, 80px) 0 clamp(80px, 12vh, 140px); }
.prose { max-width: 44em; }
.prose p { margin: 0 0 1.5em; color: #d9d6cb; }
.prose strong { color: var(--ivory); font-weight: 480; }
.prose h2, .prose h3, .prose h4 {
  font-weight: 400;
  line-height: 1.25;
  margin: 1.8em 0 0.7em;
}
.prose h2 { font-size: 28px; }
.prose h3 { font-size: 23px; }
.prose h4 { font-size: 19px; }
.prose ol, .prose ul { color: #d9d6cb; padding-left: 1.4em; margin: 0 0 1.5em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
  margin: 2em 0;
  padding: 22px 28px;
  border-left: 1px solid var(--gold);
  background: var(--ink-2);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose img { border: 1px solid var(--hairline-soft); margin: 6px 0; background: var(--ink-2); }
.prose a { color: var(--gold); border-bottom: 1px solid var(--hairline); transition: border-color var(--duration-fast) var(--ease-out-quart); }
.prose a:hover, .prose a:focus-visible { border-bottom-color: var(--gold); }
.article-hero-img {
  margin: 0 0 40px;
  border: 1px solid var(--hairline-soft);
  overflow: hidden;
}
.article-hero-img img {
  display: block;
  width: 100%;
  filter: grayscale(0.45) brightness(0.85) contrast(1.04);
}
.event-block {
  border: 1px solid var(--hairline);
  padding: 28px 32px;
  margin: 2.2em 0;
  background: var(--navy);
}
.event-block p { margin: 0; }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-grid .portrait-arch { justify-self: start; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(44px, 6vw, 100px);
}
.field { margin-bottom: 28px; }
.field label {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 17px;
  padding: 10px 0;
  transition: border-color var(--duration-base) var(--ease-out-quart);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--smoke); font-size: 13.5px; margin-top: 18px; }

.contact-details { display: flex; flex-direction: column; gap: 30px; }
.contact-item .mono { display: block; color: var(--gold); margin-bottom: 8px; }
.contact-item a, .contact-item p {
  font-size: 20px;
  margin: 0;
  color: var(--ivory);
  overflow-wrap: anywhere;
}
.contact-item a { border-bottom: 1px solid var(--hairline); transition: color var(--duration-fast) var(--ease-out-quart), border-color var(--duration-fast) var(--ease-out-quart); }
.contact-item a:hover, .contact-item a:focus-visible { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- CTA band ---------- */

.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 320;
  font-style: italic;
  margin: 18px 0 40px;
}
.cta-band .kicker { display: block; }

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

.site-footer {
  border-top: 1px solid var(--hairline-soft);
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 72px);
}
.site-footer .wordmark { display: inline-block; margin-bottom: 18px; }
.site-footer p { color: var(--smoke); font-size: 14px; margin: 0 0 10px; max-width: 34em; }
.footer-col .mono { display: block; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color var(--duration-fast) var(--ease-out-quart);
}
.footer-col a:hover, .footer-col a:focus-visible { color: var(--gold); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-soft);
}
.footer-base .mono { color: rgba(143, 143, 150, 0.75); }

/* ---------- reveal defaults (JS enhances; content visible without JS) ---------- */

[data-reveal] { opacity: 1; }

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

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero { padding-top: 110px; min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .portrait-arch { justify-self: start; max-width: 300px; }
  .hero-meta { display: none; }
  .trio { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-row a { grid-template-columns: 90px minmax(0, 1fr); }
  .post-row .post-arrow { display: none; }
  .post-row--thumb a { grid-template-columns: 90px minmax(0, 1fr); }
  .post-row--thumb .post-thumb { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .statement { min-height: 64vh; }
}

/* ---------- reduced motion: full parity, everything resolved ---------- */

@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;
  }
  .portrait-arch img { transform: none; animation: none; }
  #dust { display: none; }
  .nav-overlay, .nav-overlay a { transition: none; transform: none; }
}
