/* =========================================================
   Sarah Fleming Steinberg — Portfolio
   Editorial type, portfolio structure. Sentence case throughout.
   ========================================================= */

@font-face {
  font-family: 'Chomsky';
  src: url('fonts/Chomsky.otf') format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #000000;
  --ink-soft: #1a1a1a;
  --gray: #5f5f5f;
  --gray-soft: #8a8a8a;
  --paper: #ffffff;
  --paper-warm: #f7f4ef;
  --rule: #dfdfdf;
  --accent: #b8483d;
  --live: #15803d; /* availability badge only (green, 5:1 on white) */
  --accent-tan: #fff1cc;
  --accent-tan-deep: #f0dca8;
  --selection: #fff066;

  --font-display: 'Chomsky', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans:  'Libre Franklin', 'Franklin Gothic', Helvetica, Arial, sans-serif;

  --container: 1120px;
  --gutter: 32px;
  --header-h: 68px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============== BASE ============== */
* { box-sizing: border-box; }
::selection { background: var(--selection); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
/* clip, not hidden: hidden turns body into a scroll container and breaks the sticky header */
body { overflow-x: clip; }
body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
/* Every heading level uses the same family and weight; size carries the hierarchy. */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 800; }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
}
.skip-link:focus { left: 8px; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.4) blur(6px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.brand:hover { color: var(--ink-soft); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}
.site-nav a {
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); }
.site-nav .btn { padding: 9px 16px; border-bottom-width: 1px; color: var(--paper); }
.site-nav .btn:hover { color: var(--paper); }

/* ============== BREADCRUMBS ============== */
.crumbs {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
}
.crumbs__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.crumbs li { color: var(--gray); }
.crumbs li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--gray-soft);
}
.crumbs a { color: var(--gray); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.crumbs a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 700; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 12px 20px;
  background: transparent;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--ink-soft); color: var(--paper); }

/* ============== HERO (home) ============== */
/* Photo on the left, name, role, bio, and actions on the right. */
.hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.hero__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
}
.hero__photo { width: 100%; }
.hero__photo img {
  width: 100%;
  height: auto;
  /* White-background studio photo: fade the lower edge into the page
     so it reads as a clean cutout, with no frame or box lines. */
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.hero__name {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero__role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-top: 10px;
}
.hero__bio {
  font-size: 19px;
  line-height: 1.6;
  text-wrap: pretty; /* no one-word last line */
  color: var(--ink-soft);
  max-width: 32em;
  margin: 18px 0 28px;
}
.hero__status {
  text-wrap: balance;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: -8px 0 24px;
}
/* NYT-style live badge: red dot with a ring that pulses outward */
.live {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--live);
}
.live__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
}
.live__dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--live);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(3);   opacity: 0; }
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============== SECTIONS ============== */
.section { padding: 56px 0; border-bottom: 1px solid var(--rule); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  border-bottom: 3px double var(--ink);
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.section-eyebrow {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-sub {
  font-style: italic;
  font-size: 17px;
  color: var(--gray);
}
.section-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}
.section-link:hover { color: var(--gray); border-bottom-color: var(--gray); }

/* ============== PAGE HEAD (inner pages) ============== */
.page-head { padding: 48px 0 36px; border-bottom: 1px solid var(--rule); }
.page-head__title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.page-head__lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--gray);
  max-width: 40em;
  margin-top: 14px;
}

/* ============== THE THREE-PART PATTERN ==============
   Every piece of work reads the same way:
   tagline (what and where) / story (the title) / one sentence. */
.tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent);
}
.story a {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 320ms var(--ease-out);
}
.story a:hover { background-size: 100% 1px; }
.story .arrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  margin-left: 0.15em;
  transition: transform 240ms var(--ease-out);
}
.story a:hover .arrow { transform: translateX(4px); }
.sentence { color: var(--gray); }

