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

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

@font-face {
  font-family: 'SFProLocal';
  src: url('/fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProLocal';
  src: url('/fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProLocal';
  src: url('/fonts/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f7f5ef;
  --paper-light: rgba(255, 253, 247, 0.78);
  --note-bg: rgba(252, 250, 246, 0.76);
  --ink: #2d2923;
  --muted: #777067;
  --soft-muted: #aaa49b;
  --gold: #b38300;
  --yellow: #e7d39b;
  --green: #6d7f5b;
  --line: rgba(45, 41, 35, 0.12);
  --shadow: rgba(42, 37, 30, 0.08);
  --display: 'RecoletaLocal', Georgia, serif;
  --apple: 'SFProLocal', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--apple);
  background-color: var(--paper);
  background-image: url('/images/paper-bg.png');
  background-size: 760px auto;
  background-repeat: repeat;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.25), transparent 24%),
    radial-gradient(circle at 70% 72%, rgba(177, 141, 86, 0.04), transparent 30%);
  z-index: -3;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p,h1,h2,h3,figure { margin: 0; }
button { font-family: inherit; }

.site-canvas {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.paper-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 25%, rgba(255,255,255,0.24), transparent 23%),
    radial-gradient(circle at 84% 8%, rgba(231,211,155,0.11), transparent 18%),
    linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(255,255,255,0));
}

.container {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: 28px;
  position: relative;
  z-index: 2;
}
.container.narrow { max-width: 1040px; }
.container.readable { max-width: 920px; }
.container.wide { max-width: 1220px; }
.container.medium { max-width: 920px; }
.container.notes-column { max-width: 900px; }
.text-center { text-align: center; }
.section { position: relative; padding: 104px 0; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 44px;
  pointer-events: none;
}

