@font-face {
  font-family: Jakarta;
  src: url("../fonts/plus-jakarta-sans-vietnamese-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("../fonts/plus-jakarta-sans-vietnamese-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("../fonts/plus-jakarta-sans-vietnamese-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("../fonts/plus-jakarta-sans-vietnamese-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("../fonts/plus-jakarta-sans-vietnamese-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
:root {
  --type-body: 17px;
  --type-control: 15px;
  --type-label: 12px;
  --paper: #f5f4ef;
  --ink: #242722;
  --muted: #66685f;
  --orange: #c64725;
  --line: #d9dad1;
  --dark: #252c27;
  --sans: Jakarta, Arial, sans-serif;
  --mono: Consolas, "Courier New", monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}
::selection {
  background: #f4c0a9;
  color: var(--ink);
}
.shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.orange-text {
  color: var(--orange);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 400;
}
.orange-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 1px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 244, 239, 0.96);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand-tech {
  font-weight: 500;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 500;
}
.navigation > a {
  padding-block: 12px;
}
.navigation > a:not(.nav-contact) {
  position: relative;
}
.navigation > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--orange);
  transition: right 0.25s;
}
.navigation > a:hover::after {
  right: 0;
}
.navigation .nav-contact {
  margin-left: 12px;
  padding: 11px 19px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 3px;
  display: flex;
  gap: 28px;
  align-items: center;
  transition: background 0.2s;
}
.nav-contact:hover {
  background: var(--orange);
}
.nav-contact span {
  font-size: 20px;
  line-height: 1;
}
.menu-toggle {
  display: none;
}
.hero {
  padding-top: 43px;
}
.hero-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-index {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}
.hero-heading {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  align-items: end;
  gap: 40px;
  margin: 30px 0 54px;
}
h1 {
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -4.8px;
}
.matter {
  position: relative;
  display: inline-block;
}
.matter svg {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 800;
  animation: underline-in 1.3s 0.2s both;
}
.hero-summary {
  max-width: 340px;
  padding-bottom: 2px;
}
.hero-summary p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}
.hero-summary strong {
  font-weight: 500;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.text-link span {
  font-size: 21px;
  line-height: 1;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.hero-summary .text-link {
  margin-top: 14px;
}
.product-stage {
  height: 540px;
  position: relative;
  isolation: isolate;
  background: #dfe3da;
  overflow: hidden;
  border-radius: 5px;
}
.stage-topline {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: #5d685b;
}
.stage-topline span:last-child {
  letter-spacing: 0;
  font-family: var(--sans);
  font-size: 11px;
}
.stage-topline span:last-child span {
  margin-left: 8px;
  font-size: 18px;
}
.stage-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(#75836c0b 1px, transparent 1px),
    linear-gradient(90deg, #75836c0b 1px, transparent 1px);
  background-size: 48px 48px;
}
.web-concept {
  position: absolute;
  width: 58%;
  left: 22%;
  top: 85px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 45px #27302121;
  transform: rotate(-4deg);
  animation: website-enter 1s both;
}
.browser-bar {
  height: 32px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #faf9f5;
  color: #68695e;
  font-size: 8px;
  font-family: var(--mono);
}
.browser-dots {
  font-size: 6px;
  letter-spacing: 3px;
  color: #b1b5a6;
}
.editorial-site {
  height: 326px;
  position: relative;
  background: #405550;
  color: #fff;
}
.editorial-site > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74);
}
.editorial-nav {
  position: absolute;
  top: 21px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
}
.editorial-nav b {
  font-size: 17px;
  letter-spacing: -0.7px;
}
.editorial-title {
  position: absolute;
  top: 84px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 0.99;
  letter-spacing: -2px;
}
.editorial-bottom {
  position: absolute;
  bottom: 25px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
}
.round-arrow {
  border: 1px solid #ffffff80;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.phone-concept {
  position: absolute;
  width: 208px;
  left: 8%;
  top: 100px;
  z-index: 3;
  border: 6px solid #30382f;
  border-radius: 32px;
  background: #f5f4ec;
  padding: 10px 12px 12px;
  box-shadow: 0 24px 32px #26331b30;
  transform: rotate(-9deg);
  animation: phone-enter 1.2s both;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 700;
  padding: 0 3px 14px;
}
.phone-title {
  font-family: Georgia, serif;
  line-height: 0.95;
  font-size: 28px;
  letter-spacing: -1px;
  position: relative;
}
.phone-title > span {
  font-size: 15px;
  position: absolute;
  right: 4px;
  top: 0;
}
.phone-concept > p {
  font-size: 7px;
  color: #66685f;
  margin: 7px 0 12px;
}
.phone-photo {
  height: 200px;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
}
.phone-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}
.phone-photo > span {
  position: absolute;
  bottom: 14px;
  left: 12px;
  color: white;
  font-size: 6px;
  letter-spacing: 1px;
  line-height: 2.2;
}
.phone-photo b {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.phone-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  margin-top: 10px;
}
.phone-circle {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  font-size: 15px;
}
.home-indicator {
  height: 3px;
  width: 58px;
  background: #30382f;
  border-radius: 5px;
  margin: 12px auto 0;
}
.saas-concept {
  position: absolute;
  right: 5%;
  bottom: 70px;
  width: 300px;
  background: #fffefb;
  transform: rotate(5deg);
  box-shadow: 0 18px 36px #29342025;
  border: 1px solid #d4d8cf;
  border-radius: 7px;
  z-index: 4;
  animation: saas-enter 1.4s both;
}
.saas-heading {
  border-bottom: 1px solid #e7e8e1;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
}
.saas-heading i {
  width: 10px;
  height: 10px;
  background: var(--orange);
  display: inline-block;
  vertical-align: -1px;
  margin-right: 5px;
  border-radius: 2px;
}
.saas-body {
  padding: 19px 16px 12px;
}
.saas-eyebrow {
  font-family: var(--mono);
  font-size: 6px;
  color: #72786a;
  letter-spacing: 1px;
  margin-bottom: 7px;
}
.saas-body > b {
  display: block;
  font-size: 14px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.task {
  font-size: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}
.task-check {
  width: 11px;
  height: 11px;
  border: 1px solid #c4c9bd;
  border-radius: 50%;
  font-size: 7px;
  display: grid;
  place-items: center;
}
.task-check.done {
  background: #e1e8d6;
  border: 0;
  color: #465b34;
}
.task small {
  font-size: 6px;
  margin-left: auto;
  background: #f0f1e9;
  padding: 2px 5px;
  border-radius: 3px;
}
.saas-footer {
  border-top: 1px solid #e7e8e1;
  margin-top: 15px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
  color: #606655;
}
.saas-footer > span:last-child {
  margin-left: auto;
  font-size: 14px;
}
.avatars {
  display: flex;
}
.avatars i {
  width: 18px;
  height: 18px;
  border: 2px solid #fffefb;
  border-radius: 50%;
  font-size: 6px;
  background: #e3c6b0;
  color: #533722;
  display: grid;
  place-items: center;
  font-style: normal;
}
.avatars i + i {
  background: #cfdbbf;
  margin-left: -5px;
}
.stage-stamp {
  position: absolute;
  right: 7%;
  top: 84px;
  transform: rotate(8deg);
  font-size: 10px;
  color: #3a4834;
  line-height: 1.2;
}
.stage-stamp > b {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
}
.stage-stamp svg {
  width: 54px;
  height: 54px;
  stroke: var(--orange);
  stroke-width: 2;
  margin: 12px 0 0 22px;
}
.product-stage figcaption {
  position: absolute;
  bottom: 20px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  color: #55624e;
  font-size: 9px;
}
.product-stage figcaption > span:last-child {
  font-size: 8px;
}
.hero-footnote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  color: var(--muted);
  font-size: 10px;
}
.hero-footnote > span:last-child {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.7px;
}
.hero-footnote i {
  font-style: normal;
  padding: 0 10px;
  color: #a7aa9e;
}
.section-space {
  padding-block: 116px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.section-heading > .eyebrow {
  padding-top: 11px;
  color: var(--muted);
}
h2 {
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.17;
  font-weight: 500;
  letter-spacing: -2.3px;
}
.section-intro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-top: 22px;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
}
.capability {
  padding: 35px 32px 0 0;
}
.capability + .capability {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.capability:last-child {
  padding-right: 0;
}
.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.capability-number {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}
.capability svg {
  width: 66px;
  height: 66px;
  stroke: #484e43;
  stroke-width: 1.5;
  transition: transform 0.3s;
}
.capability:hover svg {
  transform: translateY(-5px);
}
.capability svg .icon-accent {
  fill: #e8b59a;
  stroke: #ae5530;
}
h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -1px;
}
.capability > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 15px;
  max-width: 330px;
}
.capability-tags {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 28px 0 0;
}
.capability-tags li {
  font-size: 9px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #616657;
}
.approach-section {
  background: var(--dark);
  color: #f5f4ef;
}
.approach-section .eyebrow,
.approach-section .section-intro {
  color: #b1b9aa;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 62px;
}
.process-step {
  border-top: 1px solid #626c5c;
  padding-top: 19px;
}
.step-number {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  color: #c5cfbb;
  font-size: 11px;
}
.step-number > span {
  font-size: 20px;
  color: #c7d9ad;
  line-height: 1;
}
.process-step h3 {
  font-size: 21px;
  letter-spacing: -0.8px;
  margin-top: 42px;
}
.process-step > p {
  color: #b1b9aa;
  font-size: 12px;
  line-height: 1.95;
  margin-top: 15px;
}
.step-outcome {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: -0.2px;
  color: #c7d9ad;
  display: block;
  margin-top: 25px;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-art {
  height: 412px;
  position: relative;
  background: #e9e5da;
  border-radius: 3px;
  overflow: hidden;
  padding: 27px 30px;
}
.art-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: #626154;
}
.craft-symbol {
  width: 200px;
  height: 230px;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(-10deg);
}
.craft-symbol span {
  position: absolute;
  left: 78px;
  top: 4px;
  width: 46px;
  height: 226px;
  background: var(--orange);
  transform: rotate(45deg);
  box-shadow: 9px 12px 0 #4c2e1710;
}
.craft-symbol span + span {
  transform: rotate(-45deg);
  background: #dd613d;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 40%,
    0 60%,
    0 100%,
    100% 100%,
    100% 65%,
    0 45%
  );
}
.art-caption {
  position: absolute;
  left: 30px;
  bottom: 27px;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.art-edition {
  position: absolute;
  right: 27px;
  bottom: 30px;
  font-family: var(--mono);
  font-size: 8px;
  color: #625b4f;
}
.about-copy > .eyebrow {
  color: var(--muted);
  margin-bottom: 24px;
}
.about-copy h2 {
  font-size: 44px;
}
.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.95;
  margin-top: 21px;
}
.about-copy .text-link {
  margin-top: 20px;
}
.contact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-inner {
  padding-block: 70px 65px;
}
.contact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.contact-heading h2 {
  font-size: clamp(54px, 6.5vw, 92px);
  letter-spacing: -4px;
  line-height: 1.08;
}
.contact-heading h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--orange);
}
.contact-arrow {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 136px;
  height: 136px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.contact-arrow svg {
  width: 60px;
  height: 60px;
  stroke: var(--orange);
  stroke-width: 2;
}
.contact-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(5deg);
}
.contact-arrow:hover svg {
  stroke: white;
}
.contact-details {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-top: 38px;
}
.contact-details > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.contact-details > a {
  font-size: 18px;
  letter-spacing: -0.5px;
  display: flex;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.contact-details > a:hover {
  color: var(--orange);
}
.design-capability {
  margin-top: 48px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 36px;
  align-items: center;
  background: #eae9e0;
  border-radius: 4px;
}
.design-visual svg {
  display: block;
  width: 150px;
  height: 100px;
  margin-top: 10px;
  stroke: #656957;
  stroke-width: 1.4;
}
.design-fill {
  fill: #e8b59a;
  stroke: #ae5530;
}
.design-paper {
  fill: var(--paper);
}
.design-cursor {
  fill: var(--orange);
  stroke: var(--orange);
}
.design-guide {
  stroke-dasharray: 3 4;
  opacity: 0.6;
}
.design-copy p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 12px;
  max-width: 450px;
}
.design-deliverables {
  list-style: none;
  padding: 0 0 0 28px;
  margin: 0;
  border-left: 1px solid #c9ccbf;
  font-size: 11px;
  line-height: 2.6;
  color: #565b4e;
}
.service-entry {
  margin-top: 24px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid #d4d5ca;
  border-radius: 4px;
  background: #f0efe8;
}
.service-entry .eyebrow {
  color: var(--orange);
  margin-bottom: 10px;
}
.service-entry h3 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.9px;
}
.service-entry p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.service-entry-link {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.service-entry-link span {
  font-size: 19px;
  line-height: 1;
}
.service-entry-link:hover {
  background: var(--orange);
}
.contact-details > .email-button {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 23px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0;
  gap: 12px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.email-button svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.5;
}
.email-button > span:last-child {
  margin-left: 24px;
  font-size: 20px;
  line-height: 1;
}
.contact-details > .email-button:hover {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
}
.studio-footer {
  background: var(--dark);
  color: var(--paper);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1fr;
  gap: 70px;
  padding: 68px 0 54px;
}
.footer-identity .brand {
  font-size: 29px;
  gap: 12px;
}
.footer-identity > p {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
  color: #c9cfbf;
  margin-top: 26px;
}
.footer-contact {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  font-size: 12px;
  min-height: 44px;
  margin-top: 11px;
}
.footer-contact span {
  color: #d8b19a;
  font-size: 19px;
}
.studio-footer h2.eyebrow {
  color: #b7c0ae;
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: 1.5px;
  margin: 9px 0 20px;
  font-weight: 400;
}
.footer-explore {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-explore > a {
  font-size: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.social-grid a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  border-bottom: 1px solid #4c5747;
  font-size: 12px;
}
.social-grid span {
  color: #c2ccb6;
  transition: transform 0.2s;
}
.studio-footer a {
  transition: color 0.2s;
}
.studio-footer a:hover {
  color: #e9bf9e;
}
.social-grid a:hover span {
  transform: translate(2px, -2px);
}
.studio-footer a:focus-visible {
  outline-color: #e9bf9e;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #4c5747;
  padding: 23px 0 28px;
  font-size: 10px;
  color: #b7c0ae;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 25;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #afb6a4;
  border-radius: 50%;
  box-shadow: 0 4px 18px #17201218;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.back-to-top[hidden] {
  display: none;
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
}
.back-to-top:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
@media (max-width: 1100px) {
  .design-capability {
    grid-template-columns: 120px 1fr;
    gap: 20px 28px;
  }
  .design-visual {
    grid-row: span 2;
  }
  .design-visual svg {
    width: 120px;
  }
  .design-deliverables {
    grid-column: 2;
    border: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    font-size: 10px;
  }
  .footer-main {
    gap: 35px;
    grid-template-columns: 1fr 0.65fr 1.1fr;
  }
  .footer-identity .brand {
    font-size: 24px;
    gap: 7px;
  }
  .social-grid {
    gap: 0 16px;
  }
}
@media (max-width: 800px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-block: 48px;
  }
  .footer-identity {
    grid-column: 1 / -1;
  }
  .footer-identity > p {
    margin-top: 20px;
  }
  .footer-bottom {
    padding-right: 50px;
  }
}
@media (max-width: 600px) {
  .design-capability {
    padding: 25px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }
  .design-visual {
    grid-row: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .design-visual svg {
    width: 92px;
    height: 65px;
    margin: 0;
  }
  .design-copy h3 {
    font-size: 27px;
  }
  .design-copy p {
    font-size: 14px;
  }
  .design-deliverables {
    grid-column: auto;
    display: block;
    border-top: 1px solid #c9ccbf;
    padding-top: 13px;
    font-size: 11px;
  }
  .footer-main {
    gap: 32px;
    grid-template-columns: 1fr;
    padding-block: 40px;
  }
  .footer-identity {
    grid-column: auto;
  }
  .footer-identity .brand {
    font-size: 27px;
  }
  .footer-explore {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .footer-explore h2 {
    grid-column: 1 / -1;
  }
  .studio-footer h2.eyebrow {
    margin: 0 0 12px;
  }
  .social-grid {
    gap: 0 24px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 5px 16px;
    font-size: 9px;
    padding-right: 44px;
  }
  .back-to-top {
    width: 44px;
    height: 44px;
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}
@media print {
  .back-to-top {
    display: none;
  }
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(22px);
}
.reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes underline-in {
  from {
    stroke-dashoffset: 800;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes website-enter {
  from {
    opacity: 1;
    transform: translateY(24px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: rotate(-4deg);
  }
}
@keyframes phone-enter {
  from {
    opacity: 1;
    transform: translateY(35px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: rotate(-9deg);
  }
}
@keyframes saas-enter {
  from {
    opacity: 1;
    transform: translateY(45px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: rotate(5deg);
  }
}
@media (min-width: 1500px) {
  .hero-heading {
    grid-template-columns: 1.9fr 1fr;
  }
  h1 {
    font-size: 88px;
  }
  .product-stage {
    height: 570px;
  }
  .web-concept {
    top: 95px;
  }
  .editorial-site {
    height: 350px;
  }
  .phone-concept {
    top: 110px;
  }
  .saas-concept {
    bottom: 80px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 72px);
  }
  .navigation {
    gap: 24px;
  }
  .hero-heading {
    gap: 28px;
    grid-template-columns: 1.7fr 1fr;
  }
  h1 {
    letter-spacing: -3px;
    font-size: 58px;
  }
  .hero-summary p {
    font-size: 13px;
  }
  .product-stage {
    height: 480px;
  }
  .web-concept {
    left: 22%;
    width: 61%;
    top: 90px;
  }
  .editorial-site {
    height: 280px;
  }
  .editorial-title {
    font-size: 48px;
  }
  .phone-concept {
    left: 6%;
    top: 99px;
    width: 177px;
  }
  .phone-photo {
    height: 171px;
  }
  .phone-title {
    font-size: 23px;
  }
  .saas-concept {
    width: 254px;
    right: 4%;
    bottom: 48px;
  }
  .stage-stamp {
    right: 5%;
    top: 71px;
  }
  .stage-stamp svg {
    width: 40px;
    height: 40px;
  }
  .section-space {
    padding-block: 88px;
  }
  .section-heading {
    grid-template-columns: 1fr 2.2fr;
    gap: 24px;
  }
  .about-section {
    gap: 55px;
  }
  .about-copy h2 {
    font-size: 37px;
  }
  .about-art {
    height: 400px;
  }
  .process-grid {
    gap: 24px;
  }
  .process-step h3 {
    font-size: 18px;
  }
  .step-outcome {
    font-size: 8px;
  }
  .contact-heading h2 {
    font-size: 72px;
  }
}
@media (max-width: 800px) {
  .shell {
    width: calc(100% - 48px);
  }
  .header-inner {
    height: 80px;
  }
  .brand {
    font-size: 21px;
  }
  .navigation {
    gap: 20px;
    font-size: 10px;
  }
  .navigation .nav-contact {
    margin: 0;
    gap: 15px;
    padding: 10px 12px;
  }
  .hero {
    padding-top: 30px;
  }
  .hero-index {
    display: none;
  }
  .hero-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 25px 0 35px;
  }
  h1 {
    font-size: 70px;
    letter-spacing: -4px;
  }
  .hero-summary {
    max-width: none;
    display: flex;
    gap: 35px;
    align-items: end;
    justify-content: space-between;
  }
  .hero-summary p {
    max-width: 350px;
  }
  .hero-summary .text-link {
    flex-shrink: 0;
    margin: 0;
    font-size: 10px;
    gap: 15px;
  }
  .product-stage {
    height: 450px;
  }
  .stage-stamp {
    display: none;
  }
  .web-concept {
    left: 25%;
    width: 66%;
    top: 80px;
  }
  .editorial-site {
    height: 265px;
  }
  .phone-concept {
    left: 5%;
    top: 93px;
    width: 166px;
  }
  .phone-photo {
    height: 161px;
  }
  .saas-concept {
    width: 232px;
    bottom: 39px;
    right: 4%;
  }
  .saas-body {
    padding: 14px 12px 10px;
  }
  .saas-body > b {
    font-size: 12px;
  }
  .hero-footnote {
    font-size: 9px;
  }
  .hero-footnote > span:last-child {
    font-size: 7px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .section-heading > .eyebrow {
    padding: 0;
  }
  h2 {
    font-size: 43px;
  }
  .capability {
    padding-right: 20px;
  }
  .capability + .capability {
    padding-left: 20px;
  }
  h3 {
    font-size: 22px;
  }
  .capability > p {
    font-size: 12px;
  }
  .capability-tags {
    margin-top: 20px;
  }
  .capability-tags li {
    font-size: 8px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-step h3 {
    font-size: 23px;
    margin-top: 23px;
  }
  .process-step > p {
    font-size: 13px;
  }
  .step-outcome {
    font-size: 10px;
  }
  .about-section {
    gap: 35px;
  }
  .about-copy h2 {
    font-size: 32px;
  }
  .about-art {
    height: 390px;
    padding: 20px;
  }
  .art-caption {
    left: 20px;
    font-size: 21px;
  }
  .art-edition {
    display: none;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .about-copy .text-link {
    font-size: 10px;
    gap: 15px;
  }
  .contact-heading h2 {
    font-size: 66px;
  }
  .contact-arrow {
    width: 100px;
    height: 100px;
  }
  .contact-arrow svg {
    width: 46px;
    height: 46px;
  }
  .contact-details > a {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 90px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 74px;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .menu-toggle {
    display: flex;
    background: transparent;
    border: 1px solid #d2d5ca;
    border-radius: 3px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .navigation {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 15px #2226220a;
    font-size: 14px;
    align-items: stretch;
    gap: 0;
    flex-direction: column;
  }
  .navigation.is-open {
    display: flex;
  }
  .navigation > a {
    padding: 14px 0;
  }
  .navigation .nav-contact {
    padding: 13px 16px;
    margin-top: 8px;
    justify-content: space-between;
  }
  .hero {
    padding-top: 29px;
  }
  .hero-kicker .eyebrow {
    font-size: 8px;
    letter-spacing: 0.65px;
  }
  .orange-dot {
    width: 6px;
    height: 6px;
    margin-right: 6px;
  }
  .hero-heading {
    margin-top: 24px;
    gap: 25px;
  }
  h1 {
    font-size: clamp(39px, 10.9vw, 65px);
    letter-spacing: -2.6px;
    line-height: 1.15;
  }
  .matter svg {
    bottom: -8px;
    height: 12px;
  }
  .hero-summary {
    display: block;
  }
  .hero-summary p {
    font-size: 13px;
    max-width: 390px;
    line-height: 1.85;
  }
  .hero-summary .text-link {
    font-size: 11px;
    margin-top: 14px;
    gap: 25px;
  }
  .product-stage {
    height: 409px;
    margin-inline: -6px;
    border-radius: 4px;
  }
  .stage-topline {
    left: 17px;
    right: 17px;
    top: 17px;
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .stage-topline > span:last-child {
    font-size: 8px;
  }
  .stage-topline span:last-child span {
    font-size: 13px;
  }
  .web-concept {
    width: 82%;
    left: 21%;
    top: 77px;
    transform: rotate(-4deg);
  }
  .browser-bar {
    height: 22px;
    font-size: 5px;
    padding-inline: 9px;
  }
  .browser-dots {
    font-size: 4px;
  }
  .editorial-site {
    height: 209px;
  }
  .editorial-nav {
    left: 15px;
    right: 15px;
    top: 13px;
    font-size: 5px;
  }
  .editorial-nav b {
    font-size: 11px;
  }
  .editorial-title {
    left: 15px;
    top: 60px;
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .editorial-bottom {
    left: 15px;
    right: 15px;
    font-size: 6px;
    bottom: 18px;
  }
  .round-arrow {
    width: 23px;
    height: 23px;
    font-size: 15px;
  }
  .phone-concept {
    width: 131px;
    left: 6%;
    top: 100px;
    border-width: 4px;
    border-radius: 24px;
    padding: 8px;
  }
  .phone-status {
    font-size: 5px;
    padding-bottom: 9px;
  }
  .phone-title {
    font-size: 19px;
  }
  .phone-title > span {
    font-size: 11px;
  }
  .phone-concept > p {
    font-size: 5px;
    margin: 6px 0 8px;
  }
  .phone-photo {
    height: 144px;
    border-radius: 6px;
  }
  .phone-photo > span {
    font-size: 4px;
    left: 8px;
    bottom: 8px;
    letter-spacing: 0.5px;
  }
  .phone-photo b {
    font-size: 12px;
  }
  .phone-bottom {
    font-size: 6px;
    margin-top: 8px;
  }
  .phone-circle {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  .home-indicator {
    margin-top: 8px;
    width: 42px;
    height: 2px;
  }
  .saas-concept {
    width: 190px;
    right: 4%;
    bottom: 46px;
    transform: rotate(5deg);
  }
  .saas-heading {
    padding: 8px 10px;
    font-size: 7px;
  }
  .saas-heading i {
    width: 7px;
    height: 7px;
  }
  .saas-body {
    padding: 10px;
  }
  .saas-eyebrow {
    font-size: 5px;
  }
  .saas-body > b {
    font-size: 10px;
    margin-bottom: 9px;
  }
  .task {
    font-size: 6px;
    gap: 5px;
    margin: 7px 0;
  }
  .task-check {
    width: 9px;
    height: 9px;
    font-size: 5px;
  }
  .task small {
    font-size: 5px;
    padding: 1px 3px;
  }
  .saas-footer {
    padding-top: 7px;
    margin-top: 8px;
    font-size: 5px;
  }
  .avatars i {
    width: 14px;
    height: 14px;
    font-size: 5px;
  }
  .product-stage figcaption {
    left: 16px;
    right: 16px;
    bottom: 15px;
    font-size: 6px;
    gap: 10px;
  }
  .product-stage figcaption > span:last-child {
    font-size: 6px;
    max-width: 90px;
    text-align: right;
  }
  .hero-footnote {
    padding-top: 15px;
    font-size: 8px;
  }
  .hero-footnote > span:last-child {
    display: none;
  }
  .section-space {
    padding-block: 65px;
  }
  .section-heading {
    gap: 19px;
  }
  .eyebrow {
    font-size: 9px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
  }
  .section-intro {
    font-size: 13px;
    margin-top: 18px;
  }
  .desktop-break {
    display: none;
  }
  .capabilities {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .capability,
  .capability + .capability {
    border-left: 0;
    padding: 25px 0;
  }
  .capability + .capability {
    border-top: 1px solid var(--line);
  }
  .capability:last-child {
    padding-bottom: 0;
  }
  .capability-top {
    margin-bottom: 7px;
  }
  .capability svg {
    width: 53px;
    height: 53px;
  }
  .capability h3 {
    font-size: 27px;
  }
  .capability > p {
    font-size: 13px;
    max-width: none;
    margin-top: 12px;
  }
  .capability-tags {
    margin-top: 18px;
  }
  .capability-tags li {
    font-size: 9px;
  }
  .process-grid {
    gap: 33px 23px;
    margin-top: 37px;
  }
  .process-step h3 {
    font-size: 19px;
    letter-spacing: -0.6px;
  }
  .process-step > p {
    font-size: 11px;
    line-height: 1.9;
  }
  .step-outcome {
    font-size: 8px;
    line-height: 1.8;
    margin-top: 19px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-art {
    height: 325px;
  }
  .craft-symbol {
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.8);
    top: 43%;
  }
  .art-caption {
    font-size: 23px;
    bottom: 24px;
  }
  .art-edition {
    display: block;
    font-size: 7px;
  }
  .about-copy > .eyebrow {
    margin-bottom: 19px;
  }
  .about-copy h2 {
    font-size: 36px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.9;
  }
  .about-copy .text-link {
    font-size: 11px;
    margin-top: 17px;
  }
  .contact-inner {
    padding-block: 48px;
  }
  .contact-heading {
    gap: 16px;
    margin-top: 26px;
  }
  .contact-heading h2 {
    font-size: clamp(40px, 10.6vw, 62px);
    letter-spacing: -2px;
  }
  .contact-arrow {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
  }
  .contact-arrow svg {
    width: 28px;
    height: 28px;
  }
  .contact-details {
    align-items: start;
    flex-direction: column;
    margin-top: 25px;
    gap: 24px;
  }
  .contact-details > p {
    font-size: 11px;
  }
  .contact-details > a {
    font-size: 17px;
    gap: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
@media print {
  .site-header {
    position: static;
  }
  .menu-toggle,
  .contact-arrow,
  .skip-link {
    display: none;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
  .section-space {
    padding-block: 30px;
  }
  .product-stage {
    break-inside: avoid;
  }
  body {
    background: white;
  }
  .shell {
    width: 95%;
  }
}
/* Keep concept captions readable at every size. */
.product-stage figcaption {
  font-size: 10px;
  z-index: 5;
}
.product-stage figcaption > span:last-child {
  font-size: 9px;
}
@media (max-width: 600px) {
  .product-stage figcaption {
    font-size: 8px;
    background: #dfe3da;
    padding-top: 5px;
    bottom: 10px;
  }
  .product-stage figcaption > span:last-child {
    font-size: 8px;
    max-width: 130px;
  }
  .capability > p,
  .about-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .process-step > p {
    font-size: 12px;
  }
}
.anchor-alias {
  display: block;
  height: 0;
  scroll-margin-top: 110px;
}

/* Reading scale stays consistent across sections and viewport sizes.
   Miniature interface illustrations retain their own internal proportions. */
body {
  font-size: var(--type-body);
}
.hero-summary {
  max-width: 390px;
}
.hero-summary p,
.section-intro,
.capability > p,
.process-step > p,
.about-copy > p:not(.eyebrow),
.design-copy p,
.contact-details > p {
  font-size: var(--type-body);
  line-height: 1.8;
}
.hero-summary p,
.section-intro {
  font-size: 18px;
}
.navigation,
.text-link,
.hero-summary .text-link,
.about-copy .text-link,
.contact-details > .email-button,
.footer-contact,
.footer-explore > a,
.social-grid a {
  font-size: var(--type-control);
}
.eyebrow,
.hero-kicker .eyebrow,
.studio-footer h2.eyebrow,
.capability-number,
.step-number,
.step-outcome,
.capability-tags li,
.hero-index,
.hero-footnote,
.hero-footnote > span:last-child,
.footer-bottom,
.art-label,
.art-edition {
  font-size: var(--type-label);
}
.design-deliverables {
  font-size: 14px;
  line-height: 1.9;
}
.design-deliverables li + li {
  margin-top: 7px;
}
.step-outcome {
  line-height: 1.7;
  letter-spacing: 0;
}
.process-step h3 {
  font-size: 23px;
}
.product-stage figcaption,
.product-stage figcaption > span:last-child {
  font-size: 11px;
}
.hero-footnote {
  flex-wrap: wrap;
  gap: 10px 24px;
}
.hero-footnote i {
  padding-inline: 6px;
}
.design-capability {
  grid-template-columns: 140px minmax(0, 1fr) minmax(210px, 0.65fr);
  gap: 28px;
}
@media (max-width: 1100px) {
  .design-capability {
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .hero-summary p,
  .section-intro {
    font-size: var(--type-body);
  }
  .navigation {
    gap: 22px;
    font-size: 14px;
  }
}
@media (min-width: 601px) and (max-width: 800px) {
  .navigation {
    font-size: 13px;
    gap: 15px;
  }
  .hero-summary {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  :root {
    --type-body: 16px;
  }
  .navigation {
    font-size: 16px;
    gap: 0;
  }
  .hero-kicker .eyebrow {
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.3px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-step h3 {
    font-size: 23px;
    margin-top: 18px;
  }
  .process-step > p {
    margin-top: 10px;
  }
  .step-outcome {
    margin-top: 16px;
  }
  .design-capability {
    grid-template-columns: 1fr;
  }
  .product-stage figcaption {
    align-items: end;
    gap: 12px;
  }
  .product-stage figcaption > span:last-child {
    max-width: 130px;
  }
  .service-entry {
    margin-top: 18px;
    padding: 25px 22px;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .service-entry h3 {
    font-size: 27px;
  }
  .service-entry p:not(.eyebrow) {
    font-size: 15px;
  }
  .service-entry-link {
    width: 100%;
    justify-content: space-between;
  }
}