/* ============== SELECTED WORK SHOWCASE ============== */
.showcase {
  background: var(--paper-warm);
  padding: 40px 48px 32px;
}
.showcase__stage {
  display: grid;
}
.showcase__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out), visibility 0s linear 480ms;
}
.showcase__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out), visibility 0s;
}
.showcase__slide {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 40px;
  align-items: center;
}
.showcase .story {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.showcase .sentence {
  font-size: 18px;
  line-height: 1.55;
}
/* Thin bar that fills while a slide is showing, so it's obvious the
   carousel advances on its own. */
.showcase__progress {
  height: 2px;
  margin-top: 28px;
  background: var(--accent-tan-deep);
  overflow: hidden;
}
.showcase__progress-bar {
  display: block;
  height: 100%;
  background: var(--ink);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 100ms linear;
}
.showcase__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.showcase__pause svg { width: 12px; height: 12px; fill: currentColor; }
.showcase__arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.showcase__arrow:hover { background: var(--ink); color: var(--paper); }
.showcase__dots { display: flex; gap: 8px; align-items: center; }
.showcase__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.showcase__dot:hover { transform: scale(1.25); }
.showcase__dot.is-active { background: var(--ink); }
.showcase__count {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}

/* ============== WORK: SECTION FRONT ==============
   Newspaper section-front layout: a lead story with a large photo, then
   stories in ruled columns. Photos are plain 3:2 rectangles with no
   radius and no shadow, sitting inside the grid. */
.work-group + .work-group { margin-top: 56px; }
.work-group__title {
  font-size: 24px;
  line-height: 1.2;
  border-top: 2px solid var(--ink);
  padding-top: 10px;
  margin-bottom: 24px;
}

.media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--rule);
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story { letter-spacing: -0.015em; text-wrap: balance; }
.sentence { text-wrap: pretty; }

/* Lead story: text left, photo right, split by a column rule */
.lead {
  display: grid;
  grid-template-columns: 5fr 7fr;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.lead__text { padding-right: 32px; border-right: 1px solid var(--rule); }
.lead__media { margin: 0; padding-left: 32px; }
.lead .story {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.lead .sentence { font-size: 19px; line-height: 1.55; }
.credit {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gray-soft);
  text-align: right;
  margin-top: 6px;
}

/* Ruled columns: each story carries a left rule; the first column's
   rule is clipped away by the container. */
.stories { display: grid; overflow: hidden; margin: 0 -24px; }
.stories > * { padding: 0 24px; border-left: 1px solid var(--rule); margin-left: -1px; }
.stories--rows { grid-template-columns: repeat(2, 1fr); }
.stories--grid { row-gap: 36px; }
.stories--4 { grid-template-columns: repeat(4, 1fr); }
.stories--3 { grid-template-columns: repeat(3, 1fr); }

/* Secondary story: text with a thumbnail to its right */
.story-row {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 20px;
  align-items: start;
}
.story-row .story { font-size: 24px; line-height: 1.15; margin: 8px 0 8px; }
.story-row .sentence { font-size: 16px; line-height: 1.5; }

/* Grid story: photo on top, text beneath */
.story-card .media { margin-bottom: 14px; }
.story-card .story { font-size: 21px; line-height: 1.2; margin: 8px 0 8px; }
.story-card .sentence { font-size: 15px; line-height: 1.5; }
.stories--4 .story { font-size: 19px; }

.work-note {
  margin-top: 44px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gray-soft);
}

/* ============== ENDORSEMENTS ============== */
.endorse { background: var(--accent-tan); border-bottom: 1px solid var(--accent-tan-deep); }
.endorse .section-eyebrow { color: var(--ink); }
.endorse__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.quote {
  margin: 0;
  padding: 0 28px;
  border-right: 1px solid var(--accent-tan-deep);
}
.quote:first-child { padding-left: 0; }
.quote:last-child  { padding-right: 0; border-right: none; }
.quote__text {
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 18px;
  position: relative;
}
.quote__text::before {
  content: '\201C';
  font-style: normal;
  position: absolute;
  font-size: 64px;
  line-height: 1;
  top: -18px;
  left: -8px;
  color: var(--accent-tan-deep);
  z-index: 0;
}
.quote__attr { border-top: 1px solid var(--ink); padding-top: 10px; }
.quote__name { font-weight: 800; font-size: 16px; }
.quote__title {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
}
.quote__title a { border-bottom: 1px solid rgba(0,0,0,0.25); transition: border-color .2s; }
.quote__title a:hover { border-bottom-color: var(--ink); }

