@font-face { font-family: "Switzer"; src: url("/assets/fonts/switzer-300.woff2") format("woff2"); font-style: normal; font-weight: 300; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("/assets/fonts/switzer-400.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("/assets/fonts/switzer-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("/assets/fonts/switzer-600.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/assets/fonts/ibm-plex-mono-400.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }

:root {
  --canvas: #090909;
  --panel: #131313;
  --ink: #f4f4f0;
  --ink-2: #c9c9c3;
  --muted: #90908b;
  --line: rgba(244, 244, 240, .08);
  --accent: #5b76ff;
  --accent-soft: #b8c4ff;
  --display: "Switzer", "Helvetica Neue", Arial, sans-serif;
  --sans: "Switzer", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shell: min(1200px, calc(100vw - 48px));
  --section-y: clamp(64px, 10vw, 96px);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-border: 0 0 0 1px rgba(244, 244, 240, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body.home-body {
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.guide-open, body.share-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, p { text-wrap: wrap; }
@supports (text-wrap: balance) {
  h1, h2, h3, p { text-wrap: balance; }
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.04em; line-height: 1.08; }
code { padding: .08em .35em; background: var(--panel); border-radius: 2px; font: .86em var(--mono); }
::selection { background: rgba(91, 118, 255, .35); color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; transform: translateY(-150%); padding: 10px 14px; background: var(--ink); color: var(--canvas); }
.skip-link:focus { transform: none; }

.kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font: 500 11px/1.2 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
}
.section-head p {
  margin: 0;
  max-width: 560px;
  color: var(--ink-2);
}
.section-head__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.format-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.format-links a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.format-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(72px, 12vh, 120px) 0 var(--section-y);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero__copy { max-width: 620px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #df2b20;
  box-shadow: 0 0 0 4px rgba(223, 43, 32, .15);
}
.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  letter-spacing: -.045em;
}
.hero__role {
  margin: 20px 0 0;
  max-width: 480px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}
.hero__meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__meta b {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 36px);
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -.06em;
}
.hero__meta span {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.hero__portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-shadow: var(--shadow-border);
  background: var(--panel);
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 8%;
  filter: grayscale(.2) contrast(1.05);
}
.hero__portrait-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(9, 9, 9, .82), transparent);
  color: var(--muted);
  font: 500 10px/1.4 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Now strip */
.now-strip {
  width: var(--shell);
  margin: 0 auto;
  padding: 24px 0;
  border-block: var(--shadow-border);
}
.now-strip__inner {
  display: grid;
  gap: 16px;
}
.now-label {
  margin: 0;
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.now-items {
  display: grid;
  gap: 12px;
}
.now-items a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  color: var(--ink-2);
  font-size: 15px;
  transition: color 180ms var(--ease);
}
.now-items a:hover { color: var(--ink); }
.now-items a span {
  color: var(--accent-soft);
  font: 500 10px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Work */
.work {
  width: var(--shell);
  margin: 0 auto;
  padding: var(--section-y) 0;
}
.work-list {
  display: grid;
  gap: 32px;
}
.work-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-border);
  background: var(--panel);
  transition: box-shadow 220ms var(--ease);
}
.work-card:hover { box-shadow: 0 0 0 1px rgba(244, 244, 240, .14); }
.work-card:nth-child(even) { grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr); }
.work-card:nth-child(even) .work-card__media { order: 2; }
.work-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-border);
  background: var(--canvas);
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms var(--ease);
}
.work-card__media--type {
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(145deg, #131313, #090909);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}
.work-card__media--type span {
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.work-card__media--type b {
  font: 500 clamp(28px, 4vw, 40px)/1 var(--display);
  letter-spacing: -.04em;
}
.work-card:hover .work-card__media img { transform: scale(1.02); }
.work-card__meta {
  margin: 0 0 8px;
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.work-card h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}
.work-card h3 a:hover { color: var(--accent-soft); }
.work-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.tag-list li {
  padding: 4px 8px;
  box-shadow: var(--shadow-border);
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .06em;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.card-link:hover { color: var(--accent-soft); }
.work-footer {
  margin-top: 40px;
  text-align: center;
}
.work-footer a {
  color: var(--accent-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Journey */
.journey {
  width: 100%;
  padding: var(--section-y) 0;
  border-top: var(--shadow-border);
  background: #050505;
}
.journey .section-head {
  width: var(--shell);
  margin-inline: auto;
}
.journey-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(24px, calc((100vw - 1200px) / 2));
  padding: 8px max(24px, calc((100vw - 1200px) / 2)) 24px;
}
@supports (scrollbar-width: thin) {
  .journey-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 244, 240, .2) transparent;
  }
}
.journey-card {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  display: grid;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow-border);
  background: var(--panel);
  color: inherit;
  transition: box-shadow 220ms var(--ease);
}
.journey-card:hover { box-shadow: 0 0 0 1px rgba(244, 244, 240, .14); }
.journey-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(.35) contrast(1.05);
  transition: filter 280ms var(--ease);
}
.journey-card:hover img { filter: none; }
.journey-card__body { padding: 20px; }
.journey-card span {
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.journey-card b {
  display: block;
  margin-top: 8px;
  font: 500 22px/1.1 var(--display);
  letter-spacing: -.03em;
}
.journey-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .08em;
}

.community-strip {
  width: var(--shell);
  margin: 32px auto 0;
  display: grid;
  gap: 16px;
}
.community-strip p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}
.community-photos {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.community-photos figure {
  flex: 0 0 140px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-border);
}
.community-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community-photos figcaption {
  display: none;
}