.site-nav,
.nav-toggle {
  pointer-events: auto;
}
.brand {
  position: fixed;
  left: 32px;
  bottom: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-fallback {
  display: none;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.site-nav a,
.paper-link,
.contact-links a {
  position: relative;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.note-title-link {
  position: relative;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.site-nav a,
.paper-link,
.contact-links a { padding: 4px 0 7px; }
.site-nav a { color: var(--muted); }
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a::after,
.paper-link::after,
.contact-links a::after,
.note-title-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: url('/images/pencil-underline-yellow.svg') center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.paper-link:hover::after,
.contact-links a:hover::after,
.note-title-link:hover::after,
.note-title-link:focus-visible::after { transform: scaleX(1); }
.note-title-link { display: inline-block; padding-bottom: 4px; }
.nav-toggle {
  display: none;
  width: 30px;
  height: 24px;
  background: transparent;
  border: 0;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; border-radius: 999px; background: var(--ink); }

.background-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-art,
.section-art,
.hero-art {
  position: absolute;
  opacity: 0.54;
  filter: saturate(0.95) contrast(1.02);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.bg-art img,
.section-art img,
.hero-art img { width: 100%; height: auto; }
.bg-art--systems { top: 9vh; left: -8vw; width: min(420px, 34vw); transform: rotate(-8deg); opacity: 0.34; }
.bg-art--movement-mid { top: 405vh; right: -10vw; width: min(420px, 34vw); transform: rotate(7deg); opacity: 0.22; }
.bg-art--presence-lower { top: 536vh; left: -8vw; width: min(430px, 36vw); transform: rotate(-4deg); opacity: 0.2; }
.story-bg-one { top: 12vh; left: -10vw; width: min(500px, 42vw); opacity: 0.32; transform: rotate(-5deg); }
.story-bg-two { top: 68vh; right: -11vw; width: min(470px, 38vw); opacity: 0.25; transform: rotate(7deg); }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 124px 0 80px;
  position: relative;
}
.hero-container { text-align: center; max-width: 1240px; display: flex; flex-direction: column; align-items: center; }
.hero-intro {
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink);
}
.hero-art--left {
  left: -7vw;
  top: 14vh;
  width: min(390px, 29vw);
  transform: rotate(-7deg);
  opacity: 0.31;
  z-index: 1;
}

.hero-art--right {
  right: -7vw;
  bottom: 10vh;
  width: min(430px, 32vw);
  transform: rotate(2deg);
  opacity: 0.24;
  z-index: 1;
}
.hero-name {
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 15rem);
  line-height: 0.86;
  font-weight: 500;
  letter-spacing: -0.050em;
  color: var(--ink);
  margin: 0 0 66px;
}

.hero-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
  flex-wrap: wrap;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.2;
  max-width: 1180px;
  margin-inline: auto;
}
.hero-prefix,
.hero-suffix {
  white-space: nowrap;
  font-weight: 400;
}
.hero-prefix { justify-self: end; }
.hero-suffix { justify-self: start; }

.rotating-slot {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: clamp(360px, 25vw, 470px);
  max-width: 100%;
  min-width: 360px;
  padding: 0 6px 12px;
  color: var(--green);
}
.rotating-word {
  display: inline-block;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--green);
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "dlig" 0, "calt" 0;
  transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
  will-change: opacity, transform;
}
.rotating-slot.is-swapping .rotating-word {
  opacity: 0;
  transform: translateY(6px);
  filter: blur(1px);
}
.animated-underline {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--underline-width, 250px);
  max-width: 100%;
  height: 14px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
  background: url('/images/pencil-underline-yellow.svg') center / 100% 100% no-repeat;
  opacity: 0.98;
}
.rotating-slot.is-drawn .animated-underline { animation: drawUnderline 560ms cubic-bezier(.23,.78,.2,1) forwards; }
@keyframes drawUnderline {
  from { transform: translateX(-50%) scaleX(0); opacity: 0.15; }
  to { transform: translateX(-50%) scaleX(1); opacity: 0.98; }
}
.hero-sub {
  max-width: 50ch;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.55;
}
.hero-links {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 42px;
}
.hero-links .paper-link {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.2;
}
.hero-links {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 42px;
}
.glimpse-section { overflow: visible; }
.glimpse-watercolors {
  position: absolute;
  inset: -160px 0 -120px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.glimpse-watercolor {
  position: absolute;
  opacity: 0;
  mix-blend-mode: multiply;
  filter: saturate(.98) contrast(1.03);
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(.2,.72,.22,1);
}
.glimpse-watercolor--tl {
  left: -10vw;
  top: 6%;
  width: min(520px, 41vw);
  transform: translateY(32px) rotate(-5deg) scale(.9);
}
.glimpse-watercolor--tr {
  right: -9vw;
  top: -2%;
  width: min(470px, 38vw);
  transform: translateY(42px) rotate(4deg) scale(.92);
}
.glimpse-watercolor--bl {
  left: -10vw;
  bottom: -7%;
  width: min(455px, 35vw);
  transform: translateY(48px) rotate(-6deg) scale(.88);
  opacity: 0;
}
.glimpse-watercolor--br {
  right: -8vw;
  bottom: -8%;
  width: min(420px, 33vw);
  transform: translateY(52px) rotate(3deg) scale(.9);
}
.glimpse-section.is-visible .glimpse-watercolor { opacity: 0.42; }
.glimpse-section.is-visible .glimpse-watercolor--tl { transform: translateY(0) rotate(-5deg) scale(1); }
.glimpse-section.is-visible .glimpse-watercolor--tr { transform: translateY(0) rotate(5deg) scale(1); opacity: 0.38; }
.glimpse-section.is-visible .glimpse-watercolor--bl { transform: translateY(0) rotate(-8deg) scale(1); opacity: 0.22; }
.glimpse-section.is-visible .glimpse-watercolor--br { transform: translateY(0) rotate(3deg) scale(1); opacity: 0.38; }

.section-title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.section-intro {
  max-width: 52ch;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.glimpse-copy {
  max-width: 780px;
  margin: 34px auto 0;
  display: grid;
  gap: 34px;
}
.glimpse-copy p {
  font-size: clamp(1.16rem, 1.7vw, 1.48rem);
  line-height: 1.55;
}
.drawn-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.drawn-underline::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -7px;
  height: 11px;
  background: url('/images/pencil-underline-yellow.svg') center / 100% 100% no-repeat;
  pointer-events: none;
}
.drawn-underline--long::after {
  left: -10px;
  right: -12px;
  height: 12px;
}
.drawn-underline--network::after {
  left: -18px;
  right: -20px;
  height: 12px;
}

.builders-section { position: relative; }
.builders-art-left {
  left: -11vw;
  top: 7%;
  width: min(390px, 31vw);
  opacity: 0.23;
  transform: rotate(-6deg);
  z-index: 1;
}
.builders-art-right {
  right: -9vw;
  bottom: -4%;
  width: min(390px, 31vw);
  opacity: 0.2;
  transform: rotate(4deg);
  z-index: 1;
}
.apple-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 44px;
}
.apple-note {
  position: relative;
  background: var(--note-bg);
  border: 1px solid rgba(165, 158, 146, 0.45);
  box-shadow: 0 22px 55px rgba(60, 52, 44, 0.08);
  border-radius: 30px;
  padding: 20px 24px 30px;
  backdrop-filter: blur(3px);
  text-align: left;
  font-family: var(--apple);
  overflow: hidden;
}
.apple-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(190, 184, 174, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.28), transparent 24%);
  background-size: 100% 32px, 100% 100%;
  pointer-events: none;
  opacity: 0.8;
}
.apple-note > * { position: relative; z-index: 1; }
.note-ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 500;
}
.note-back { display: inline-flex; align-items: center; gap: 3px; }
.note-actions { display: inline-flex; align-items: center; gap: 16px; }
.note-share {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.note-more {
  width: 22px;
  height: 22px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.4px;
}
 .note-more span {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}
.note-date {
  margin: 22px 0 26px;
  text-align: center;
  color: var(--soft-muted);
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 400;
}
.note-heading {
  font-family: var(--apple);
  font-size: clamp(1.65rem, 2.1vw, 2.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #111;
  margin: 0;
}

.project-note .note-heading {
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.08;
}
.note-bio {
  margin-top: 12px;
  color: #55514b;
  font-size: 1.02rem;
  line-height: 1.42;
}
.note-role {
  margin-top: 18px;
  color: #2b2925;
  font-size: 1.02rem;
  line-height: 1.42;
}
.note-role strong,
.note-body strong { font-weight: 700; }
.note-body {
  font-size: 1.04rem;
  line-height: 1.58;
  color: #1f1d19;
}
.builder-note .note-body { margin-top: 18px; }
.project-copy:first-of-type { margin-top: 16px; }
.note-body + .note-body { margin-top: 16px; }
.notes-column {
  display: grid;
  gap: 30px;
}
.project-note { max-width: 840px; margin-inline: auto; width: 100%; }
.project-note:first-of-type { margin-top: 42px; }

.practices-section { position: relative; }
.practices-art-top {
  right: -8vw;
  top: 3%;
  width: min(420px, 32vw);
  opacity: 0.11;
  transform: rotate(3deg);
  z-index: 1;
}
.practices-art-bottom {
  left: -10vw;
  bottom: -2%;
  width: min(370px, 30vw);
  opacity: 0.1;
  transform: rotate(-6deg);
  z-index: 1;
}
.practice-list {
  margin-top: 46px;
  display: grid;
  gap: 0;
}
.practice-item {
  position: relative;
  padding: 34px 0 44px;
}
.practice-item + .practice-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 19px;
  background: url('/images/pencil-divider-wide-grey.svg') center / 100% 16px no-repeat;
  opacity: 0.92;
}
.practice-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 16px;
}
.practice-head h3 {
  font-family: var(--apple);
  font-size: clamp(1.26rem, 2vw, 1.68rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.practice-head p {
  color: var(--muted);
  font-style: italic;
  white-space: nowrap;
  font-size: 1rem;
}
.practice-item > p {
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--ink);
}

.contact-section { padding-bottom: 130px; position: relative; }
.contact-inner { position: relative; z-index: 2; }
.contact-art-center {
  left: 50%;
  top: 50%;
  width: min(320px, 28vw);
  transform: translate(-50%, -50%);
  opacity: 0.07;
  z-index: 1;
}
.contact-links {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 34px;
}

.story-hero { padding-top: 180px; padding-bottom: 40px; }
.story-title { font-size: clamp(3.4rem, 8.2vw, 7.4rem); }
.story-carousel-section { padding-top: 36px; }
.story-link-wrap { margin-top: 32px; }
.carousel {
  max-width: 680px;
  margin-inline: auto;
  background: rgba(252, 250, 246, 0.78);
  border: 1px solid rgba(165, 158, 146, 0.45);
  box-shadow: 0 22px 55px rgba(60, 52, 44, 0.08);
  border-radius: 36px;
  overflow: hidden;
  backdrop-filter: blur(3px);
}
 .carousel-viewport {
  position: relative;
  aspect-ratio: 4 / 3.9;
  background: rgba(255,255,255,0.4);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .38s ease;
}
.carousel-slide.is-active { opacity: 1; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px 16px 0;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 20px 24px;
}
.carousel-arrow {
  border: 1px solid rgba(165, 158, 146, 0.55);
  background: rgba(255,255,255,0.4);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.carousel-dots { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.carousel-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(110, 102, 92, .22);
  cursor: pointer;
}
.carousel-dot.is-active { background: var(--yellow); }
.carousel-placeholder {
  max-width: 760px;
  margin-inline: auto;
  background: rgba(252, 250, 246, 0.78);
  border: 1px solid rgba(165, 158, 146, 0.45);
  border-radius: 34px;
  padding: 54px 34px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(60, 52, 44, 0.08);
}

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

@media (max-width: 1100px) {
  .apple-notes-grid { grid-template-columns: 1fr; max-width: 840px; margin-inline: auto; }
  .bg-art { opacity: 0.3; }
}

@media (max-width: 920px) {
  .hero-line {
    grid-template-columns: 1fr;
    max-width: 780px;
  }
  .hero-prefix,
  .hero-suffix {
    white-space: normal;
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 840px) {
  .site-header { padding: 24px 22px; }
  .brand-fallback { font-size: 1.5rem; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 78px;
    right: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    padding: 14px 16px;
    border: 1px solid rgba(165, 158, 146, 0.42);
    border-radius: 18px;
    background: rgba(252, 250, 246, 0.94);
    box-shadow: 0 16px 40px rgba(60, 52, 44, 0.09);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .hero {
    min-height: auto;
    padding-top: 150px;
  }
  .hero-line {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }
  .rotating-slot {
    width: min(100%, 420px);
  }
  .hero-suffix { max-width: 18ch; }
  .section { padding: 78px 0; }
  .section-title { font-size: clamp(2.3rem, 10vw, 4rem); }
  .glimpse-copy { gap: 28px; }
  .practice-head { flex-direction: column; gap: 6px; }
  .practice-head p { white-space: normal; }
  .bg-art,
  .hero-art,
  .section-art { opacity: .18; }
  .bg-art--systems { left: -22vw; width: 56vw; }
  .glimpse-watercolor { opacity: 0 !important; }
}

@media (max-width: 520px) {
  .container { padding-inline: 20px; }
  .hero-name { font-size: clamp(3.4rem, 19vw, 5rem); }
  .hero-line { font-size: 1.4rem; }
  .hero-sub { font-size: 1rem; }
  .hero-links { gap: 24px; }
  .apple-note { border-radius: 24px; padding: 18px 20px 26px; }
  .note-date { font-size: .95rem; margin: 18px 0 22px; }
  .note-body, .note-role, .note-bio { font-size: .98rem; }
  .note-heading {
  font-size: 1.75rem;
}
  .contact-links { gap: 18px 24px; }
  .carousel { border-radius: 26px; }
  .carousel-viewport { aspect-ratio: 4 / 4.6; }
  .carousel-slide img { padding: 12px 12px 0; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
@media (min-width: 841px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 42px;
  }
}.section-title {
  letter-spacing: 0.008em;
}
.hero-name {
  letter-spacing: -0.045em;
}

.hero-sub {
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  line-height: 1.5;
  color: var(--ink);
  margin-top: 60px;
}

.section-title {
  letter-spacing: 0.012em;
}

.project-note .note-heading {
  margin-bottom: 18px;
}
.site-header .brand {
  display: none;
}
.fixed-logo {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 9999;
  width: 96px;
  height: 96px;
  display: block;
  opacity: 0.92;
}

.fixed-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fixed-logo:hover {
  opacity: 1;
  transform: scale(1.04);
}.site-header {
  transition: opacity .25s ease;
}

.site-header.nav-hidden {
  opacity: 0;
  pointer-events: none;
}