:root {
  --ink: #182827;
  --ink-deep: #102120;
  --teal: #29494a;
  --paper: #f0ebe1;
  --sand: #d7cbbc;
  --oat: #c6b8a4;
  --pink: #e58a9f;
  --blue: #9ccbd3;
  --cream: #fffaf0;
  --muted: #65716e;
  --line: rgba(24, 40, 39, 0.2);
  --content: min(1180px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content);
  margin: 0 auto;
  padding: 22px 0;
  color: var(--cream);
  mix-blend-mode: difference;
}

.monogram {
  border: 1px solid currentColor;
  padding: 4px 9px 3px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(300px, 380px) minmax(210px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  min-height: 100svh;
  overflow: hidden;
  padding: 110px max(28px, calc((100vw - 1180px) / 2)) 66px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 250, 240, 0.075) 0 1px, transparent 2px) 0 0 / 86px 86px,
    linear-gradient(120deg, var(--ink-deep), var(--teal));
  color: var(--cream);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(156, 203, 211, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), transparent 40%, rgba(0, 0, 0, 0.08));
  content: "";
  pointer-events: none;
}

.hero__name {
  position: absolute;
  z-index: 1;
  top: 84px;
  right: max(28px, calc((100vw - 1180px) / 2));
  left: max(28px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(300px, 380px) minmax(210px, 0.82fr);
  gap: clamp(30px, 5vw, 72px);
  height: clamp(220px, calc(100vh - 436px), 600px);
  height: clamp(220px, calc(100svh - 436px), 600px);
  margin: 0;
  pointer-events: none;
}

/* The two words are SVG text stretched to their grid column, so the name always fills the
   content box width and the band between the nav and the headline, at every window size. */
.hero__name-text { display: none; }

.hero__name-word {
  display: block;
  height: 100%;
  overflow: visible;
}

.hero__name-word text {
  fill: rgba(255, 250, 240, 0.72);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", var(--sans);
  font-size: 122px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Each word takes 66% of its column plus the overlap, anchored at the portrait side, so the
   letters stay tall and narrow while the whole name still scales with the window. */
.hero__name-word:first-of-type {
  grid-column: 1;
  justify-self: end;
  width: calc((100% + 110px) * 0.66);
  transform: translateX(110px);
}

.hero__name-word:last-of-type {
  grid-column: 3;
  justify-self: start;
  width: calc((100% + 116px) * 0.66);
  transform: translateX(-116px);
}

.hero__identity,
.hero__portrait,
.hero__destinations,
.hero__scroll {
  position: relative;
  z-index: 4;
}

.hero__identity {
  align-self: end;
  max-width: 340px;
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--oat);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--muted);
}

.hero__statement {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 40px);
  line-height: 1.04;
}

.hero__intro {
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 15px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: var(--cream);
  color: var(--ink);
}

