  /* One deliberate world: black tee. Every colour is painted explicitly. */
  :root {
    /* The dark world. Black is the brand, so the ground stays black — the
       lift is in the text, the panels and the rules, not the background. */
    --bg: #0A0A0B; --bg2: #17191C; --ink: #F4F3EF; --muted: #A6ACB4; --line: #2C2F34; --line2: #43484F;
    --accent: #FF7A2E; --accent-ink: #0A0A0B; --field: #101113;
    --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
    --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  }

  /* The reading pages turn over to paper. Same design, opposite ground:
     black on off-white, orange doing the same job. Set body class "paper". */
  body.paper {
    --bg: #F3F2ED; --bg2: #FFFFFF; --ink: #131416; --muted: #5B6068; --line: #DEDCD4; --line2: #C3C1B7;
    --accent: #D2450B; --accent-ink: #FFFFFF; --field: #FFFFFF;
  }
  body.paper .nav.stuck { background: rgba(243,242,237,.86); }
  body.paper .nav .brand, body.paper .nav .links a, body.paper .burger i { color: var(--ink); background-color: initial; }
  body.paper .burger i { background: var(--ink); }
  body.paper .nav .brand svg path { fill: var(--ink); }
  body.paper .sheet { background: var(--bg); }
  body.paper .post .body p, body.paper .prose .body p { color: #33373D; }
  body.paper .founder .pic { border-color: var(--ink); }
  /* Tell the browser which world it is in, so the rubber-band overscroll on a
     phone, the form fields and the scrollbars come up the right colour. The
     page HTML says the same thing in a meta tag, for the first paint. */
  :root { color-scheme: dark; }
  body.paper { color-scheme: light; }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--display); font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: clip; }
  a { color: inherit; text-decoration: none; }
  a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
  h1, h2, h3 { margin: 0; letter-spacing: -0.035em; text-wrap: balance; }
  p { margin: 0; }
  ul { margin: 0; padding: 0; list-style: none; }
  .mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
  /* The second width keeps the gutters clear of a notch in landscape.
     Anything too old to know env() keeps the plain one above it. */
  .wrap { width: min(1400px, 100% - 64px); margin: 0 auto; }
  .wrap { width: min(1400px, 100% - 64px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)); }
  @media (max-width: 700px) {
    .wrap { width: calc(100% - 36px); }
    .wrap { width: calc(100% - 36px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)); }
  }
  @media (max-width: 360px) { .wrap { width: calc(100% - 28px); } }

  /* ---------- Nav ---------- */
  .nav { position: fixed; inset: 0 0 auto 0; z-index: 20; mix-blend-mode: difference; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
  .nav.stuck { mix-blend-mode: normal; background: rgba(10,10,11,.78); backdrop-filter: saturate(140%) blur(12px); border-bottom-color: var(--line); }
  .nav.stuck .brand, .nav.stuck .links a { color: var(--ink); }
  .nav.stuck .brand svg path { fill: var(--ink); }
  .nav.stuck .links a.pill { border-color: var(--line2); }
  .nav.stuck .links a.pill:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: #fff; }
  .brand svg { width: 24px; height: 24px; display: block; }
  .brand svg path { fill: #fff; }
  .links { display: flex; align-items: center; gap: 28px; }
  .links a { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; opacity: .75; transition: opacity .2s; }
  .links a:hover { opacity: 1; }
  .links a.pill { opacity: 1; border: 1px solid #fff; padding: 10px 16px; border-radius: 999px; }
  .links a.pill:hover { background: #fff; color: #000; }
  .links a.here { opacity: 1; }
  .links a:not(.pill).here::after { content: ""; display: block; height: 1px; background: currentColor; margin-top: 5px; }
  .burger { display: none; width: 44px; height: 44px; margin-right: -10px; background: none; border: 0; padding: 0; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
  .burger i { display: block; width: 22px; height: 1.5px; background: #fff; transition: transform .3s, opacity .2s; }
  .nav.stuck .burger i { background: var(--ink); }
  .sheet { position: fixed; inset: 0; z-index: 19; background: var(--bg); display: flex; flex-direction: column; justify-content: center; gap: 6px;
           padding: 96px 28px 40px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .sheet { padding: 96px max(28px, env(safe-area-inset-left, 0px)) max(40px, env(safe-area-inset-bottom, 0px)); }
  /* On a short screen the menu is taller than the sheet. Centred content
     would then spill out of reach above the top; "safe" parks it at the
     start instead. Browsers without it keep the plain centring above. */
  .sheet { justify-content: safe center; }
  /* A closed menu is closed. Without this the class beats [hidden] and the
     sheet sits over the whole page on every small screen. */
  .sheet[hidden] { display: none; }
  .sheet a { font-size: clamp(34px, 9vw, 52px); font-weight: 800; letter-spacing: -0.035em; padding: 10px 0; }
  .sheet a.here { color: var(--accent); }
  .sheet .mail { margin-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 400; color: var(--muted); }
  body.locked { overflow: hidden; }
  @media (max-width: 860px) { .links { display: none; } .burger { display: flex; } .nav.open i:first-child { transform: translateY(3.75px) rotate(45deg); } .nav.open i:last-child { transform: translateY(-3.75px) rotate(-45deg); } }
  @media (min-width: 861px) { .sheet { display: none; } }

  /* ---------- Hero ---------- */
  .hero { position: relative; min-height: 68vh; display: flex; align-items: center; padding: 124px 0 76px; overflow: hidden; }
  .hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
  .hero .fade { position: absolute; inset: auto 0 0 0; height: 34%; background: linear-gradient(to bottom, rgba(10,10,11,0), rgba(10,10,11,.82)); pointer-events: none; }
  .hero .wrap { position: relative; }
  .hero h1 { font-size: clamp(48px, 8.8vw, 150px); font-weight: 800; line-height: 0.9; font-variation-settings: "opsz" 96; }
  .hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
  .hero h1 .w span { display: inline-block; transform: translateY(105%); animation: rise .9s cubic-bezier(.2,.75,.15,1) forwards; }
  .hero h1 .w:nth-child(2) span { animation-delay: .08s; } .hero h1 .w:nth-child(3) span { animation-delay: .16s; }
  .hero h1 .w:nth-child(4) span { animation-delay: .24s; } .hero h1 .w:nth-child(5) span { animation-delay: .32s; }
  .hero h1 em { font-style: normal; color: var(--accent); }

  /* The first word turns over like a rolodex. */
  .hero h1 .tl { display: block; }
  @media (min-width: 700px) { .hero h1 .tl { white-space: nowrap; } }
  .flip { display: inline-block; position: relative; color: var(--accent); perspective: 900px;
          vertical-align: top; margin-right: .26em; transition: width .46s cubic-bezier(.2,.8,.2,1); }
  .flip .sizer { visibility: hidden; }
  .flip .fw { position: absolute; left: 0; top: 0; white-space: nowrap; transform-origin: 50% 0%;
              transform: rotateX(-96deg); opacity: 0; backface-visibility: hidden;
              transition: transform .46s cubic-bezier(.2,.8,.2,1), opacity .26s ease; }
  .flip .fw.in { transform: none; opacity: 1; }
  .flip .fw.out { transform-origin: 50% 100%; transform: rotateX(96deg); opacity: 0; }
  .flip .fw.jump { transition: none; }
  @keyframes rise { to { transform: none; } }
  .hero .sub { margin-top: 40px; max-width: 50ch; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.45; color: var(--muted); font-weight: 500; opacity: 0; animation: fade .8s .55s forwards; }
  .hero .sub b { color: var(--ink); font-weight: 500; }
  @keyframes fade { to { opacity: 1; } }
  @media (max-width: 700px) {
    .hero { min-height: 0; padding: 112px 0 60px; }
    .hero h1 { font-size: clamp(42px, 12vw, 62px); line-height: .94; }
    .hero .sub { margin-top: 28px; font-size: 17.5px; line-height: 1.5; }
  }


  section { scroll-margin-top: 84px; }

  /* ---------- Inside pages ---------- */
  .ph { padding: 152px 0 8px; }
  .ph .mono { display: block; margin-bottom: 18px; }
  .ph h1 { font-size: clamp(40px, 6.4vw, 92px); font-weight: 800; line-height: .96; letter-spacing: -0.04em; font-variation-settings: "opsz" 96; max-width: 18ch; }
  .ph p { margin-top: 26px; color: var(--muted); font-size: clamp(17px, 1.5vw, 21px); font-weight: 500; max-width: 56ch; }
  @media (max-width: 700px) {
    .ph { padding: 118px 0 8px; }
    .ph .mono { margin-bottom: 14px; }
    .ph h1 { font-size: clamp(33px, 9.2vw, 44px); line-height: 1.02; letter-spacing: -0.03em; }
    .ph p { margin-top: 20px; font-size: 17.5px; line-height: 1.5; }
  }

  /* ---------- Home: the what-we-do slug ---------- */
  .slug { padding: 0 0 108px; }
  .slug .wrap { border-top: 1px solid var(--line); padding-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; align-items: start; }
  .slug .line h3 { font-size: clamp(21px, 1.8vw, 25px); font-weight: 700; letter-spacing: -0.025em; }
  .slug .line p { margin-top: 9px; color: var(--muted); font-size: 16px; font-weight: 500; max-width: 34ch; }
  .slug .more { grid-column: 1 / -1; margin-top: 8px; }
  .more a { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--line2); padding-bottom: 6px; transition: color .2s, border-color .2s; }
  .more a:hover { color: var(--accent); border-color: var(--accent); }
  .more a i { font-style: normal; transition: transform .25s; }
  .more a:hover i { transform: translateX(4px); }
  @media (max-width: 860px) { .slug { padding-bottom: 76px; } .slug .wrap { grid-template-columns: 1fr; gap: 26px; } }
  @media (max-width: 700px) {
    .slug { padding-bottom: 62px; }
    .slug .wrap { padding-top: 24px; gap: 24px; }
    .slug .line h3 { font-size: 22px; }
    .slug .line p { margin-top: 7px; font-size: 16.5px; line-height: 1.5; max-width: none; }
  }

  /* ---------- Service detail ---------- */
  .card ul { margin-top: 6px; display: flex; flex-direction: column; gap: 8px; }
  .card li { position: relative; padding-left: 18px; color: var(--muted); font-size: 15.5px; font-weight: 500; }
  .card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; background: var(--accent); }

  /* ---------- Blog ---------- */
  .posts { padding: 44px 0 40px; }
  .posts ul { border-top: 1px solid var(--line); }
  .posts li a { display: grid; grid-template-columns: 128px minmax(0, 1fr); gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: start; transition: background .25s; }
  .posts li a:hover { background: var(--bg2); }
  .posts .meta { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 6px; }
  .posts .meta b { display: block; color: var(--accent); font-weight: 400; margin-bottom: 6px; }
  .posts h3 { font-size: clamp(22px, 2.3vw, 31px); font-weight: 700; line-height: 1.08; max-width: 38ch; transition: color .2s; }
  .posts li a:hover h3 { color: var(--accent); }
  .posts p { margin-top: 10px; color: var(--muted); font-size: 16.5px; font-weight: 500; max-width: 60ch; }
  @media (max-width: 700px) {
    .posts { padding: 30px 0 32px; }
    .posts li a { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
    .posts .meta { padding-top: 0; font-size: 12px; letter-spacing: .1em; }
    .posts .meta b { display: inline; margin: 0 8px 0 0; }
    .posts h3 { font-size: 21.5px; line-height: 1.16; letter-spacing: -0.025em; text-wrap: pretty; max-width: none; }
    .posts p { margin-top: 8px; font-size: 16.5px; line-height: 1.5; max-width: none; }
  }

  /* ---------- A post ---------- */
  .post { padding: 40px 0 30px; }
  .post .body { max-width: 68ch; }
  .post .body p { margin-top: 26px; font-size: clamp(17.5px, 1.35vw, 19.5px); line-height: 1.62; color: #CFD2D6; font-weight: 500; }
  .post .body h2 { margin-top: 52px; font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
  .post .body blockquote { margin: 44px 0 8px; padding-left: 26px; border-left: 2px solid var(--accent); }
  .post .body blockquote p { margin: 0; font-size: clamp(21px, 2.1vw, 27px); line-height: 1.34; color: var(--ink); font-weight: 600; letter-spacing: -0.02em; }
  .post .foot { margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px 40px; justify-content: space-between; }
  .post .foot a { font-family: var(--mono); font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
  .post .foot a:hover { color: var(--accent); }
  .post .foot a b { display: block; margin-top: 8px; font-family: var(--display); font-size: 17px; letter-spacing: -0.02em; text-transform: none; font-weight: 600; color: var(--ink); max-width: 30ch; }
  @media (max-width: 700px) {
    .post { padding: 26px 0 24px; }
    .post .body p { margin-top: 22px; font-size: 18px; line-height: 1.68; }
    .post .body h2 { margin-top: 42px; font-size: 25px; line-height: 1.14; }
    .post .body blockquote { margin: 34px 0 6px; padding-left: 18px; }
    .post .body blockquote p { font-size: 21px; line-height: 1.32; }
    .post .foot { margin-top: 46px; padding-top: 20px; display: block; }
    .post .foot a { display: block; }
    .post .foot a b { font-size: 16.5px; max-width: none; }
  }

  /* ---------- About ---------- */
  .prose { padding: 20px 0 40px; }
  .prose .body { max-width: 66ch; }
  .prose .body p { margin-top: 26px; font-size: clamp(17.5px, 1.35vw, 19.5px); line-height: 1.6; color: #CFD2D6; font-weight: 500; }
  .prose .body h2 { margin-top: 54px; font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
  .prose .body em { font-style: normal; color: var(--accent); }
  .founder { margin-top: 64px; border-top: 1px solid var(--line); padding-top: 34px; display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 30px; align-items: start; }
  .founder .pic { width: 108px; height: 108px; border-radius: 50%; overflow: hidden; border: 2px solid var(--ink); }
  .founder .pic img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; display: block; filter: grayscale(1) contrast(1.05); }
  .founder h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
  .founder p { margin-top: 10px; color: var(--muted); font-size: 17px; font-weight: 500; max-width: 58ch; }
  .founder .go { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
  .founder .go a { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 9px 13px; border: 1px solid var(--line2); }
  .founder .go a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  @media (max-width: 700px) {
    .prose { padding: 12px 0 32px; }
    .prose .body p { margin-top: 22px; font-size: 18px; line-height: 1.66; }
    .prose .body h2 { margin-top: 42px; font-size: 25px; line-height: 1.14; }
    .founder { margin-top: 46px; padding-top: 28px; }
    .founder p { max-width: none; }
  }
  @media (max-width: 620px) { .founder { grid-template-columns: 1fr; } }
  /* ---------- Section heads ---------- */
  .head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 0 0 28px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
  .head h2 { font-size: clamp(34px, 5vw, 76px); font-weight: 800; line-height: .95; font-variation-settings: "opsz" 96; }
  .head .mono { white-space: nowrap; }

  /* ---------- What we do ---------- */
  .svc { padding: 40px 0 40px; }
  .cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .card { min-height: 330px; }
  .card { border: 1px solid var(--line); background: var(--bg2); padding: 32px 32px 34px; display: flex; flex-direction: column; gap: 12px; transition: border-color .3s; }
  .card:hover { border-color: var(--line2); }
  .card .k { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
  .card h3 { font-size: clamp(26px, 2.7vw, 38px); font-weight: 700; line-height: 1.02; }
  .card p { color: var(--muted); font-size: 16.5px; font-weight: 500; max-width: 46ch; }
  @media (max-width: 1000px) { .cards { grid-template-columns: 1fr; } .card { min-height: 0; } }
  @media (max-width: 700px) {
    .svc { padding: 30px 0 32px; }
    .cards { gap: 14px; }
    .card { padding: 26px 22px 28px; gap: 10px; }
    .card h3 { font-size: 25px; line-height: 1.08; }
    .card p { font-size: 17px; line-height: 1.5; max-width: none; }
    .card ul { margin-top: 8px; gap: 11px; }
    .card li { padding-left: 16px; font-size: 16.5px; line-height: 1.45; }
  }


  /* ---------- Contact ---------- */
  .contact { padding: 30px 0 64px; }
  .contact h2 { font-size: clamp(40px, 7vw, 104px); font-weight: 800; line-height: .92; letter-spacing: -0.045em; font-variation-settings: "opsz" 96; }
  .contact p { margin-top: 24px; color: var(--muted); font-size: 18px; font-weight: 500; max-width: 48ch; }
  .form { margin-top: 40px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 760px; }
  .form .full { grid-column: 1 / -1; }
  .form input, .form textarea { width: 100%; background: var(--field); border: 1px solid var(--line2); color: var(--ink); font-family: var(--display); font-size: 16.5px; font-weight: 500; padding: 16px 18px; }
  .form textarea { min-height: 132px; resize: vertical; line-height: 1.45; }
  .form input::placeholder, .form textarea::placeholder { color: var(--muted); }
  .form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
  .form button { justify-self: start; background: var(--accent); color: var(--accent-ink); border: 0; font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; padding: 16px 30px; cursor: pointer; transition: background .2s, color .2s; }
  .form button:hover { background: var(--ink); color: var(--bg); }
  .form .said { grid-column: 1 / -1; margin: 0; font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
  @media (max-width: 700px) {
    .contact { padding: 22px 0 52px; }
    .contact h2 { font-size: clamp(34px, 10vw, 48px); }
    .contact p { margin-top: 18px; font-size: 17.5px; line-height: 1.5; }
    .form { margin-top: 30px; grid-template-columns: 1fr; }
    .form button { justify-self: stretch; text-align: center; padding: 18px 30px; }
  }
  /* ---------- The band above the footer ---------- */
  .band { border-top: 1px solid var(--line); background: var(--bg2); }
  .band .wrap { padding: 62px 0 66px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px 40px; }
  .band h2 { font-size: clamp(26px, 3.4vw, 46px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; max-width: 20ch; }
  .band a { flex: none; background: var(--accent); color: var(--accent-ink); font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; padding: 17px 32px; transition: background .2s, color .2s; }
  .band a:hover { background: var(--ink); color: var(--bg); }

  /* ---------- The bottom of the page ---------- */
  footer { border-top: 1px solid var(--line); padding: 60px 0 0; }
  .fcols { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
  .fbrand .mark { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
  .fbrand .mark svg { width: 24px; height: 24px; display: block; }
  .fbrand .mark svg path { fill: var(--ink); }
  .fbrand p { margin-top: 16px; color: var(--muted); font-size: 15.5px; font-weight: 500; max-width: 30ch; }
  .fbrand .place { margin-top: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
  .fcol h4 { margin: 0 0 16px; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
  .fcol ul { display: flex; flex-direction: column; gap: 11px; }
  .fcol a { font-size: 15.5px; font-weight: 500; color: var(--ink); transition: color .2s; }
  .fcol a:hover { color: var(--accent); }
  .fbase { margin-top: 56px; border-top: 1px solid var(--line); padding: 22px 0 30px; display: flex; flex-wrap: wrap; gap: 8px 30px; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
  @media (max-width: 900px) { .fcols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 28px; } .fbrand { grid-column: 1 / -1; } }
  @media (max-width: 700px) {
    .band h2 { font-size: 27px; line-height: 1.14; max-width: none; }
    .band a { padding: 19px 32px; }
    footer { padding-top: 46px; }
    .fbrand p { font-size: 16px; max-width: none; }
    .fcol a { font-size: 16px; }
    .fbase { margin-top: 40px; }
  }
  @media (max-width: 560px) { .fcols { grid-template-columns: 1fr; gap: 30px; } .band .wrap { padding: 46px 0 50px; } .band a { width: 100%; text-align: center; } }

  .reveal { opacity: .6; transform: translateY(18px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal.on { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero h1 .w span { animation: none; transform: none; } .hero .sub { animation: none; opacity: 1; } .flip .fw { transition: none; }
    .reveal { opacity: 1; transform: none; transition: none; } .ln { transition: none; }
  }

  /* ---------- If a copy file fails to load ---------- */
  .oops { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; width: min(1400px, 100% - 64px); margin: 0 auto; }
  .oops .mono { margin-bottom: 20px; }
  .oops h1 { font-size: clamp(40px, 7vw, 96px); font-weight: 800; letter-spacing: -0.04em; }
  .oops p:last-child { margin-top: 22px; color: var(--muted); font-size: 18px; font-weight: 500; }
  .oops a { color: var(--accent); }

  /* ---------- Comfortable to read and to tap on a phone ----------
     The small mono labels are the design's voice, but at 11px with a sixth
     of an em between the letters they go to mush on a handset. A point
     larger and a little tighter, and they hold. */
  @media (max-width: 700px) {
    .mono { font-size: 12.5px; letter-spacing: .13em; }
    .card .k, .fcol h4, .fbrand .place { font-size: 12px; letter-spacing: .13em; }
    .fbase { font-size: 11.5px; letter-spacing: .1em; line-height: 1.6; }
    .post .foot a, .founder .go a { font-size: 12px; letter-spacing: .11em; }
    .more a, .band a, .form button { font-size: 12.5px; letter-spacing: .13em; }
    .sheet .mail { margin-top: 22px; font-size: 12.5px; letter-spacing: .12em; }

    .brand, .fbrand .mark { padding: 9px 0; }
    .fcol ul { gap: 2px; }
    .fcol a { display: inline-block; padding: 12px 0; }
    .fbase { gap: 4px 30px; }
    .fbase a { display: inline-block; padding: 8px 0; }
    .post .foot { gap: 4px 40px; }
    .post .foot a { display: inline-block; padding: 12px 0; }
    .more a { padding-top: 10px; padding-bottom: 12px; }
    .sheet a { padding: 12px 0; }
  }
