/* ─── Fonts ─────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Jersey25';
  src: url('fonts/Jersey25-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* ─── Reset & base ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.sprite {
  image-rendering: pixelated;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ─── Buttons & tags ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.55em 1.5em;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.18s, border-color 0.18s, color 0.18s,
              transform 0.18s, box-shadow 0.18s;
}

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

.btn--purple {
  background: #6c5ce7;
  color: #fff;
}

.btn--purple:hover {
  background: #8473ff;
  box-shadow: 0 8px 22px rgba(108, 92, 231, 0.5);
}

.btn--ghost {
  background: #143048;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}

.btn--ghost:hover {
  background: #1f4a6e;
  border-color: #fff;
  box-shadow: 0 8px 22px rgba(20, 48, 72, 0.55);
}

.btn--green {
  background: #2e6e3c;
  color: #fff;
  border: 2px solid #1d4d28;
  font-size: 0.95em;
  padding: 0.4em 1.4em;
  margin-top: 0.4em;
}

.btn--green:hover {
  background: #3c8c4d;
  box-shadow: 0 8px 22px rgba(46, 110, 60, 0.5);
}

.tag {
  display: inline-block;
  padding: 0.3em 1em;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1.5px solid;
}

.tag--orange { border-color: #f08a3e; }
.tag--purple { border-color: #6c5ce7; }
.tag--violet { border-color: #a08df0; }
.tag--pink   { border-color: #e85d8a; }
.tag--gray   { border-color: #8a93a6; }

/* ─── Grass dividers ────────────────────────────────────────────────────── */
.grass-strip {
  position: relative;
  width: 100%;
  height: 60px;
  background: url('assets/grassflowers.png') center bottom / auto 60px repeat-x;
  image-rendering: pixelated;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg,
    #87ceeb 0%,
    #9ecfbe 30%,
    #a8c99a 48%,
    #98ba7a 62%,
    #7a9e6a 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Frosted nav bar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 1.4rem 1.6rem 0;
  padding: 0.9rem 2.5rem;
  border-radius: 14px;
  background: rgba(40, 70, 80, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 3.5rem;
}

.nav-links a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  opacity: 0.75;
}

/* ─── Work dropdown submenu ───────────────────────────────────────────────── */
.nav-has-sub {
  position: relative;
}

/* Transparent bridge so the cursor can cross the gap to the dropdown */
.nav-has-sub::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.9rem;
}

.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 168px;
  margin-top: 0.7rem;
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(40, 70, 80, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 110;
}

.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-sub a {
  display: block;
  white-space: nowrap;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.88rem;
}

.nav-sub a:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.nav-sub a[aria-current="page"] {
  font-weight: 700;
}

/* ─── Hamburger toggle (shown only at mobile breakpoints) ─────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 32px;
  padding: 7px 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;            /* bars inherit via currentColor */
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero text block - left aligned */
.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 6vw 28vh;
  max-width: 900px;
}

/* Cloud layer - full-width strip above the hero text */
.cloud-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38%;   /* clouds live in the upper sky, above the h1 */
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

/* Individual clouds injected by JS */
.hero-cloud {
  position: absolute;
  image-rendering: pixelated;
  /* animation set per-cloud by JS */
}

@keyframes cloudDrift {
  from { transform: translateX(-200px); }
  to   { transform: translateX(calc(100vw + 200px)); }
}

.accent-mc {
  color: #2e6e3c;   /* matches .btn--green - dark forest green already on site */
}

.hero-content h1 {
  font-family: 'Jersey25', sans-serif;
  font-weight: normal;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 0 rgba(0,0,0,0.15);
  margin-left: -0.05em; /* compensates for Jersey25's left glyph bearing */
}

.accent-n {
  color: #d8b832;
}

.hero-role {
  margin-top: 1rem;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #fff;
}

.hero-tagline {
  margin-top: 0.5rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.92);
}

/* Hero sprites */
.sprite-tree {
  position: absolute;
  bottom: 14vh;
  right: 5vw;
  width: clamp(160px, 24vw, 380px);
  z-index: 4;
}