/* About */
.about {
  width: var(--shell);
  margin: 0 auto;
  padding: var(--section-y) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about-portraits {
  display: grid;
  grid-template-columns: 1.4fr .75fr;
  gap: 12px;
  align-items: end;
}
.about-portrait {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-border);
  background: var(--panel);
}
.about-portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-portrait--relaxed {
  align-self: end;
  max-width: 180px;
  margin-left: -24px;
}
.about-portrait figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font: 500 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 48px);
}
.about-copy > p:not(.kicker) {
  margin: 0 0 16px;
  max-width: 560px;
  color: var(--ink-2);
  font-size: 16px;
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
}
.about-links a {
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
}
.about-links a:hover { color: var(--ink); }

/* Contact */
.contact {
  width: var(--shell);
  margin: 0 auto;
  padding: var(--section-y) 0;
  border-top: var(--shadow-border);
}
.contact h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
}
.contact > p:not(.kicker) {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-2);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms var(--ease);
}
.button--primary {
  background: var(--ink);
  color: var(--canvas);
  box-shadow: var(--shadow-border);
}
.button--primary:hover { background: var(--accent); color: #fff; }
.button--text {
  padding-inline: 4px;
  color: var(--ink-2);
  background: transparent;
}
.button--text:hover { color: var(--accent-soft); }

/* Footer */
.site-footer {
  width: var(--shell);
  margin: 0 auto;
  padding: 32px 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 48px;
  border-top: var(--shadow-border);
}
.site-footer .brand {
  font-weight: 650;
  letter-spacing: -.025em;
}
.site-footer > div > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}
.site-footer nav a {
  color: var(--ink-2);
  font-size: 12px;
}
.site-footer nav a:hover { color: var(--ink); }
.disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font: 500 10px/1.5 var(--mono);
}