.text-link {
  border-bottom: 1px solid rgba(255, 250, 240, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__portrait {
  z-index: 3;
  width: min(100%, 360px);
  margin: 0 auto;
}

.portrait-frame {
  position: relative;
  border: 1px solid rgba(255, 250, 240, 0.42);
  padding: 8px;
}

.portrait-frame::before {
  position: absolute;
  z-index: -1;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(229, 138, 159, 0.7);
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1020 / 1400;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.02);
}

.hero__portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__destinations {
  display: grid;
  align-content: center;
  align-self: end;
  max-width: 240px;
  justify-self: end;
  padding-bottom: 44px;
}

.hero__destinations .eyebrow {
  margin-bottom: 14px;
}

.hero__destinations a,
.hero__destinations .pending-link {
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
  padding: 12px 0;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.1;
  text-decoration: none;
}

.hero__destinations a {
  transition: color 180ms ease, padding-left 180ms ease;
}

.hero__destinations a:hover,
.hero__destinations a:focus-visible {
  padding-left: 7px;
  color: var(--blue);
}

.pending-link {
  color: rgba(255, 250, 240, 0.44);
  cursor: help;
}

.hero__scroll {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  display: flex;
  gap: 12px;
  color: rgba(255, 250, 240, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-stars {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  color: var(--pink);
  font-size: 18px;
  animation: drift 5.8s ease-in-out infinite;
}

.star:nth-child(even) {
  color: var(--blue);
  animation-duration: 7s;
}

.star--one { top: 13%; left: 18%; }
.star--two { top: 22%; left: 43%; font-size: 13px; animation-delay: -2s; }
.star--three { top: 15%; right: 14%; font-size: 12px; animation-delay: -4s; }
.star--four { top: 42%; left: 8%; font-size: 15px; animation-delay: -6s; }
.star--five { top: 40%; right: 7%; font-size: 24px; animation-delay: -1s; }
.star--six { bottom: 26%; left: 22%; font-size: 10px; animation-delay: -5s; }
.star--seven { bottom: 17%; left: 45%; font-size: 13px; animation-delay: -3s; }
.star--eight { bottom: 12%; right: 23%; font-size: 16px; animation-delay: -7s; }
.star--nine { top: 64%; left: 4%; font-size: 10px; animation-delay: -2.5s; }
.star--ten { top: 8%; left: 63%; font-size: 9px; animation-delay: -4.5s; }
.star--eleven { bottom: 8%; right: 4%; font-size: 20px; animation-delay: -5.5s; }
.star--twelve { top: 31%; right: 32%; font-size: 11px; animation-delay: -1.5s; }

.section {
  padding: clamp(88px, 10vw, 142px) max(24px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 70px;
}

.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--sand { background: var(--sand); }
.section--thoughts { background: var(--teal); color: var(--cream); }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.about-heading h2,
.thoughts-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.section-heading > p:last-child,
.thoughts-heading > p:last-child {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading--light > p:last-child,
.thoughts-heading > p:last-child {
  color: rgba(255, 250, 240, 0.64);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 140px);
}

.about-copy {
  padding-top: 38px;
}

.about-copy p {
  max-width: 650px;
  color: #40504d;
  font-size: 18px;
}

.about-copy__lead {
  margin-top: 0;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(30px, 3.7vw, 52px) !important;
  line-height: 1.12;
}

.edit-note,
.project-picker__label,
.project-panel__type,
.project-panel__status,
.project-panel__link,
.skill-cluster__number,
.thought-card__meta,
.thought-card__status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edit-note {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid rgba(24, 40, 39, 0.4);
  padding-bottom: 4px;
  color: #52615e;
}

.project-picker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0 20px;
}

.project-picker__label {
  margin: 0 0 18px;
  color: var(--muted);
  text-align: center;
}

.project-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.project-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-tab:hover,
.project-tab:focus-visible {
  transform: translateY(-2px);
}

.project-tab:hover,
.project-tab:focus-visible,
.project-tab.is-active {
  background: var(--ink);
  color: var(--cream);
}

.project-stage {
  min-height: 390px;
  margin-top: 34px;
  background: var(--sand);
}

.project-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
}

.project-panel__content {
  position: relative;
  z-index: 2;
}

.project-panel__type,
.project-panel__status {
  color: var(--muted);
}

.project-panel__content h3 {
  max-width: 720px;
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.project-panel__content > p:not(.project-panel__type) {
  max-width: 650px;
  color: #465552;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-row span::before {
  content: "\2726";
  color: var(--pink);
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

.project-panel__link,
.project-panel__status {
  align-self: end;
  justify-self: end;
  margin-bottom: 4px;
}

.project-panel__link {
  text-underline-offset: 5px;
}

.project-panel__logo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 22px 0 4px;
  border-radius: 50%;
  object-fit: cover;
}

.project-panel__gallery {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-top: 10px;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.project-panel__gallery::-webkit-scrollbar { display: none; }

.project-panel__gallery img {
  flex: 0 0 150px;
  width: 150px;
  height: auto;
  aspect-ratio: 787 / 1400;
  object-fit: cover;
  display: block;
  scroll-snap-align: start;
}

.project-panel__marks {
  display: flex;
  gap: 12px;
  margin: 22px 0 4px;
}

.project-panel__marks .project-panel__logo { margin: 0; }

.project-panel__logo--label {
  border-radius: 14px;
  object-position: 50% 62%;
}

.project-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-self: end;
  justify-self: end;
  margin-bottom: 4px;
}

.project-panel__links .project-panel__link {
  align-self: auto;
  justify-self: auto;
  margin: 0;
}

.skill-map {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.skill-cluster {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.065);
}

.skill-cluster::after {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--pink);
  content: "✦";
  font-size: 18px;
}

.skill-cluster--people { grid-column: 1 / 9; }
.skill-cluster--crm { grid-column: 5 / 13; }
.skill-cluster--systems { grid-column: 1 / 9; }
.skill-cluster--creative { grid-column: 4 / 12; }
.skill-cluster--crm::after { color: var(--cream); }
.skill-cluster--systems::after { color: var(--blue); }

.skill-cluster__number {
  margin: 7px 0 0;
  color: var(--pink);
}

.skill-cluster h3 {
  max-width: 600px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.skill-cluster p:not(.skill-cluster__number) {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.62);
}

.skill-cluster ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.skill-cluster li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 250, 240, 0.88);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.skill-cluster li::before {
  content: "\2726";
  color: var(--pink);
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

.section--thoughts {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.thoughts-heading {
  align-self: start;
}

.thoughts-heading h2 {
  margin-bottom: 28px;
}

.thought-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.thought-carousel::-webkit-scrollbar { display: none; }

.thought-card {
  flex: 0 0 min(100%, 400px);
  align-self: stretch;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 22px;
  padding: 30px 30px 34px;
  background: rgba(255, 250, 240, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

a.thought-card:hover,
a.thought-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.28);
}

.thought-card--float { animation: thought-float 7s ease-in-out infinite; }
.thought-card--float:nth-child(2) { animation-delay: -2.5s; }
.thought-card--float:nth-child(3) { animation-delay: -5s; }

@keyframes thought-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.thought-card--all {
  flex-basis: min(100%, 220px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.thought-card--all h3 {
  font-size: clamp(28px, 2.6vw, 38px);
}

.thought-card__meta,
.thought-card__status {
  color: var(--oat);
}

.thought-card h3 {
  margin: 26px 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
}

.thought-card > p:not(.thought-card__meta) {
  color: rgba(255, 250, 240, 0.65);
}

.thought-card__status {
  display: inline-block;
  margin-top: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink-deep);
  color: rgba(255, 250, 240, 0.62);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__destinations a span { font-size: 0.7em; }

.site-footer p { margin: 0; }
.site-footer a { text-underline-offset: 4px; }

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  35% { transform: translate3d(14px, -20px, 0) rotate(10deg); }
  70% { transform: translate3d(-8px, -8px, 0) rotate(-7deg); }
}

@media (max-width: 980px) {
  :root { --content: min(100% - 34px, 840px); }

  .hero {
    grid-template-columns: minmax(210px, 0.9fr) minmax(280px, 340px) minmax(170px, 0.65fr);
    gap: 26px;
    padding-inline: 24px;
  }

  .hero__name {
    right: 24px;
    left: 24px;
    grid-template-columns: minmax(210px, 0.9fr) minmax(280px, 340px) minmax(170px, 0.65fr);
    gap: 26px;
  }

  .hero__name-word:first-of-type { width: calc((100% + 80px) * 0.68); transform: translateX(80px); }
  .hero__name-word:last-of-type { width: calc((100% + 86px) * 0.68); transform: translateX(-86px); }

  .hero__identity { padding-bottom: 24px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero__destinations { max-width: 190px; }

  .about-grid,
  .section-heading,
  .section--thoughts {
    grid-template-columns: 1fr;
  }

  .about-copy { padding-top: 0; }
  .project-panel { grid-template-columns: 1fr; }
  .project-panel__link,
  .project-panel__status { justify-self: start; }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 32px);
    padding-top: 16px;
  }

  .site-nav {
    max-width: calc(100vw - 86px);
    gap: 14px;
    overflow-x: auto;
    padding: 8px 2px;
    font-size: 9px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .site-nav::-webkit-scrollbar { display: none; }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 42px;
    padding: 92px 20px 78px;
  }

  .hero__name {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    height: auto;
    z-index: 4;
    order: 1;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 0.12em;
    margin: 28px 0 0;
    font-size: clamp(56px, 17vw, 70px);
    color: rgba(255, 250, 240, 0.9);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.72;
    text-transform: none;
    transform: none;
  }

  .hero__name-text { display: inline; }
  .hero__name-word { display: none; }

  .hero__portrait {
    order: 2;
    width: min(72vw, 320px);
    margin-top: 28px;
  }

  .hero__identity {
    order: 3;
    max-width: 560px;
    padding-bottom: 0;
  }

  .hero__destinations {
    order: 4;
    width: 100%;
    max-width: none;
    padding-bottom: 0;
    justify-self: stretch;
  }

  .hero__actions { width: 100%; }
  .button { width: 100%; }
  .hero__scroll { display: none; }
  .hero__portrait figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }

  .section { padding: 78px 20px; }
  .section-heading { gap: 20px; margin-bottom: 44px; }

  .project-picker {
    margin-inline: -20px;
    padding-inline: 20px;
    overflow: hidden;
  }

  .project-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .project-tabs::-webkit-scrollbar { display: none; }

  .project-tab {
    min-width: 150px;
    scroll-snap-align: start;
  }

  .project-stage { min-height: 0; margin-inline: -20px; }

  .project-panel {
    display: block;
    min-height: 0;
    padding: 44px 24px 48px;
  }

  .project-panel__link,
  .project-panel__status { display: inline-block; margin-top: 30px; }
  .project-panel__links { display: flex; justify-content: flex-start; width: 100%; margin-top: 30px; }
  .project-panel__links .project-panel__link { margin-top: 0; }

  .skill-map { display: block; }

  .skill-cluster {
    grid-template-columns: 34px 1fr;
    margin-bottom: 18px;
    padding: 30px 22px;
  }

  .skill-cluster:last-child { margin-bottom: 0; }
  .skill-cluster h3 { font-size: 38px; }
  .about-copy__lead { font-size: 34px !important; }

  .thoughts-heading { margin-bottom: 48px; }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thought-card--float { animation: none; }
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal { opacity: 1; transform: none; }
}
