/* Generated by scripts/build.py. Edit src/styles instead. */
/* Source: src/styles/tokens.css */
/* Shared design system. Site-wide changes start here, not in generated assets. */
:root {
  --bg: #161519;
  --panel: #1d1c21;
  --black: #0d0c0f;
  --text: #f7f7f8;
  --muted: #aaa9af;
  --accent: #f1533d;
  --line: #36343b;
  --max: 1320px;
  --gutter: 7.6vw;
  --radius: 9px;

  /* Reference roles: DM Sans headings/actions; native body and navigation. */
  --font-display: "DM Sans", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-card-copy: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --font-preview-serif: Georgia, serif;
  --weight-body: 400;
  --weight-nav: 500;
  --weight-display: 600;
  --weight-card: 700;
  --text-body: 1.025rem;
  --text-nav: 1rem;
  --text-subnav: 0.98rem;
  --text-action: 0.97375rem;
  --text-action-small: 0.9225rem;
  --text-card-heading: 1.5rem;
  --text-h1: clamp(2.7rem, calc(4.5vw + 0.25rem), 4.5rem);
  --text-h2: clamp(1.9584rem, calc(3.15vw + 0.25rem), 3.06rem);
  --text-heading-small: clamp(1.5625rem, 2.25vw, 2.125rem);
  --leading-body: 1.6;
  --leading-h1: 1;
  --leading-h2: 1.05;
  --tracking-h1: -0.045em;
  --tracking-h2: -0.04em;
}

/* Source: src/styles/fonts.css */
/* Static fonts have exact weights, never a misleading variable-font range. */
@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

/* Source: src/styles/layout.css */
/* Clip intentionally oversized decorative art without creating a side-scroll. */
body {
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: .6;
}

button {
  color: inherit;
}

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

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

h1 {
  margin-bottom: 25px;
}

h2 {
  margin-bottom: 27px;
}

p {
  color: var(--muted);
  margin-bottom: 21px;
}

::selection {
  background: var(--accent);
  color: white;
}

:focus-visible {
  outline: 2px solid #ffb7a9;
  outline-offset: 5px;
}

button:focus:not(:focus-visible) {
  outline: none;
}

[hidden] {
  display: none !important;
}

.container {
  width: calc(100% - var(--gutter)*2);
  max-width: var(--max);
  margin-inline: auto;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.accent {
  color: var(--accent);
}

.narrow {
  max-width: 820px;
}

.eyebrow {
  display: block;
  color: var(--muted);
  margin-bottom: 24px;
}

.icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  vertical-align: middle;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid #a3a1a9;
  border-radius: 7px;
  padding: 13px 19px;
  background: transparent;
  transition: background .2s,border-color .2s,transform .2s;
}

.button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.button-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button-solid:hover {
  background: #d84631;
  border-color: #d84631;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.text-link .icon {
  transition: transform .25s;
}

.text-link:hover .icon {
  transform: translateX(5px);
}

.text-link:hover {
  color: var(--accent);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 20px;
  background: white;
  color: var(--bg);
  padding: 12px 20px;
}

.skip-link:focus {
  top: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Fixed header, reference-style overlay menu and vertical side rails. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  transition: background .2s,box-shadow .2s;
}

.site-header.scrolled {
  background: #161519dd;
  backdrop-filter: blur(18px);
  box-shadow: 0 1px #ffffff08;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 3.8vw 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.menu-toggle,
.menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 47px;
  height: 47px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: #0d0c10;
}

.menu-toggle span {
  height: 1.5px;
  width: 21px;
  display: block;
  background: #dad9df;
  transition: width .2s;
}

.menu-toggle:hover span:last-child {
  width: 14px;
}

.menu-close {
  width: 50px;
  height: 50px;
  background: #28262c;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  white-space: nowrap;
  color: #c1c0c6;
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-group {
  display: flex;
  align-items: center;
  position: relative;
  gap: 3px;
}

.nav-toggle {
  border: 0;
  background: transparent;
  color: #aaa7ae;
  padding: 6px 0 7px 5px;
}

.nav-dropdown {
  position: absolute;
  left: -24px;
  width: 280px;
  padding: 15px;
  background: #222126;
  box-shadow: 0 16px 40px #0005;
  border: 1px solid #38363e;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s;
}

.nav-group:hover .nav-dropdown,
.nav-group.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 9px;
  color: #cbc9d1;
}

.nav-dropdown a .icon {
  width: 16px;
  height: 16px;
}

.nav-dropdown a:hover {
  color: var(--accent);
}

.nav-dropdown .all-services {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 17px;
  color: white;
}

.header-cta {
  border-color: #f1533d90;
  padding: 10px 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.side-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 50;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  display: flex;
  gap: 13px;
  align-items: center;
  color: #c6c5cd;
}

.side-rail a:hover {
  color: var(--accent);
}

.back-top {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #c6c5cd;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top span {
  height: 46px;
  width: 1px;
  background: #5b5862;
}

.menu-dialog {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
  overflow: auto;
}

.menu-dialog::backdrop {
  background: #161519e8;
  backdrop-filter: blur(10px);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px var(--gutter);
}

.menu-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12%;
  padding: 30px var(--gutter) 70px;
}

.menu-content nav {
  display: flex;
  flex-direction: column;
}

.menu-content nav>a {
  border-bottom: 1px solid #343139;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-content nav>a small {
  color: var(--muted);
}

.menu-content nav>a .icon {
  margin-left: auto;
  width: 30px;
  height: 30px;
}

.menu-content nav>a:hover {
  color: var(--accent);
}

.menu-aside {
  align-self: center;
}

.menu-aside p {
  max-width: 280px;
}

.contact-links {
  display: flex;
  gap: 13px;
  flex-direction: column;
  align-items: flex-start;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-wrap: anywhere;
}

.contact-links .icon {
  width: 17px;
  height: 17px;
}

/* Homepage */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
}

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

.hero-copy>.eyebrow {
  color: #aaa8b1;
  margin-bottom: 24px;
}

.hero-copy h1 {
  margin-bottom: 29px;
}

.hero-copy>.text-link {
  color: var(--accent);
}

.hero-art {
  position: absolute;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero-art img {
  mask-composite: intersect;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: #85818c;
}

.hero-bottom a {
  color: #bcb8c3;
}

.hero-bottom a span {
  margin-left: 16px;
  color: var(--accent);
}

.highlights {
  padding-bottom: 75px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 40px;
}

.section-title h2 {
  margin-bottom: 0;
}

.section-note {
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 42px 30px;
}

.project-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}

.project-visual {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .55s cubic-bezier(.2,.6,.3,1);
}

.project-image-link:hover .project-visual {
  transform: scale(1.045);
}

.project-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0002;
  opacity: 0;
  transition: opacity .2s;
}

.project-hover .icon {
  width: 68px;
  height: 68px;
  padding: 18px;
  border-radius: 50%;
  background: #ffffff28;
  backdrop-filter: blur(12px);
}

.project-image-link:hover .project-hover {
  opacity: 1;
}

.project-caption {
  padding-top: 18px;
}

.project-caption h3 {
  margin: 0 0 4px;
}

.project-caption h3 a:hover {
  color: var(--accent);
}

