:root {
  --ink: #2e211b;
  --muted: #6f6059;
  --paper: #fbf8eb;
  --blue: #91abed;
  --lavender: #ceb0ef;
  --yellow: #fff887;
  --pink: #ffaaa7;
  --green: #b0d3b7;
  --orange: #fbb04e;
  --line: rgba(46, 33, 27, 0.18);
  --soft-line: rgba(46, 33, 27, 0.1);
  --shadow: 0 24px 70px rgba(46, 33, 27, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

body.is-loading {
  overflow: hidden;
}

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

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

.section-pad {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  transition: opacity 0.75s ease, visibility 0.75s ease, transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-loader span {
  font-family: var(--serif);
  font-size: clamp(74px, 18vw, 220px);
  line-height: 0.8;
}

body:not(.is-loading) .page-loader {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 101;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--lavender), var(--pink), var(--orange));
}

.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(46, 33, 27, 0.45);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.2s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

body.has-pointer .cursor-ring {
  opacity: 1;
}

body.is-linking .cursor-ring {
  width: 62px;
  height: 62px;
  background: rgba(255, 248, 135, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: rgba(251, 248, 235, 0.82);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.site-header[data-reveal],
.site-header[data-reveal].is-visible {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.brand {
  justify-self: start;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 0.8;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 1.9vw, 24px);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.nav-dropdown {
  position: relative;
}

.more-toggle {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 248, 135, 0.48);
  color: inherit;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.more-toggle:hover,
.more-toggle.active {
  background: var(--yellow);
  transform: translateY(-1px);
}

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

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

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  z-index: 1001;
  display: grid;
  min-width: 190px;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 248, 135, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) rotate(1deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu a {
  border-bottom: 1px solid rgba(46, 33, 27, 0.14);
  padding-bottom: 9px;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(0);
}

.nav-dropdown.is-open .dropdown-menu {
  position: absolute;
  margin-top: 0;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 17px;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.muse-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 5vw, 74px);
  min-height: calc(100vh - 94px);
  align-items: center;
  overflow: hidden;
}

.muse-hero::before {
  position: absolute;
  right: -8vw;
  top: 12vh;
  width: 48vw;
  height: 48vw;
  min-width: 420px;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  animation: slow-spin 36s linear infinite;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(68px, 11vw, 150px);
  font-weight: 700;
  line-height: 0.82;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 650;
  line-height: 0.9;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-intro p:not(.eyebrow),
.contact-page > div > p {
  max-width: 650px;
  font-size: clamp(17px, 2vw, 21px);
}

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-word span {
  display: inline-block;
  transform: translateY(110%) rotate(3deg);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .split-word span,
body:not(.is-loading) .muse-hero .split-word span {
  transform: translateY(0) rotate(0);
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-110%) skewX(-18deg);
  transition: transform 0.45s ease;
}

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

.btn:hover::before {
  transform: translateX(110%) skewX(-18deg);
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
}

.btn.ghost {
  background: transparent;
}

.hero-gallery {
  position: relative;
  min-height: 650px;
}

.image-card,
.hero-note,
.page-tile,
.story-panel,
.wide-card,
.card-row article,
.promise-grid article,
.persona-board article,
.experience-grid article,
.trust-detail article,
.insight-library article,
.deliverable-notes article,
.contact-reasons article,
.value-wall div,
.research-card,
.safety-matrix article,
.deliverable-wall article,
.faq-strip article,
.contact-form,
.dashboard-form,
.admin-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fffdf3;
  will-change: transform;
}

.image-card img,
.asset-stack img,
.snapshot-grid img,
.doodle-board img,
.doodle-crops img,
.visual-band img,
.page-hero-media img,
.contact-visuals img,
.motion-mosaic img,
.video-reel img,
.closing-tile img,
.asset-banner img,
.interface-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img {
  min-height: 170px;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.image-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.image-card figcaption {
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.image-main {
  left: 10%;
  top: 40px;
  width: min(430px, 64vw);
}

.image-pink {
  right: 2%;
  top: 24px;
  width: 245px;
  transform: rotate(5deg);
}

.image-blue {
  left: 0;
  bottom: 42px;
  width: 265px;
  transform: rotate(-4deg);
}

.image-yellow {
  right: 12%;
  bottom: 16px;
  width: 245px;
  transform: rotate(3deg);
}

.mock-screen {
  padding: 22px;
  min-height: 450px;
  background: linear-gradient(180deg, rgba(206, 176, 239, 0.18), rgba(145, 171, 237, 0.16)), #fffdf3;
}

.screen-bar {
  display: block;
  width: 52px;
  height: 8px;
  margin-bottom: 36px;
  border-radius: 99px;
  background: var(--line);
}

.mock-screen > b {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 0.9;
}

.orbit-map {
  position: relative;
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  margin: 22px auto;
  border: 1px dashed rgba(46, 33, 27, 0.24);
  border-radius: 50%;
}

.orbit-map strong {
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: var(--green);
  font-family: var(--mono);
}

.orbit-map i {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
}

.orbit-map i:nth-child(1) { top: 22px; left: 48%; }
.orbit-map i:nth-child(2) { right: 20px; top: 47%; background: var(--blue); }
.orbit-map i:nth-child(3) { bottom: 22px; left: 28%; background: var(--lavender); }
.orbit-map i:nth-child(4) { left: 18px; top: 45%; background: var(--yellow); }

.mock-screen p {
  margin: 10px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(251, 248, 235, 0.72);
}

.photo-abstract {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.photo-abstract::before,
.photo-abstract::after {
  position: absolute;
  content: "";
}

.people {
  background: var(--pink);
}

.people::before {
  inset: 36px 38px auto auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--yellow);
}

.people::after {
  left: 34px;
  bottom: 24px;
  width: 116px;
  height: 52px;
  border-radius: 99px;
  background: var(--green);
}

.event {
  background: var(--blue);
}

.event::before {
  left: 26px;
  top: 28px;
  width: 78%;
  height: 72px;
  border: 1px solid rgba(46, 33, 27, 0.35);
  transform: rotate(-5deg);
}

.event::after {
  right: 24px;
  bottom: 24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--orange);
}

.photo-abstract.safety {
  background: var(--yellow);
}

.photo-abstract.safety::before {
  left: 50%;
  top: 30px;
  width: 84px;
  height: 104px;
  border-radius: 48px 48px 16px 16px;
  background: var(--green);
  transform: translateX(-50%);
}

.photo-abstract.safety::after {
  inset: 20px;
  border: 1px solid rgba(46, 33, 27, 0.32);
  border-radius: 50%;
}

.hero-note {
  position: absolute;
  right: 4%;
  top: 250px;
  width: 245px;
  padding: 25px;
  background: var(--orange);
  transform: rotate(7deg);
}

.hero-note span,
.page-tile span,
.wide-card span,
.event-flow span,
.principle-band span {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-note b {
  display: block;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.95;
}

.doodle {
  position: absolute;
  pointer-events: none;
}

.doodle-star {
  right: 36%;
  top: 2px;
  width: 82px;
  height: 82px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
  animation: twirl 10s linear infinite;
}

.doodle-loop {
  left: 3%;
  top: 215px;
  width: 148px;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.doodle-spark {
  right: 0;
  bottom: 172px;
  width: 102px;
  height: 102px;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.page-grid,
.detail-grid,
.card-row,
.safety-matrix,
.research-board,
.deliverable-wall,
.faq-strip,
.promise-grid,
.persona-board,
.experience-grid,
.trust-detail,
.insight-library,
.deliverable-notes,
.contact-reasons,
.value-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-tile,
.card-row article,
.safety-matrix article,
.deliverable-wall article,
.faq-strip article,
.promise-grid article,
.persona-board article,
.experience-grid article,
.trust-detail article,
.insight-library article,
.deliverable-notes article,
.contact-reasons article,
.value-wall div {
  min-height: 230px;
  padding: 28px;
  transition: transform 0.35s ease;
}

.page-tile:hover,
.card-row article:hover,
.deliverable-wall article:hover,
.promise-grid article:hover,
.persona-board article:hover,
.experience-grid article:hover,
.trust-detail article:hover,
.insight-library article:hover,
.deliverable-notes article:hover,
.contact-reasons article:hover,
.value-wall div:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.page-tile b,
.card-row b,
.safety-matrix b,
.deliverable-wall b,
.faq-strip b,
.promise-grid b,
.persona-board b,
.experience-grid b,
.trust-detail b,
.insight-library b,
.deliverable-notes b,
.contact-reasons b,
.value-wall b {
  display: block;
  margin: 24px 0 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.95;
}

.blue { background: var(--blue); }
.lavender { background: var(--lavender); }
.yellow { background: var(--yellow); }
.pink { background: var(--pink); }
.green { background: var(--green); }
.orange { background: var(--orange); }

.home-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 10px 0;
  background: linear-gradient(90deg, rgba(206, 176, 239, 0.18), rgba(255, 248, 135, 0.34), rgba(255, 170, 167, 0.18));
}

.promise-section {
  background: rgba(206, 176, 239, 0.18);
}

.promise-section .section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
}

.journey-preview {
  position: relative;
  overflow: hidden;
}

.journey-preview::before {
  position: absolute;
  right: -80px;
  top: 80px;
  width: 280px;
  height: 280px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  animation: pulse 5s ease-in-out infinite;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
}

.journey-steps article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.journey-steps article:last-child {
  border-right: 0;
}

.journey-steps span,
.mission-vision span,
.feature-stack span,
.trust-detail span,
.insight-library span,
.deliverable-notes span,
.experience-grid span,
.persona-board span {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.journey-steps b {
  display: block;
  margin: 38px 0 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 0.94;
}

.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.strip-track span {
  margin: 0;
  padding-right: 42px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1;
  white-space: nowrap;
}

.asset-story,
.doodle-board,
.interface-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.asset-copy p {
  max-width: 620px;
}

.asset-stack {
  position: relative;
  width: min(100%, 640px);
  min-height: 410px;
  justify-self: end;
}

.asset-stack img,
.snapshot-grid figure,
.doodle-board img,
.asset-banner img,
.interface-preview img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.asset-large {
  position: absolute;
  right: 0;
  top: 44px;
  width: 70%;
  height: 270px;
}

.asset-small {
  position: absolute;
  width: 180px;
  height: 128px;
}

.asset-small.one {
  left: 0;
  bottom: 58px;
  transform: rotate(-4deg);
}

.asset-small.two {
  right: 8%;
  bottom: 0;
  transform: rotate(5deg);
}

.asset-small.three {
  left: 10%;
  top: 8px;
  transform: rotate(3deg);
}

.asset-stack .asset-large {
  width: 70%;
  height: 270px;
}

.asset-stack .asset-small {
  width: 180px;
  height: 128px;
}

.experience-snapshots {
  background: rgba(255, 170, 167, 0.14);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.snapshot-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.35s ease;
}

.snapshot-grid figure:nth-child(even) {
  transform: translateY(36px);
}

.snapshot-grid figure:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.snapshot-grid figure:nth-child(even):hover {
  transform: translateY(24px) rotate(1deg);
}

.snapshot-grid img {
  height: 300px;
}

.snapshot-grid figcaption {
  padding: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.doodle-board {
  background: rgba(206, 176, 239, 0.16);
}

.doodle-board img {
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.doodle-crops {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.doodle-crops img {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf3;
  box-shadow: var(--shadow);
}

.doodle-crops img:first-child {
  grid-row: span 2;
  min-height: 470px;
}

.doodle-crops.compact img:first-child {
  grid-row: auto;
  min-height: 360px;
}

.doodle-crops.compact img {
  min-height: 360px;
}

.asset-banner {
  padding-top: 20px;
  padding-bottom: 20px;
}

.asset-banner img {
  width: min(1120px, 100%);
  max-height: 560px;
  margin-inline: auto;
  object-fit: cover;
}

.interface-preview {
  background: rgba(255, 248, 135, 0.13);
}

.interface-preview .mock-screen {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.interface-preview img {
  max-height: 560px;
}

.home-closing {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  padding: clamp(84px, 8vw, 120px) clamp(18px, 5vw, 72px);
  background: rgba(145, 171, 237, 0.34);
}

.closing-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.closing-card h2 {
  margin: 16px 0 26px;
  font-size: clamp(54px, 7.4vw, 118px);
  line-height: 0.86;
}

.closing-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 34px;
  font-family: var(--mono);
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: 1.25;
  text-transform: uppercase;
}

.closing-tile {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf3;
  box-shadow: 0 18px 48px rgba(46, 33, 27, 0.12);
  animation: float-card 8s ease-in-out infinite;
}

.closing-tile img {
  height: 100%;
}

.tile-one {
  left: 12%;
  top: 15%;
  width: 230px;
  height: 290px;
  transform: rotate(-1.5deg);
}

.tile-two {
  right: 12%;
  top: 20%;
  width: 270px;
  height: 250px;
  animation-delay: -1.5s;
}

.tile-three {
  left: 16%;
  bottom: 9%;
  width: 310px;
  height: 230px;
  animation-delay: -3s;
}

.tile-four {
  right: 16%;
  bottom: 9%;
  width: 300px;
  height: 230px;
  animation-delay: -4.5s;
}

.page-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-content: end;
  overflow: hidden;
}

.page-hero h1 {
  max-width: 1030px;
  font-size: clamp(46px, 7.2vw, 98px);
}

.visual-page-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  align-content: center;
  min-height: min(760px, calc(100vh - 96px));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero-media {
  position: relative;
  min-height: 500px;
}

.page-hero-media img {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf3;
  box-shadow: var(--shadow);
}

.page-hero-media img:nth-child(1) {
  left: 4%;
  top: 0;
  width: 66%;
  height: 58%;
  transform: rotate(-2deg);
}

.page-hero-media img:nth-child(2) {
  right: 0;
  top: 30%;
  width: 54%;
  height: 44%;
  transform: rotate(3deg);
}

.page-hero-media img:nth-child(3) {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 34%;
  transform: rotate(1deg);
}

.visual-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.visual-band figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf3;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.visual-band figure:nth-child(even) {
  transform: translateY(28px);
}

.visual-band figure:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.visual-band figure:nth-child(even):hover {
  transform: translateY(18px) rotate(1deg);
}

.visual-band img {
  height: 210px;
}

.visual-band figcaption {
  padding: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

body:not(.home-page) .visual-page-hero {
  min-height: min(610px, calc(100vh - 94px));
  align-items: center;
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 76px);
}

body:not(.home-page) .visual-page-hero .page-hero-copy,
body:not(.home-page) .visual-page-hero .page-hero-media {
  align-self: center;
}

body:not(.home-page) .visual-page-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 0.95;
}

.circles-hero h1,
.research-hero h1 {
  max-width: 700px;
  font-size: clamp(40px, 5vw, 64px);
}

.circles-hero,
.research-hero {
  min-height: min(590px, calc(100vh - 94px));
}

body:not(.home-page) .page-hero-media {
  min-height: 440px;
}

.about-hero .page-hero-media img:nth-child(1) {
  left: 6%;
  top: 0;
  width: 64%;
  height: 56%;
}

.about-hero .page-hero-media img:nth-child(2) {
  right: 0;
  top: 32%;
  width: 58%;
  height: 42%;
}

.about-hero .page-hero-media img:nth-child(3) {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 30%;
}

.features-hero .feature-device {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 430px;
}

.features-hero .page-hero-media img,
.circles-hero .page-hero-media img,
.events-hero .page-hero-media img,
.safety-hero .page-hero-media img,
.research-hero .page-hero-media img,
.deliverables-hero .page-hero-media img {
  position: static;
  width: 100%;
  height: 100%;
  transform: none;
}

.features-hero .page-hero-media img:nth-child(1) {
  grid-row: 1 / -1;
}

.circles-hero .circle-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.82fr 1fr;
  gap: 14px;
}

.circles-hero .page-hero-media img:nth-child(1) {
  grid-column: 1 / -1;
}

.events-hero .event-stack {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.events-hero .page-hero-media img:nth-child(1) {
  grid-row: 1 / -1;
}

.safety-hero .safety-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.safety-hero .page-hero-media img:nth-child(1) {
  grid-column: 1 / -1;
  height: 250px;
}

.research-hero .research-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 0.78fr;
  gap: 14px;
}

.research-hero .page-hero-media img {
  filter: saturate(0.96);
}

.research-hero .page-hero-media img:nth-child(3) {
  grid-column: 1 / -1;
}

.deliverables-hero .deliverable-board {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: 0.8fr 1fr;
  gap: 14px;
}

.deliverables-hero .page-hero-media img:nth-child(1) {
  grid-row: 1 / -1;
}

.contact-hero {
  min-height: auto;
  align-items: start;
}

.contact-hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 7vw, 96px);
}

.motion-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 16px;
}

.motion-mosaic figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf3;
  box-shadow: var(--shadow);
  animation: float-card 7s ease-in-out infinite;
}

.motion-mosaic figure:nth-child(1) {
  grid-row: span 2;
  min-height: 460px;
}

.motion-mosaic figure:nth-child(2) {
  animation-delay: -1.5s;
}

.motion-mosaic figure:nth-child(3) {
  animation-delay: -3s;
}

.motion-mosaic.compact figure,
.motion-mosaic.compact figure:nth-child(1) {
  grid-row: auto;
  min-height: 300px;
}

.motion-mosaic figcaption,
.video-reel .play-pulse {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(251, 248, 235, 0.86);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.quiz-section,
.video-room {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: rgba(145, 171, 237, 0.12);
}

.quiz-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.quiz-question {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-options button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 16px;
  background: rgba(251, 248, 235, 0.76);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s ease, background 0.25s ease;
}

.quiz-options button:hover,
.quiz-options button.is-selected {
  background: var(--green);
  transform: translateX(8px);
}

.quiz-result {
  min-height: 96px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.video-room {
  background: rgba(255, 170, 167, 0.13);
}

.video-reel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-reel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: reel-fade 12s ease-in-out infinite;
}

.video-reel img:nth-child(2) {
  animation-delay: 4s;
}

.video-reel img:nth-child(3) {
  animation-delay: 8s;
}

.video-reel .play-pulse {
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

body:not(.is-loading) main > section {
  animation: section-breathe 14s ease-in-out infinite;
}

.hero-doodles {
  position: absolute;
  right: clamp(20px, 7vw, 120px);
  top: 26%;
  display: flex;
  gap: 12px;
}

.dot {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid var(--line);
  animation: float 5s ease-in-out infinite;
}

.dot.pink { animation-delay: -1s; }
.dot.yellow { animation-delay: -2s; }

.story-layout,
.circle-lab,
.contact-page,
.dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.story-panel {
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: clamp(28px, 4vw, 50px);
}

.story-panel b {
  display: block;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.9;
}

.story-panel p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.45;
}

.story-copy p {
  max-width: 720px;
}

.principle-band,
.feature-showcase,
.event-flow,
.feature-stack,
.mission-vision {
  display: grid;
  gap: 18px;
}

.principle-band,
.mission-vision {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mission-vision {
  grid-template-columns: 1fr 1fr;
}

.principle-band article,
.wide-card,
.event-flow article,
.research-card,
.detail-grid div,
.audience,
.no-list,
.partner-strip,
.feature-stack article,
.mission-vision article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 46px);
}

.mission-vision h2 {
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.98;
}

.principle-band b,
.event-flow b,
.detail-grid b {
  display: block;
  margin: 24px 0 12px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.94;
}

.wide-card {
  display: grid;
  grid-template-columns: 0.16fr 0.44fr 0.4fr;
  gap: 24px;
  align-items: center;
  min-height: 285px;
  box-shadow: var(--shadow);
}

.wide-card h2 {
  margin: 0;
}

.feature-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(145, 171, 237, 0.14);
}

.feature-stack article:nth-child(1) { background: var(--blue); }
.feature-stack article:nth-child(2) { background: var(--lavender); }
.feature-stack article:nth-child(3) { background: var(--green); }

.feature-stack article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: center;
}