.sprite-deer {
  position: absolute;
  bottom: calc(12vh - clamp(12px, 2vh, 22px)); /* feet at trunk-base level */
  right: calc(5vw + clamp(150px, 24vw, 380px));
  width: clamp(90px, 13vw, 200px);
  z-index: 4;
}

.grass-strip--hero {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROJECTS (shared)
   ═══════════════════════════════════════════════════════════════════════════ */
.project-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.project-text {
  flex: 0 0 42%;
  min-width: 0;
}

.project-wordmark {
  font-family: 'Jersey25', sans-serif;
  font-weight: normal;
  line-height: 1.1;
}

.project-subtitle {
  /* Matches .cs-subtitle in the project-page hero */
  font-size: 2em;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0.6rem 0 1.6rem;
}

.project-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.project-shot {
  flex: 1;
  min-width: 0;
}

/* Both case-study shots share identical treatment; only the section theme
   (gradient bg, wordmark colour) differs. */
.project-shot img {
  width: 100%;
  display: block;
  /* match all project shots to the same displayed size regardless of source ratio */
  aspect-ratio: 2200 / 1600;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  filter: drop-shadow(0 0 40px rgba(108, 92, 231, 0.25));

  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 60%,
    transparent 90%
  );

  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 60%,
    transparent 90%
  );
}

/* Clip the faded screenshot bottom inside both case-study shots */
.project-shot--orbiq,
.project-shot--fw {
  overflow: hidden;
}