.project-caption p {
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.project-caption p>span {
  color: #85818c;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.image-divider {
  height: 440px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.image-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-intro {
  max-width: 730px;
  margin-bottom: 44px;
}

.section-intro h2 {
  margin-bottom: 24px;
}

.section-intro p {
  max-width: 700px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #111013;
  border-radius: 15px;
  padding: 0 26px 28px;
  transition: background .2s,transform .25s;
  border: 1px solid #ffffff03;
}

.service-card:hover {
  background: #201e24;
  transform: translateY(-6px);
  border-color: #f1533d44;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card>p {
  margin-bottom: 24px;
}

.service-card>.text-link {
  margin-top: auto;
  color: #d7d5dc;
}

.service-card:hover>.text-link {
  color: var(--accent);
}

.service-illustration {
  height: 180px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 600px;
}

.growth-section {
  background: #121115;
}

.growth-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.growth-art {
  width: 100%;
  height: auto;
}

.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}

.about-home .section-intro {
  margin-bottom: 25px;
}

.about-text {
  padding-top: 36px;
}

.about-text>.lead {
  color: #e3e1e7;
}

.disciplines {
  border-block: 1px solid var(--line);
  padding-block: 35px;
}

.disciplines>.eyebrow {
  margin-bottom: 22px;
}

.disciplines>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.disciplines>div>span {
  color: #88848e;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 25px;
}

.process-grid>article {
  background: #1f1d23;
  border-radius: 12px;
  padding: 34px;
}

.step-number {
  color: #ee503b;
  margin-bottom: 30px;
  display: block;
}

.process-grid h3 {
  margin-bottom: 16px;
}

.process-grid p {
  margin-bottom: 0;
}

.project-cta {
  position: relative;
  border-block: 1px solid #ffffff05;
  padding: 90px 0;
  overflow: hidden;
}

.project-cta:after {
  content: "W";
  color: #24212833;
  position: absolute;
  right: 4%;
  top: -55px;
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-inner h2 {
  margin-bottom: 22px;
}

.cta-inner .eyebrow {
  margin-bottom: 16px;
}

.cta-inner p {
  margin-bottom: 0;
  max-width: 530px;
}

.cta-inner .button {
  flex-shrink: 0;
  min-width: 155px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 30px;
}

.article-image {
  position: relative;
  display: block;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1.45;
}

.article-image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.article-image:hover>img {
  transform: scale(1.06);
}

.article-image>span {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: #ffffff21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-meta {
  color: #98939f;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-block: 18px 10px;
}

.article-card h3 {
  margin-bottom: 14px;
}

.article-card h3 a:hover {
  color: var(--accent);
}

.article-card .text-link {
  color: #e9e7ed;
}

.faq-section {
  padding-top: 20px;
}

.faq-list {
  border-top: 1px solid #4a4651;
}

.faq-item {
  border-bottom: 1px solid #4a4651;
}

.faq-item summary {
  padding: 23px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .icon {
  width: 19px;
  height: 19px;
  transition: transform .2s;
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item[open] summary .icon {
  transform: rotate(45deg);
}

.faq-item>div {
  max-width: 880px;
  padding-right: 35px;
}

.faq-item p {
  margin: 0;
  padding-bottom: 25px;
}

/* Original, code-native project presentation boards. */
.mini-label {
  position: absolute;
  left: 7%;
  top: 7%;
  z-index: 3;
}

.visual-roll {
  background: radial-gradient(ellipse at 50% 80%,#285025,#071911 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visual-roll>img {
  width: 89%;
  height: 89%;
  object-fit: contain;
  position: absolute;
  bottom: -4%;
  filter: drop-shadow(0 10px 18px #0009);
  transform: rotate(-6deg);
}

.roll-word {
  z-index: 2;
  position: absolute;
  top: 7%;
  left: 7%;
  text-shadow: 0 3px 8px #000;
}

.roll-word span {
  color: #c4f72b;
}

.mock-caption {
  position: absolute;
  right: 7%;
  top: 15%;
  writing-mode: vertical-rl;
}

.visual-nova {
  background: radial-gradient(ellipse at 80% 20%,#3f2d5c,#1c1632 60%,#10091e);
  color: #ebd9ff;
}

.nova-ring {
  position: absolute;
  width: 77%;
  height: 77%;
  left: 24%;
  top: -10%;
  border: 28px solid #d9c7ef;
  border-radius: 50%;
  box-shadow: inset 6px 8px 17px #432d72,12px 14px 0 #8e6abe,17px 26px 30px #02000999,-5px -5px 15px #eadeff66;
  transform: rotate(-32deg) skew(-17deg);
  background: linear-gradient(135deg,transparent,#8560bc22);
}

.nova-word {
  position: absolute;
  bottom: 17%;
  left: 7%;
  z-index: 2;
}

.nova-word>span {
  display: block;
  margin-top: 16px;
}

.visual-oddline {
  background: #badc64;
  color: #132317;
}

.odd-word {
  position: absolute;
  top: 6%;
  left: 7%;
}

.odd-word span {
  color: #f9ffd9;
}

.sports-label {
  position: absolute;
  top: 10%;
  right: 9%;
  writing-mode: vertical-rl;
}

.sports-orbit {
  position: absolute;
  width: 80%;
  height: 80%;
  right: -35%;
  bottom: -15%;
  border: 1px solid #4a702850;
  border-radius: 50%;
  box-shadow: 0 0 0 20px #7faa3429,0 0 0 40px #7faa3429;
}

.mini-browser {
  position: absolute;
  width: 83%;
  height: 54%;
  top: 43%;
  left: 8%;
  background: #101914;
  border: 1px solid #506149;
  border-radius: 7px;
  transform: rotate(-8deg);
  box-shadow: 15px 22px 25px #152b264f;
  color: white;
  overflow: hidden;
}

.mini-browser>div {
  height: 21%;
  padding: 7px 11px;
  border-bottom: 1px solid #394337;
}

.mini-browser>div>span {
  float: right;
  margin-top: 2px;
}

.mini-browser>section {
  padding: 11px 15px;
  height: 62%;
  background: radial-gradient(ellipse at 86% 50%,#749e34,#153123 57%,#101c15);
}

.mini-browser b {
  display: block;
}

.mini-browser i {
  background: #badc64;
  color: #182317;
  padding: 4px 7px;
  display: inline-block;
  margin-top: 8px;
}

.mini-browser>footer {
  display: flex;
  justify-content: space-around;
  padding: 9px;
}

.visual-volt {
  background: repeating-linear-gradient(45deg,#ff653f,#ff653f 14px,#fc613d 14px,#fc613d 15px);
  color: #391110;
}

.volt-bolt {
  position: absolute;
  top: -32%;
  left: 19%;
  color: #ffc89a;
  text-shadow: 3px 1px 0 #ffe8c8,8px 8px 0 #b73923,14px 19px 25px #75271766;
  transform: rotate(9deg);
}

.volt-type {
  position: absolute;
  bottom: 15%;
  left: 8%;
  transform: rotate(-7deg);
}

.volt-type>span {
  display: block;
  margin-left: 6px;
  margin-top: 10px;
}

.visual-volt>.mini-label {
  color: #6b2517;
}

.visual-orbit {
  background: radial-gradient(ellipse at 80% 20%,#1e5c5a,#0c2e30 60%,#071b20);
  color: #b6ffec;
}

.orbit-ring {
  width: 70%;
  height: 70%;
  border: 1px solid #73eed15a;
  position: absolute;
  left: 15%;
  top: 15%;
  border-radius: 50%;
  transform: rotate(-25deg) scaleX(.55);
}

.orbit-ring.r2 {
  transform: rotate(35deg) scaleX(.55);
}

.orbit-ring.r3 {
  transform: rotate(95deg) scaleX(.55);
}

.orbit-core {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-shadow: 0 0 30px #54fadb44;
}

.orbit-core>span {
  margin-top: 5px;
}

.orbit-node {
  position: absolute;
  padding: 6px 9px;
  background: #234b46;
  border: 1px solid #9fc2b033;
  border-radius: 5px;
  box-shadow: 0 3px 15px #0005;
}

.orbit-node.n1 {
  top: 21%;
  right: 6%;
}

.orbit-node.n2 {
  top: 64%;
  left: 5%;
}

.orbit-node.n3 {
  bottom: 13%;
  right: 16%;
}

.visual-wager {
  background: #0d0d0f;
}

.visual-wager>img {
  width: 130%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: -24%;
  top: -4%;
  opacity: .9;
}

.wager-project-word {
  position: absolute;
  bottom: 7%;
  left: 7%;
  text-shadow: 0 2px 12px #000;
}

.wager-project-word span {
  display: block;
  margin-top: 7px;
}

/* Inner pages */
.internal-hero {
  padding-top: 178px;
  padding-bottom: 65px;
}

.internal-hero>p {
  max-width: 730px;
}

.internal-hero>.eyebrow {
  margin-bottom: 20px;
}

.internal-hero h1 {
  max-width: 1000px;
}

.project-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 37px;
}

.filter-button {
  border: 1px solid transparent;
  background: transparent;
  color: #9f9ca5;
  border-radius: 5px;
  padding: 8px 17px;
}

.filter-button:hover {
  color: white;
}

.filter-button.selected {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.projects-section {
  padding-bottom: 100px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #a29ea9;
  margin-bottom: 30px;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.service-hero {
  padding-top: 100px;
  padding-bottom: 20px;
}

.service-hero-art {
  position: relative;
  margin: 0 auto 40px;
  overflow: hidden;
}

.service-hero-art img {
  width: 100%;
  height: 100%;
}

.service-hero>.button {
  margin-top: 9px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: start;
}

.split-section h2 {
  max-width: 570px;
}

.scope-section {
  padding-top: 25px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.detail-card {
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 29px 25px;
  background: #1d1b21;
  border-radius: 10px;
}

.small-number {
  display: block;
  color: var(--accent);
  margin-bottom: 27px;
}

.detail-card>p {
  margin: 0;
}

.more-services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 35px;
}

.more-services>a {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #201d24;
  padding: 24px;
  border-radius: 8px;
}

.more-services>a>.icon:first-child {
  color: var(--accent);
}

.more-services>a>.icon:last-child {
  margin-left: auto;
  width: 18px;
}

.more-services>a:hover {
  background: #2e2529;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 10%;
}

.case-grid aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.case-grid aside>h3 {
  margin-bottom: 10px;
}

.checklist {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.checklist>li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: #b4aeba;
}

.checklist .icon {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--accent);
}

.case-grid>div>h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.case-grid>div>h2:first-of-type {
  margin-top: 0;
}

.blog-list {
  padding-top: 0;
}

.article-heading {
  max-width: 1060px;
}

.article-cover {
  height: 430px;
  max-width: 1060px;
  overflow: hidden;
  border-radius: 12px;
}

.article-cover>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 75px;
  max-width: 1060px;
  padding-block: 75px 110px;
}

.article-layout>aside {
  position: sticky;
  top: 125px;
  align-self: start;
}

.article-layout>aside>.eyebrow {
  margin-bottom: 20px;
}

.article-layout nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.article-layout nav>a {
  color: var(--muted);
}

.article-layout nav>a:hover {
  color: var(--accent);
}

.article-body>section {
  margin-bottom: 40px;
  scroll-margin-top: 120px;
}

.article-body h2 {
  margin-bottom: 20px;
}

.article-end {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.article-end>p {
  margin-bottom: 10px;
}

.article-end>.text-link {
  color: var(--accent);
}

/* Contact */
.contact-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 75px;
  min-height: 440px;
  isolation: isolate;
  overflow: hidden;
}

.contact-hero>.container {
  position: relative;
  z-index: 2;
}

.contact-hero .eyebrow {
  max-width: 470px;
}

.contact-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.contact-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 7%;
  padding-top: 55px;
}

.enquiry-form {
  background: #0b0a0d;
  padding: 42px;
  border-radius: 24px;
  scroll-margin-top: 120px;
}

.enquiry-form label {
  display: block;
  color: #b5aebb;
  margin-bottom: 23px;
}

.enquiry-form label>span:not(:last-child) {
  color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.enquiry-form input:not([type=checkbox]),
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  background: #18161b;
  color: white;
  border: 1px solid #2d2832;
  border-radius: 6px;
  padding: 13px 15px;
  margin-top: 8px;
  outline-offset: 3px;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 135px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #8e8797;
}

.enquiry-form select {
  min-height: 51px;
}

.enquiry-form select option {
  background: #211c26;
  color: white;
}

.enquiry-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.consent input {
  margin: 4px 0 0;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.consent a {
  text-decoration: underline;
  color: #e7e1ed;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status:empty {
  display: none;
}

.form-status {
  margin-top: 25px;
  padding: 18px;
  border: 1px solid #43394e;
  border-radius: 6px;
  color: #d5cedf;
}

.form-status strong {
  display: block;
  color: white;
  margin-bottom: 8px;
}

.form-status a {
  display: inline-flex;
  margin-top: 10px;
  color: #ff8c77;
  text-decoration: underline;
}

.form-status.error {
  border-color: #a54537;
  color: #ffc1b5;
}

.contact-aside {
  padding-top: 35px;
}

.contact-aside .contact-links {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 35px;
}

.contact-aside .contact-links:empty {
  display: none;
}

.policy-body {
  max-width: 800px;
  padding-bottom: 100px;
}

.policy-body>section {
  margin-bottom: 38px;
}

.error-page {
  padding-bottom: 130px;
}

/* Footer */
.site-footer {
  background: #101014;
  padding: 65px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: 40px;
}

.footer-brand>p {
  margin-block: 26px 22px;
}

.footer-grid h3 {
  margin-bottom: 23px;
}

.footer-grid>div:not(.footer-brand)>a {
  display: block;
  color: #aaa5b0;
  margin-bottom: 12px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7f7a88;
  border-top: 1px solid #2d2932;
  margin-top: 58px;
  padding-top: 23px;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom nav a:hover {
  color: var(--text);
}

.cursor-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  left: 0;
  top: 0;
  z-index: 110;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 0 0 9px #f1533d0b,0 0 0 10px #f1533d44;
}

.cursor-dot.active {
  opacity: 1;
}

@media (min-width:1600px) {
  .home-hero {
    min-height: 820px;
  }

  .side-rail {
    right: 42px;
  }

  .back-top {
    left: 42px;
  }

}

@media (max-width:1150px) {
  :root {
    --gutter: 6.4vw;
  }

  .header-inner {
    gap: 20px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .home-hero {
    min-height: 675px;
  }

  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 0 20px 24px;
  }

  .side-rail {
    right: 15px;
  }

  .back-top {
    left: 17px;
  }

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

  .contact-layout {
    gap: 5%;
    grid-template-columns: 1.7fr 1fr;
  }

  .enquiry-form {
    padding: 30px;
  }

  .footer-grid {
    gap: 25px;
  }

}

@media (max-width:960px) {
  :root {
    --gutter: 6vw;
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    height: 80px;
    padding-inline: 25px;
    gap: 20px;
  }

  .header-cta {
    margin-left: auto;
  }

  .home-hero {
    min-height: 610px;
    height: 85svh;
    max-height: 800px;
  }

  .hero-art {
    width: 88%;
    right: -12%;
    opacity: .9;
  }

  .hero-copy {
    width: 55%;
  }

  .hero-copy>.eyebrow {
    max-width: 220px;
  }

  .hero-bottom {
    bottom: 20px;
  }

  .project-grid {
    gap: 30px 20px;
  }

  .project-caption p {
    gap: 4px;
  }

  .services-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }

  .service-card {
    padding: 0 25px 28px;
  }

  .section {
    padding-block: 75px;
  }

  .growth-heading {
    gap: 25px;
  }

  .about-home {
    gap: 7%;
  }

  .process-grid {
    gap: 17px;
  }

  .process-grid>article {
    padding: 25px;
  }

  .image-divider {
    height: 350px;
  }

  .article-grid {
    gap: 20px;
  }

  .side-rail,
  .back-top {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 35px;
  }

  .contact-aside>.eyebrow {
    grid-column: 1/-1;
    margin-bottom: 0;
  }

  .contact-aside>p {
    grid-column: 2;
    grid-row: 2;
  }

  .contact-aside>.checklist {
    margin: 0;
  }

  .article-layout {
    grid-template-columns: 180px 1fr;
    gap: 40px;
  }

  .more-services {
    gap: 14px;
  }

  .more-services>a {
    padding: 20px;
    gap: 10px;
  }

  .service-hero-art {
    height: 310px;
  }

  .internal-hero {
    padding-top: 150px;
    padding-bottom: 50px;
  }

}

@media (max-width:680px) {
  :root {
    --gutter: 6vw;
  }

  .header-inner {
    padding-inline: 16px;
    gap: 13px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .menu-toggle span {
    width: 18px;
  }

  .header-cta {
    padding: 10px 12px;
  }

  .home-hero {
    display: block;
  }

  .hero-copy h1 {
    max-width: 390px;
    margin-bottom: 20px;
  }

  .hero-copy>.eyebrow {
    max-width: none;
    margin-bottom: 19px;
  }

  .hero-art {
    opacity: 1;
  }

  .hero-art img {
    mask-composite: intersect;
  }

  .hero-bottom a span {
    margin-left: 5px;
  }

  .section {
    padding-top: 57px;
    padding-bottom: 57px;
  }

  h2 {
    margin-bottom: 23px;
  }

  .section-title {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
    flex-direction: column;
  }

  .project-caption p>span {
    margin-top: 4px;
  }

  .project-hover .icon {
    width: 46px;
    height: 46px;
    padding: 11px;
  }

  .nova-ring {
    border-width: 17px;
    box-shadow: inset 3px 4px 10px #432d72,6px 7px 0 #8e6abe,9px 15px 18px #02000999;
  }

  .nova-word>span {
    margin-top: 9px;
  }

  .mini-browser>div {
    padding: 4px 6px;
  }

  .mini-browser>section {
    padding: 6px 8px;
  }

  .mini-browser i {
    padding: 3px;
    margin-top: 5px;
  }

  .mini-browser>footer {
    padding: 5px;
  }

  .volt-bolt {
    top: -31%;
  }

  .volt-type>span {
    margin-top: 6px;
    margin-left: 3px;
  }

  .orbit-node {
    padding: 3px 5px;
  }

  .center-action {
    margin-top: 35px;
  }

  .center-action .button {
    padding: 12px 16px;
  }

  .image-divider {
    height: 235px;
  }

  .image-divider>img {
    object-fit: cover;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .section-intro .eyebrow {
    margin-bottom: 16px;
  }

  .services-grid {
    gap: 13px;
  }

  .service-card {
    padding: 0 17px 22px;
    border-radius: 11px;
  }

  .service-card h3 {
    margin-bottom: 12px;
  }

  .service-card>p {
    margin-bottom: 20px;
  }

  .service-card>.text-link {
    gap: 5px;
  }

  .service-card>.text-link>.icon {
    width: 16px;
    height: 16px;
  }

  .service-illustration {
    height: 133px;
  }

  .growth-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .growth-art {
    width: 100%;
    margin-top: -20px;
    margin-bottom: 20px;
  }

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

  .about-text {
    padding-top: 15px;
  }

  .about-home .section-intro {
    margin-bottom: 15px;
  }

  .disciplines {
    padding-block: 25px;
  }

  .disciplines>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

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

  .process-grid>article {
    padding: 25px;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0 20px;
  }

  .step-number {
    grid-row: 1/3;
    margin: 0;
  }

  .process-grid h3 {
    margin-bottom: 13px;
  }

  .project-cta {
    padding: 55px 0;
  }

  .cta-inner {
    display: block;
  }

  .cta-inner .button {
    margin-top: 27px;
    min-width: 135px;
  }

  .project-cta:after {
    right: -20%;
    top: 30px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .article-image {
    aspect-ratio: 1.6;
  }

  .article-meta {
    margin-top: 16px;
  }

  .faq-section {
    padding-top: 15px;
  }

  .faq-item summary {
    padding: 20px 0;
    gap: 17px;
  }

  .faq-item summary .icon {
    width: 17px;
    height: 17px;
  }

  .faq-item p {
    padding-bottom: 20px;
  }

  .faq-item>div {
    padding-right: 20px;
  }

  .menu-top {
    padding: 23px 6vw;
  }

  .menu-close {
    width: 40px;
    height: 40px;
  }

  .menu-content {
    grid-template-columns: 1fr;
    padding: 8px 6vw 40px;
    gap: 40px;
  }

  .menu-content nav>a {
    padding: 13px 0;
  }

  .menu-content nav>a>.icon {
    width: 23px;
    height: 23px;
  }

  .menu-aside .eyebrow {
    margin-bottom: 14px;
  }

  .internal-hero {
    padding-top: 130px;
    padding-bottom: 35px;
  }

  .internal-hero h1 {
    margin-bottom: 21px;
  }

  .internal-hero>.eyebrow {
    margin-bottom: 20px;
  }

  .service-hero {
    padding-top: 90px;
  }

  .breadcrumbs {
    gap: 9px;
    margin-bottom: 21px;
  }

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

  .split-section .eyebrow {
    margin-bottom: 15px;
  }

  .split-section h2 {
    margin-bottom: 9px;
  }

  .detail-grid {
    gap: 13px;
  }

  .detail-card {
    padding: 21px 17px;
  }

  .detail-card h3 {
    margin-bottom: 14px;
  }

  .small-number {
    margin-bottom: 19px;
  }

  .scope-section {
    padding-top: 8px;
  }

  .more-services {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .project-filters {
    gap: 5px;
    margin-bottom: 26px;
  }

  .filter-button {
    padding: 8px 12px;
  }

  .projects-section {
    padding-bottom: 60px;
  }

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

  .case-grid aside {
    position: static;
  }

  .case-grid aside>.eyebrow {
    margin-bottom: 13px;
  }

  .case-grid .checklist {
    display: grid;
    gap: 5px 15px;
  }

  .case-grid .checklist li {
    margin-bottom: 8px;
  }

  .case-grid>div>h2 {
    margin-top: 30px;
  }

  .blog-list {
    padding-top: 10px;
  }

  .article-cover {
    height: 220px;
    border-radius: 7px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 35px;
    padding-bottom: 60px;
  }

  .article-layout aside {
    position: static;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
  }

  .article-layout nav {
    gap: 10px;
  }

  .article-body>section {
    margin-bottom: 30px;
  }

  .contact-hero {
    min-height: 460px;
    padding-top: 132px;
    padding-bottom: 150px;
  }

  .contact-hero p {
    max-width: 290px;
  }

  .contact-hero .eyebrow {
    max-width: 255px;
  }

  .contact-hero-art {
    max-width: none;
    height: 100%;
  }

  .contact-layout {
    padding-top: 28px;
  }

  .enquiry-form {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enquiry-form label {
    margin-bottom: 19px;
  }

  .enquiry-form input:not([type=checkbox]),
  .enquiry-form select,
  .enquiry-form textarea {
    padding: 12px;
  }

  .enquiry-form>.button {
    width: 100%;
  }

  .contact-aside {
    display: block;
    padding-top: 35px;
  }

  .contact-aside>.eyebrow {
    margin-bottom: 20px;
  }

  .contact-aside .checklist {
    margin-top: 24px;
  }

  .policy-body {
    padding-bottom: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }

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

  .footer-grid>div:last-child {
    grid-column: 1/-1;
  }

  .footer-grid>div:last-child>a {
    display: inline-block;
    margin-right: 20px;
  }

  .footer-brand p {
    margin-block: 22px 0;
  }

  .footer-grid h3 {
    margin-bottom: 18px;
  }

  .footer-grid>div:not(.footer-brand)>a {
    margin-bottom: 10px;
  }

  .site-footer {
    padding-top: 45px;
    padding-bottom: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 13px;
    margin-top: 34px;
    padding-top: 21px;
  }

  .footer-bottom nav {
    gap: 17px;
  }

  .cursor-dot {
    display: none;
  }

}

@media (max-width:360px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 10px;
    padding-inline: 12px;
  }

  .header-cta {
    padding: 9px 10px;
  }

  .home-hero {
    min-height: 715px;
    padding-top: 127px;
    padding-bottom: 340px;
  }

  .hero-art {
    height: 330px;
  }

  .service-card {
    padding-inline: 13px;
  }

  .project-grid {
    gap: 23px 12px;
  }

}

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

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }

  .cursor-dot {
    display: none;
  }

}

/* Explicit toggle state keeps Escape and outside-click dismissal reliable. */
.nav-group:not(.open) .nav-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: none;
}

/* Source: src/styles/portfolio.css */
/* Web Design Portfolio — full-resolution native layouts plus six image covers. */
.portfolio-hero h1 {
  max-width: 960px;
}

.portfolio-counter {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
}

.portfolio-counter strong {
  color: var(--accent);
}

.portfolio-counter span {
  color: var(--muted);
}

.portfolio-disclosure {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.disclosure-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.portfolio-disclosure p {
  margin: 0;
  max-width: 850px;
  color: #aaa6b0;
}

.portfolio-disclosure strong {
  color: #e4e0e7;
}

.portfolio-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  border-block: 1px solid var(--line);
}

.portfolio-toolbar .project-filters {
  margin: 0;
  gap: 7px;
  flex-wrap: wrap;
}

.portfolio-toolbar .filter-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  padding: 10px 14px;
}

.filter-button>span {
  opacity: .6;
}

.portfolio-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1e1c23;
  border: 1px solid #39353f;
  border-radius: 7px;
  padding: 0 13px;
  width: 250px;
  flex-shrink: 0;
  color: #898590;
}

.portfolio-search:focus-within {
  border-color: var(--accent);
}

.portfolio-search>.icon {
  width: 17px;
  height: 17px;
}

.portfolio-search>input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 0;
  outline: none;
}

.portfolio-search>input::placeholder {
  color: #aaa6b0;
}

.portfolio-status {
  color: #aaa6b0;
}

.portfolio-empty {
  text-align: center;
  padding: 70px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.portfolio-empty h2 {
  margin-bottom: 16px;
}

.portfolio-load:has(>button[hidden]) {
  display: none;
}

.portfolio-home-note {
  text-align: center;
  color: #928e9a;
  margin: 23px 0 0;
}

.project-caption .concept-label {
  color: #c5a69d;
}

.visual-cover {
  background: #14131a;
}

.visual-cover>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-concept-notice {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #221d21;
  border-left: 2px solid #bf7662;
  border-radius: 0 7px 7px 0;
  max-width: 810px;
}

.project-concept-notice>span {
  color: #e1ad9e;
  white-space: nowrap;
  margin-top: 3px;
}

.project-concept-notice>p {
  margin: 0;
  color: #c2b8be;
}

.design-direction {
  padding-top: 0;
}

.design-system-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  border-block: 1px solid var(--line);
  padding-block: 30px;
}

.design-palette {
  display: flex;
  gap: 24px;
  align-items: center;
}

.design-swatch {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.design-swatch>i {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #ffffff26;
}

.design-swatch>span {
  color: var(--muted);
}

.design-typography {
  display: flex;
  align-items: center;
  gap: 24px;
}

.design-typography>span {
  color: #dedbe3;
}

.design-typography p {
  margin: 8px 0 0;
}

.project-secondary-board {
  margin: 50px auto 0;
  max-width: 780px;
  overflow: hidden;
  border-radius: 12px;
}

/* These are presentation graphics, not functioning casino controls. */
.visual-webmock {
  overflow: hidden;
}

.web-design-board {
  position: relative;
  aspect-ratio: 1;
  isolation: isolate;
  container-type: inline-size;
  overflow: hidden;
  background: var(--p-backdrop);
  color: white;
}

.web-design-board:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 85% 20%,color-mix(in srgb,var(--p-accent),transparent 65%),transparent 58%),linear-gradient(125deg,#ffffff0a,transparent 40%,#0006);
}

.board-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#fff2 .55px,transparent .55px);
  background-size: 5px 5px;
  opacity: .18;
  pointer-events: none;
}

.board-topline,
.board-footline {
  position: absolute;
  left: 6%;
  right: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffffb0;
}

.board-topline {
  top: 5.5%;
}

.board-footline {
  bottom: 5%;
}

.board-brand {
  position: absolute;
  top: 10.5%;
  left: 6%;
  z-index: 3;
}

.board-brand>span {
  vertical-align: top;
  display: inline-block;
  margin: 1cqw 0 0 1.5cqw;
}

.board-orbit {
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  border: 9cqw solid #ffffff06;
  right: -31%;
  top: 10%;
  box-shadow: 0 0 0 1px #ffffff0d,inset 0 0 0 1px #ffffff08;
  transform: rotate(-25deg) scaleX(.8);
}

.mock-device {
  position: absolute;
  filter: drop-shadow(2cqw 4cqw 2.4cqw #0006);
}

.device-desktop {
  width: 86%;
  height: 58%;
  top: 28%;
  left: -1%;
  transform: perspective(120cqw) rotateY(9deg) rotateZ(-6deg);
  z-index: 2;
}

.device-shell {
  width: 100%;
  height: 100%;
  background: #191b20;
  border: 1px solid #898d99;
  border-radius: 2cqw;
  overflow: hidden;
  box-shadow: .6cqw .8cqw 0 #353942,1.2cqw 1.2cqw 0 #0c1017;
  padding: .65cqw;
}

.device-chrome {
  height: 4cqw;
  display: flex;
  align-items: center;
  padding-inline: 2cqw;
  gap: .7cqw;
  color: #81858d;
}

.device-chrome>i {
  height: .65cqw;
  width: .65cqw;
  border-radius: 50%;
  background: #6a6e78;
}

.device-chrome>span {
  margin: auto;
}

.device-display {
  background: var(--p-screen);
  height: calc(100% - 4cqw);
  border-radius: 1cqw;
  overflow: hidden;
  color: #f6f7f9;
  position: relative;
}

.screen-header {
  height: 7cqw;
  display: flex;
  align-items: center;
  gap: 4cqw;
  padding-inline: 3cqw;
  border-bottom: 1px solid #ffffff12;
}

.screen-header>b {
  margin-right: auto;
}

.screen-header>span {
  opacity: .65;
}

.screen-header>i {
  background: var(--p-accent);
  color: #152026;
  padding: .9cqw 1.4cqw;
  border-radius: .4cqw;
}

.screen-hero {
  height: 23cqw;
  padding: 3cqw;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(110deg,transparent 25%,color-mix(in srgb,var(--p-accent),transparent 82%));
}

.screen-hero>div:first-child {
  width: 60%;
  position: relative;
  z-index: 2;
}

.screen-hero small {
  display: block;
  margin-bottom: 1.4cqw;
  color: var(--p-accent);
}

.screen-hero strong {
  display: block;
  max-width: 95%;
}

.screen-hero em {
  display: inline-block;
  border: 1px solid #ffffff50;
  padding: 1cqw 1.5cqw;
  margin-top: 2cqw;
  border-radius: .5cqw;
}

.screen-art {
  position: absolute;
  right: 2%;
  top: 5%;
  width: 44%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 70cqw;
}

.screen-art:before {
  content: '';
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(at 27% 23%,#fff,var(--p-accent) 17%,color-mix(in srgb,var(--p-accent),black 20%) 47%,#050b1b 76%);
  border-radius: 50%;
  transform: rotate(-15deg);
  box-shadow: 1cqw 2cqw 3cqw #0005,inset -.3cqw -.4cqw .7cqw #ffffff55;
}

.screen-art>svg {
  position: relative;
  width: 60%;
  height: 60%;
  color: #f8ffff;
  filter: drop-shadow(0 .35cqw .3cqw #0008);
  transform: rotate(-12deg);
  z-index: 2;
}

.screen-art>i {
  position: absolute;
  width: 110%;
  height: 32%;
  border: .6cqw solid #ffffff75;
  border-radius: 50%;
  transform: rotate(-33deg);
  box-shadow: 0 0 1cqw var(--p-accent);
  z-index: 3;
}

.motif-royal .screen-art:before {
  border-radius: 18%;
  transform: rotate(-16deg);
}

.motif-royal .screen-art>i {
  display: none;
}

.motif-sport .screen-art:before {
  background: repeating-conic-gradient(from 15deg,#f3f5f6 0deg 54deg,#202733 54deg 74deg,#eef6f9 74deg 90deg);
  box-shadow: inset -3cqw -2cqw 3cqw #0008,1cqw 2cqw 2cqw #0005;
}

.motif-sport .screen-art>svg {
  color: var(--p-accent);
  width: 85%;
  height: 85%;
  stroke-width: .4;
  opacity: .4;
}

.motif-sport .screen-art>i {
  border: .2cqw solid var(--p-accent);
  box-shadow: 0 0 0 1cqw #ffffff0a;
  transform: rotate(-20deg);
  width: 140%;
  height: 45%;
}

.motif-arcade .screen-art:before {
  border-radius: 18%;
  transform: rotate(-22deg);
  width: 72%;
  background: linear-gradient(145deg,#fff,var(--p-accent) 20%,color-mix(in srgb,var(--p-accent),black 40%));
  box-shadow: 1cqw 1.4cqw 0 color-mix(in srgb,var(--p-accent),black 55%),2cqw 3cqw 3cqw #0004;
}

.motif-arcade .screen-art>i {
  display: none;
}

.motif-ocean .screen-art:before {
  border-radius: 42% 58% 65% 35%;
  background: linear-gradient(145deg,#dffaff,var(--p-accent),#076f9e);
}

.screen-categories {
  display: flex;
  gap: 1.7cqw;
  padding: 1.5cqw 3cqw;
  border-bottom: 1px solid #ffffff12;
  white-space: nowrap;
}

.screen-categories span:first-child {
  color: var(--p-accent);
}

.screen-section-title {
  padding: 2cqw 3cqw 1.5cqw;
  display: flex;
  justify-content: space-between;
}

.screen-section-title>span {
  color: var(--p-accent);
}

.screen-tiles {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.4cqw;
  padding-inline: 3cqw;
}

.screen-tile {
  height: 11cqw;
  background: linear-gradient(135deg,color-mix(in srgb,var(--p-accent),#8c3669 50%),#241c3d);
  border-radius: 1cqw;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #ffffff18;
}

.screen-tile>span {
  text-shadow: .3cqw .4cqw 0 #0004;
}

.screen-tile>small {
  white-space: nowrap;
  margin-top: .6cqw;
}

.tile-1 {
  background: linear-gradient(145deg,#6757b9,#2b2842);
}

.tile-2 {
  background: linear-gradient(145deg,#bfa476,#443152);
}

.tile-3 {
  background: linear-gradient(145deg,#258a9b,#163440);
}

.screen-bottom {
  margin: 2.2cqw 3cqw 0;
  background: #ffffff07;
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff0a;
  border-radius: .7cqw;
  padding: 2cqw;
}

.screen-bottom>span {
  opacity: .5;
  margin-top: .5cqw;
}

.screen-mobile-nav {
  display: none;
}

.device-mobile {
  width: 29%;
  height: 57%;
  top: 37%;
  right: 7%;
  z-index: 4;
  transform: perspective(120cqw) rotateY(-9deg) rotateZ(7deg);
}

.device-mobile .device-shell {
  padding: 1cqw;
  border-radius: 4cqw;
  box-shadow: .6cqw .5cqw 0 #9da6af,1cqw 1cqw 0 #121820;
}

.device-mobile .device-chrome {
  height: 3cqw;
  position: relative;
}

.device-mobile .device-chrome:after {
  content: '';
  position: absolute;
  width: 9cqw;
  height: 2.2cqw;
  background: #07080d;
  border-radius: 0 0 1.5cqw 1.5cqw;
  left: calc(50% - 4.5cqw);
  top: -.8cqw;
}

.device-mobile .device-chrome>* {
  display: none;
}

.device-mobile .device-display {
  height: calc(100% - 3cqw);
  border-radius: 0 0 3cqw 3cqw;
}

.device-mobile .screen-header {
  height: 6cqw;
  padding-inline: 1.5cqw;
  gap: 1cqw;
}

.device-mobile .screen-header>span {
  display: none;
}

.device-mobile .screen-header>i {
  padding: .6cqw .8cqw;
}

.device-mobile .screen-hero {
  height: 19cqw;
  padding: 2cqw;
  align-items: flex-start;
}

.device-mobile .screen-hero>div:first-child {
  width: 73%;
  z-index: 3;
}

.device-mobile .screen-hero strong {
  max-width: 100%;
}

.device-mobile .screen-hero small {
  margin-bottom: 1cqw;
}

.device-mobile .screen-hero em {
  padding: .7cqw;
  margin-top: 1cqw;
}

.device-mobile .screen-art {
  width: 65%;
  height: 70%;
  top: 29%;
  right: -6%;
}

.device-mobile .screen-categories {
  padding: 1.4cqw 1.5cqw;
  gap: 1.3cqw;
}

.device-mobile .screen-section-title {
  padding: 1.3cqw 1.5cqw;
}

.device-mobile .screen-section-title>span {
  display: none;
}

.device-mobile .screen-tiles {
  grid-template-columns: 1fr 1fr;
  gap: 1cqw;
  padding-inline: 1.5cqw;
}

.device-mobile .screen-tile {
  height: 8cqw;
}

.device-mobile .screen-bottom {
  display: none;
}

.device-mobile .screen-mobile-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--p-screen);
  height: 4cqw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: var(--p-accent);
  border-top: 1px solid #ffffff18;
}

.tone-ice {
  color: #172735;
}

.tone-ice .board-topline,
.tone-ice .board-footline {
  color: #1c2c37a6;
}

.tone-ice .device-display {
  color: #132a35;
}

.tone-ice .screen-hero small {
  color: #344f5c;
}

.tone-ice .screen-hero em {
  border-color: #12333355;
}

.tone-ice .screen-header,
.tone-ice .screen-categories {
  border-color: #17363b18;
}

.tone-ice .screen-categories span:first-child {
  color: #164448;
}

.tone-ice .screen-header>i {
  color: #132a35;
}

.tone-ice .screen-section-title>span {
  color: #224950;
}

.tone-ice .screen-bottom {
  background: #1c55530b;
  border-color: #1c555314;
}

.tone-ice .screen-mobile-nav {
  color: #1f4854;
  border-color: #12333322;
}

.layout-duo .device-desktop {
  width: 44%;
  height: 66%;
  left: 13%;
  top: 25%;
  transform: rotate(-9deg);
}

.layout-duo .device-desktop .device-shell {
  border-radius: 4cqw;
  padding: 1cqw;
}

.layout-duo .device-desktop .device-display {
  border-radius: 2cqw;
  height: calc(100% - 4cqw);
}

.layout-duo .device-desktop .screen-header>span {
  display: none;
}

.layout-duo .device-desktop .screen-hero {
  height: 29cqw;
  align-items: flex-start;
}

.layout-duo .device-desktop .screen-hero>div:first-child {
  width: 95%;
}

.layout-duo .device-desktop .screen-art {
  top: 26%;
  width: 75%;
  height: 90%;
  right: -15%;
  opacity: .7;
}

.layout-duo .device-desktop .screen-tiles {
  grid-template-columns: 1fr 1fr;
}

.layout-duo .device-desktop .screen-tile {
  height: 13cqw;
}

.layout-duo .device-desktop .screen-categories {
  gap: 1.4cqw;
}

.layout-duo .device-desktop .screen-section-title>span {
  display: none;
}

.layout-duo .device-mobile {
  width: 34%;
  height: 62%;
  right: 12%;
  top: 29%;
  transform: rotate(8deg);
}

.layout-editorial .device-desktop {
  width: 82%;
  height: 60%;
  top: 31%;
  left: 15%;
  transform: perspective(100cqw) rotateY(-9deg) rotateZ(7deg);
}

.layout-editorial .device-mobile {
  top: 30%;
  left: 6%;
  right: auto;
  transform: rotate(-9deg);
}

.layout-stack .device-desktop {
  top: 27%;
  width: 83%;
  height: 58%;
  left: 4%;
  transform: rotate(-4deg);
}

.layout-stack .device-mobile {
  right: 8%;
  top: 38%;
  transform: rotate(10deg);
}

@media (max-width:960px) {
  .portfolio-search {
    max-width: 380px;
  }

  .design-system-row {
    gap: 25px;
  }

  .design-palette {
    gap: 17px;
  }

  .design-swatch>i {
    width: 55px;
    height: 55px;
  }

  .design-typography {
    gap: 15px;
  }

}

@media (max-width:680px) {

  .portfolio-disclosure {
    padding-top: 17px;
  }

  .portfolio-search>input {
    padding: 10px 0;
  }

  .portfolio-home-note {
    margin-top: 18px;
  }

  .project-concept-notice {
    margin-top: 22px;
    padding: 15px;
    display: block;
  }

  .project-concept-notice>span {
    display: block;
    margin: 0 0 9px;
  }

  .design-system-row {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 23px;
  }

  .design-palette {
    gap: 23px;
  }

  .design-swatch>i {
    width: 60px;
    height: 60px;
  }

  .project-secondary-board {
    margin-top: 28px;
  }

  .portfolio-empty {
    padding: 40px 15px;
  }

}

@media (prefers-reduced-motion:reduce) {
  .project-visual {
    transition: none;
  }

  .project-image-link:hover .project-visual {
    transform: none;
  }

}

/* Source: src/styles/experience.css */
/* Image-led galleries, case study layouts, viewer and mobile service tracks. */
.header-inner {
  height: 76px;
}

.nav-group {
  height: 76px;
}

.nav-dropdown {
  top: 68px;
}

.nav-link.active {
  color: var(--accent);
}

.home-hero {
  min-height: 650px;
  height: 94svh;
  max-height: 870px;
  padding-top: 76px;
  padding-bottom: 80px;
}

.hero-bottom {
  bottom: 24px;
}

.highlights {
  padding-top: 40px;
}

.highlights .section-title {
  margin-bottom: 32px;
}

.highlights .section-title .eyebrow {
  margin-bottom: 15px;
}

.highlights .center-action {
  margin-top: 40px;
}

.project-image-link:focus-visible .project-hover {
  opacity: 1;
}

.project-hover {
  gap: 13px;
}

.project-image-link:after {
  content: 'View project ↗';
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #161519dc;
  backdrop-filter: blur(12px);
  padding: 9px 14px;
  border: 1px solid #ffffff26;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s,transform .2s;
  pointer-events: none;
}

.project-image-link:hover:after,
.project-image-link:focus-visible:after {
  opacity: 1;
  transform: none;
}

.brand-directory {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 25px;
}

.brand-directory>.eyebrow {
  margin-bottom: 16px;
}

.brand-index {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.brand-index a {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid #39353f;
  border-radius: 5px;
  color: #c9c5ce;
  min-height: 40px;
}

.brand-index .icon {
  width: 13px;
  height: 13px;
  color: #807987;
}

.brand-index a:hover {
  border-color: var(--accent);
  color: #fff;
  background: #f1533d0a;
}

/* Keep the first row of work visible without scrolling past an essay. */
.portfolio-hero {
  padding-top: 112px;
  padding-bottom: 22px;
}

.portfolio-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.portfolio-title-row .eyebrow {
  margin-bottom: 13px;
}

.portfolio-title-row h1 {
  margin: 0;
}

.portfolio-hero>.portfolio-deck {
  max-width: 780px;
  margin: 14px 0 0;
}

.portfolio-disclosure {
  border: 0;
  margin-top: 10px;
  padding: 0;
}

.portfolio-toolbar {
  padding-block: 10px;
}

.portfolio-toolbar .filter-button {
  min-height: 44px;
}

.portfolio-status {
  margin: 12px 0 18px;
}

.portfolio-toolbar .project-filters {
  row-gap: 8px;
}

.portfolio-search>input {
  min-height: 44px;
}

.project-grid {
  row-gap: 36px;
}

/* The cover and project context now share the first screen. */
.case-hero {
  padding-top: 116px;
}

.case-hero>.breadcrumbs {
  margin-bottom: 26px;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
  gap: 6%;
  align-items: center;
}

.case-hero-copy>.eyebrow {
  margin-bottom: 20px;
}

.case-hero-copy h1 {
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.case-hero-copy>p {
  max-width: 540px;
}

.case-hero-copy .project-concept-notice {
  display: block;
  margin-top: 23px;
  padding: 13px 16px;
  background: #201c20;
}

.case-hero-copy .project-concept-notice>span {
  display: block;
  margin: 0 0 5px;
}

.case-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 23px;
}

.case-jumps a {
  color: #ddd8e1;
  padding-block: 8px;
  border-bottom: 1px solid #5b505c;
}

.case-jumps a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.case-hero-art {
  min-width: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #111015;
}

.case-hero-art>.project-visual {
  aspect-ratio: 1;
}

.case-hero-art .visual-cover>img {
  object-fit: contain;
}

.artwork-open {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 15px;
  border: 1px solid #ffffff44;
  border-radius: 6px;
  background: #161519e8;
  backdrop-filter: blur(12px);
}

.artwork-open .icon {
  height: 16px;
  width: 16px;
}

.artwork-open:hover {
  border-color: var(--accent);
  background: var(--bg);
}

.case-facts {
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
  gap: 30px;
  border-block: 1px solid var(--line);
  margin: 42px 0 0;
  padding: 25px 0;
}

.case-facts dt {
  color: #aaa5b1;
  margin-bottom: 8px;
}

.case-facts dd {
  margin: 0;
  color: #e3e0e7;
}

.case-enquiry {
  margin-top: 20px;
  color: var(--accent);
}

.case-grid {
  padding-top: 70px;
}

.project-secondary-board figcaption {
  color: #aaa5b1;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-top: 0;
  text-align: center;
  background: #1a181e;
}

.project-next-section {
  padding-bottom: 80px;
}

.project-next-section>.section-title {
  align-items: center;
  margin-bottom: 23px;
}

.project-next-section>.section-title>.eyebrow {
  margin: 0;
}

.project-next-card {
  display: grid;
  grid-template-columns: 170px 1fr 60px;
  align-items: center;
  gap: 36px;
  border-block: 1px solid var(--line);
  padding: 24px 0;
}

.project-next-card>.project-visual {
  border-radius: 7px;
}

.project-next-card .eyebrow {
  margin-bottom: 12px;
}

.project-next-card h2 {
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}

.project-next-card p {
  margin: 0;
}

.project-next-card>.icon {
  width: 42px;
  height: 42px;
  justify-self: end;
  transition: transform .2s;
}

.project-next-card:hover h2 {
  color: var(--accent);
}

.project-next-card:hover>.icon {
  transform: translate(3px,-3px);
}

/* Native dialog supplies focus trapping, Escape and background inertness. */
body.artwork-opened {
  overflow: hidden;
}

.artwork-dialog {
  width: calc(100% - 40px);
  max-width: 1420px;
  height: calc(100dvh - 40px);
  max-height: none;
  padding: 0;
  border: 1px solid #4a444e;
  border-radius: 12px;
  background: #111015;
  color: white;
  overflow: hidden;
}

.artwork-dialog::backdrop {
  background: #08070bee;
  backdrop-filter: blur(12px);
}

.artwork-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 74px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--line);
}

.artwork-toolbar>div {
  margin-right: auto;
  min-width: 0;
}

.artwork-toolbar strong {
  display: block;
}

.artwork-toolbar span {
  color: var(--muted);
}

.artwork-toolbar button {
  border: 1px solid #514958;
  border-radius: 6px;
  background: #211e26;
  min-height: 44px;
  padding: 8px 15px;
}

.artwork-toolbar .artwork-close {
  width: 44px;
  display: grid;
  place-items: center;
  padding: 0;
}

.artwork-toolbar button:hover {
  border-color: var(--accent);
}

.artwork-canvas {
  height: calc(100% - 74px);
  overflow: auto;
  overscroll-behavior: contain;
  display: grid;
  place-items: center;
  padding: 20px;
}

.artwork-canvas img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.artwork-dialog.zoomed .artwork-canvas {
  display: block;
}

.artwork-dialog.zoomed img {
  width: 1200px;
  max-width: none;
  height: 1200px;
  max-height: none;
  margin: auto;
}

.service-controls {
  display: none;
}

@media (max-width:960px) {
  .project-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .portfolio-toolbar {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .portfolio-search {
    width: 210px;
  }

  .portfolio-toolbar .filter-button {
    padding-inline: 9px;
  }

  .portfolio-counter {
    gap: 12px;
  }

  .case-hero-grid {
    gap: 4%;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  }

  .case-hero-copy .project-concept-notice {
    padding: 10px 12px;
    margin-top: 15px;
  }

  .case-jumps {
    gap: 13px;
    margin-top: 15px;
  }

}

@media (max-width:760px) {
  .case-hero-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .case-hero-copy>p {
    max-width: 620px;
  }

  .case-hero-art {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .case-hero-copy .project-concept-notice {
    max-width: none;
  }

}

@media (max-width:680px) {
  .header-inner {
    height: 73px;
  }

  .home-hero {
    height: auto;
    max-height: none;
  }

  .hero-bottom {
    bottom: 14px;
  }

  .highlights {
    padding-top: 32px;
  }

  .highlights .section-title {
    flex-direction: row;
    align-items: flex-end;
    gap: 14px;
  }

  .highlights .section-title .eyebrow {
    margin-bottom: 11px;
  }

  .highlights h2 {
    max-width: 230px;
  }

  .highlights .section-title>.text-link {
    white-space: nowrap;
    margin-bottom: 3px;
    gap: 4px;
  }

  .highlights .section-title>.text-link .icon {
    width: 16px;
  }

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

  .project-image-link {
    border-radius: 8px;
  }

  .project-caption {
    padding-top: 15px;
  }

  .project-caption h3 {
    margin-bottom: 5px;
  }

  .project-caption p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .project-caption p>span {
    display: inline;
    margin: 0;
  }

  .project-image-link:after {
    display: none;
  }

  .brand-directory {
    margin-top: 30px;
    padding-top: 23px;
  }

  .brand-index {
    gap: 8px;
  }

  .brand-index a {
    min-height: 44px;
    padding: 9px 12px;
  }

  .portfolio-hero {
    padding-top: 108px;
    padding-bottom: 20px;
  }

  .portfolio-title-row {
    gap: 12px;
    align-items: center;
  }

  .portfolio-title-row .eyebrow {
    margin-bottom: 12px;
  }

  .portfolio-title-row h1 {
    margin: 0;
  }

  .portfolio-counter {
    display: block;
    text-align: right;
  }

  .portfolio-counter strong {
    display: block;
    margin-bottom: 5px;
  }

  .portfolio-counter span {
    display: block;
  }

  .portfolio-hero>.portfolio-deck {
    margin-top: 16px;
  }

  .portfolio-disclosure {
    margin-top: 14px;
    gap: 8px;
  }

  .disclosure-dot {
    width: 4px;
    height: 4px;
    margin-top: 7px;
  }

  .portfolio-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding-block: 11px;
    gap: 12px;
  }

  .portfolio-toolbar .project-filters {
    justify-content: space-between;
    gap: 3px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #615464 transparent;
  }

  .portfolio-toolbar .filter-button {
    padding: 10px 8px;
    gap: 5px;
    min-height: 44px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .portfolio-search {
    width: 100%;
    max-width: none;
  }

  .portfolio-search>input {
    padding-block: 9px;
  }

  .portfolio-status {
    margin: 15px 0 19px;
  }

  .case-hero {
    padding-top: 105px;
  }

  .case-hero>.breadcrumbs {
    margin-bottom: 22px;
  }

  .case-hero-copy h1 {
    margin-bottom: 16px;
  }

  .case-hero-copy>.eyebrow {
    margin-bottom: 14px;
  }

  .case-hero-copy>p {
    margin-bottom: 18px;
  }

  .case-hero-copy .project-concept-notice {
    padding: 12px 14px;
    margin-top: 16px;
  }

  .case-jumps a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .case-hero-grid {
    gap: 24px;
  }

  .artwork-open {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 9px 12px;
  }

  .case-facts {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 27px;
    padding: 22px 0;
  }

  .case-facts>div:last-child {
    grid-column: 1/-1;
  }

  .case-facts dt {
    margin-bottom: 6px;
  }

  .case-grid {
    padding-top: 43px;
    gap: 37px;
  }

  .case-grid .checklist {
    grid-template-columns: 1fr;
  }

  .case-grid aside {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .design-direction {
    padding-top: 0;
  }

  .project-secondary-board figcaption {
    padding: 14px;
  }

  .project-next-section {
    padding-bottom: 50px;
  }

  .project-next-section>.section-title {
    flex-direction: row;
  }

  .project-next-card {
    grid-template-columns: 90px 1fr 22px;
    gap: 16px;
    padding: 20px 0;
  }

  .project-next-card .eyebrow {
    margin-bottom: 8px;
  }

  .project-next-card>.icon {
    width: 22px;
    height: 22px;
  }

  .project-next-card .mock-caption {
    display: none;
  }

  .artwork-dialog {
    width: 100%;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    margin: 0;
  }

  .artwork-toolbar {
    padding: 12px;
    height: 76px;
    gap: 8px;
  }

  .artwork-toolbar button {
    padding-inline: 10px;
  }

  .artwork-canvas {
    height: calc(100% - 76px);
    padding: 12px;
  }

  .artwork-canvas img {
    width: 100%;
    height: auto;
  }

  .service-carousel .services-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding: 0 0 12px;
    scrollbar-width: thin;
    scrollbar-color: #615464 transparent;
    overscroll-behavior-x: contain;
  }

  .service-carousel .service-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 0;
    padding: 0 25px 27px;
  }

  .service-carousel .service-illustration {
    height: 160px;
  }

  .service-carousel .service-card:hover {
    transform: none;
  }

  .service-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 12px;
  }

  .service-controls>span {
    color: #b2aab8;
  }

  .service-controls b {
    margin-left: 15px;
    color: #e5dde9;
  }

  .service-controls>div {
    display: none;
    gap: 8px;
  }

  .is-interactive .service-controls>div {
    display: flex;
  }

  .service-controls button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #4a414e;
    border-radius: 50%;
    background: transparent;
    padding: 10px;
  }

  .service-controls button:disabled {
    opacity: .3;
    cursor: default;
  }

  .service-controls .service-prev .icon {
    transform: rotate(180deg);
  }

}

@media (prefers-reduced-motion:reduce) {
  .project-image-link:after,
  .project-next-card>.icon {
    transition: none;
  }

  .service-carousel .services-grid {
    scroll-behavior: auto;
  }

}

@media (max-width:360px) {
  .portfolio-toolbar .filter-button {
    padding-inline: 6px;
  }

  .portfolio-toolbar .project-filters {
    justify-content: flex-start;
    gap: 2px;
  }

}

/* Source: src/styles/artwork.css */
/* Locally hosted reference artwork: proportions, placement and responsive crops. */
.hero-art {
  width: 62%;
  right: -4%;
  top: 50%;
  height: auto;
}

.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1029/859;
  object-fit: contain;
  mask-image: none;
}

.hero-copy {
  width: 46%;
}

.reference-service-art {
  height: 225px;
}

.reference-service-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transition: transform .3s;
}

.service-card:hover .reference-service-art img {
  transform: translateY(-5px);
}

.growth-art {
  mask-image: none;
  border-radius: 12px;
  object-fit: contain;
}

.about-home-art {
  width: 100%;
  max-width: 500px;
  margin-top: 40px;
  height: auto;
  object-fit: contain;
}

.reference-about-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4%;
  align-items: center;
  padding-bottom: 70px;
}

.reference-about-hero p {
  max-width: 620px;
}

.about-hero-art {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-hero-art {
  height: auto;
  max-width: 1000px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: #131216;
}

.service-hero-art img {
  object-fit: contain;
  mask-image: none;
}

.group-divider {
  height: auto;
  aspect-ratio: 16/7;
  max-height: 620px;
  background: #131216;
}

.group-divider img {
  object-fit: contain;
}

.project-cta {
  background: #ff422b;
  border: 0;
}

.project-cta::after {
  display: none;
}

.cta-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.project-cta h2,
.project-cta .accent,
.project-cta .eyebrow,
.project-cta p {
  color: #17151a;
}

.project-cta .button-solid {
  color: #fff;
  background: #17151a;
  border-color: #17151a;
}

.project-cta .button-solid:hover {
  background: #30262c;
  border-color: #30262c;
}

.contact-hero-art {
  object-position: 62% center;
}

.contact-hero:after {
  background: linear-gradient(90deg,#161519ef 8%,#161519ab 36%,#16151900 74%);
}

@media (min-width:1600px) {
  .hero-art {
    width: 64%;
    right: -5%;
  }

}

@media (min-width:681px) and (max-width:960px) {
  .hero-art {
    width: 68%;
    right: -5%;
  }

  .reference-about-hero {
    gap: 2%;
  }

}

@media (max-width:680px) {
  .home-hero {
    padding-top: 117px;
    padding-bottom: 350px;
    min-height: 740px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-art {
    width: 100%;
    max-width: 460px;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 44px;
    height: 320px;
    transform: translateX(-50%);
  }

  .hero-art img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    mask-image: none;
  }

  .service-carousel .reference-service-art {
    height: 220px;
  }

  .growth-art {
    height: 270px;
    object-fit: contain;
    margin: 0 0 25px;
  }

  .about-home-art {
    max-width: 410px;
    margin-top: 28px;
  }

  .reference-about-hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
    padding-bottom: 35px;
    gap: 22px;
  }

  .reference-about-hero p {
    margin-bottom: 0;
  }

  .about-hero-art {
    height: 240px;
  }

  .service-hero-art {
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 28px;
  }

  .group-divider {
    height: auto;
    aspect-ratio: 16/9;
  }

  .group-divider img {
    object-fit: contain;
  }

  .contact-hero-art {
    width: 150%;
    left: -40%;
    object-position: 60% center;
    opacity: .8;
  }

  .contact-hero:after {
    background: linear-gradient(90deg,#161519e6,#16151970);
  }

}

@media (prefers-reduced-motion:reduce) {
  .reference-service-art img {
    transition: none;
  }

}

/* Source: src/styles/brand.css */
/* One outlined logo shared by the header, menu and footer. */
.brand-logo {
  display: block;
  width: 210px;
  height: auto;
  max-width: 100%;
  flex-shrink: 0;
}

.footer-brand .brand-logo {
  width: 256px;
}

.menu-top .brand-logo {
  width: 238px;
}

.site-header .brand:focus-visible,
.footer-brand>a:focus-visible {
  outline-offset: 7px;
}

@media (max-width:1100px) {
  .site-header .brand-logo {
    width: 190px;
  }

}

@media (max-width:680px) {
  .site-header .brand-logo {
    width: 172px;
  }

  .menu-top .brand-logo {
    width: 210px;
  }

  .footer-brand .brand-logo {
    width: 240px;
  }

}

@media (max-width:360px) {
  .site-header .brand-logo {
    width: 134px;
  }

}

/* Source: src/styles/typography.css */
/* Shared typography roles; sizes in code-native project artwork are intentional. */
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
}

h1 {
  font-size: var(--text-h1);
  line-height: var(--leading-h1);
  letter-spacing: var(--tracking-h1);
  margin-bottom: 25px;
}

h2 {
  font-size: var(--text-h2);
  line-height: var(--leading-h2);
  letter-spacing: var(--tracking-h2);
  margin-bottom: 27px;
}

.article-body h2,
.policy-body h2,
.enquiry-form h2,
.case-grid > div > h2 {
  font-size: var(--text-heading-small);
  line-height: 1.2;
}

.button, .text-link {
  font-family: var(--font-display);
  font-size: var(--text-action);
  font-weight: var(--weight-display);
  line-height: var(--leading-body);
}

.header-cta {
  font-size: var(--text-action-small);
}

.nav-link {
  font-size: var(--text-nav);
  font-weight: var(--weight-nav);
  line-height: var(--leading-body);
}

.nav-dropdown a {
  font-size: var(--text-subnav);
  font-weight: var(--weight-body);
}

.menu-content nav > a {
  font-family: var(--font-display);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-card-heading);
  font-weight: var(--weight-card);
  letter-spacing: normal;
  line-height: var(--leading-body);
}

.service-card > p {
  font-family: var(--font-card-copy);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.section-intro p {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

/* Layout component annotations and illustrated project boards. */
button,
input,
select,
textarea {
  font: inherit;
}

h3,
h4 {
  line-height: 1.14;
  letter-spacing: -.04em;
}

h3 {
  font-size: 26px;
  letter-spacing: -.035em;
}

.lead {
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: -.025em;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.nav-toggle {
  font-size: 17px;
  line-height: 1;
}

.side-rail {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .015em;
}

.back-top {
  font-size: 12px;
  font-weight: 600;
}

.menu-content nav>a {
  font-size: clamp(28px,3.5vw,52px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.04em;
}

.menu-content nav>a small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-copy>.eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
}

.hero-bottom {
  font-size: 10px;
  letter-spacing: .15em;
}

.hero-bottom a {
  font-size: 11px;
  letter-spacing: .03em;
}

.hero-bottom a span {
  font-size: 19px;
}

.section-note {
  font-size: 12px;
}

.project-caption p>span {
  text-transform: uppercase;
  letter-spacing: .05em;
}

.about-text p {
  font-size: 17px;
}

.disciplines>div>span {
  font-weight: 700;
  letter-spacing: -.04em;
  font-size: clamp(20px,2.5vw,34px);
}

.step-number {
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -.06em;
  font-weight: 700;
}

.process-grid h3 {
  font-size: 24px;
}

.process-grid p {
  font-size: 15px;
}

.project-cta:after {
  font-size: 450px;
  font-weight: 900;
  line-height: 1;
}

.cta-inner .eyebrow {
  font-size: 10px;
}

.cta-inner p {
  font-size: 16px;
}

.article-meta {
  font-size: 11px;
}

.article-card h3 {
  font-size: 24px;
  line-height: 1.3;
}

.article-card p {
  font-size: 14px;
  line-height: 1.7;
}

.faq-item summary {
  font-weight: 600;
  font-size: 18px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.8;
}

.mini-label {
  font-size: 7px;
  letter-spacing: .12em;
  font-weight: 600;
}

.roll-word {
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}

.mock-caption {
  font-size: 6px;
  letter-spacing: .14em;
}

.nova-word {
  font-size: clamp(32px,5.4vw,83px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.08em;
}

.nova-word>span {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .3em;
}

.odd-word {
  font-size: clamp(38px,5vw,76px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .81;
}

.sports-label {
  font-size: 7px;
  letter-spacing: .2em;
}

.mini-browser>div {
  font-size: 9px;
  font-weight: 800;
}

.mini-browser>div>span {
  font-size: 5px;
  font-weight: 400;
}

.mini-browser b {
  font-size: 19px;
  letter-spacing: -.04em;
  line-height: 1;
}

.mini-browser i {
  font-size: 5px;
  font-style: normal;
  line-height: 1;
}

.mini-browser>footer {
  font-size: 5px;
}

.volt-bolt {
  font-size: clamp(180px,31vw,450px);
  font-weight: 800;
  line-height: 1.5;
}

.volt-type {
  font-size: clamp(48px,6.4vw,93px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: 1;
}

.volt-type>span {
  font-size: 8px;
  letter-spacing: .12em;
}

.orbit-core {
  font-size: clamp(30px,4vw,62px);
  font-weight: 500;
  letter-spacing: -.06em;
}

.orbit-core>span {
  font-size: 7px;
  letter-spacing: .23em;
}

.orbit-node {
  font-size: 6px;
  letter-spacing: .1em;
}

.wager-project-word {
  font-size: clamp(25px,3.4vw,50px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1.1;
}

.wager-project-word span {
  font-size: 6px;
  letter-spacing: .3em;
}

.internal-hero>p {
  font-size: 20px;
  line-height: 1.7;
}

.filter-button {
  font-size: 14px;
}

.breadcrumbs {
  font-size: 12px;
}

.split-section p {
  font-size: 18px;
}

.small-number {
  font-size: 13px;
}

.detail-card>h3 {
  font-size: 21px;
  line-height: 1.25;
}

.detail-card>p {
  font-size: 14px;
}

.more-services>a>span {
  font-size: 14px;
  font-weight: 600;
}

.case-grid aside>h3 {
  font-size: 24px;
}

.checklist>li {
  font-size: 14px;
}

.case-grid>div>p {
  font-size: 18px;
}

.article-layout nav>a {
  font-size: 13px;
  line-height: 1.6;
}

.article-body p {
  font-size: 17px;
  line-height: 1.9;
}

.contact-hero p {
  font-size: 18px;
}

.contact-hero .eyebrow {
  font-size: 10px;
}

.enquiry-form>p {
  font-size: 13px;
  line-height: 1.7;
}

.enquiry-form label {
  font-size: 12px;
}

.enquiry-form input:not([type=checkbox]),
.enquiry-form select,
.enquiry-form textarea {
  font-size: 14px;
}

.enquiry-form .consent {
  font-size: 11px;
  line-height: 1.8;
}

.form-status {
  font-size: 13px;
  line-height: 1.75;
}

.form-status a {
  font-weight: 700;
}

.contact-aside h3 {
  font-size: 29px;
  line-height: 1.25;
}

.contact-aside p {
  font-size: 15px;
}

.policy-body p {
  font-size: 16px;
  line-height: 1.9;
}

.footer-brand>p {
  font-size: 14px;
}

.footer-grid h3 {
  font-size: 17px;
  letter-spacing: 0;
}

.footer-grid>div:not(.footer-brand)>a {
  font-size: 13px;
}

.footer-brand .contact-links {
  font-size: 12px;
}

.footer-bottom {
  font-size: 10px;
}

@media (max-width:1150px) {
  .side-rail {
    font-size: 10px;
  }

  .back-top {
    font-size: 10px;
  }

  .project-caption p>span {
    font-size: 8px;
  }

}

@media (max-width:960px) {
  .project-caption h3 {
    font-size: 24px;
  }

  .project-caption p {
    font-size: 12px;
  }

  .project-caption p>span {
    font-size: 8px;
  }

  .about-text p {
    font-size: 15px;
  }

  .process-grid h3 {
    font-size: 21px;
  }

  .process-grid p {
    font-size: 13px;
  }

  .article-card h3 {
    font-size: 21px;
  }

  .article-card p {
    font-size: 13px;
  }

  .more-services>a>span {
    font-size: 12px;
  }

}

@media (max-width:680px) {
  .hero-copy>.eyebrow {
    font-size: 9px;
    letter-spacing: .14em;
  }

  .hero-bottom>span {
    font-size: 7px;
    letter-spacing: .08em;
  }

  .hero-bottom a {
    font-size: 9px;
  }

  .hero-bottom a span {
    font-size: 15px;
  }

  .section-note {
    font-size: 10px;
  }

  .project-caption p>span {
    letter-spacing: .04em;
  }

  .roll-word {
    font-size: 21px;
  }

  .mock-caption {
    font-size: 4px;
  }

  .mini-label {
    font-size: 4px;
  }

  .nova-word {
    font-size: 37px;
  }

  .nova-word>span {
    font-size: 4px;
  }

  .odd-word {
    font-size: 38px;
  }

  .sports-label {
    font-size: 4px;
  }

  .mini-browser>div {
    font-size: 5px;
  }

  .mini-browser>div>span {
    font-size: 3px;
  }

  .mini-browser b {
    font-size: 11px;
  }

  .mini-browser i {
    font-size: 3px;
  }

  .mini-browser>footer {
    font-size: 3px;
  }

  .volt-bolt {
    font-size: 200px;
  }

  .volt-type {
    font-size: 45px;
  }

  .volt-type>span {
    font-size: 4px;
  }

  .orbit-core {
    font-size: 29px;
  }

  .orbit-core>span {
    font-size: 4px;
  }

  .orbit-node {
    font-size: 3px;
  }

  .wager-project-word {
    font-size: 23px;
  }

  .wager-project-word>span {
    font-size: 3px;
    letter-spacing: .2em;
  }

  .section-intro .eyebrow {
    font-size: 9px;
  }

  .about-text>.lead {
    font-size: 19px;
  }

  .about-text p {
    font-size: 14px;
  }

  .disciplines>.eyebrow {
    font-size: 9px;
  }

  .disciplines>div>span {
    font-size: 23px;
  }

  .step-number {
    font-size: 36px;
  }

  .process-grid h3 {
    font-size: 21px;
  }

  .process-grid p {
    font-size: 13px;
  }

  .cta-inner p {
    font-size: 14px;
  }

  .project-cta:after {
    font-size: 350px;
  }

  .article-meta {
    font-size: 10px;
  }

  .article-card h3 {
    font-size: 23px;
  }

  .article-card p {
    font-size: 14px;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 13px;
  }

  .menu-content nav>a {
    font-size: 30px;
  }

  .menu-aside .eyebrow {
    font-size: 9px;
  }

  .menu-aside p {
    font-size: 14px;
  }

  .menu-aside .contact-links {
    font-size: 13px;
  }

  .internal-hero>.eyebrow {
    font-size: 9px;
  }

  .internal-hero>p {
    font-size: 16px;
    line-height: 1.8;
  }

  .service-hero>.lead {
    font-size: 17px;
  }

  .breadcrumbs {
    font-size: 10px;
  }

  .split-section .eyebrow {
    font-size: 10px;
  }

  .split-section p {
    font-size: 15px;
  }

  .detail-card h3 {
    font-size: 17px;
    line-height: 1.3;
  }

  .detail-card p {
    font-size: 12px;
  }

  .small-number {
    font-size: 11px;
  }

  .more-services>a>span {
    font-size: 14px;
  }

  .filter-button {
    font-size: 12px;
  }

  .case-grid aside>.eyebrow {
    font-size: 9px;
  }

  .case-grid>div>p {
    font-size: 16px;
  }

  .article-layout nav>a {
    font-size: 12px;
  }

  .article-body p {
    font-size: 15px;
    line-height: 1.85;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-hero .eyebrow {
    font-size: 8px;
    line-height: 1.7;
  }

  .enquiry-form>p {
    font-size: 12px;
  }

  .enquiry-form label {
    font-size: 11px;
  }

  .enquiry-form input:not([type=checkbox]),
  .enquiry-form select,
  .enquiry-form textarea {
    font-size: 16px;
  }

  .enquiry-form .consent {
    font-size: 10px;
  }

  .contact-aside>.eyebrow {
    font-size: 10px;
  }

  .contact-aside h3 {
    font-size: 27px;
  }

  .contact-aside p {
    font-size: 14px;
  }

  .policy-body p {
    font-size: 14px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-grid h3 {
    font-size: 15px;
  }

  .footer-grid>div:not(.footer-brand)>a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 9px;
  }

}

@media (max-width:360px) {
  .hero-copy>.eyebrow {
    font-size: 8px;
  }

  .hero-bottom>span {
    font-size: 6px;
  }

}

/* Typography from portfolio components */

.portfolio-counter strong {
  letter-spacing: -.075em;
  line-height: 1;
  font-weight: 500;
}

.portfolio-counter span {
  letter-spacing: .12em;
  line-height: 1.8;
}

.portfolio-disclosure p {
  line-height: 1.8;
}

.portfolio-disclosure strong {
  font-weight: 500;
}

.portfolio-toolbar .filter-button {
  font-size: 13px;
}

.filter-button>span {
  font-size: 10px;
  letter-spacing: 0;
}

.portfolio-search>input {
  font-size: 13px;
}

.portfolio-empty p {
  font-size: 15px;
}

.portfolio-home-note {
  font-size: 11px;
}

.project-concept-notice>span {
  font-size: 9px;
  letter-spacing: .09em;
}

.project-concept-notice>p {
  font-size: 12px;
  line-height: 1.8;
}

.design-swatch>span {
  font-size: 10px;
  letter-spacing: .03em;
}

.design-typography>span {
  font-size: 70px;
  line-height: 1;
  letter-spacing: -.055em;
}

.design-typography b {
  font-size: 14px;
  font-weight: 500;
}

.design-typography p {
  font-size: 12px;
}

.web-design-board {
  font-family: var(--font-display);
}

.board-topline,
.board-footline {
  font-size: 1.8cqw;
  letter-spacing: .12em;
}

.board-brand {
  font-size: 10.5cqw;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.055em;
}

.board-brand>span {
  font-size: 2.5cqw;
  font-weight: 400;
}

.device-chrome>span {
  font-size: 1cqw;
}

.screen-header {
  font-size: 1.5cqw;
}

.screen-header>b {
  font-size: 3.7cqw;
  letter-spacing: -.06em;
  line-height: 1;
}

.screen-header>span {
  font-size: 1.35cqw;
}

.screen-header>i {
  font-size: 1.3cqw;
  font-style: normal;
}

.screen-hero small {
  font-size: .95cqw;
  letter-spacing: .18em;
}

.screen-hero strong {
  font-size: 4.5cqw;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.screen-hero em {
  font-size: 1.2cqw;
  font-style: normal;
}

.screen-categories {
  font-size: 1.2cqw;
}

.screen-categories span:first-child {
  font-weight: 700;
}

.screen-section-title {
  font-size: 1.9cqw;
  font-weight: 500;
}

.screen-section-title>span {
  font-size: 1.1cqw;
}

.screen-tile>span {
  font-family: var(--font-preview-serif);
  font-size: 5.5cqw;
  line-height: 1.1;
}

.screen-tile>small {
  font-size: 1.2cqw;
  letter-spacing: .01em;
}

.screen-bottom b {
  font-size: 2cqw;
}

.screen-bottom>span {
  font-size: 1.25cqw;
}

.device-mobile .screen-header>b {
  font-size: 3cqw;
}

.device-mobile .screen-header>i {
  font-size: .8cqw;
}

.device-mobile .screen-hero strong {
  font-size: 3cqw;
}

.device-mobile .screen-hero small {
  font-size: .65cqw;
}

.device-mobile .screen-hero em {
  font-size: .65cqw;
}

.device-mobile .screen-categories {
  font-size: .8cqw;
}

.device-mobile .screen-section-title {
  font-size: 1.25cqw;
}

.device-mobile .screen-tile>span {
  font-size: 3.8cqw;
}

.device-mobile .screen-tile>small {
  font-size: .8cqw;
}

.device-mobile .screen-mobile-nav {
  font-size: 2cqw;
}

.layout-duo .device-desktop .screen-categories {
  font-size: 1cqw;
}

.layout-duo .device-desktop .screen-section-title {
  font-size: 1.5cqw;
}

@media (max-width:960px) {

  .portfolio-counter strong {
    font-size: 62px;
  }

  .design-typography>span {
    font-size: 56px;
  }

}

@media (max-width:680px) {
  .portfolio-hero>.eyebrow {
    font-size: 8px;
  }

  .filter-button>span {
    font-size: 8px;
  }

  .portfolio-home-note {
    font-size: 10px;
    line-height: 1.8;
  }

  .highlights .section-title>.section-note {
    font-size: 9px;
  }

  .project-concept-notice>span {
    font-size: 8px;
  }

  .project-concept-notice>p {
    font-size: 11px;
  }

  .design-swatch>span {
    font-size: 9px;
  }

  .design-typography>span {
    font-size: 52px;
  }

  .design-typography b {
    font-size: 12px;
  }

  .design-typography p {
    font-size: 11px;
  }

  .portfolio-empty p {
    font-size: 13px;
  }

}

/* Typography from experience components */
.project-caption h3 {
  font-size: 27px;
}

.project-caption p {
  font-size: 14px;
}

.project-caption p>span {
  font-size: 10px;
}

.project-image-link:after {
  font-size: 12px;
  font-weight: 500;
}

.brand-directory>.eyebrow {
  font-size: 10px;
}

.brand-index a {
  font-size: 13px;
}

.portfolio-title-row .eyebrow {
  font-size: 10px;
}

.portfolio-counter strong {
  font-size: 52px;
}

.portfolio-counter span {
  font-size: 9px;
}

.portfolio-hero>.portfolio-deck {
  font-size: 16px;
  line-height: 1.7;
}

.portfolio-disclosure p {
  font-size: 11px;
}

.portfolio-status {
  font-size: 12px;
}

.case-hero-copy>.eyebrow {
  font-size: 10px;
}

.case-hero-copy>p {
  font-size: 17px;
  line-height: 1.8;
}

.case-hero-copy .project-concept-notice>span {
  font-size: 9px;
}

.case-hero-copy .project-concept-notice>p {
  font-size: 11px;
  line-height: 1.7;
}

.case-jumps a {
  font-size: 12px;
}

.artwork-open {
  font-size: 12px;
  font-weight: 500;
}

.case-facts dt {
  font-size: 9px;
  letter-spacing: .13em;
}

.case-facts dd {
  font-size: 14px;
}

.case-enquiry {
  font-size: 13px;
}

.project-secondary-board figcaption {
  font-size: 12px;
}

.project-next-card .eyebrow {
  font-size: 9px;
}

.project-next-card p {
  font-size: 13px;
}

.artwork-toolbar strong {
  font-size: 17px;
}

.artwork-toolbar span {
  font-size: 11px;
}

.artwork-toolbar button {
  font-size: 12px;
}

@media (max-width:960px) {
  .portfolio-toolbar .filter-button {
    font-size: 11px;
  }

  .case-hero-copy>p {
    font-size: 15px;
  }

  .case-jumps a {
    font-size: 11px;
  }

}

@media (max-width:680px) {
  .highlights .section-title .eyebrow {
    font-size: 8px;
  }

  .project-caption h3 {
    font-size: 26px;
  }

  .project-caption p {
    font-size: 13px;
  }

  .project-caption p>span {
    font-size: 9px;
  }

  .project-card .roll-word {
    font-size: 38px;
  }

  .project-card .mock-caption {
    font-size: 6px;
  }

  .brand-index a {
    font-size: 12px;
  }

  .brand-directory>.eyebrow {
    font-size: 9px;
  }

  .portfolio-title-row .eyebrow {
    font-size: 8px;
  }

  .portfolio-counter strong {
    font-size: 32px;
  }

  .portfolio-counter span {
    font-size: 7px;
    line-height: 1.4;
  }

  .portfolio-hero>.portfolio-deck {
    font-size: 14px;
    line-height: 1.75;
  }

  .portfolio-disclosure p {
    font-size: 10px;
    line-height: 1.7;
  }

  .portfolio-toolbar .filter-button {
    font-size: 10px;
  }

  .portfolio-search>input {
    font-size: 16px;
  }

  .portfolio-status {
    font-size: 11px;
  }

  .case-hero>.breadcrumbs {
    font-size: 10px;
  }

  .case-hero-copy>.eyebrow {
    font-size: 9px;
  }

  .case-hero-copy>p {
    font-size: 15px;
    line-height: 1.75;
  }

  .case-hero-copy .project-concept-notice>p {
    font-size: 11px;
  }

  .case-jumps a {
    font-size: 12px;
  }

  .artwork-open {
    font-size: 11px;
  }

  .case-hero-art .roll-word {
    font-size: 38px;
  }

  .case-hero-art .mock-caption {
    font-size: 6px;
  }

  .case-facts dt {
    font-size: 8px;
  }

  .case-facts dd {
    font-size: 13px;
  }

  .case-grid .checklist li {
    font-size: 13px;
  }

  .project-secondary-board figcaption {
    font-size: 10px;
  }

  .project-next-card p {
    font-size: 10px;
  }

  .project-next-card .eyebrow {
    font-size: 8px;
  }

  .project-next-card .roll-word {
    font-size: 14px;
  }

  .artwork-toolbar strong {
    font-size: 15px;
  }

  .artwork-toolbar span {
    font-size: 9px;
  }

  .artwork-toolbar button {
    font-size: 11px;
  }

  .service-controls>span {
    font-size: 11px;
  }

  .service-controls b {
    font-weight: 400;
  }

}

/* Typography from artwork components */
.reference-about-hero p {
  font-size: 20px;
  line-height: 1.7;
}

@media (max-width:680px) {
  .reference-about-hero p {
    font-size: 16px;
  }

}