.feature-stack span {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
}

.feature-stack b {
  display: block;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
}

.feature-stack p {
  margin: 0;
}

.detail-grid div {
  background: rgba(255, 255, 255, 0.28);
}

.circle-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 135, 0.48), transparent 62%);
}

.circle-orbit b {
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: var(--green);
  font-family: var(--serif);
  font-size: 48px;
}

.circle-orbit span {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.circle-orbit span:nth-child(1) { top: 44px; left: 42%; background: var(--pink); }
.circle-orbit span:nth-child(2) { right: 28px; top: 42%; background: var(--blue); }
.circle-orbit span:nth-child(3) { bottom: 50px; left: 30%; background: var(--lavender); }
.circle-orbit span:nth-child(4) { left: 24px; top: 45%; background: var(--yellow); }
.circle-orbit span:nth-child(5) { right: 20%; bottom: 84px; background: var(--orange); }

.event-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-flow article {
  min-height: 300px;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 0.35s ease, background 0.35s ease;
}

.event-flow article:hover {
  transform: translateY(-8px);
  background: var(--yellow);
}

.partner-strip {
  background: var(--lavender);
  text-align: center;
}

.partner-strip p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
}

.safety-matrix article {
  min-height: 320px;
}

.trust-detail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-detail article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.no-list {
  background: var(--yellow);
  text-align: center;
}