/* Floating actions, share dialog, site guide */
.floating-actions {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  padding: 6px;
  display: grid;
  gap: 6px;
  border-radius: 2px;
  background: var(--canvas);
  box-shadow: var(--shadow-border);
}
.floating-action {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  transition: transform 180ms var(--ease), background 180ms ease;
}
.floating-action:hover { transform: translateY(-2px); }
.floating-action svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.65; }
.floating-action--share { background: var(--ink); color: var(--canvas); }
.floating-action--share:hover { background: var(--accent); color: #fff; }
.floating-action--guide { background: var(--accent); color: #fff; }
.floating-action--guide:hover { background: #7188ff; }
.floating-action::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  width: max-content;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(5, 5, 5, .94);
  color: var(--ink);
  box-shadow: var(--shadow-border);
  font: 500 9px var(--mono);
  pointer-events: none;
  transform: translate(8px, -50%);
  opacity: 0;
  transition: opacity 150ms ease, transform 180ms var(--ease);
}
.floating-action:hover::after, .floating-action:focus-visible::after {
  transform: translate(0, -50%);
  opacity: 1;
}

.profile-share {
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  color: var(--canvas);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .58);
}
.profile-share::backdrop { background: rgba(0, 0, 0, .78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.profile-share__shell { display: grid; grid-template-rows: auto minmax(0, 1fr); max-height: calc(100dvh - 32px); }
.profile-share__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: var(--shadow-border);
  background: #050505;
  color: var(--ink);
}
.profile-share__head span { color: var(--accent-soft); font: 500 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.profile-share__head h2 { max-width: 360px; margin: 8px 0 0; font-size: clamp(28px, 5vw, 40px); color: var(--ink); }
.profile-share__head button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: var(--shadow-border);
  color: var(--ink);
  font-size: 24px;
}
.profile-share__body { padding: 24px; overflow-y: auto; background: var(--ink); color: var(--canvas); }
.profile-share__identity { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.profile-share__identity img { width: 58px; height: 58px; border-radius: 2px; }
.profile-share__identity strong { display: block; font-size: 18px; }
.profile-share__identity span { color: var(--muted); font: 500 9px var(--mono); text-transform: uppercase; }
.profile-share__qr {
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px 18px 42px;
  background: #fff;
  color: var(--canvas);
}
.profile-share__qr img { width: min(100%, 340px); image-rendering: pixelated; }
.profile-share__qr span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  text-align: center;
  font: 700 12px var(--mono);
}
.profile-share__instruction { margin: 16px 0; color: var(--ink-2); font-size: 13px; }
.profile-share__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.profile-share__actions .button { width: 100%; justify-content: center; }
.profile-share__copy, .profile-share__install {
  box-shadow: var(--shadow-border);
  background: transparent;
  color: var(--ink);
}
.profile-share__install { grid-column: 1 / -1; }
.profile-share__status { min-height: 18px; margin: 12px 0 0; color: var(--accent-soft); font: 500 10px/1.5 var(--mono); }

.site-guide {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100vw - 32px));
  height: min(680px, calc(100vh - 48px));
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  color: var(--canvas);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .4), var(--shadow-border);
  transform: translateY(24px) scale(.97);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 320ms var(--ease);
}
.site-guide.is-open { transform: none; opacity: 1; pointer-events: auto; }
.guide-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #050505;
  color: var(--ink);
}
.guide-head h2 { margin: 4px 0 0; font-size: 22px; color: var(--ink); }
.guide-status { color: var(--accent-soft); font: 500 9px var(--mono); text-transform: uppercase; }
.guide-status i { width: 6px; height: 6px; margin-right: 5px; display: inline-block; border-radius: 50%; background: var(--accent); }
.guide-head button { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; font-size: 22px; }
.guide-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: var(--shadow-border);
  background: var(--panel);
  color: var(--ink-2);
}
.guide-note svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.guide-note p { margin: 0; font-size: 11px; }
.guide-messages {
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--ink);
}
.guide-message { max-width: 88%; padding: 11px 13px; border-radius: 4px; font-size: 13px; }
.guide-message p { margin: 0; }
.guide-message a { color: var(--accent-soft); font-weight: 600; }
.guide-message--user { align-self: flex-end; background: var(--accent); color: #fff; }
.guide-message--bot { align-self: flex-start; background: var(--panel); color: var(--ink); }
.guide-prompts {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 16px;
  border-top: var(--shadow-border);
  background: var(--ink);
}
.guide-prompts button {
  flex: 0 0 auto;
  padding: 7px 10px;
  box-shadow: var(--shadow-border);
  color: var(--ink-2);
  font-size: 10px;
}
.guide-prompts button:hover { color: var(--accent-soft); }
.guide-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 12px;
  border-top: var(--shadow-border);
  background: #050505;
}
.guide-form input {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 2px;
  box-shadow: var(--shadow-border);
  background: var(--panel);
  color: var(--ink);
  font-size: 13px;
}
.guide-form button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: var(--accent);
  color: #fff;
}
.guide-form svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 32px); }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }
  .hero__portrait { max-width: 420px; }
  .work-card,
  .work-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .work-card:nth-child(even) .work-card__media { order: 0; }
  .about {
    grid-template-columns: 1fr;
  }
  .about-portrait--relaxed { margin-left: 0; max-width: none; }
  .site-footer { grid-template-columns: 1fr; }
  .floating-action::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .work-card__media img,
  .journey-card img,
  .button,
  .floating-action { transition: none; }
}