/* ============== HIRE ME ============== */
.hire { background: var(--paper-warm); border-bottom: 1px solid var(--rule); }
.hire__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
}
.hire__ad { padding-right: 40px; border-right: 1px solid var(--accent-tan-deep); }
.hire__lede {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hire__body {
  text-wrap: pretty;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.hire__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hire__services { list-style: none; margin: 0; padding: 0 0 0 40px; }
.hire__service { padding: 14px 0; border-bottom: 1px solid var(--accent-tan-deep); }
.hire__service:first-child { border-top: 2px solid var(--ink); }
.hire__service:last-child { border-bottom: none; }
.hire__service-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.hire__service-note { font-size: 15px; line-height: 1.5; color: var(--gray); }

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
}
.prose p { font-size: 19px; line-height: 1.65; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { border-bottom: 1px solid rgba(0,0,0,0.3); transition: border-color .2s; }
.prose a:hover { border-bottom-color: var(--ink); }
.hero__bio a, .hire__body a { border-bottom: 1px solid rgba(0,0,0,0.3); transition: border-color .2s; }
.hero__bio a:hover, .hire__body a:hover { border-bottom-color: var(--ink); }

.roles { list-style: none; margin: 0; padding: 0; }
.role { padding: 20px 0; border-top: 1px solid var(--rule); }
.role:first-child { border-top: 2px solid var(--ink); }
.role .story {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  margin: 6px 0 6px;
}
.role .sentence { font-size: 17px; line-height: 1.55; }

.subhead a, .strengths .tagline a {
  border-bottom: 1px solid currentColor;
  transition: opacity .2s;
}
.subhead a:hover, .strengths .tagline a:hover { opacity: 0.7; }
.strengths { list-style: none; margin: 0; padding: 0; }
.strength { padding: 16px 0; border-top: 1px solid var(--rule); }
.strength:first-child { border-top: 2px solid var(--ink); }
.strength__text { font-size: 17px; line-height: 1.6; margin-top: 6px; text-wrap: pretty; }

.earlier { list-style: none; margin: 0; padding: 0; }
.earlier li {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 104px;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 16px;
}
.earlier li:first-child { border-top: 2px solid var(--ink); }
.earlier__org { font-weight: 700; }
.earlier__role { color: var(--gray); }
.earlier__years { font-family: var(--font-sans); font-size: 14px; color: var(--gray); white-space: nowrap; text-align: right; }

.side-box {
  border-top: 3px double var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
}
.side-box + .side-box { margin-top: 28px; }
.side-box__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
}
.factbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 0;
}
.factbox dt {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  border-top: 1px solid var(--rule);
  padding-top: 8px;
}
.factbox dd {
  font-size: 15px;
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 8px;
}
.factbox dt:first-of-type, .factbox dd:first-of-type { border-top: none; padding-top: 0; }

/* Byline photo on the About page head, as on a newspaper author page */
.page-head--byline { display: flex; align-items: center; gap: 28px; }
.byline-photo {
  width: 132px;
  height: 132px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}