.no-list p {
  max-width: 740px;
  margin-inline: auto;
}

.research-card {
  min-height: 320px;
  box-shadow: var(--shadow);
}

.insight-library {
  background: rgba(255, 170, 167, 0.16);
}

.insight-library article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.insight-library article:nth-child(1) { background: var(--yellow); }
.insight-library article:nth-child(2) { background: var(--lavender); }
.insight-library article:nth-child(3) { background: var(--blue); }
.insight-library article:nth-child(4) { background: var(--green); }

.research-card span {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.research-card p {
  margin-top: 36px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}

.audience {
  background: var(--green);
}

.audience ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.audience li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(251, 248, 235, 0.55);
}

.deliverable-wall article:nth-child(1),
.deliverable-wall article:nth-child(6) { background: var(--lavender); }
.deliverable-wall article:nth-child(2) { background: var(--blue); }
.deliverable-wall article:nth-child(3) { background: var(--yellow); }
.deliverable-wall article:nth-child(4) { background: var(--pink); }
.deliverable-wall article:nth-child(5) { background: var(--green); }

.deliverable-notes article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard {
  background: rgba(176, 211, 183, 0.45);
}

.download-panel,
.app-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-card,
.app-steps article {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.download-card span,
.app-steps span {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.download-card b,
.app-steps b {
  display: block;
  margin: 26px 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}

.download-card .btn {
  margin-top: 18px;
}

.app-steps {
  background: rgba(255, 248, 135, 0.14);
}

.app-steps article:nth-child(1) { background: var(--yellow); }
.app-steps article:nth-child(2) { background: var(--pink); }
.app-steps article:nth-child(3) { background: var(--green); }

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dashboard-form,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.24);
}