/* ─── ORBIQ ─────────────────────────────────────────────────────────────── */
.project--orbiq {
  background: linear-gradient(180deg, #241b3d 0%, #1b1430 55%, #171028 100%);
}

.sprite-astronaut {
  width: clamp(60px, 7vw, 110px);
  margin-bottom: 0.5rem;
  margin-left: 4.5rem;
}

.sprite-cat {
  width: clamp(85px, 9.5vw, 150px);
  margin-bottom: 0.5rem;
  margin-left: 4.5rem;
  image-rendering: pixelated;
}

.project-wordmark--orbiq {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: 0.12em;
  /* Vertical gradient text: indigo (top) → blue (bottom) */
  background: linear-gradient(180deg, #7e77d6 0%, #5c93dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* drop-shadow (not text-shadow) glows the clipped gradient text */
  filter: drop-shadow(0 0 18px rgba(124, 111, 232, 0.55));
}

.project-subtitle--orbiq {
  color: #fff;
}

/* ─── PLACEHOLDER ──────────────────────────────────────────────────────── */
.project--placeholder {
  background: linear-gradient(180deg, #1a2a1a 0%, #0f1f0f 55%, #0a1508 100%);
}

.project-wordmark--placeholder {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #6aab7a;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.project-subtitle--placeholder {
  color: #4a7a5a;
  opacity: 0.6;
}

.btn--placeholder {
  background: rgba(106, 171, 122, 0.15);
  border: 1px solid rgba(106, 171, 122, 0.3);
  color: rgba(106, 171, 122, 0.5);
  pointer-events: none;
}

.project-shot--placeholder {
  flex: 1;
  min-width: 0;
  aspect-ratio: 2200 / 1600;
}

.placeholder-screen {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(106,171,122,0.04) 0px,
      rgba(106,171,122,0.04) 2px,
      transparent 2px,
      transparent 14px
    ),
    rgba(255,255,255,0.03);
  border: 1px dashed rgba(106,171,122,0.2);
}


.project--forty-winks {
  background: linear-gradient(180deg, #1a5a8a 0%, #114470 30%, #0c2f55 60%, #071e38 100%);
}

.project-wordmark--fw {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #f08a3e;
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
}

.project-subtitle--fw {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPACER - removed; grass strip flows directly into earth gradient
   ═══════════════════════════════════════════════════════════════════════════ */
.spacer {
  display: none;
}

.sprite-hedgehog {
  position: absolute;
  top: -4px;
  left: 6vw;
  width: clamp(36px, 4vw, 60px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   EARTH (about + footer share the soil→night gradient)
   ═══════════════════════════════════════════════════════════════════════════ */
.earth {
  background:
    url('assets/gradients/purple-to-black.png') center bottom / auto 450px repeat-x,
    url('assets/gradients/brown-to-purple.png') center 72% / auto 570px repeat-x,
    url('assets/gradients/orange-to-brown.png') center 38% / auto 560px repeat-x,
    linear-gradient(180deg,
      #c4924a 0%, #c4924a 38%,
      #5c4030 38%, #5c4030 72%,
      #3d2e52 72%, #3d2e52 calc(100% - 225px),
      #0d0b14 calc(100% - 225px), #0d0b14 100%);
  image-rendering: pixelated;
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────── */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-wrapper {
  position: relative;
  width: min(1000px, 94vw);
  margin: clamp(3rem, 8vw, 7rem) 0 2rem;
}

.book-img {
  width: 100%;
  opacity: 80%;
}

.book-text {
  position: absolute;
  top: 12%;
  left: 5.5%;
  width: 89%;
  height: 81%;
  display: flex;
  gap: 8%;
  color: #3a2a10;
}

.book-page {
  flex: 1;
  overflow: hidden;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  /* Scale with the book: at min(1000px, 94vw), 1.28vw ≈ 12.8px at 1000px */
  font-size: clamp(0.6rem, 1.28vw, 0.8rem);
  line-height: clamp(1.20rem, 2.68vw, 1.68rem); /* matches book ruled-line pitch */
  font-weight: 400;
}

.book-page p {
  margin-bottom: clamp(0.3rem, 0.6vw, 0.5rem);
}

/* Right page - flush to top to match left */
.book-page--right {
  margin-top: 0;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  isolation: isolate;  /* creates stacking context so child z-indices are scoped */
  padding-top: clamp(8rem, 12vw, 14rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 380px;
  overflow: visible;
}

/* Pine forest - inside footer-scene, shares same coordinate origin as sprites */
.forest {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.pine {
  position: absolute;
  transform: translateX(-50%);
}

.sprite-log {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 40vw, 480px);
  z-index: 20;
}

.sprite-me {
  position: absolute;
  bottom: calc(120px + clamp(30px, 4vw, 48px));
  left: 50%;
  transform: translateX(-50%);
  width: clamp(56px, 7vw, 88px);
  z-index: 22;
}

.sprite-toby {
  position: absolute;
  bottom: 50px;
  left: calc(50% - clamp(170px, 23vw, 270px));
  width: clamp(50px, 19.5vw, 118px);
  z-index: 21;
}

.sprite-fire {
  position: absolute;
  bottom: 60px;
  left: calc(50% + clamp(40px, 6vw, 80px));
  width: clamp(60px, 8vw, 100px);
  z-index: 21;
}

.signpost-group {
  position: absolute;
  bottom: 130px;
  left: clamp(10px, 8vw, 120px);
  width: clamp(80px, 10vw, 130px);
  z-index: 20;
}

.sprite-signpost {
  width: 100%;
}

.signpost-link {
  position: absolute;
  display: block;
  height: 22%;
  width: 48%;
}

.signpost-link--dribbble {
  top: 36%;
  left: 0;
}

.signpost-link--linkedin {
  top: 14%;
  left: 52%;
}

/* Warm firelight glow - radiates from the campfire, behind the characters */
.footer-glow {
  position: absolute;
  bottom: 95px;                                  /* ~vertical centre of the fire */
  left: calc(50% + clamp(70px, 9vw, 130px));     /* aligns with the fire sprite */
  width: clamp(300px, 42vw, 520px);
  height: clamp(300px, 42vw, 520px);
  transform: translate(-50%, 50%);               /* centre the circle on that point */
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 150, 45, 0.6) 0%,
    rgba(232, 96, 22, 0.34) 26%,
    rgba(150, 55, 5, 0.13) 52%,
    transparent 72%
  );
  z-index: 5;   /* above the forest/background, behind the characters */
  pointer-events: none;
}

/* Dark forest floor - treeline silhouette, back-to-top lives inside */
.silhouette {
  width: 100%;
  background: #0d0814;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 3rem;
  clip-path: polygon(
    0% 100%, 0% 42%,
    1% 22%, 2% 42%, 3% 14%, 4.5% 34%, 5.5% 0%, 7% 28%, 8% 8%,
    9% 32%, 10% 0%, 11.5% 22%, 12.5% 5%, 14% 30%, 15% 0%, 16.5% 20%,
    17.5% 4%, 19% 28%, 20% 0%, 21.5% 18%, 23% 2%, 24.5% 24%, 26% 0%,
    27.5% 18%, 29% 4%, 30.5% 28%, 32% 0%, 33.5% 20%, 35% 5%, 36.5% 30%,
    38% 0%, 39.5% 22%, 41% 2%, 42.5% 26%, 44% 0%, 45.5% 18%, 47% 4%,
    48.5% 28%, 50% 0%, 51.5% 22%, 53% 5%, 54.5% 30%, 56% 0%, 57.5% 20%,
    59% 2%, 60.5% 26%, 62% 0%, 63.5% 18%, 65% 4%, 66.5% 28%, 68% 0%,
    69.5% 22%, 71% 2%, 72.5% 26%, 74% 0%, 75.5% 18%, 77% 5%, 78.5% 30%,
    80% 0%, 81.5% 22%, 83% 4%, 84.5% 28%, 86% 0%, 87.5% 18%, 89% 2%,
    90.5% 26%, 92% 0%, 93.5% 20%, 95% 5%, 96.5% 28%, 98% 12%, 99% 32%,
    100% 20%, 100% 100%
  );
  min-height: 200px;
}

.back-to-top {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  font-family: 'Jersey25', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.back-to-top:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .nav {
    margin: 1rem 1rem 0;
    padding: 0.8rem 1.4rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  /* Links collapse into a dropdown that wraps onto its own row inside the pill */
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.85rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  /* Full-width rows for larger touch targets */
  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.5rem;
    border-radius: 8px;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(127, 127, 127, 0.18);
    opacity: 1;
  }

  /* Submenu shows inline (indented) while the hamburger menu is open */
  .nav-has-sub::after { display: none; }

  /* Cancel the desktop hover translate — on touch it would shove the
     static submenu off-screen (translateX(-50%) of its own width) */
  .nav-has-sub:hover .nav-sub,
  .nav-has-sub:focus-within .nav-sub {
    transform: none;
  }

  .nav-sub {
    position: static;
    transform: none;
    min-width: 0;
    margin: 0.1rem 0 0.2rem 0.9rem;
    padding: 0;
    gap: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border-left: 2px solid rgba(127, 127, 127, 0.3);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-sub a {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }

  .hero-content {
    padding-bottom: 32vh;
  }

  /* Hero sprites on mobile - as large as fits with the deer to the left of the
     tree (small overlap at the trunk). The deer GIF has ~34% empty space below
     its feet vs the tree's ~4%, so the deer sits ~40px lower to line their
     visible bottoms up. */
  .sprite-tree {
    bottom: 17vh;
    width: 240px;
  }

  .sprite-deer {
    bottom: calc(17vh - 40px);
    right: calc(5vw + 200px);
    width: 150px;
  }

  .project-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem 3.5rem;
  }

  .project-text {
    flex: none;
    width: 100%;
  }

  .project-shot {
    width: 100%;
  }

  .sprite-astronaut {
    margin-left: 2rem;
    width: clamp(110px, 26vw, 150px);
  }

  .sprite-cat {
    width: clamp(120px, 30vw, 170px);
  }

  .spacer {
    height: 180px;
  }

  /* Book text becomes a paper card below the image */
  .book-img {
    display: none;
  }

  .book-wrapper {
    background: #f3ead6;
    border: 6px solid #4a3320;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
  }

  .book-text {
    position: static;
    flex-direction: column;
    gap: 0;
    width: auto;
    height: auto;
  }

  .book-page {
    overflow: visible;
    font-size: 1rem;
    line-height: 1.6;
  }

  .book-page p {
    margin-bottom: 1.5rem;
  }

  .book-page--right {
    margin-top: 0;
  }

  .footer-scene {
    height: 300px;
  }

  .sprite-toby {
    left: calc(50% - 165px);
  }

  /* Larger, more legible type on small screens */
  .hero-role    { font-size: 1.7rem; }
  .hero-tagline { font-size: 1.3rem; }

  .project-wordmark--orbiq,
  .project-wordmark--fw,
  .project-wordmark--placeholder { font-size: clamp(3.2rem, 14vw, 4.2rem); }
}
