:root {
  --ink: #14213d;
  --paper: #fff8eb;
  --white: #ffffff;
  --yellow: #ffcb36;
  --coral: #ff6242;
  --blue: #35c6d4;
  --green: #71c96b;
  --shadow: 8px 8px 0 var(--ink);
  --line: 3px solid var(--ink);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 248, 235, 0.95);
  border-bottom: var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-style: italic;
  transform: rotate(-4deg);
}

.brand-three {
  color: var(--coral);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.93rem;
  font-weight: 800;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.mobile-menu {
  display: none;
}

.header-button {
  justify-self: end;
  padding: 9px 15px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.header-button:hover,
.header-button:focus-visible {
  box-shadow: 4px 4px 0 var(--coral);
  transform: translate(-2px, -2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  min-height: calc(100svh - 76px);
  padding: clamp(56px, 8vw, 110px) clamp(24px, 7vw, 110px) clamp(70px, 9vw, 120px);
  overflow: hidden;
  background-image: linear-gradient(rgba(20, 33, 61, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 33, 61, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero::before {
  position: absolute;
  width: 290px;
  height: 290px;
  right: -110px;
  top: -80px;
  content: "";
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
  z-index: 0;
}

.hero-copy,
.maker-collage {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px 12px;
  color: var(--ink);
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

h1,
h2,
.project-card strong {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 7.3vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--coral);
  font-weight: 500;
  z-index: 0;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -0.06em;
  left: 0.03em;
  height: 0.11em;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
  transform: rotate(-2deg);
  z-index: -1;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 12px 21px;
  border: var(--line);
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--coral);
}

.button:hover,
.button:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.text-link {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}

.tiny-note {
  margin: 27px 0 0 20px;
  color: #4a536a;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.93rem;
  font-weight: 700;
  transform: rotate(-1deg);
}

.scribble-arrow {
  display: inline-block;
  margin-right: 6px;
  color: var(--coral);
  font-size: 1.35rem;
}

.maker-collage {
  min-height: 520px;
}

.photo-card {
  position: absolute;
  margin: 0;
  padding: 12px 12px 44px;
  background: var(--white);
  border: var(--line);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  text-align: center;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.88rem;
  font-weight: 700;
}

.photo-main {
  top: 40px;
  left: 7%;
  width: min(340px, 62%);
  height: 410px;
  transform: rotate(-4deg);
  z-index: 2;
}

.photo-small {
  width: min(230px, 43%);
  height: 210px;
  padding-bottom: 12px;
}

.photo-top {
  top: 0;
  right: 0;
  transform: rotate(7deg);
  z-index: 1;
}

.photo-bottom {
  right: 3%;
  bottom: 12px;
  transform: rotate(3deg);
  z-index: 3;
}

.tape {
  position: absolute;
  top: 25px;
  left: 29%;
  width: 90px;
  height: 27px;
  background: rgba(255, 203, 54, 0.83);
  transform: rotate(6deg);
  z-index: 5;
}

.burst {
  position: absolute;
  right: 8%;
  top: 205px;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: var(--line);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transform: rotate(10deg);
  z-index: 6;
}

.doodle {
  position: absolute;
  color: var(--ink);
  font-family: Georgia, serif;
  font-weight: 900;
  z-index: 7;
}

.doodle-one {
  left: -10px;
  bottom: 30px;
  color: var(--coral);
  font-size: 4rem;
  transform: rotate(17deg);
}

.doodle-two {
  right: 6%;
  top: -18px;
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: -0.35em;
  transform: rotate(-9deg);
}

.projects {
  padding: clamp(75px, 9vw, 130px) clamp(24px, 7vw, 110px);
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 50px;
  max-width: 1350px;
  margin: 0 auto 50px;
}

.eyebrow-dark {
  color: var(--ink);
  background: var(--yellow);
}

.section-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin: 0 0 8px;
  color: #c8cfdf;
  font-size: 1.05rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  max-width: 1350px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  display: flex;
  grid-column: span 4;
  min-height: 370px;
  flex-direction: column;
  padding: 25px;
  color: var(--ink);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.32);
  overflow: hidden;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.project-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 155px;
  height: 155px;
  content: "";
  border: 3px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: 12px 12px 0 var(--coral);
  transform: translate(-5px, -5px) rotate(-0.5deg);
  outline: none;
}

.card-large {
  grid-column: span 6;
}

.card-wide {
  grid-column: span 8;
}

.card-number {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.card-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 28px 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  transform: rotate(-5deg);
}

.card-kicker {
  margin-top: 28px;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-card strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.card-description {
  max-width: 510px;
  margin-top: 17px;
  padding-right: 35px;
  font-weight: 700;
  line-height: 1.45;
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 17px;
  font-size: 2rem;
  font-weight: 900;
}

.card-yellow { background: var(--yellow); }
.card-blue { background: var(--blue); }
.card-coral { background: var(--coral); }
.card-cream { background: var(--paper); }
.card-green { background: var(--green); }
.card-ink {
  color: var(--white);
  background: #26365c;
  border-color: var(--white);
}
.card-ink .card-icon {
  color: var(--ink);
  background: var(--yellow);
}

.ticker {
  width: 100%;
  color: var(--ink);
  background: var(--yellow);
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 14px 0;
  animation: ticker-roll 24s linear infinite;
}

.ticker span {
  padding: 0 25px;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ticker b {
  color: var(--coral);
  font-size: 1.1rem;
}

@keyframes ticker-roll {
  to { transform: translateX(-50%); }
}

.workbench {
  display: grid;
  grid-template-columns: minmax(290px, 0.73fr) minmax(0, 1.35fr);
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: var(--blue);
  border-bottom: var(--line);
}

.workbench-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.workbench h2,
.models h2,
.satellites h2,
.markets h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.workbench-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button-paper {
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--coral);
}

.shelf-list {
  display: grid;
  gap: 28px;
}

.shelf {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  min-height: 290px;
  padding: 42px;
  background: var(--paper);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shelf-tab {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.tab-yellow { background: var(--yellow); }
.tab-blue { background: var(--blue); }
.tab-coral { background: var(--coral); }

.shelf-copy {
  grid-column: 1 / -1;
  max-width: 690px;
}

.shelf-kicker {
  margin: 0 0 8px;
  color: #5c6478;
  font-family: "Courier New", monospace;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shelf h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.shelf-copy > p:last-child {
  margin: 18px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.chip-list {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 9px;
  align-self: end;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 6px 11px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.round-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
  text-decoration: none;
  transform: rotate(-7deg);
  transition: transform 150ms ease, background 150ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--coral);
  transform: rotate(2deg) scale(1.05);
}

.models {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.1fr);
  gap: clamp(45px, 8vw, 130px);
  padding: clamp(85px, 11vw, 160px) clamp(24px, 9vw, 150px);
  background: var(--yellow);
  border-bottom: var(--line);
  overflow: hidden;
}

.models::after {
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  content: "";
  border: 5px solid var(--ink);
  border-radius: 50%;
  opacity: 0.08;
}

.models-stamp {
  position: absolute;
  left: 4vw;
  bottom: 40px;
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: var(--line);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(10deg);
}

.models-copy > p:last-child {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.model-links {
  display: grid;
  gap: 14px;
  align-self: center;
}

.model-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  min-height: 100px;
  padding: 18px 22px;
  background: var(--paper);
  border: var(--line);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.model-links a:hover,
.model-links a:focus-visible {
  box-shadow: 9px 9px 0 var(--coral);
  transform: translate(-4px, -4px);
}

.model-index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.model-links strong,
.model-links small {
  display: block;
}

.model-links strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.model-links small {
  margin-top: 4px;
  color: #5c6478;
  font-size: 0.8rem;
  font-weight: 800;
}

.model-links a > span:last-child {
  font-size: 1.6rem;
  font-weight: 900;
}

.satellites {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: var(--paper);
  border-bottom: var(--line);
}

.section-heading-light {
  color: var(--ink);
}

.section-heading-light > p {
  color: #596176;
}

.satellite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1350px;
  margin: 0 auto;
}

.satellite-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  padding: clamp(32px, 4vw, 55px);
  color: var(--ink);
  border: var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.satellite-card:hover,
.satellite-card:focus-visible {
  box-shadow: 13px 13px 0 var(--ink);
  transform: translate(-5px, -5px);
}

.cache-card { background: var(--coral); }
.plants-card { background: var(--green); }

.satellite-label {
  width: fit-content;
  padding: 6px 11px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.satellite-symbol {
  display: grid;
  width: 105px;
  height: 105px;
  margin: 40px 0 auto;
  place-items: center;
  background: rgba(255, 255, 255, 0.45);
  border: var(--line);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  transform: rotate(-6deg);
}

.satellite-card strong {
  display: block;
  margin-top: 34px;
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.satellite-card p {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 22px 0 0;
  font-weight: 700;
}

.satellite-link {
  margin-top: 28px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.orbit {
  position: absolute;
  width: 310px;
  height: 310px;
  right: -75px;
  top: 75px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  opacity: 0.15;
}

.orbit::before,
.orbit::after {
  position: absolute;
  content: "";
  border: inherit;
  border-radius: inherit;
}

.orbit::before { inset: 30px; }
.orbit::after { inset: 65px; }

.markets {
  padding: clamp(80px, 10vw, 145px) clamp(24px, 8vw, 135px);
  background: var(--coral);
  border-bottom: var(--line);
}

.market-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 10vw, 145px);
  max-width: 1270px;
  margin: 0 auto;
}

.market-copy > p:not(.eyebrow):not(.market-note) {
  max-width: 670px;
  margin: 26px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.market-note {
  max-width: 630px;
  margin: 25px 0;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-weight: 900;
  transform: rotate(-0.7deg);
}

.market-note span {
  color: var(--yellow);
  text-shadow: 1px 1px 0 var(--ink), -1px -1px 0 var(--ink);
}

.button-yellow {
  margin-top: 5px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.market-poster {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 5;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--white);
  background: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 5px;
  box-shadow: 12px 12px 0 var(--yellow);
  overflow: hidden;
  text-align: center;
  transform: rotate(3deg);
}

.poster-top,
.poster-bottom {
  position: relative;
  z-index: 2;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.market-poster strong {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: clamp(3.6rem, 6vw, 6.4rem);
  line-height: 0.76;
  letter-spacing: -0.07em;
}

.poster-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-one {
  top: -45px;
  right: -55px;
  width: 190px;
  height: 190px;
  background: var(--blue);
}

.dot-two {
  bottom: -35px;
  left: -25px;
  width: 145px;
  height: 145px;
  background: var(--coral);
  border: 4px solid var(--white);
}

.poster-star {
  position: absolute;
  top: 41%;
  left: 8%;
  color: var(--yellow);
  font-size: 3rem;
  transform: rotate(18deg);
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
  padding: clamp(85px, 11vw, 160px) clamp(24px, 9vw, 150px);
  color: var(--white);
  background: var(--ink);
  border-bottom: 3px solid var(--white);
  overflow: hidden;
}

.about-number {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 15px 15px 0 var(--coral);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.66;
  text-align: center;
  transform: rotate(-7deg);
}

.about-lede {
  max-width: 840px;
  margin: 30px 0 0;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 920px;
  margin-top: 35px;
}

.about-columns p {
  margin: 0;
  color: #dbe0eb;
  font-size: 1.02rem;
}

.about-columns strong {
  color: var(--yellow);
}

.about-note {
  position: absolute;
  right: 5vw;
  bottom: 32px;
  color: var(--coral);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.95rem;
  font-weight: 800;
  transform: rotate(-4deg);
}

.contact {
  position: relative;
  padding: clamp(95px, 12vw, 180px) clamp(24px, 8vw, 130px);
  color: var(--ink);
  background: var(--yellow);
  border-bottom: var(--line);
  overflow: hidden;
  text-align: center;
}

.contact .eyebrow {
  background: var(--paper);
}

.contact h2 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(3.8rem, 8vw, 8.8rem);
  line-height: 0.82;
}

.contact h2 em {
  color: var(--coral);
  font-weight: 500;
}

.contact > p:not(.eyebrow) {
  max-width: 650px;
  margin: 32px auto 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.contact-pill {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 120px;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border: var(--line);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--coral);
  text-align: left;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  box-shadow: 10px 10px 0 var(--blue);
  transform: translate(-4px, -4px);
}

.contact-pill small,
.contact-pill strong {
  display: block;
  grid-column: 1;
}

.contact-pill small {
  align-self: end;
  color: #bcc6dc;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-pill strong {
  align-self: start;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.contact-pill > span {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 1.8rem;
}

.contact-spark {
  position: absolute;
  font-family: Georgia, serif;
}

.spark-one {
  top: 12%;
  left: 7%;
  color: var(--coral);
  font-size: clamp(3rem, 6vw, 6rem);
  transform: rotate(15deg);
}

.spark-two {
  right: 6%;
  bottom: 12%;
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 7rem);
  transform: rotate(-12deg);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px 70px;
  padding: 60px clamp(24px, 7vw, 110px) 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  color: var(--white);
}

.site-footer > p:not(.copyright) {
  grid-column: 1;
  max-width: 320px;
  margin: 0;
  color: #bcc6dc;
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.site-footer nav div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer nav strong {
  margin-bottom: 5px;
  color: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a {
  width: fit-content;
  color: #dbe0eb;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 35px 0 0;
  padding-top: 25px;
  color: #8e9ab5;
  border-top: 1px solid #3f4d6d;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: center;
  }

  .mobile-menu summary {
    padding: 7px 12px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 900;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 50%;
    display: grid;
    min-width: 190px;
    padding: 10px;
    background: var(--paper);
    border: var(--line);
    border-radius: 16px;
    box-shadow: 6px 6px 0 var(--ink);
    transform: translateX(50%);
  }

  .mobile-menu nav a {
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible {
    background: var(--yellow);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 75px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .maker-collage {
    width: min(720px, 100%);
    min-height: 570px;
    margin: 0 auto;
  }

  .photo-main {
    width: 390px;
    max-width: 63%;
  }

  .photo-small {
    width: 250px;
  }

  .project-card,
  .card-large,
  .card-wide {
    grid-column: span 6;
  }

  .workbench {
    grid-template-columns: 1fr;
  }

  .workbench-intro {
    position: static;
    max-width: 800px;
  }

  .models {
    grid-template-columns: 1fr;
  }

  .models-stamp {
    display: none;
  }

  .market-board {
    grid-template-columns: 1fr;
  }

  .market-poster {
    width: min(480px, 82%);
    justify-self: center;
  }

  .about {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.2fr);
  }

  .contact-actions {
    grid-template-columns: 1fr;
    max-width: 630px;
  }

  .contact-pill {
    min-height: 105px;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 1.04rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-button {
    display: none;
  }

  .mobile-menu {
    justify-self: end;
  }

  .mobile-menu nav {
    right: 0;
    transform: none;
  }

  .hero {
    padding: 50px 20px 70px;
  }

  .hero::before {
    width: 190px;
    height: 190px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .tiny-note {
    margin-left: 0;
  }

  .maker-collage {
    min-height: 430px;
    margin-top: 10px;
  }

  .photo-main {
    top: 35px;
    left: 2%;
    width: 64%;
    height: 325px;
  }

  .photo-small {
    width: 41%;
    height: 155px;
  }

  .photo-bottom {
    bottom: 5px;
  }

  .burst {
    right: 5%;
    top: 165px;
    width: 82px;
    height: 82px;
    font-size: 0.7rem;
  }

  .projects {
    padding: 70px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .card-large,
  .card-wide {
    grid-column: auto;
    min-height: 350px;
  }

  .ticker-track {
    animation-duration: 18s;
  }

  .workbench {
    padding: 70px 20px 85px;
  }

  .shelf {
    min-height: 320px;
    padding: 34px 25px;
  }

  .shelf-tab {
    top: 14px;
    right: 14px;
  }

  .shelf-copy {
    padding-right: 28px;
  }

  .round-link {
    right: 19px;
    bottom: 18px;
    width: 82px;
    height: 82px;
    font-size: 0.8rem;
  }

  .models {
    padding: 75px 20px;
  }

  .model-links a {
    padding: 15px;
  }

  .satellites {
    padding: 75px 20px 90px;
  }

  .satellite-grid {
    grid-template-columns: 1fr;
  }

  .satellite-card {
    min-height: 500px;
  }

  .markets {
    padding: 75px 20px 95px;
  }

  .market-poster {
    width: min(430px, 90%);
    padding: 25px;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 85px 20px 110px;
  }

  .about-number {
    width: min(240px, 65vw);
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-note {
    position: static;
    grid-column: 1;
    margin: -15px 0 0 30px;
  }

  .contact {
    padding: 90px 20px 110px;
  }

  .contact-spark {
    opacity: 0.35;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 55px 20px 30px;
  }

  .site-footer nav {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .copyright {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none;
  }
}

/* Multi-page RuralRoots3D additions */

.brand-logo {
  width: 46px;
  height: 46px;
  padding: 2px;
  object-fit: contain;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--yellow);
  transform: rotate(-3deg);
}

.expanded-nav {
  gap: clamp(12px, 1.5vw, 23px);
  font-size: clamp(0.74rem, 0.78vw, 0.87rem);
}

.desktop-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.maker-collage-home .photo-main {
  top: 82px;
  left: 0;
  width: min(425px, 74%);
  height: 300px;
}

.maker-collage-home .photo-top {
  top: 0;
}

.maker-collage-home .photo-bottom {
  bottom: 0;
}

.project-grid-pages .card-wide {
  grid-column: span 8;
}

.home-focus {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(55px, 9vw, 140px);
  padding: clamp(85px, 11vw, 160px) clamp(24px, 9vw, 150px);
  background: var(--coral);
  border-bottom: var(--line);
}

.home-focus h2,
.home-market-strip h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.home-focus-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 27px 0 33px;
  font-size: 1.1rem;
  font-weight: 700;
}

.focus-photo {
  position: relative;
  margin: 0;
  padding: 14px 14px 54px;
  background: var(--white);
  border: var(--line);
  box-shadow: 13px 13px 0 var(--yellow);
  transform: rotate(3deg);
}

.focus-photo img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.focus-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-weight: 800;
  text-align: center;
}

.home-market-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(75px, 9vw, 130px) clamp(24px, 8vw, 135px);
  background: var(--blue);
  border-bottom: var(--line);
}

.mini-schedule {
  display: grid;
  gap: 15px;
}

.mini-schedule article {
  padding: 22px 25px;
  background: var(--paper);
  border: var(--line);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink);
}

.mini-schedule span {
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mini-schedule strong {
  display: block;
  margin-top: 2px;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.mini-schedule p {
  margin: 2px 0 0;
  color: #5c6478;
  font-size: 0.85rem;
  font-weight: 800;
}

.round-link-light {
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
}

.home-contact a:not(.button) {
  font-weight: 900;
}

.centered-actions {
  justify-content: center;
}

.interior-page h1,
.models-hero h1,
.market-hero h1,
.project-portal h1,
.about-hero-page h1,
.contact-hero-page h1,
.not-found-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 7vw, 7.6rem);
  line-height: 0.87;
  letter-spacing: -0.07em;
}

.interior-page h1 em,
.models-hero h1 em,
.market-hero h1 em,
.project-portal h1 em,
.about-hero-page h1 em,
.contact-hero-page h1 em {
  color: var(--coral);
  font-weight: 500;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 35px;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.breadcrumb-light {
  color: var(--white);
}

.interior-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
  min-height: calc(100svh - 76px);
  padding: clamp(70px, 9vw, 135px) clamp(24px, 7vw, 110px);
  border-bottom: var(--line);
  overflow: hidden;
}

.interior-hero-coral { background: var(--coral); }
.interior-hero-yellow { background: var(--yellow); }
.interior-hero-blue { background: var(--blue); }

.interior-hero-copy {
  position: relative;
  z-index: 2;
}

.interior-lede {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}

.interior-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.interior-mosaic figure {
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
}

.interior-mosaic .mosaic-large {
  grid-column: 1 / -1;
  height: 350px;
  transform: rotate(-2deg);
}

.interior-mosaic figure:not(.mosaic-large) {
  height: 190px;
}

.interior-mosaic figure:nth-of-type(2) { transform: rotate(2deg); }
.interior-mosaic figure:nth-of-type(3) { transform: rotate(-3deg); }

.interior-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-sticker {
  position: absolute;
  right: -20px;
  top: 44%;
  display: grid;
  width: 95px;
  height: 95px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(8deg);
}

.content-section,
.gallery-section,
.schedule-section,
.story-section,
.portal-details,
.before-you-email {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 135px);
}

.content-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 45px;
  max-width: 1300px;
  margin: 0 auto 52px;
}

.content-heading .eyebrow {
  grid-column: 1;
  justify-self: start;
  margin-bottom: 5px;
}

.content-heading h2,
.process-section h2,
.split-callout h2,
.order-prompt h2,
.platform-card h2,
.market-photo-section h2,
.market-alert h2,
.portal-details h2,
.portal-link-board h2,
.story-section h2,
.values-section h2,
.origin-art h2,
.before-you-email h2 {
  grid-column: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.content-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.content-heading-light {
  color: var(--white);
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.idea-grid a {
  position: relative;
  display: block;
  min-height: 280px;
  padding: 30px;
  background: var(--paper);
  border: var(--line);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.idea-grid a:nth-child(1) { background: var(--yellow); }
.idea-grid a:nth-child(2) { background: var(--blue); }
.idea-grid a:nth-child(3) { background: var(--coral); }
.idea-grid a:nth-child(4) { background: var(--green); }

.idea-grid a:hover,
.idea-grid a:focus-visible {
  box-shadow: 10px 10px 0 var(--coral);
  transform: translate(-4px, -4px);
}

.idea-grid > a > span,
.category-board article > span,
.values-grid article > span {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 900;
}

.idea-grid strong {
  display: block;
  margin-top: 50px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.idea-grid p {
  max-width: 510px;
  margin: 15px 35px 0 0;
  font-weight: 700;
}

.idea-grid b {
  position: absolute;
  right: 25px;
  bottom: 18px;
  font-size: 1.8rem;
}

.process-section {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 135px);
  color: var(--white);
  background: var(--ink);
  border-top: 3px solid var(--white);
  border-bottom: var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 310px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--white);
  border-radius: 20px;
}

.process-grid li:nth-child(1) { background: var(--yellow); }
.process-grid li:nth-child(2) { background: var(--blue); }
.process-grid li:nth-child(3) { background: var(--coral); }
.process-grid li:nth-child(4) { background: var(--green); }

.process-grid span {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-grid strong {
  display: block;
  margin-top: 80px;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.process-grid p {
  margin: 15px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-section {
  background: var(--paper);
}

.gallery-section-ink {
  color: var(--white);
  background: var(--ink);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1300px;
  margin: 0 auto;
}

.photo-gallery figure {
  position: relative;
  margin: 0;
  padding: 10px 10px 45px;
  background: var(--white);
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
}

.gallery-section-ink .photo-gallery figure {
  color: var(--ink);
  border-color: var(--white);
}

.photo-gallery figure:nth-child(3n+1) { transform: rotate(-1deg); }
.photo-gallery figure:nth-child(3n+2) { transform: rotate(1.2deg); }
.photo-gallery figure:nth-child(3n) { transform: rotate(-0.5deg); }

.photo-gallery img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.photo-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.order-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 70px;
  padding: clamp(75px, 9vw, 130px) clamp(24px, 8vw, 135px);
  background: var(--coral);
  border-top: var(--line);
  border-bottom: var(--line);
}

.order-prompt-yellow { background: var(--yellow); }
.order-prompt-blue { background: var(--blue); }

.order-prompt > div > p:last-child {
  max-width: 750px;
  margin: 23px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-photo-stack {
  position: relative;
  min-height: 560px;
}

.feature-photo-stack figure {
  position: absolute;
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: var(--line);
  box-shadow: var(--shadow);
}

.feature-photo-main {
  top: 20px;
  left: 0;
  width: 74%;
  padding-bottom: 48px !important;
  transform: rotate(-4deg);
  z-index: 2;
}

.feature-photo-main img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.feature-photo-main figcaption {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.feature-photo-side {
  right: 0;
  bottom: 0;
  width: 52%;
  transform: rotate(5deg);
  z-index: 3;
}

.feature-photo-side img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.feature-sticker {
  position: absolute;
  top: 34%;
  right: 2%;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: var(--line);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(9deg);
  z-index: 5;
}

.category-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

.category-board article {
  min-height: 260px;
  padding: 27px;
  background: var(--paper);
  border: var(--line);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
}

.category-board article:nth-child(2n) { background: var(--yellow); }
.category-board article:nth-child(3n) { background: var(--blue); }

.category-board h3,
.material-card h3,
.values-grid h3 {
  margin: 60px 0 0;
  font-family: Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.category-board p,
.material-card p,
.values-grid p {
  margin: 14px 0 0;
  font-weight: 700;
}

.split-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(55px, 9vw, 140px);
  padding: clamp(80px, 10vw, 145px) clamp(24px, 9vw, 150px);
  background: var(--green);
  border-top: var(--line);
  border-bottom: var(--line);
}

.split-callout-coral { background: var(--coral); }

.split-callout > div > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 30px;
  font-weight: 700;
  font-size: 1.05rem;
}

.mini-model-marks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-model-marks img {
  width: 100%;
  aspect-ratio: 1;
  padding: 13px;
  object-fit: contain;
  background: var(--white);
  border: var(--line);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.material-card {
  min-height: 370px;
  padding: 30px;
  border: var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.material-card > span {
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 2rem;
}

.material-card h3 { margin-top: 85px; }
.material-yellow { background: var(--yellow); }
.material-coral { background: var(--coral); }
.material-green { background: var(--green); }

.models-hero {
  position: relative;
  padding: clamp(85px, 11vw, 160px) clamp(24px, 10vw, 170px);
  background: var(--yellow);
  border-bottom: var(--line);
  overflow: hidden;
}

.models-hero h1 {
  max-width: 980px;
}

.models-hero > p:last-of-type {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.models-stamp-page {
  right: 8vw;
  bottom: 80px;
  left: auto;
  width: 145px;
  height: 145px;
  font-size: 1.15rem;
}

.platform-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  padding: clamp(80px, 10vw, 145px) clamp(24px, 7vw, 110px);
  color: var(--white);
  background: var(--ink);
}

.platform-card {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  border: 3px solid var(--white);
  border-radius: 25px;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.platform-card:hover,
.platform-card:focus-visible {
  box-shadow: 11px 11px 0 var(--coral);
  transform: translate(-4px, -4px);
}

.platform-orange { background: var(--coral); }
.platform-blue { background: var(--blue); }
.platform-cream { background: var(--paper); }

.platform-card img {
  width: 110px;
  height: 110px;
  padding: 10px;
  object-fit: contain;
  background: var(--white);
  border: var(--line);
  border-radius: 18px;
}

.platform-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.platform-card h2 {
  margin-top: auto;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.platform-card p {
  margin: 20px 0 0;
  font-weight: 700;
}

.platform-card > strong {
  margin-top: 25px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.single-polaroid {
  margin: 0;
  padding: 12px 12px 48px;
  background: var(--white);
  border: var(--line);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.single-polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.single-polaroid figcaption {
  margin-top: 10px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
  min-height: calc(100svh - 76px);
  background: var(--coral);
  border-bottom: var(--line);
}

.market-hero-image {
  min-height: 600px;
  border-right: var(--line);
}

.market-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-hero-copy {
  align-self: center;
  padding: clamp(55px, 8vw, 115px);
}

.market-hero-copy > p:not(.breadcrumb):not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.schedule-section {
  background: var(--paper);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
  max-width: 1300px;
  margin: 0 auto;
}

.schedule-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 32px;
  border: var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.schedule-yellow { background: var(--yellow); }
.schedule-blue { background: var(--blue); }
.schedule-coral { background: var(--coral); }

.schedule-count {
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 7vw, 7rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
}

.schedule-label {
  margin: 12px 0 0;
  font-family: "Courier New", monospace;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.schedule-card h3 {
  margin: auto 0 0;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.schedule-season {
  margin: 20px 0 0;
  font-weight: 700;
}

.schedule-season strong {
  font-size: 1.1rem;
}

.schedule-card a {
  margin-top: 25px;
  font-weight: 900;
  text-underline-offset: 4px;
}

.market-photo-section {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 140px);
  padding: clamp(85px, 11vw, 160px) clamp(24px, 9vw, 150px);
  background: var(--blue);
  border-top: var(--line);
  border-bottom: var(--line);
}

.market-photo-section figure {
  margin: 0;
  padding: 12px 12px 48px;
  background: var(--white);
  border: var(--line);
  box-shadow: 12px 12px 0 var(--yellow);
  transform: rotate(-3deg);
}

.market-photo-section figure img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.market-photo-section figcaption {
  margin-top: 10px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-weight: 800;
  text-align: center;
}

.market-photo-section > div > p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  font-weight: 700;
}

.market-photo-section .button {
  margin-top: 30px;
}

.market-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  padding: 55px clamp(24px, 8vw, 135px);
  color: var(--white);
  background: var(--ink);
}

.market-alert > span {
  color: var(--yellow);
  font-size: 3.5rem;
}

.market-alert h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.market-alert p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #c8cfdf;
}

.project-portal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(55px, 9vw, 135px);
  min-height: calc(100svh - 76px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 9vw, 150px);
  border-bottom: var(--line);
  overflow: hidden;
}

.portal-cache {
  color: var(--white);
  background: var(--ink);
}

.portal-plants {
  background: var(--green);
}

.portal-copy > p:not(.breadcrumb):not(.eyebrow) {
  max-width: 730px;
  margin: 28px 0 35px;
  font-size: 1.15rem;
  font-weight: 700;
}

.portal-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 12px 12px 48px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid currentColor;
  box-shadow: 13px 13px 0 var(--coral);
  transform: rotate(3deg);
}

.portal-brand-photo {
  box-shadow: 13px 13px 0 var(--yellow);
}

.portal-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.portal-brand-photo img {
  aspect-ratio: 1.45;
}

.portal-photo figcaption {
  margin-top: 10px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

.portal-symbol {
  position: absolute;
  right: -80px;
  top: -90px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 24rem;
}

.portal-details {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 120px);
  background: var(--paper);
}

.portal-details-green { background: var(--yellow); }

.portal-copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-self: end;
}

.portal-copy-columns p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.portal-link-board {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(35px, 7vw, 100px);
  padding: clamp(70px, 9vw, 120px) clamp(24px, 8vw, 135px);
  background: var(--coral);
  border-top: var(--line);
  border-bottom: var(--line);
}

.portal-link-green { background: var(--green); }

.portal-link-number {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 900;
}

.portal-link-board h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
}

.portal-link-board p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  font-weight: 700;
}

.about-hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
  align-items: center;
  gap: clamp(55px, 9vw, 135px);
  min-height: calc(100svh - 76px);
  padding: clamp(75px, 9vw, 135px) clamp(24px, 8vw, 135px);
  color: var(--white);
  background: var(--ink);
  border-bottom: 3px solid var(--white);
}

.about-hero-copy > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
}

.about-hero-page figure {
  margin: 0;
  padding: 12px 12px 48px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 13px 13px 0 var(--coral);
  transform: rotate(3deg);
}

.about-hero-page figure img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.about-hero-page figcaption {
  margin-top: 10px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(55px, 9vw, 140px);
  background: var(--blue);
  border-bottom: var(--line);
}

.story-mark {
  position: relative;
}

.story-mark img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: var(--line);
  border-radius: 30px;
  box-shadow: 12px 12px 0 var(--yellow);
  transform: rotate(-4deg);
}

.story-mark span {
  position: absolute;
  right: -20px;
  bottom: -30px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-style: italic;
  font-weight: 900;
  text-shadow: 3px 3px 0 var(--ink);
  transform: rotate(8deg);
}

.story-lede {
  max-width: 900px;
  margin: 28px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.story-columns p {
  margin: 0;
  font-weight: 700;
}

.values-section {
  padding: clamp(80px, 10vw, 145px) clamp(24px, 8vw, 135px);
  color: var(--white);
  background: var(--ink);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 50px auto 0;
}

.values-grid article {
  min-height: 340px;
  padding: 30px;
  color: var(--ink);
  border: 3px solid var(--white);
  border-radius: 22px;
}

.values-grid article:nth-child(1) { background: var(--yellow); }
.values-grid article:nth-child(2) { background: var(--coral); }
.values-grid article:nth-child(3) { background: var(--green); }

.origin-art {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(80px, 10vw, 145px) clamp(24px, 8vw, 135px);
  background: var(--yellow);
  border-top: var(--line);
  border-bottom: var(--line);
}

.origin-art figure {
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: var(--line);
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(-2deg);
}

.origin-art img {
  width: 100%;
}

.origin-art > div > p:not(.eyebrow) {
  margin: 24px 0 30px;
  font-weight: 700;
}

.contact-hero-page {
  display: grid;
  grid-template-columns: minmax(390px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 140px);
  min-height: calc(100svh - 76px);
  padding: clamp(75px, 9vw, 135px) clamp(24px, 8vw, 135px);
  background: var(--yellow);
  border-bottom: var(--line);
}

.contact-hero-art {
  position: relative;
}

.contact-hero-art > img:first-child {
  width: 100%;
  padding: 10px;
  background: var(--white);
  border: var(--line);
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(-3deg);
}

.contact-logo-large {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: var(--line);
  border-radius: 25px;
  box-shadow: 8px 8px 0 var(--blue);
  transform: rotate(7deg);
}

.contact-hero-copy > p:not(.breadcrumb):not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(80px, 10vw, 145px) clamp(24px, 8vw, 135px);
  color: var(--white);
  background: var(--ink);
}

.contact-method {
  position: relative;
  display: block;
  min-height: 300px;
  padding: 32px;
  color: var(--ink);
  border: 3px solid var(--white);
  border-radius: 22px;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  box-shadow: 10px 10px 0 var(--yellow);
  transform: translate(-4px, -4px);
}

.contact-email { background: var(--coral); }
.contact-phone { background: var(--blue); }
.contact-instagram { background: var(--yellow); }
.contact-etsy { background: var(--green); }

.contact-method-label {
  font-family: "Courier New", monospace;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.contact-method strong {
  display: block;
  margin-top: 62px;
  overflow-wrap: anywhere;
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.contact-method p {
  max-width: 580px;
  margin: 18px 35px 0 0;
  font-weight: 700;
}

.contact-method b {
  position: absolute;
  right: 25px;
  bottom: 18px;
  font-size: 1.8rem;
}

.before-you-email {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  background: var(--paper);
}

.before-you-email > div > p:last-child {
  margin: 23px 0 0;
  font-weight: 700;
}

.before-you-email ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-you-email li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  padding: 15px 18px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 13px;
  font-weight: 900;
}

.before-you-email li span {
  font-family: "Courier New", monospace;
  font-size: 0.74rem;
}

.original-contact-art {
  padding: 45px clamp(24px, 8vw, 135px);
  background: var(--blue);
  border-top: var(--line);
  border-bottom: var(--line);
  text-align: center;
}

.original-contact-art p {
  margin: 0 0 15px;
  font-family: "Courier New", monospace;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.original-contact-art img {
  width: min(947px, 100%);
  margin: 0 auto;
  border: 2px solid var(--ink);
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 25px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.not-found-page main {
  max-width: 800px;
}

.not-found-page img {
  width: 150px;
  height: 150px;
  margin: 0 auto 28px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 25px;
  box-shadow: 8px 8px 0 var(--coral);
  transform: rotate(-5deg);
}

.not-found-page p:not(.eyebrow) {
  margin: 25px 0 30px;
  color: #c8cfdf;
  font-size: 1.1rem;
}

@media (max-width: 1150px) {
  .project-grid-pages .card-wide {
    grid-column: span 6;
  }

  .home-market-strip {
    grid-template-columns: 1fr 1fr;
  }

  .home-market-strip .round-link {
    position: static;
    grid-column: 2;
    width: 100px;
    height: 100px;
  }

  .interior-hero,
  .project-portal,
  .about-hero-page,
  .contact-hero-page {
    grid-template-columns: 1fr;
  }

  .interior-mosaic,
  .feature-photo-stack,
  .portal-photo,
  .about-hero-page figure,
  .contact-hero-art {
    width: min(720px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .feature-photo-stack {
    min-height: 600px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-section,
  .schedule-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .schedule-card,
  .values-grid article {
    min-height: 360px;
  }

  .platform-card h2,
  .schedule-card h3 {
    margin-top: 70px;
  }

  .market-hero,
  .market-photo-section,
  .origin-art {
    grid-template-columns: 1fr;
  }

  .market-hero-image {
    min-height: 420px;
    border-right: 0;
    border-bottom: var(--line);
  }

  .market-photo-section figure,
  .origin-art figure {
    width: min(700px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .mobile-menu nav {
    max-height: calc(100svh - 100px);
    overflow-y: auto;
  }

  .home-hero {
    min-height: auto;
  }

  .maker-collage-home .photo-main {
    top: 80px;
    width: 75%;
    height: 240px;
  }

  .home-focus,
  .home-market-strip,
  .content-heading,
  .order-prompt,
  .split-callout,
  .portal-details,
  .portal-link-board,
  .story-section,
  .origin-art,
  .before-you-email {
    grid-template-columns: 1fr;
  }

  .home-focus {
    padding: 75px 20px 90px;
  }

  .focus-photo {
    width: min(480px, 92%);
    margin: 0 auto;
  }

  .home-market-strip {
    padding: 75px 20px 95px;
  }

  .home-market-strip .round-link {
    grid-column: 1;
  }

  .interior-hero,
  .project-portal,
  .about-hero-page,
  .contact-hero-page {
    min-height: auto;
    padding: 65px 20px 90px;
  }

  .interior-page h1,
  .models-hero h1,
  .market-hero h1,
  .project-portal h1,
  .about-hero-page h1,
  .contact-hero-page h1,
  .not-found-page h1 {
    font-size: clamp(3.35rem, 16vw, 5.5rem);
  }

  .interior-mosaic .mosaic-large {
    height: 250px;
  }

  .interior-mosaic figure:not(.mosaic-large) {
    height: 145px;
  }

  .mosaic-sticker {
    right: -5px;
    width: 76px;
    height: 76px;
    font-size: 0.6rem;
  }

  .content-section,
  .gallery-section,
  .schedule-section,
  .story-section,
  .portal-details,
  .before-you-email {
    padding: 75px 20px 90px;
  }

  .content-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .idea-grid,
  .category-board,
  .material-grid,
  .photo-gallery,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .process-section,
  .models-hero,
  .platform-section,
  .market-photo-section,
  .values-section,
  .origin-art {
    padding: 75px 20px 90px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: 260px;
  }

  .process-grid strong {
    margin-top: 55px;
  }

  .order-prompt {
    gap: 35px;
    padding: 70px 20px 85px;
  }

  .feature-photo-stack {
    min-height: 450px;
  }

  .feature-sticker {
    width: 82px;
    height: 82px;
    font-size: 0.62rem;
  }

  .split-callout {
    padding: 75px 20px 90px;
  }

  .mini-model-marks {
    gap: 8px;
  }

  .mini-model-marks img {
    padding: 7px;
  }

  .models-stamp-page {
    position: static;
    width: 110px;
    height: 110px;
    margin-top: 35px;
  }

  .platform-card,
  .schedule-card,
  .values-grid article {
    min-height: 420px;
  }

  .market-hero-image {
    min-height: 270px;
  }

  .market-hero-copy {
    padding: 60px 20px 80px;
  }

  .market-photo-section {
    padding: 75px 20px 95px;
  }

  .market-alert {
    grid-template-columns: 1fr;
    padding: 55px 20px 70px;
  }

  .portal-photo {
    width: 90%;
  }

  .portal-copy-columns,
  .story-columns {
    grid-template-columns: 1fr;
  }

  .portal-link-board {
    padding: 70px 20px 90px;
  }

  .portal-link-number {
    width: 110px;
    height: 110px;
    font-size: 2.5rem;
  }

  .portal-link-board .round-link {
    position: static;
    width: 100px;
    height: 100px;
  }

  .about-hero-page figure {
    width: 92%;
  }

  .story-mark {
    width: min(260px, 68vw);
    margin: 0 auto 30px;
  }

  .origin-art figure {
    width: 100%;
  }

  .contact-logo-large {
    right: -5px;
    bottom: -45px;
    width: 125px;
    height: 125px;
  }

  .contact-methods {
    padding: 75px 20px 90px;
  }

  .contact-method {
    min-height: 320px;
  }
}

/* Added customer photos */

.portal-cache .portal-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portal-link-logo {
  width: 165px;
  height: 165px;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
  border: var(--line);
  border-radius: 22px;
  box-shadow: 7px 7px 0 var(--yellow);
  transform: rotate(-3deg);
}

.cache-link-logo {
  background: var(--white);
}

.portal-plant-logo-photo img {
  aspect-ratio: 0.89;
  padding: clamp(14px, 3vw, 34px);
  object-fit: contain;
  background: #efe1b8;
}

.market-photo-gallery {
  display: grid;
  align-items: start;
  padding: 16px 0 28px;
}

.market-photo-gallery figure {
  width: 94%;
}

.market-photo-gallery figure:nth-child(2) {
  justify-self: end;
  margin-top: -28px;
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(2.5deg);
}

.printing-work {
  background: var(--blue);
  border-top: var(--line);
  border-bottom: var(--line);
}

.printing-gallery img {
  aspect-ratio: 1.1;
}

.printing-gallery figure:nth-child(3) img {
  object-fit: contain;
  background: #e9ddc7;
}

@media (max-width: 1150px) {
  .market-photo-gallery {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .market-photo-gallery figure {
    width: 92%;
  }
}

@media (max-width: 760px) {
  .portal-link-logo {
    width: 120px;
    height: 120px;
  }

  .market-photo-gallery {
    padding-bottom: 12px;
  }

  .market-photo-gallery figure,
  .market-photo-gallery figure:nth-child(2) {
    width: 96%;
  }

  .market-photo-gallery figure:nth-child(2) {
    margin-top: -14px;
  }
}

/* White-backed brand marks and compact responsive cards */

.story-mark img,
.contact-logo-large,
.not-found-page img {
  object-fit: contain;
  background: var(--white);
}

.portal-link-board h2 {
  overflow-wrap: anywhere;
}

@media (max-width: 1050px) {
  .project-grid-pages .card-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .project-grid-pages {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .project-grid-pages .project-card,
  .project-grid-pages .card-large,
  .project-grid-pages .card-wide {
    grid-column: 1;
    min-height: 0;
    padding: 24px 24px 48px;
  }

  .project-grid-pages .card-icon {
    width: 56px;
    height: 56px;
    margin: 18px 0 17px;
    font-size: 1.65rem;
  }

  .project-grid-pages .card-kicker {
    margin-top: 0;
  }

  .project-grid-pages .project-card strong {
    font-size: clamp(2.15rem, 8vw, 3.1rem);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .button {
    max-width: 100%;
  }

  .idea-grid,
  .process-grid,
  .category-board,
  .material-grid,
  .photo-gallery,
  .platform-section,
  .schedule-grid,
  .values-grid,
  .contact-methods {
    gap: 15px;
  }

  .idea-grid a,
  .process-grid li,
  .category-board article,
  .material-card,
  .platform-card,
  .schedule-card,
  .values-grid article,
  .contact-method {
    min-height: 0;
    padding: 22px;
    border-radius: 17px;
  }

  .idea-grid strong,
  .process-grid strong,
  .category-board h3,
  .material-card h3,
  .values-grid h3 {
    margin-top: 32px;
  }

  .material-card > span {
    width: 60px;
    height: 60px;
    font-size: 1.55rem;
  }

  .platform-card img {
    width: 82px;
    height: 82px;
  }

  .platform-card h2,
  .schedule-card h3 {
    margin-top: 34px;
  }

  .schedule-count {
    font-size: 4rem;
  }

  .contact-method strong {
    margin-top: 36px;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .contact-method p {
    margin-right: 0;
    padding-bottom: 20px;
  }

  .photo-gallery figure {
    width: calc(100% - 6px);
    transform: none !important;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .photo-gallery img,
  .printing-gallery img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .focus-photo,
  .portal-photo,
  .single-polaroid,
  .market-photo-section figure,
  .origin-art figure,
  .about-hero-page figure,
  .contact-hero-art > img:first-child {
    transform: none;
  }
}

@media (max-width: 480px) {
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .project-grid-pages .project-card,
  .project-grid-pages .card-large,
  .project-grid-pages .card-wide {
    padding: 21px 21px 46px;
  }

  .card-description {
    padding-right: 24px;
  }
}