.contact-visuals {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 32px;
}

.contact-visuals img {
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf3;
  box-shadow: var(--shadow);
}

.contact-visuals img:nth-child(2) {
  margin-top: 36px;
}

.dashboard-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(251, 248, 235, 0.86);
  color: var(--ink);
  outline: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
}

.admin-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-list article {
  padding: 18px;
  background: var(--paper);
}

.admin-list header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.admin-list b {
  font-family: var(--serif);
  font-size: 28px;
}

.pill {
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.admin-actions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  cursor: pointer;
}

.contact-page {
  min-height: calc(100vh - 94px);
}

.contact-form {
  background: var(--pink);
}

.contact-reasons article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
}

.faq-strip article:nth-child(1) { background: var(--blue); }
.faq-strip article:nth-child(2) { background: var(--yellow); }
.faq-strip article:nth-child(3) { background: var(--green); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 72px) 28px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(145, 171, 237, 0.18), rgba(206, 176, 239, 0.2), rgba(255, 248, 135, 0.16)),
    var(--paper);
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(251, 248, 235, 0.7);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav b {
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a:not(.brand) {
  color: var(--muted);
}

.site-footer a:not(.brand):hover {
  color: var(--ink);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  clip-path: inset(14% 0 0 0);
  transform: translateY(42px) rotate(0.3deg);
  transition: opacity 0.9s ease, clip-path 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0) rotate(0);
}