.subhead {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.15;
  margin: 44px 0 14px;
}
.subhead:first-child { margin-top: 0; }

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  margin: 0 0 26px;
  border-top: 3px double var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 4px 0;
}
.contact-card dt {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  padding: 13px 0;
  border-top: 1px solid var(--rule);
}
.contact-card dd {
  font-size: 18px;
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  overflow-wrap: anywhere;
}
.contact-card dt:first-of-type, .contact-card dd:first-of-type { border-top: none; }
.contact-card dd a { border-bottom: 1px solid rgba(0,0,0,0.3); transition: border-color .2s; }
.contact-card dd a:hover { border-bottom-color: var(--ink); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-photo { margin: 0; }
.contact-photo img { width: 100%; height: auto; display: block; }
/* Typewriter caption, same face as the share image and cover cards */
.contact-photo__caption {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ============== FOOTER ============== */
.footer { background: var(--ink); color: var(--paper); padding: 48px 0 24px; }
.footer a { color: var(--paper); transition: color .2s; }
.footer a:hover { color: var(--gray-soft); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  align-items: start;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.footer__strap { font-style: italic; font-size: 15px; color: var(--gray-soft); max-width: 32ch; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__nav h2 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}
.footer__nav ul { list-style: none; margin: 0; padding: 0; }
.footer__nav li { font-size: 15px; margin-bottom: 8px; }
.footer__bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #333;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gray-soft);
}

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .live__dot::after { animation: none; opacity: 0; }
}

@media print {
  .site-header, .crumbs, .showcase__controls, .hire__cta, .contact-actions, .hero__cta { display: none; }
  .showcase__slide { opacity: 1; visibility: visible; transform: none; grid-area: auto; margin-bottom: 24px; }
  .reveal { opacity: 1; transform: none; }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .stories--rows { grid-template-columns: 1fr; row-gap: 28px; }
  .stories--4, .stories--3 { grid-template-columns: repeat(2, 1fr); }
  .lead__text { padding-right: 24px; }
  .lead__media { padding-left: 24px; }
  .showcase__slide { gap: 28px; }
  .hero__inner { grid-template-columns: 280px 1fr; gap: 40px; }
  .endorse__grid { grid-template-columns: 1fr; gap: 28px; }
  .quote { border-right: none; padding: 0 0 22px; border-bottom: 1px solid var(--accent-tan-deep); }
  .quote:last-child { border-bottom: none; padding-bottom: 0; }
  .hire__grid { grid-template-columns: 1fr; gap: 28px; }
  .hire__ad { padding-right: 0; border-right: none; }
  .hire__services { padding-left: 0; }
  .about-grid, .contact-grid { gap: 40px; }
  .contact-card { grid-template-columns: 112px 1fr; }
  .contact-card dd { font-size: 16px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  :root { --gutter: 16px; --header-h: 104px; }
  body { font-size: 16px; }

  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }
  .brand { font-size: 26px; text-align: center; }
  .site-nav {
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    padding: 8px 0 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav .btn { padding: 7px 12px; }

  .crumbs { font-size: 13px; }

  .hero { padding: 28px 0 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .hero__photo { width: 196px; margin: 0 auto; }
  .hero__role { font-size: 18px; }
  .hero__bio { font-size: 17px; margin: 14px auto 24px; }
  .hero__cta { justify-content: center; }
  .hero__status { font-size: 14px; margin: -6px 0 22px; }
  .live { margin-left: auto; margin-right: auto; }

  .section { padding: 40px 0; }
  .section-title { font-size: 28px; }

  .showcase { padding: 24px 20px 20px; margin: 0 calc(-1 * var(--gutter)); }
  .showcase .story { font-size: 28px; }
  .showcase .sentence { font-size: 17px; }
  .showcase__controls { gap: 10px; }
  .showcase__arrow { width: 36px; height: 36px; }

  .page-head { padding: 32px 0 24px; }
  .page-head--byline { flex-direction: column; align-items: flex-start; gap: 16px; }
  .byline-photo { width: 96px; height: 96px; }
  .page-head__lede { font-size: 17px; }

  .work-group + .work-group { margin-top: 40px; }
  .lead { grid-template-columns: 1fr; }
  .lead__media { order: -1; padding-left: 0; margin-bottom: 16px; }
  .lead__text { padding-right: 0; border-right: none; }
  .stories { margin: 0; overflow: visible; }
  .stories > * { padding: 0; border-left: none; margin-left: 0; }
  .stories--rows, .stories--4, .stories--3 { grid-template-columns: 1fr; row-gap: 0; }
  .stories > * + * { border-top: 1px solid var(--rule); padding-top: 20px; margin-top: 20px; }
  .story-row { grid-template-columns: 1fr 36%; gap: 14px; }
  .story-row .story { font-size: 20px; }
  .story-card .story { font-size: 20px; }
  .showcase__slide { grid-template-columns: 1fr; gap: 16px; }
  .showcase__media { order: -1; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .earlier li { grid-template-columns: 1fr 96px; gap: 2px 12px; }
  .earlier__role { grid-column: 1 / -1; grid-row: 2; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card dt { padding-bottom: 0; }
  .contact-card dd { border-top: none; padding-top: 4px; }
  .contact-photo__caption { font-size: 16px; }

  .hire__lede { font-size: 22px; }
  .hire__body { font-size: 16px; }
  .btn { font-size: 14px; padding: 11px 16px; }

  .footer__nav { grid-template-columns: 1fr 1fr; }
}

/* Keep each title's arrow on the same line as its last word */
.nw { white-space: nowrap; }