[data-tilt-card] {
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes twirl {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  50% { transform: scale(1.08); opacity: 0.55; }
}

@keyframes float {
  50% { transform: translateY(-16px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes float-card {
  50% { transform: translateY(-10px) rotate(0.6deg); }
}

@keyframes reel-fade {
  0%, 7% { opacity: 0; transform: scale(1.06); }
  12%, 38% { opacity: 1; transform: scale(1); }
  45%, 100% { opacity: 0; transform: scale(1.04); }
}

@keyframes section-breathe {
  50% { background-position: 100% 50%; }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    padding-top: 10px;
  }

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

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown:not(.is-open) .dropdown-menu {
    display: none;
  }

  .muse-hero,
  .story-layout,
  .circle-lab,
  .contact-page,
  .dashboard,
  .asset-story,
  .doodle-board,
  .interface-preview,
  .visual-page-hero,
  .quiz-section,
  .video-room {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    min-height: 430px;
  }

  .muse-hero {
    min-height: 0;
  }

  .page-grid,
  .detail-grid,
  .card-row,
  .safety-matrix,
  .research-board,
  .download-panel,
  .app-steps,
  .deliverable-wall,
  .faq-strip,
  .admin-list,
  .promise-grid,
  .persona-board,
  .experience-grid,
  .trust-detail,
  .insight-library,
  .deliverable-notes,
  .contact-reasons,
  .value-wall,
  .snapshot-grid,
  .visual-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-flow,
  .journey-steps,
  .feature-stack,
  .mission-vision {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-steps article:nth-child(2) {
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .wide-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 64px 18px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  h2 {
    font-size: clamp(40px, 14vw, 64px);
  }

  .site-header {
    padding: 16px 18px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero-gallery {
    min-height: 760px;
  }

  .image-main {
    left: 0;
    width: 92%;
  }

  .image-pink {
    right: 0;
    top: 290px;
    width: 170px;
  }

  .image-blue {
    left: 0;
    bottom: 108px;
    width: 190px;
  }

  .image-yellow {
    right: 0;
    bottom: 0;
    width: 185px;
  }

  .hero-note {
    right: 0;
    top: 430px;
    width: 196px;
    padding: 20px;
  }

  .hero-note b {
    font-size: 27px;
  }

  .doodle-star,
  .doodle-loop,
  .doodle-spark {
    display: none;
  }

  .page-grid,
  .detail-grid,
  .card-row,
  .safety-matrix,
  .research-board,
  .download-panel,
  .app-steps,
  .deliverable-wall,
  .faq-strip,
  .admin-list,
  .event-flow,
  .principle-band,
  .audience ul,
  .promise-grid,
  .persona-board,
  .experience-grid,
  .trust-detail,
  .insight-library,
  .deliverable-notes,
  .contact-reasons,
  .value-wall,
  .journey-steps,
  .feature-stack,
  .mission-vision,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .visual-band {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(44px, 14vw, 76px);
  }

  .visual-page-hero {
    min-height: 0;
  }

  .page-hero-media {
    min-height: 520px;
  }

  body:not(.home-page) .visual-page-hero {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  body:not(.home-page) .visual-page-hero h1,
  .contact-hero h1 {
    font-size: clamp(44px, 13vw, 72px);
  }

  body:not(.home-page) .features-hero .page-hero-media,
  body:not(.home-page) .circles-hero .page-hero-media,
  body:not(.home-page) .events-hero .page-hero-media,
  body:not(.home-page) .safety-hero .page-hero-media,
  body:not(.home-page) .research-hero .page-hero-media,
  body:not(.home-page) .deliverables-hero .page-hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  body:not(.home-page) .features-hero .page-hero-media img,
  body:not(.home-page) .circles-hero .page-hero-media img,
  body:not(.home-page) .events-hero .page-hero-media img,
  body:not(.home-page) .safety-hero .page-hero-media img,
  body:not(.home-page) .research-hero .page-hero-media img,
  body:not(.home-page) .deliverables-hero .page-hero-media img {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }

  .about-hero .page-hero-media {
    min-height: 420px;
  }

  .doodle-crops,
  .doodle-crops.compact,
  .motion-mosaic,
  .motion-mosaic.compact,
  .contact-visuals {
    grid-template-columns: 1fr;
  }

  .doodle-crops img:first-child,
  .doodle-crops.compact img:first-child,
  .doodle-crops.compact img {
    grid-row: auto;
    min-height: 230px;
  }

  .motion-mosaic figure,
  .motion-mosaic figure:nth-child(1),
  .motion-mosaic.compact figure,
  .motion-mosaic.compact figure:nth-child(1) {
    grid-row: auto;
    min-height: 230px;
  }

  .visual-band figure,
  .visual-band figure:nth-child(even),
  .visual-band figure:hover,
  .visual-band figure:nth-child(even):hover {
    min-height: auto;
    transform: none;
  }

  .visual-band img,
  .contact-visuals img {
    height: 230px;
  }

  .video-reel {
    min-height: 300px;
  }

  .home-closing {
    min-height: auto;
    padding-block: 70px;
  }

  .closing-card {
    max-width: 100%;
  }

  .closing-card h2 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .closing-tile {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    height: 210px;
  }

  .tile-one,
  .tile-two,
  .tile-three,
  .tile-four {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0 auto 18px;
    transform: none;
  }

  .contact-visuals img:nth-child(2) {
    margin-top: 0;
  }

  .asset-stack {
    min-height: 540px;
  }

  .asset-large {
    width: 100%;
    height: 310px;
  }

  .asset-small {
    width: 190px;
    height: 135px;
  }

  .asset-small.one {
    bottom: 70px;
  }

  .snapshot-grid figure,
  .snapshot-grid figure:nth-child(even),
  .snapshot-grid figure:hover,
  .snapshot-grid figure:nth-child(even):hover {
    min-height: auto;
    transform: none;
  }

  .snapshot-grid img {
    height: 230px;
  }

  .journey-steps article,
  .journey-steps article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-steps article:last-child {
    border-bottom: 0;
  }

  .circle-orbit {
    min-height: 360px;
  }

  .circle-orbit b {
    width: 128px;
    height: 128px;
    font-size: 40px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .cursor-ring {
    display: none;
  }
}

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