:root {
  --font-bricolage: 'Bricolage Grotesque';
  --font-inter: 'Inter';
  --font-poppins: 'Poppins';
  --font-spline-mono: 'Spline Sans Mono';
  --purple: #673b9d;
  --title-hover: #503476;
  --annotation: #4a4f54;
  --ink: #1a1a28;
  --projects-background: #f5f6fa;
  --other-work-background: #fafafc;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-inter), Arial, sans-serif;
  font-weight: 300;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1a1a28;
  color: #fff;
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(calc(-100% - 24px));
  transition: transform 180ms ease;
}

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

main[tabindex="-1"]:focus {
  outline: none;
}

.site-header {
  overflow: hidden;
}

.nav-shell {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 0 30px;
  border-radius: 0 0 28px 28px;
  background: #fff;
  box-shadow: 0 1px 3px rgb(26 26 40 / 1%);
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.nav-shell.is-scrolled {
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 9px 24px rgb(26 26 40 / 9%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-shell.is-scrolled:hover,
.nav-shell.is-scrolled:focus-within {
  background: #fff;
  box-shadow: 0 9px 24px rgb(26 26 40 / 11%);
}

.logo {
  display: block;
  width: 68px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgb(103 59 157 / 18%);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mobile-menu-toggle:hover {
  border-color: rgb(103 59 157 / 36%);
  color: var(--purple);
}

.mobile-menu-toggle:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}

.mobile-menu-icon {
  display: flex;
  width: 21px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 50px);
  padding-right: 40px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 17px;
}

.nav-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-links a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

.language-switch {
  display: inline-grid;
  flex: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 88px;
  height: 36px;
  padding: 3px;
  border-radius: 999px;
  background: #1a1a28;
}

.nav-links .language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links .language-option.is-active {
  color: #1a1a28;
  background: #e2e2e2;
  cursor: default;
}

.nav-links a.language-option:hover {
  color: #fff;
  background: rgb(255 255 255 / 14%);
}

.nav-links a.language-option:focus-visible {
  border-radius: 999px;
  outline-color: #1a1a28;
}

.hero {
  position: relative;
  min-height: 540px;
  margin-top: -1px;
  overflow: hidden;
  background: #fff;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 700px) 370px;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: min(1118px, calc(100% - 96px));
  min-height: 540px;
  margin: 0 auto;
  padding: 36px 0 42px;
}

.hero-copy {
  max-width: 700px;
  padding-top: 4px;
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3;
}

.hero-smile {
  font-weight: 700;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: clamp(56px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2.2px;
}

h1 span {
  display: block;
}

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

.hero-description {
  max-width: 760px;
  margin: 23px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  text-wrap: pretty;
}

.hero-description strong {
  font-weight: 500;
}

.hero-services-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 154px;
  min-height: 48px;
  margin-top: 28px;
  padding: 11px 26px;
  border: 0;
  border-radius: 999px;
  background: #6d33b3;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hero-services-link span {
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.hero-services-link:hover {
  background: #1a1a28;
  transform: translateY(-2px);
}

.hero-services-link:hover span {
  transform: translate(3px, -3px);
}

.hero-services-link:focus-visible {
  outline: 3px solid #6d33b3;
  outline-offset: 4px;
}

.portrait-stage {
  --selection-cycle: 8s;
  position: relative;
  width: 370px;
  max-width: 100%;
  aspect-ratio: 394.37 / 425.38;
}

.portrait {
  position: absolute;
  left: 3.44%;
  top: 4.12%;
  display: block;
  width: 93.12%;
  height: 91.75%;
  border-radius: 23px;
  object-fit: cover;
  object-position: center;
}

.selection-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
  animation: selection-frame-cycle var(--selection-cycle) linear infinite;
}

.illustrator-cursor {
  position: absolute;
  z-index: 2;
  left: 92%;
  top: 89%;
  width: 48px;
  height: auto;
  pointer-events: none;
  transform: translate(-20%, -15%);
  animation: illustrator-select var(--selection-cycle) ease-in-out infinite;
}

@keyframes illustrator-select {
  0%, 8%, 60%, 100% {
    left: 92%;
    top: 89%;
    transform: translate(-20%, -15%) scale(1);
  }

  32%, 33% {
    left: 50%;
    top: 50%;
    transform: translate(-20%, -15%) scale(1);
  }

  34% {
    left: 50%;
    top: 50%;
    transform: translate(-20%, -15%) scale(.78);
  }

  37% {
    left: 50%;
    top: 50%;
    transform: translate(-20%, -15%) scale(1);
  }
}

@keyframes selection-frame-cycle {
  0%, 33.9% {
    opacity: 0;
  }

  34% {
    opacity: 1;
  }

  72.5% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  78%, 100% {
    opacity: 0;
  }
}

.projects-section {
  position: relative;
  z-index: 2;
  min-height: 900px;
  margin-top: -36px;
  padding: 68px 0 112px;
  border-radius: 34px 34px 0 0;
  background: var(--projects-background);
}

.other-work-section {
  position: relative;
  z-index: 5;
  margin-bottom: -34px;
  padding: 68px 0 112px;
  border-radius: 34px;
  background: var(--other-work-background);
}

.services-section {
  position: relative;
  z-index: 4;
  padding: 128px 0 104px;
  overflow: hidden;
  background: #fff url('assets/header-background.webp') center / cover no-repeat;
}

.services-inner {
  width: min(960px, calc(100% - 96px));
  margin: 0 auto;
}

.services-inner > h2 {
  margin: 0 0 60px;
  color: var(--ink);
  font-family: var(--font-bricolage), Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.6px;
  text-align: center;
  text-wrap: balance;
}

.services-inner > h2 span {
  color: #6d33b3;
}

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

.service-card {
  min-height: 190px;
  padding: 28px 30px 30px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgb(255 255 255 / 59%);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #fff;
  box-shadow: 0 12px 26px rgb(26 26 40 / 9%);
  transform: translateY(-2px);
}

.service-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #6d33b3;
  transform-origin: center;
  transition: transform 180ms ease;
}

.service-card:hover .service-dot {
  transform: scale(1.55);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  text-wrap: pretty;
}

.service-card strong {
  font-weight: 500;
}

.contact-section {
  position: relative;
  z-index: 4;
  padding: 64px 0;
  background: linear-gradient(100deg, #6d33b3 0%, #48207b 38%, #1a1a28 100%);
  color: #fff;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
}

.contact-heading {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 0 0 auto;
}

.contact-heading h2 {
  margin: 0;
  font-family: var(--font-bricolage), Arial, sans-serif;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.contact-arrow {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: auto;
  animation: contact-arrow-drift 2.8s ease-in-out infinite;
}

.contact-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 30px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  background: rgb(255 255 255 / 13%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%), 0 8px 20px rgb(8 4 19 / 9%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-links a:hover {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 18%);
  transform: scale(1.025);
}

.contact-links a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@keyframes contact-arrow-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

@keyframes contact-arrow-drift-mobile {
  0%, 100% { transform: rotate(90deg) translateX(0); }
  50% { transform: rotate(90deg) translateX(8px); }
}

.projects-inner {
  width: min(1080px, calc(100% - 96px));
  margin: 0 auto;
}

.projects-inner h2 {
  margin: 0 0 68px;
  color: var(--purple);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.6px;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(64px, 7.5vw, 108px);
  row-gap: 68px;
}

.project-card {
  position: relative;
}

.project-visual {
  position: relative;
  aspect-ratio: 1.97 / 1;
  overflow: hidden;
  border: 1px solid #c8cbd0;
  border-radius: 9px;
  background: #fff;
  transition: box-shadow 220ms ease;
}

.project-card:hover .project-visual,
.project-card:focus-within .project-visual {
  box-shadow: 0 7px 20px rgb(26 26 40 / 6%);
}

.project-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.project-card:hover .project-visual img,
.project-card:focus-within .project-visual img {
  transform: scale(1.02);
}

.project-visual.starbucks {
  background: #d8e8e2;
}

.project-visual.donius {
  background: #fdf1e5;
}

.project-visual.other-coraline {
  background: #293774;
}

.project-visual.other-offset {
  background: #449b93;
}

.project-visual.other-offset .project-year,
.project-visual.other-futura .project-year {
  color: #1a1a28;
}

.project-visual.other-pokemon {
  background: #000;
}

.project-visual.other-conitos {
  background: #f2eefa;
}

.project-visual.other-cv {
  background: #fff3d9;
}

.project-visual.other-futura {
  background: #ed6048;
}

.project-visual.other-casa {
  background: #211035;
}

.project-visual.other-genshin {
  background: #ecd9b0;
}

.project-visual.starbucks img,
.project-visual.donius img,
.project-visual.other-coraline img,
.project-visual.other-offset img,
.project-visual.other-pokemon img,
.project-visual.other-conitos img,
.project-visual.other-futura img,
.project-visual.other-genshin img {
  object-fit: contain;
}

.project-visual.other-coraline img,
.project-visual.other-offset img,
.project-visual.other-futura img {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
}

.project-visual.other-conitos img {
  position: absolute;
  inset: 15%;
  width: 70%;
  height: 70%;
}

.project-visual.other-genshin img {
  position: absolute;
  inset: 10%;
  width: 80%;
  height: 80%;
}

.project-visual.custom-cover img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-year {
  position: absolute;
  right: 20px;
  bottom: 17px;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 18px;
  line-height: 1;
}

.project-visual.wanderly .project-year {
  color: #fff;
}

.project-visual.other-coraline .project-year,
.project-visual.other-pokemon .project-year,
.project-visual.other-casa .project-year,
.project-visual.other-sherlock .project-year {
  color: #fff;
}

.project-category {
  margin: 20px 0 6px;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
}

.project-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.18;
  transition: color 180ms ease;
}

.project-card h3:hover {
  color: #503476;
}

.project-card-link {
  display: block;
}

.project-card-button {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.project-card-link:focus-visible,
.project-card-button:focus-visible {
  border-radius: 10px;
  outline: 3px solid var(--purple);
  outline-offset: 8px;
}

.project-card:hover h3,
.project-card:focus-within h3 {
  color: #503476;
}

.other-work-modal[hidden] {
  display: none;
}

.other-work-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(6 8 18 / 78%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: other-work-overlay-in 320ms cubic-bezier(.16, 1, .3, 1) both;
}

.other-work-modal-panel {
  position: relative;
  width: min(86vw, 1320px);
  height: min(900px, calc(100dvh - 40px));
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 24px;
  background: #f5f6fa;
  box-shadow: 0 30px 90px rgb(0 0 0 / 38%);
  transform-origin: center;
  animation: other-work-panel-in 360ms cubic-bezier(.16, 1, .3, 1) both;
}

.other-work-modal.is-closing {
  animation: other-work-overlay-out 220ms ease-in both;
}

.other-work-modal.is-closing .other-work-modal-panel {
  animation: other-work-panel-out 220ms ease-in both;
}

.other-work-modal-close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0 0 2px;
  border: 1px solid rgb(26 26 40 / 14%);
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.other-work-modal-close:hover {
  background: #e8eaee;
  color: #4a4f54;
}

.other-work-modal-close:focus-visible {
  outline: 3px solid var(--annotation);
  outline-offset: 4px;
}

.other-work-modal-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #788195 #f5f6fa;
  scrollbar-width: thin;
}

.other-work-modal-content {
  width: min(1180px, calc(100% - 104px));
  margin: 0 auto;
  padding: 68px 0 76px;
}

/* About me — personal information in the shared floating-window system. */
.about-modal-panel {
  width: min(92vw, 1240px);
}

.about-modal-scroll {
  background: #f5f6fa;
}

.about-modal-content {
  position: relative;
  width: min(1160px, 100%);
  min-height: 1160px;
  margin: 0 auto;
  padding: 94px 78px 90px;
}

.about-passion-meme {
  position: absolute;
  z-index: 1;
  top: 34px;
  right: 50px;
  width: 108px;
  height: auto;
}

.about-modal-intro,
.about-education,
.about-divider,
.about-tools {
  position: relative;
  z-index: 1;
}

.about-modal-intro {
  padding-right: 104px;
}

.about-modal-kicker,
.about-study-meta,
.about-tool p {
  font-family: var(--font-spline-mono), monospace;
  font-weight: 300;
}

.about-modal-kicker {
  margin: 0 0 30px;
  color: var(--annotation);
  font-size: 16px;
  letter-spacing: .02em;
}

.about-modal-kicker strong {
  color: #503476;
  font-weight: 700;
}

.about-modal-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-bricolage), sans-serif;
  font-size: clamp(40px, 3.55vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.5px;
  white-space: nowrap;
}

.about-modal-intro h2 span,
.about-modal-intro > p span,
.about-study h4 {
  color: #6d33b3;
}

.about-modal-intro h2 em {
  display: inline-block;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  vertical-align: .35em;
}

.about-modal-intro > p:last-child {
  max-width: 920px;
  margin: 32px 0 0;
  color: #40414b;
  font-size: 20px;
  line-height: 1.45;
}

.about-modal-intro > p:last-child strong {
  color: var(--ink);
  font-weight: 600;
}

.about-divider {
  height: 0;
  margin: 54px 0;
  border-top: 1px solid #d7dae1;
}

.about-education {
  display: grid;
  grid-template-columns: minmax(0, 560px) 300px;
  align-items: center;
  justify-content: start;
  gap: 0;
}

.about-education h3,
.about-tools h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-bricolage), sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.7px;
}

.about-study {
  margin-top: 40px;
}

.about-study-meta {
  margin: 0 0 10px;
  color: var(--annotation);
  font-size: 14px;
}

.about-study h4 {
  margin: 0;
  font-family: var(--font-inter), sans-serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.18;
}

.about-study > p:last-child {
  margin: 12px 0 0;
  color: #4a4f54;
  font-size: 19px;
}

.about-graduation-meme {
  justify-self: start;
  width: min(100%, 300px);
  height: auto;
  transform: translate(-28px, 8px);
}

.about-tools {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.about-tools-content {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.about-de-hecho-meme {
  grid-column: 1;
  grid-row: 1;
  width: 195px;
  max-width: 100%;
  height: auto;
  transform: translateY(32px);
}

.about-tools h3 {
  margin-bottom: 34px;
  padding-right: 50px;
  text-align: right;
}

.about-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 22px;
}

.about-tool {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.about-tool img {
  display: grid;
  width: 68px;
  height: 68px;
  flex: none;
  object-fit: contain;
}

.about-tool p {
  margin: 0;
  color: var(--annotation);
  font-size: 13px;
  line-height: 1.25;
}

.other-work-modal-intro {
  padding-right: 52px;
}

.other-work-modal-kicker {
  margin: 0 0 16px;
  color: #4a4f54;
  font-family: var(--font-spline-mono), monospace;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .02em;
}

.other-work-modal-intro h2 {
  margin: 0;
  color: #1d376f;
  font-family: var(--font-bricolage), Arial, sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2px;
  text-wrap: pretty;
}

.other-work-modal-description {
  max-width: 1110px;
  margin: 26px 0 0;
  color: #3f434c;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.38;
  text-wrap: pretty;
}

.other-work-modal-description strong {
  color: #222631;
  font-weight: 500;
}

.other-work-modal-description span {
  color: #2f5c9e;
}

.other-work-modal-offset .other-work-modal-intro h2 {
  color: #449b93;
}

.other-work-modal-offset .other-work-modal-description span {
  color: #2f716b;
}

.other-work-modal-offset .other-work-modal-intro {
  padding-right: 0;
}

.other-work-modal-offset .other-work-modal-description {
  max-width: none;
  text-wrap: pretty;
}

.other-work-modal-pokedex .other-work-modal-intro h2 {
  color: #575859;
}

.other-work-modal-conitos .other-work-modal-intro h2 {
  color: #8471ae;
}

.other-work-modal-conitos .other-work-modal-description span {
  color: #746096;
}

.other-work-modal-cv .other-work-modal-intro h2 {
  color: #b54739;
}

.other-work-modal-futura .other-work-modal-intro h2 {
  color: #ed6048;
}

.other-work-modal-futura .other-work-modal-description span {
  color: #b6402f;
}

.other-work-modal-casa .other-work-modal-intro h2,
.other-work-modal-casa .other-work-modal-description span {
  color: #38175b;
}

.other-work-modal-genshin .other-work-modal-intro h2 {
  color: #a07240;
}

.other-work-modal-genshin .other-work-modal-description span {
  color: #81572e;
}

.other-work-modal-sherlock .other-work-modal-intro h2 {
  color: #092a33;
}

.other-work-modal-memoria .other-work-modal-intro h2 {
  color: #681901;
}

/* Balanced metadata shared by the three professional landing projects. */
.other-work-modal-meta.landing-meta {
  grid-template-columns: repeat(4, minmax(0, max-content));
  justify-content: start;
  align-items: start;
  column-gap: clamp(64px, 8vw, 128px);
  row-gap: 24px;
}

.other-work-modal-meta.landing-meta div {
  padding-right: 0;
}

.landing-meta dt {
  line-height: 1.45;
  text-wrap: balance;
}

@supports (grid-template-rows: subgrid) {
  .other-work-modal-meta.landing-meta > div {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    row-gap: 12px;
  }

  .other-work-modal-meta.landing-meta dt {
    margin-bottom: 0;
  }
}

@media (max-width: 1080px) {
  .other-work-modal-meta.landing-meta {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: clamp(32px, 5vw, 56px);
  }
}

@media (max-width: 480px) {
  .other-work-modal-meta.landing-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* End balanced landing metadata. */

/* AWS Summit New York — lead-generation landing in a shared floating window. */
.project-visual.aws-trends {
  background: #161e27;
}

.project-visual.aws-trends .project-year {
  color: #fff;
}

.aws-trends-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.other-work-modal-aws-trends .aws-trends-heading h2 {
  flex: 1 1 600px;
  min-width: 0;
  color: #2b2b2b;
  text-wrap: balance;
}

.aws-trends-title-gradient {
  display: inline-block;
  color: #8200fe;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .aws-trends-title-gradient {
    background: linear-gradient(90deg, #8200fe 0%, #f90077 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.other-work-modal-aws-trends .aws-trends-link {
  flex: 0 0 auto;
  border-color: #c74385;
  background: #c74385;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.other-work-modal-aws-trends .aws-trends-link:hover {
  border-color: #8200fe;
  background: #8200fe;
  color: #fff;
}

.other-work-modal-aws-trends .aws-trends-link:focus-visible {
  outline-color: #8200fe;
}

.other-work-modal-aws-trends .aws-trends-preview {
  margin-top: 40px;
  border: 1px solid #dde2ec;
  border-radius: 12px;
}


@media (max-width: 760px) {
  .aws-trends-heading {
    justify-content: flex-start;
    gap: 16px;
  }

  .other-work-modal-aws-trends .aws-trends-preview {
    margin-top: 30px;
  }
}


@media (forced-colors: active) {
  .aws-trends-title-gradient {
    background: none;
    color: CanvasText;
  }
}
/* End AWS trends project. */

/* Migración y modernización — shared floating window, no case-study cards. */
.project-visual.migration {
  background: #d3f0f6;
}

.migration-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.other-work-modal-migration .migration-heading h2 {
  flex: 1 1 440px;
  min-width: 0;
  color: #0b408b;
  text-wrap: balance;
}

.other-work-modal-migration .migration-link {
  flex: 0 0 auto;
  border-color: #209fce;
  background: #209fce;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.other-work-modal-migration .migration-link:hover {
  border-color: #0b408b;
  background: #0b408b;
  color: #fff;
}

.other-work-modal-migration .migration-link:focus-visible {
  outline-color: #0b408b;
}

.other-work-modal-migration .migration-preview {
  margin-top: 40px;
  border: 1px solid #dde2ec;
  border-radius: 12px;
}


@media (max-width: 760px) {
  .migration-heading {
    justify-content: flex-start;
    gap: 16px;
  }

  .other-work-modal-migration .migration-preview {
    margin-top: 30px;
  }
}

/* End migration project. */

/* Ecosistema Gemini — agency project, using the shared floating window. */
.project-visual.gemini {
  background:
    radial-gradient(ellipse at bottom left, #ccf0fc 0%, transparent 70%),
    linear-gradient(135deg, #fff 0%, #e5e2fc 65%, #f4f1fe 100%);
}

.other-work-modal-gemini .gemini-title {
  color: #2b2b2b;
  text-wrap: balance;
}

.gemini-title-gradient {
  display: inline-block;
  color: #1d74e9;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .gemini-title-gradient {
    background: linear-gradient(90deg, #1d74e9 0%, #9d77ce 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.gemini-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: 40px;
}

.gemini-case-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid #dde2ec;
  border-radius: 16px;
  background: rgb(255 255 255 / 70%);
}

.gemini-case-card h3 {
  margin: 0 0 16px;
  color: #7651a7;
  font-family: var(--font-spline-mono), monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .04em;
}

.gemini-case-card p {
  margin: 0;
  color: #3f434c;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
  text-wrap: pretty;
}

.gemini-case-card strong {
  font-weight: 500;
}

.other-work-modal-gemini .gemini-preview {
  margin-top: 40px;
  border: 1px solid #dde2ec;
  border-radius: 12px;
}

.gemini-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.other-work-modal-gemini .gemini-link {
  flex: 0 0 auto;
  border-color: #1d74e9;
  background: #1d74e9;
  font-size: 19px;
  font-weight: 700;
}

.other-work-modal-gemini .gemini-link:hover {
  border-color: #9d77ce;
  background: #9d77ce;
}

.other-work-modal-gemini .gemini-link:focus-visible {
  outline-color: #1d74e9;
}


@media (max-width: 760px) {
  .gemini-heading {
    justify-content: flex-start;
    gap: 16px;
  }

  .gemini-case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .gemini-case-card {
    padding: 22px;
  }

  .gemini-case-card p {
    font-size: 16px;
  }

  .other-work-modal-gemini .gemini-preview {
    margin-top: 30px;
  }
}


@media (forced-colors: active) {
  .gemini-title-gradient {
    background: none;
    color: CanvasText;
  }
}


.casa-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.6vw, 22px);
  margin-top: 62px;
  align-items: start;
}

.casa-poster-grid img {
  display: block;
  min-width: 0;
  width: 100%;
  height: auto;
}

.casa-poster-grid + .casa-poster-mockup {
  margin-top: 26px;
}

.futura-carousel {
  --futura-arrow-size: 44px;
  --futura-arrow-gap: 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
  align-items: center;
  width: 100%;
  margin: 32px auto 0;
}

.futura-carousel-stage {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  aspect-ratio: 1750 / 1240;
  background: #f3efe8;
  touch-action: pan-y pinch-zoom;
}

.futura-carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.futura-carousel-slide[hidden] {
  display: none;
}

.futura-carousel-controls {
  display: contents;
}

.futura-carousel-controls p {
  grid-column: 1;
  grid-row: 2;
  min-width: 76px;
  margin: 0;
  color: #4a4f54;
  font-family: var(--font-spline-mono), monospace;
  font-size: 14px;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.futura-carousel-controls button {
  grid-row: 1;
  display: grid;
  place-items: center;
  width: var(--futura-arrow-size);
  height: var(--futura-arrow-size);
  padding: 0;
  border: 1px solid #d7dae1;
  border-radius: 50%;
  background: transparent;
  color: #575859;
  cursor: pointer;
}

.futura-carousel-controls button:first-of-type {
  grid-column: 1;
  justify-self: start;
  transform: translateX(calc(-100% - var(--futura-arrow-gap)));
}

.futura-carousel-controls button:last-of-type {
  grid-column: 1;
  justify-self: end;
  transform: translateX(calc(100% + var(--futura-arrow-gap)));
}

.futura-carousel-controls button:hover {
  border-color: #ed6048;
  background: #fbe6e1;
  color: #9f3828;
}

.futura-carousel:focus-visible,
.futura-carousel-controls button:focus-visible {
  outline: 2px solid #9f3828;
  outline-offset: 2px;
}

.other-work-modal-meta {
  display: grid;
  grid-template-columns: .58fr .8fr 1.82fr;
  gap: 0;
  margin: 38px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid #d7dae1;
}

.other-work-modal-meta div {
  min-width: 0;
  padding-right: 34px;
}

.other-work-modal-meta dt {
  margin: 0 0 12px;
  color: #4a4f54;
  font-family: var(--font-spline-mono), monospace;
  font-size: 13px;
  font-weight: 300;
}

.other-work-modal-meta dd {
  margin: 0;
  color: #20232d;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

.other-work-modal-meta .other-work-modal-meta-action {
  display: flex;
  align-items: center;
  padding-right: 0;
}

.other-work-modal-meta-action dt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.other-work-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 25px;
  border: 1px solid #746096;
  border-radius: 999px;
  background: #746096;
  color: #fff;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.other-work-modal-link svg {
  flex-shrink: 0;
}

.other-work-modal-link:hover {
  border-color: #564d70;
  background: #564d70;
  color: #fff;
}

.other-work-modal-link:focus-visible {
  outline: 3px solid #746096;
  outline-offset: 4px;
}

.other-work-modal-artwork {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 62px;
}

.other-work-modal-artwork + .other-work-modal-artwork {
  margin-top: 26px;
}

.other-work-modal-video {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.other-work-modal-note {
  max-width: none;
  margin: 54px 0 0;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
}

.other-work-modal-focus-guard {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes other-work-overlay-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes other-work-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.975);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes other-work-overlay-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes other-work-panel-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }
}

/* ETREUM — project page */
.etreum-page {
  background: #fff;
}

.etreum-nav {
  position: sticky;
  z-index: 50;
  top: 0;
}

.etreum-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: #fff;
}

.etreum-hero-image,
.etreum-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.etreum-hero-image {
  object-fit: cover;
  object-position: center;
}

.etreum-hero-overlay {
  background: rgb(74 79 84 / 84%);
}

.etreum-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: center;
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
  padding: 52px 0 64px;
}

.etreum-hero-kicker {
  margin: 0 0 28px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.35;
}

.etreum-hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -1.6px;
}

.etreum-project-summary {
  display: flex;
  align-items: flex-end;
  gap: clamp(44px, 5vw, 76px);
  margin: 42px 0 0;
}

.etreum-project-meta {
  display: flex;
  gap: clamp(72px, 8.5vw, 128px);
  margin: 0;
}

.etreum-project-meta div {
  min-width: 92px;
}

.etreum-project-meta dt,
.etreum-project-meta dd {
  margin: 0;
  line-height: 1.3;
}

.etreum-project-meta dt {
  margin-bottom: 6px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.etreum-project-meta dd {
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.etreum-case-study {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 112px 0 128px;
  border-radius: 34px 34px 0 0;
  background: var(--projects-background);
}

.etreum-inner {
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
}

.etreum-section + .etreum-section {
  margin-top: 124px;
}

.etreum-section h2 {
  margin: 0 0 68px;
  color: #000;
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.1px;
}

.etreum-info-row,
.etreum-application-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 140px;
}

.etreum-label {
  margin: 3px 0 0;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.32;
  text-transform: uppercase;
}

.etreum-copy {
  max-width: 950px;
}

.etreum-copy p,
.etreum-resource-list p {
  margin: 0;
  color: #2b2b2b;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
}

.etreum-copy p + p {
  margin-top: 22px;
}

.etreum-copy strong {
  color: inherit;
  font-weight: 500;
}

.etreum-challenge-image {
  display: block;
  width: min(1120px, 100%);
  height: auto;
  margin: 64px auto 0;
}

.etreum-bestiary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(30px, 5vw, 78px);
  width: min(1120px, 100%);
  margin: 76px auto 80px;
}

.etreum-bestiary img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center bottom;
}

.etreum-resource-list {
  display: grid;
  gap: 34px;
  max-width: 950px;
}

.etreum-resource-list h3 {
  margin: 0 0 8px;
  color: #2b2b2b;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.etreum-resource-list > div:first-child h3 {
  font-weight: 500;
}

.etreum-process-image {
  display: block;
  width: min(1120px, 100%);
  height: auto;
  margin: 74px auto 0;
}

.etreum-logo-grid {
  display: grid;
  grid-template-columns: .58fr 1.48fr 1.82fr;
  align-items: center;
  gap: 38px;
  width: min(1120px, 100%);
  margin: 60px auto 82px;
}

.etreum-logo-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.etreum-color-row {
  margin-top: 62px;
}

.etreum-swatches {
  display: grid;
  grid-template-columns: repeat(5, 139px);
  justify-content: space-between;
  gap: 38px 0;
  width: min(1120px, 100%);
  margin: 82px auto 0;
}

.etreum-swatch-color {
  height: 118px;
  border: 1px solid #c8cbd0;
}

.etreum-swatch:nth-child(5) {
  grid-column: 2;
}

.etreum-swatch-color.is-dark {
  border-color: transparent;
}

.etreum-swatch p {
  display: grid;
  gap: 3px;
  margin: 12px 0 0;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}

.etreum-swatch strong {
  color: var(--ink);
  font-weight: 400;
}

.etreum-applications h2 {
  margin-bottom: 82px;
}

.etreum-application-row + .etreum-application-row {
  margin-top: 100px;
}

.etreum-application-row > img,
.etreum-application-content > img,
.etreum-closing-assets img,
.etreum-wide-application {
  display: block;
  width: 100%;
  height: auto;
}

.etreum-application-row > img {
  max-width: 980px;
}

.etreum-application-content {
  display: grid;
  gap: 54px;
}

.etreum-foldout-row .etreum-application-content {
  overflow: hidden;
}

.etreum-foldout-row .etreum-application-content > img {
  width: 103.24%;
  max-width: none;
  margin-left: -1.56%;
}

.etreum-wide-application {
  width: min(1120px, 100%);
  margin: 54px auto 100px;
}

.etreum-diptych-row {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 38px;
}

.etreum-diptych-row > img {
  max-width: 1069px;
}

.etreum-closing-assets {
  display: grid;
  gap: 54px;
  width: 100%;
  margin: 76px auto 108px;
}

.etreum-closing-intro {
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 80px;
}

.etreum-public-campaign {
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 38px;
}

.etreum-public-campaign > img {
  max-width: 1060px;
}

.etreum-return-row {
  display: flex;
  justify-content: center;
  margin: 112px 0 28px;
}

.etreum-project-credit {
  max-width: none;
  margin: 54px 0 0;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
  white-space: nowrap;
}

.etreum-return-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #000;
  box-shadow: 0 12px 24px rgb(0 0 0 / 12%);
  color: #fff;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.etreum-return-home span {
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.etreum-return-home:hover {
  background: #002bb8;
  box-shadow: 0 14px 28px rgb(0 43 184 / 22%);
  transform: translateY(-2px);
}

.etreum-return-home:hover span {
  transform: translate(2px, -2px);
}

.etreum-return-home:focus-visible {
  outline: 3px solid #002bb8;
  outline-offset: 4px;
}

.etreum-manual-jump {
  flex: 0 0 auto;
}

.etreum-manual-jump:hover span {
  transform: translateY(3px);
}

.etreum-manual-section {
  scroll-margin-top: 36px;
}

.etreum-manual-carousel {
  position: relative;
  overflow: hidden;
  width: min(960px, 100%);
  margin: 0 auto;
  border: 1px solid #d2d4d7;
  border-radius: 12px;
  background: #e6e7e9;
  box-shadow: 0 12px 28px rgb(0 0 0 / 8%);
  outline: none;
}

.etreum-manual-carousel:focus-visible {
  box-shadow: 0 0 0 3px #002bb8, 0 12px 28px rgb(0 0 0 / 8%);
}

.etreum-manual-viewport {
  padding: 8px;
}

.etreum-manual-spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 3px;
  width: 100%;
}

.etreum-manual-spread.is-single {
  grid-template-columns: minmax(0, 50%);
  justify-content: center;
}

.etreum-manual-spread img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgb(0 0 0 / 12%);
}

.etreum-manual-controls {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 9px;
  border-top: 1px solid #d2d4d7;
  color: #45494f;
}

.etreum-manual-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #aeb2b7;
  border-radius: 50%;
  background: #f5f6f7;
  color: #25282c;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.etreum-manual-controls button span {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.etreum-manual-controls button:hover {
  border-color: #002bb8;
  background: #002bb8;
  color: #fff;
  transform: translateY(-2px);
}

.etreum-manual-controls button:focus-visible {
  outline: 2px solid #002bb8;
  outline-offset: 2px;
}

.etreum-manual-controls p {
  margin: 0;
  font-family: var(--font-spline-mono), monospace;
  font-size: 11px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.etreum-manual-controls strong {
  font-size: 12px;
  font-weight: 500;
}

.manual-expand-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 999px;
  background: rgb(20 20 22 / 82%);
  box-shadow: 0 8px 20px rgb(0 0 0 / 20%);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.manual-expand-button:hover {
  background: #000;
  box-shadow: 0 11px 24px rgb(0 0 0 / 28%);
  transform: translateY(-2px);
}

.manual-expand-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #1a1a28;
}

.manual-expand-icon {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.manual-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgb(5 6 8 / 88%);
  backdrop-filter: blur(12px);
}

.manual-lightbox[hidden] {
  display: none;
}

.manual-lightbox-panel {
  display: grid;
  overflow: hidden;
  width: min(96vw, 1600px);
  height: min(94vh, 1060px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
  background: #191a1d;
  box-shadow: 0 28px 80px rgb(0 0 0 / 48%);
  color: #fff;
}

.manual-lightbox-topbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 22px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.manual-lightbox-topbar p,
.manual-lightbox-controls p {
  margin: 0;
  font-family: var(--font-inter), Arial, sans-serif;
}

.manual-lightbox-topbar p {
  font-size: 16px;
  font-weight: 600;
}

.manual-lightbox-close,
.manual-lightbox-controls button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.manual-lightbox-close {
  width: 40px;
  height: 40px;
  padding: 0;
}

.manual-lightbox-close span {
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.manual-lightbox-close:hover,
.manual-lightbox-controls button:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 20%);
  transform: translateY(-1px);
}

.manual-lightbox-close:focus-visible,
.manual-lightbox-controls button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.manual-lightbox-stage {
  display: grid;
  overflow: hidden;
  min-height: 0;
  padding: 18px 24px;
  place-items: center;
}

.etreum-lightbox-spread {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.etreum-lightbox-spread img {
  display: block;
  flex: 0 1 auto;
  width: auto;
  height: 100%;
  min-height: 0;
  max-width: calc(50% - 2px);
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgb(0 0 0 / 28%));
}

.donius-lightbox-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.manual-lightbox-controls {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 18px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.manual-lightbox-compact .manual-lightbox-controls {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 6px 18px;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  border-radius: 0;
  background: #111216;
  box-shadow: none;
  backdrop-filter: none;
  grid-template-columns: minmax(0, 1fr) auto 78px auto minmax(0, 1fr);
  gap: 10px;
}

.manual-lightbox-compact {
  padding: 10px;
}

.manual-lightbox-compact .manual-lightbox-panel {
  position: relative;
  width: min(98vw, 1800px);
  height: min(97vh, 1200px);
  grid-template-rows: minmax(0, 1fr) auto;
}

.manual-lightbox-compact .manual-lightbox-topbar {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  min-height: 0;
  padding: 0;
  border: 0;
}

.manual-lightbox-compact .manual-lightbox-stage {
  padding: 10px 18px 6px;
}

.manual-lightbox-compact .manual-lightbox-footer-title {
  min-width: 0;
  justify-self: start;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.manual-lightbox-compact .manual-lightbox-controls > p:not(.manual-lightbox-footer-title) {
  min-width: 78px;
}

.manual-lightbox-compact .manual-lightbox-controls button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0.78;
}

.manual-lightbox-compact .manual-lightbox-controls button:hover {
  border-color: transparent;
  background: transparent;
  opacity: 1;
  transform: scale(1.12);
}

.manual-lightbox-controls button {
  width: 40px;
  height: 40px;
  padding: 0;
}

.manual-lightbox-controls button span {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.manual-lightbox-controls p {
  min-width: 100px;
  font-size: 13px;
  text-align: center;
}

.manual-lightbox-controls strong {
  font-weight: 600;
}

/* WANDERLY — project page */
.wanderly-page {
  --wanderly-dark: #001f3f;
  --wanderly-blue: #2678b2;
  --wanderly-sand: #ead8b1;
  background: #fff;
}

.wanderly-nav {
  position: sticky;
  z-index: 50;
  top: 0;
}

.wanderly-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: #fff;
}

.wanderly-hero-image,
.wanderly-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wanderly-hero-image {
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.wanderly-hero-overlay {
  background: rgb(0 31 63 / 78%);
}

.wanderly-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: center;
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.wanderly-hero-kicker {
  margin: 0 0 24px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.35;
}

.wanderly-hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -1.6px;
}

.wanderly-hero-description {
  max-width: none;
  margin: 18px 0 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 300;
  line-height: 1.35;
  white-space: nowrap;
  text-wrap: nowrap;
}

.wanderly-project-summary {
  display: flex;
  align-items: flex-end;
  gap: clamp(44px, 5vw, 76px);
  margin: 38px 0 0;
}

.wanderly-project-meta {
  display: flex;
  gap: clamp(92px, 10vw, 150px);
  margin: 0;
}

.wanderly-project-meta div {
  min-width: 120px;
}

.wanderly-project-meta dt,
.wanderly-project-meta dd {
  margin: 0;
  line-height: 1.3;
}

.wanderly-project-meta dt {
  margin-bottom: 6px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.wanderly-project-meta dd {
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.wanderly-hero-figma-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 25px;
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgb(0 31 63 / 8%);
  color: #2b2b2b;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.wanderly-hero-figma-button span {
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.wanderly-hero-figma-button:hover,
.wanderly-hero-figma-button:focus-visible {
  border-color: var(--wanderly-blue);
  background: var(--wanderly-blue);
  box-shadow: 0 14px 28px rgb(0 31 63 / 22%);
  color: #fff;
}

.wanderly-hero-figma-button:hover {
  transform: translateY(-2px);
}

.wanderly-hero-figma-button:hover span {
  transform: translate(2px, -2px);
}

.wanderly-hero-figma-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.wanderly-case-study {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 112px 0 128px;
  border-radius: 34px 34px 0 0;
  background: var(--projects-background);
}

.wanderly-inner {
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
}

.wanderly-section + .wanderly-section {
  margin-top: 124px;
}

.wanderly-section h2 {
  margin: 0 0 68px;
  color: var(--wanderly-dark);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.1px;
  text-wrap: balance;
}

.wanderly-info-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 140px;
}

.wanderly-info-row + .wanderly-info-row {
  margin-top: 74px;
}

.wanderly-label {
  margin: 3px 0 0;
  color: var(--wanderly-blue);
  font-family: var(--font-spline-mono), monospace;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.32;
  text-transform: uppercase;
  text-wrap: pretty;
}

.wanderly-copy {
  max-width: 950px;
}

.wanderly-copy p {
  margin: 0;
  color: #2b2b2b;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
}

.wanderly-copy p + p {
  margin-top: 22px;
}

.wanderly-copy strong {
  color: inherit;
  font-weight: 500;
}

.wanderly-copy em {
  font-style: italic;
}

.wanderly-frictions-row {
  margin-top: 58px;
}

.wanderly-friction-cards {
  display: grid;
  gap: 18px;
}

.wanderly-friction-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 108px;
  padding: 18px 26px;
  border-radius: 14px;
  border: 1px solid #efbebe;
  background: #f7dddd;
}

.wanderly-card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.wanderly-card-icon img {
  display: block;
  width: 26px;
  height: 26px;
}

.wanderly-card-icon-problem {
  background: #edb5b5;
}

.wanderly-friction-card h3,
.wanderly-opportunity-card h3 {
  margin: 0;
  color: var(--wanderly-dark);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

.wanderly-friction-card h3 {
  color: #7f2929;
  font-size: 20px;
}

.wanderly-friction-card p,
.wanderly-opportunity-card p {
  margin: 7px 0 0;
  color: var(--annotation);
  font-family: var(--font-inter), Arial, sans-serif;
  font-weight: 300;
  line-height: 1.4;
}

.wanderly-friction-card strong,
.wanderly-opportunity-card strong {
  color: inherit;
  font-weight: 500;
}

.wanderly-friction-card p {
  color: #5e3131;
  font-size: 16px;
}

.wanderly-opportunity-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 62px;
}

.wanderly-opportunity-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 34px 30px 30px;
  border: 1px solid rgb(0 31 63 / 10%);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgb(0 31 63 / 5%);
}

.wanderly-opportunity-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--wanderly-blue);
  content: '';
}

.wanderly-card-icon-opportunity {
  margin-bottom: 26px;
  background: #e8f3f9;
}

.wanderly-opportunity-card h3 {
  font-size: 21px;
}

.wanderly-opportunity-card p {
  font-size: 17px;
}

.wanderly-phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(42px, 5vw, 64px);
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.wanderly-phone-row img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 520px;
  object-fit: contain;
  justify-self: center;
}

.wanderly-opening-screens {
  margin-top: 70px;
}

.wanderly-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 270px));
  justify-content: center;
  gap: 44px;
  width: min(940px, 100%);
  margin: 66px auto 78px;
}

.wanderly-metric {
  position: relative;
  display: flex;
  min-height: 184px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 28px 22px;
  border-radius: 16px;
  background: #dbeaf5;
  color: var(--wanderly-dark);
  text-align: center;
}

.wanderly-metric img {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 28px;
  height: 28px;
}

.wanderly-metric strong {
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
}

.wanderly-metric span {
  max-width: 160px;
  margin-top: 8px;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
}

.wanderly-findings {
  margin-top: 0;
}

.wanderly-benchmark-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  width: min(1120px, 100%);
  margin: 76px auto 0;
}

.wanderly-benchmark-logos img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: contain;
}

.wanderly-system-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  width: min(940px, 100%);
  margin: 64px auto 86px;
}

.wanderly-system-preview img {
  display: block;
  width: 100%;
  max-width: 296px;
  height: auto;
  border-radius: 14px;
  justify-self: center;
}

.wanderly-copy .wanderly-closing-highlight {
  color: #2278b3;
  font-weight: 500;
}

.wanderly-logo-concept {
  display: block;
  width: min(840px, 100%);
  height: auto;
  margin: 66px auto 86px;
}

.wanderly-type-samples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 90px;
  width: min(700px, 100%);
  margin: 60px auto 82px;
}

.wanderly-type-samples p {
  margin: 0 0 12px;
  color: var(--wanderly-blue);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.wanderly-type-samples span {
  display: block;
  color: #2b2b2b;
  font-size: 128px;
  font-weight: 400;
  line-height: 1;
}

.wanderly-type-samples .wanderly-vag-asset {
  display: block;
  width: 201px;
  max-width: 100%;
  height: auto;
}

.wanderly-type-samples .wanderly-montserrat-asset {
  display: block;
  width: 201px;
  max-width: 100%;
  height: auto;
}

.wanderly-palette-intro {
  margin-top: 0;
}

.wanderly-swatches {
  display: grid;
  grid-template-columns: repeat(4, 140px);
  justify-content: center;
  gap: clamp(42px, 6vw, 86px);
  width: min(1000px, 100%);
  margin: 68px auto 0;
}

.wanderly-components-row {
  margin-top: 96px;
}

.wanderly-components-card {
  overflow: visible;
  background: transparent;
}

.wanderly-components-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 18px rgb(0 31 63 / 4%));
}

.wanderly-swatch-color {
  height: 122px;
  border: 1px solid #c8cbd0;
}

.wanderly-swatch p {
  display: grid;
  gap: 3px;
  margin: 12px 0 0;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}

.wanderly-swatch strong {
  color: var(--ink);
  font-weight: 400;
}

.wanderly-final-prototype {
  display: block;
  width: min(820px, 100%);
  height: auto;
  margin: 74px auto 0;
}

.wanderly-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 112px 0 28px;
}

.wanderly-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgb(0 31 63 / 12%);
  color: #fff;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wanderly-button span {
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.wanderly-button-figma {
  background: var(--wanderly-blue);
}

.wanderly-button-home {
  border-color: var(--wanderly-dark);
  background: #f5f5f5;
  box-shadow: 0 8px 18px rgb(0 31 63 / 8%);
  color: var(--wanderly-dark);
}

.wanderly-button-figma:hover {
  background: var(--wanderly-dark);
  box-shadow: 0 14px 28px rgb(0 31 63 / 22%);
  transform: translateY(-2px);
}

.wanderly-button-home:hover {
  border-color: var(--wanderly-dark);
  background: var(--wanderly-sand);
  box-shadow: 0 12px 24px rgb(0 31 63 / 14%);
  transform: translateY(-2px);
}

.wanderly-button:hover span {
  transform: translate(2px, -2px);
}

.wanderly-button:focus-visible {
  outline: 3px solid #2678b2;
  outline-offset: 4px;
}

.back-to-top {
  position: fixed;
  z-index: 10;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(103 59 157 / 24%);
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 8px 24px rgb(26 26 40 / 10%);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, visibility 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top.is-visible:hover {
  transform: translateY(-3px);
  background: #fff;
}

.back-to-top img {
  display: block;
  width: 24px;
  height: auto;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .nav-links {
    gap: 20px;
    padding-right: 18px;
    font-size: 15px;
  }

  .language-switch {
    width: 82px;
    height: 34px;
  }

  .nav-links .language-option {
    min-height: 28px;
  }
}

@media (max-width: 1280px) and (min-width: 1081px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 56px;
  }

  .portrait-stage {
    width: 350px;
  }

  .hero-description {
    font-size: 19px;
  }
}

@media (max-width: 1080px) {
  .other-work-modal-content {
    width: calc(100% - 72px);
  }

  .about-modal-content {
    width: 100%;
    padding-right: 64px;
    padding-left: 64px;
  }

  .about-modal-intro h2 {
    white-space: normal;
  }

  .about-education {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
  }

  .about-graduation-meme {
    width: min(100%, 250px);
    transform: translate(-20px, 8px);
  }

  .about-tools {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 30px;
  }

  .about-de-hecho-meme {
    width: 190px;
  }

  .futura-carousel {
    grid-template-columns: var(--futura-arrow-size) minmax(0, 1fr) var(--futura-arrow-size);
  }

  .futura-carousel-stage {
    grid-column: 1 / -1;
  }

  .futura-carousel-controls p {
    grid-column: 2;
  }

  .futura-carousel-controls button {
    grid-row: 2;
  }

  .futura-carousel-controls button:first-of-type {
    transform: none;
  }

  .futura-carousel-controls button:last-of-type {
    grid-column: 3;
    transform: none;
  }

  .other-work-modal-description {
    font-size: 18px;
  }

  .other-work-modal-meta {
    grid-template-columns: .55fr .8fr 1.65fr;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 325px;
    width: min(960px, calc(100% - 64px));
    gap: 44px;
  }

  .portrait-stage {
    width: 325px;
  }

  h1 {
    font-size: 48px;
  }

  .eyebrow {
    font-size: 17px;
  }

  .hero-description {
    font-size: 19px;
  }

  .hero-description-break {
    display: none;
  }

  .projects-inner {
    width: min(960px, calc(100% - 64px));
  }

  .projects-grid {
    column-gap: 44px;
  }

  .etreum-hero-content,
  .etreum-inner {
    width: calc(100% - 64px);
  }

  .etreum-hero-title {
    font-size: 52px;
  }

  .etreum-project-summary {
    gap: 30px;
  }

  .etreum-project-meta {
    gap: 42px;
  }

  .etreum-info-row,
  .etreum-application-row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
  }

  .etreum-label {
    font-size: 18px;
  }

  .etreum-copy p,
  .etreum-resource-list p,
  .etreum-resource-list h3 {
    font-size: 20px;
  }

  .etreum-bestiary img {
    height: 170px;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .contact-inner {
    flex-direction: column;
    gap: 30px;
  }

  .contact-links {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }

  .other-work-modal {
    padding: 8px;
  }

  .other-work-modal-panel {
    width: 100%;
    height: 94dvh;
    border-radius: 18px;
  }

  .other-work-modal-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 31px;
  }

  .other-work-modal-content {
    width: calc(100% - 40px);
    padding: 64px 0 34px;
  }

  .other-work-modal-intro {
    padding-right: 0;
  }

  .other-work-modal-kicker {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .other-work-modal-intro h2 {
    padding-right: 20px;
    font-size: clamp(34px, 10vw, 44px);
    letter-spacing: -1.2px;
  }

  .other-work-modal-description {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.45;
  }

  .other-work-modal-meta {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .other-work-modal-meta div {
    padding-right: 0;
  }

  .other-work-modal-meta dt {
    margin-bottom: 7px;
  }

  .other-work-modal-meta dd {
    font-size: 18px;
  }

  .other-work-modal-artwork {
    margin-top: 40px;
  }

  .casa-poster-grid {
    margin-top: 40px;
  }

  .other-work-modal-note {
    margin-top: 32px;
  }

  .futura-carousel {
    margin-top: 24px;
  }

  .nav-shell {
    min-height: 82px;
    height: auto;
    padding: 12px 20px;
    border-radius: 0 0 21px 21px;
  }

  .logo {
    width: 55px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) 58px;
    width: min(310px, calc(100vw - 105px));
    column-gap: 6px;
    row-gap: 4px;
    padding-right: 0;
    font-size: 13px;
  }

  .nav-links > a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    white-space: nowrap;
  }

  .nav-links > a:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-links > a:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links > a:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .nav-links > a:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .nav-links > a:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: center;
    width: 58px;
    height: 30px;
    padding: 3px;
  }

  .nav-links .language-option {
    min-height: 24px;
    font-size: 10px;
  }

  .nav-shell.is-menu-ready {
    min-height: 72px;
    height: 72px;
    padding: 10px 20px;
    overflow: visible;
  }

  .nav-shell.is-menu-ready .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-shell.is-menu-ready .nav-links {
    position: absolute;
    z-index: 1;
    top: calc(100% + 8px);
    right: 14px;
    left: auto;
    display: grid;
    grid-template-columns: 1fr;
    width: min(320px, calc(100vw - 28px));
    max-height: calc(100vh - 92px);
    max-height: calc(100dvh - 92px);
    gap: 2px;
    padding: 14px;
    overflow-y: auto;
    border: 1px solid rgb(103 59 157 / 14%);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgb(26 26 40 / 14%);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    font-size: 15px;
    line-height: 1.3;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-shell.is-menu-ready .nav-links > a {
    grid-column: auto;
    grid-row: auto;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    white-space: normal;
  }

  .nav-shell.is-menu-ready .nav-links > a:hover {
    background: rgb(103 59 157 / 8%);
  }

  .nav-shell.is-menu-ready .language-switch {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: 88px;
    height: 36px;
    margin: 9px 0 2px 12px;
  }

  .nav-shell.is-menu-ready .nav-links .language-option {
    min-height: 30px;
    font-size: 11px;
  }

  .nav-shell.is-menu-open,
  .nav-shell.is-menu-open:hover,
  .nav-shell.is-menu-open:focus-within {
    background: #fff;
  }

  .nav-shell.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-shell.is-menu-open .mobile-menu-toggle {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
  }

  .nav-shell.is-menu-open .mobile-menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-shell.is-menu-open .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .nav-shell.is-menu-open .mobile-menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 38px;
    width: calc(100% - 40px);
    min-height: auto;
    padding: 76px 0 60px;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 17px;
  }

  h1 {
    font-size: clamp(39px, 11vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.34;
  }

  .hero-services-link {
    min-height: 46px;
    margin-top: 24px;
    padding: 10px 24px;
    font-size: 16px;
  }

  .about-modal-content {
    min-height: 0;
    padding: 78px 34px 72px;
  }

  .about-passion-meme {
    top: 48px;
    right: 34px;
    width: 76px;
  }

  .about-modal-intro {
    padding-right: 0;
  }

  .about-modal-kicker {
    min-height: 54px;
    margin-bottom: 22px;
    padding-right: 84px;
    font-size: 13px;
  }

  .about-modal-intro h2 {
    font-size: clamp(36px, 10vw, 46px);
    letter-spacing: -1.2px;
  }

  .about-modal-intro h2 em {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    vertical-align: 0;
  }

  .about-modal-intro > p:last-child {
    margin-top: 26px;
    font-size: 17px;
  }

  .about-divider {
    margin: 44px 0;
  }

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

  .about-education h3,
  .about-tools h3 {
    font-size: 31px;
  }

  .about-study {
    margin-top: 32px;
  }

  .about-study-meta {
    font-size: 12px;
  }

  .about-study h4 {
    font-size: 23px;
  }

  .about-study > p:last-child {
    font-size: 17px;
  }

  .about-graduation-meme {
    justify-self: center;
    width: min(76%, 240px);
    transform: translateY(-12px);
  }

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

  .about-tools-content {
    grid-column: 1;
    grid-row: 1;
  }

  .about-de-hecho-meme {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 160px;
    margin-top: 18px;
    transform: none;
  }

  .about-tools h3 {
    margin-bottom: 28px;
    padding-right: 0;
    text-align: left;
  }

  .about-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .portrait-stage {
    width: min(82vw, 330px);
    justify-self: center;
  }

  .services-section {
    padding: 94px 0 74px;
  }

  .services-inner {
    width: calc(100% - 40px);
  }

  .services-inner > h2 {
    margin-bottom: 42px;
    font-size: clamp(36px, 10vw, 46px);
    letter-spacing: -1.2px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 0;
    padding: 25px 24px 27px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .contact-section {
    padding: 52px 0 56px;
  }

  .contact-inner {
    align-items: center;
    flex-direction: column;
    gap: 30px;
    width: calc(100% - 40px);
  }

  .contact-heading {
    gap: 18px;
  }

  .contact-heading h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact-arrow {
    animation-name: contact-arrow-drift-mobile;
  }

  .contact-links {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .contact-links a {
    width: fit-content;
    max-width: 100%;
    min-height: 54px;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .projects-section {
    margin-top: -24px;
    padding: 48px 0 82px;
    border-radius: 26px 26px 0 0;
  }

  .other-work-section {
    margin-bottom: -26px;
    padding: 48px 0 82px;
    border-radius: 26px;
  }

  .projects-inner {
    width: calc(100% - 40px);
  }

  .projects-inner h2 {
    margin-bottom: 48px;
    font-size: 44px;
    letter-spacing: -1px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .project-visual {
    aspect-ratio: 1.65 / 1;
  }

  .project-category {
    margin-top: 17px;
    font-size: 16px;
  }

  .project-card h3 {
    font-size: 22px;
  }

  .back-to-top {
    right: 16px;
    left: auto;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .back-to-top img {
    width: 22px;
  }

  .etreum-hero {
    min-height: 470px;
  }

  .etreum-hero-content {
    min-height: 470px;
    width: calc(100% - 40px);
    padding: 56px 0 66px;
  }

  .etreum-hero-kicker {
    max-width: 420px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .etreum-hero-title {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .etreum-project-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
  }

  .etreum-project-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
  }

  .etreum-project-meta div {
    min-width: 0;
  }

  .etreum-project-meta dt {
    font-size: 11px;
  }

  .etreum-project-meta dd {
    font-size: 13px;
  }

  .etreum-case-study {
    margin-top: -24px;
    padding: 68px 0 84px;
    border-radius: 26px 26px 0 0;
  }

  .etreum-inner {
    width: calc(100% - 40px);
  }

  .etreum-section + .etreum-section {
    margin-top: 82px;
  }

  .etreum-section h2 {
    margin-bottom: 38px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.7px;
  }

  .etreum-info-row,
  .etreum-application-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .etreum-label {
    margin: 0;
    font-size: 15px;
  }

  .etreum-label br {
    display: none;
  }

  .etreum-copy p,
  .etreum-resource-list p,
  .etreum-resource-list h3 {
    font-size: 18px;
  }

  .etreum-copy p + p {
    margin-top: 18px;
  }

  .etreum-challenge-image {
    width: 100%;
    margin-top: 42px;
  }

  .etreum-bestiary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin: 48px auto 54px;
  }

  .etreum-bestiary img {
    height: 140px;
  }

  .etreum-resource-list {
    gap: 26px;
  }

  .etreum-process-image {
    margin-top: 46px;
  }

  .etreum-logo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 38px auto 54px;
  }

  .etreum-logo-grid img {
    height: 150px;
    object-position: left center;
  }

  .etreum-color-row {
    margin-top: 44px;
  }

  .etreum-swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
    margin-top: 54px;
  }

  .etreum-swatch:nth-child(5) {
    grid-column: auto;
  }

  .etreum-swatch-color {
    height: 96px;
  }

  .etreum-swatch p {
    font-size: 10px;
  }

  .etreum-applications h2 {
    margin-bottom: 48px;
  }

  .etreum-application-row + .etreum-application-row {
    margin-top: 64px;
  }

  .etreum-application-content {
    gap: 28px;
  }

  .etreum-wide-application {
    margin: 28px auto 64px;
  }

  .etreum-diptych-row,
  .etreum-public-campaign,
  .etreum-closing-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .etreum-closing-assets {
    gap: 28px;
    margin: 46px auto 64px;
  }

  .etreum-return-row {
    margin: 76px 0 16px;
  }

  .etreum-return-home {
    min-height: 52px;
    padding: 15px 24px;
    font-size: 16px;
  }

  .etreum-manual-section {
    scroll-margin-top: 20px;
  }

  .etreum-manual-carousel {
    border-radius: 10px;
  }

  .etreum-manual-viewport {
    padding: 6px;
  }

  .etreum-manual-spread {
    gap: 2px;
  }

  .etreum-manual-controls {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
    padding: 6px 8px 8px;
  }

  .etreum-manual-controls button {
    width: 32px;
    height: 32px;
  }

  .etreum-manual-controls p {
    font-size: 10px;
  }

  .etreum-manual-controls strong {
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .nav-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-shell.is-menu-ready {
    padding-right: 14px;
    padding-left: 14px;
  }

  .eyebrow {
    max-width: 320px;
  }

  .about-modal-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .about-passion-meme {
    right: 24px;
    width: 68px;
  }

  .about-modal-kicker {
    padding-right: 74px;
  }
}

@media (max-width: 340px) {
  html {
    scroll-padding-top: 88px;
  }

  .nav-shell:not(.is-menu-ready) {
    min-height: 124px;
  }

  .nav-shell:not(.is-menu-ready) .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(220px, calc(100vw - 91px));
  }

  .nav-shell:not(.is-menu-ready) .language-switch {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    width: 58px;
    margin-top: 2px;
  }
}

@media (max-width: 380px) {
  .contact-heading {
    gap: 14px;
  }

  .contact-arrow {
    width: 44px;
  }

  .contact-links a {
    min-height: 50px;
    padding: 12px 22px;
    font-size: 14px;
  }

  .contact-links a:first-child {
    padding-inline: 14px;
    font-size: 13px;
  }
}

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

  .illustrator-cursor,
  .skip-link,
  .nav-shell,
  .nav-links,
  .nav-links a,
  .mobile-menu-toggle,
  .mobile-menu-icon span,
  .hero-services-link,
  .hero-services-link span,
  .service-card,
  .service-dot,
  .contact-links a,
  .etreum-return-home,
  .etreum-return-home span,
  .etreum-manual-controls button,
  .back-to-top,
  .project-visual,
  .project-visual img,
  .project-card h3 {
    transition: none;
  }

  .other-work-modal-close {
    transition: none;
  }

  .other-work-modal,
  .other-work-modal-panel,
  .other-work-modal.is-closing,
  .other-work-modal.is-closing .other-work-modal-panel {
    animation: none;
  }

  .illustrator-cursor,
  .selection-frame {
    animation: none;
  }

  .contact-arrow {
    animation: none;
  }

}

@media (max-width: 1080px) {
  .wanderly-hero-content,
  .wanderly-inner {
    width: calc(100% - 64px);
  }

  .wanderly-hero-title {
    font-size: 52px;
  }

  .wanderly-hero-description {
    font-size: clamp(16px, 2.1vw, 18px);
  }

  .wanderly-info-row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
  }

  .wanderly-label {
    font-size: 18px;
  }

  .wanderly-copy p {
    font-size: 20px;
  }

  .wanderly-friction-card h3 {
    font-size: 18px;
  }

  .wanderly-opportunity-card {
    padding: 30px 24px 26px;
  }

  .wanderly-opportunity-card h3 {
    font-size: 19px;
  }

  .wanderly-opportunity-card p {
    font-size: 15px;
  }

  .wanderly-phone-row img {
    height: min(520px, 44vw);
  }

  .wanderly-benchmark-logos img {
    height: 108px;
  }

  .wanderly-swatches {
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .wanderly-hero {
    min-height: 470px;
  }

  .wanderly-hero-image {
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .wanderly-hero-content {
    min-height: 470px;
    width: calc(100% - 40px);
    padding: 54px 0 66px;
  }

  .wanderly-hero-kicker {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .wanderly-hero-title {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.06;
    letter-spacing: -1px;
  }

  .wanderly-hero-description {
    max-width: 520px;
    margin-top: 15px;
    font-size: 18px;
    white-space: normal;
    text-wrap: pretty;
  }

  .wanderly-project-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .wanderly-project-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
  }

  .wanderly-project-meta div {
    min-width: 0;
  }

  .wanderly-project-meta dt {
    font-size: 11px;
  }

  .wanderly-project-meta dd {
    font-size: 14px;
  }

  .wanderly-hero-figma-button {
    width: fit-content;
    min-height: 46px;
    padding: 11px 20px;
    font-size: 14px;
  }

  .wanderly-case-study {
    margin-top: -24px;
    padding: 68px 0 84px;
    border-radius: 26px 26px 0 0;
  }

  .wanderly-inner {
    width: calc(100% - 40px);
  }

  .wanderly-section + .wanderly-section {
    margin-top: 82px;
  }

  .wanderly-section h2 {
    margin-bottom: 38px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.7px;
  }

  .wanderly-info-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wanderly-info-row + .wanderly-info-row {
    margin-top: 54px;
  }

  .wanderly-label {
    margin: 0;
    font-size: 15px;
  }

  .wanderly-label br {
    display: none;
  }

  .wanderly-copy p {
    font-size: 18px;
  }

  .wanderly-copy p + p {
    margin-top: 18px;
  }

  .wanderly-frictions-row {
    margin-top: 46px;
  }

  .wanderly-friction-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 15px 16px;
    border-radius: 12px;
  }

  .wanderly-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .wanderly-card-icon img {
    width: 22px;
    height: 22px;
  }

  .wanderly-friction-card h3 {
    font-size: 16px;
  }

  .wanderly-friction-card p {
    margin-top: 4px;
    font-size: 13px;
  }

  .wanderly-opportunity-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 46px;
  }

  .wanderly-opportunity-card {
    min-height: 0;
    padding: 26px 22px 24px;
    border-radius: 14px;
  }

  .wanderly-card-icon-opportunity {
    margin-bottom: 18px;
  }

  .wanderly-opportunity-card h3 {
    font-size: 18px;
  }

  .wanderly-opportunity-card p {
    font-size: 15px;
  }

  .wanderly-phone-row {
    gap: 12px;
  }

  .wanderly-phone-row img {
    height: clamp(175px, 52vw, 360px);
  }

  .wanderly-opening-screens {
    margin-top: 46px;
  }

  .wanderly-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 46px auto 54px;
  }

  .wanderly-metric {
    min-height: 152px;
    padding: 32px 8px 16px;
  }

  .wanderly-metric img {
    top: 11px;
    left: 11px;
    width: 20px;
    height: 20px;
  }

  .wanderly-metric strong {
    font-size: 42px;
  }

  .wanderly-metric span {
    max-width: 100px;
    font-size: 13px;
  }

  .wanderly-benchmark-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 26px;
    margin-top: 48px;
  }

  .wanderly-benchmark-logos img {
    height: 82px;
  }

  .wanderly-system-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 44px auto 58px;
  }

  .wanderly-system-preview img {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    border-radius: 8px;
  }

  .wanderly-logo-concept {
    margin: 44px auto 58px;
  }

  .wanderly-type-samples {
    gap: 36px;
    margin: 42px auto 56px;
  }

  .wanderly-type-samples p {
    font-size: 14px;
  }

  .wanderly-type-samples span {
    font-size: 64px;
  }

  .wanderly-type-samples .wanderly-vag-asset {
    width: min(100%, 155px);
  }

  .wanderly-type-samples .wanderly-montserrat-asset {
    width: min(100%, 155px);
  }

  .wanderly-swatches {
    grid-template-columns: repeat(2, minmax(0, 140px));
    gap: 28px 30px;
    margin-top: 46px;
  }

  .wanderly-swatch-color {
    height: 104px;
  }

  .wanderly-swatch p {
    font-size: 10px;
  }

  .wanderly-components-row {
    margin-top: 58px;
  }

  .wanderly-components-card {
    border-radius: 0;
  }

  .wanderly-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 360px);
    margin: 76px auto 16px;
    gap: 22px;
  }

  .wanderly-button {
    min-height: 52px;
    padding: 15px 22px;
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .wanderly-hero-image {
    object-position: 58% center;
  }

  .wanderly-section h2 {
    font-size: 33px;
  }

  .wanderly-metric strong {
    font-size: 36px;
  }

  .wanderly-metric span {
    font-size: 12px;
  }

  .wanderly-benchmark-logos {
    gap: 18px;
  }

  .wanderly-benchmark-logos img {
    height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wanderly-hero-figma-button,
  .wanderly-hero-figma-button span,
  .wanderly-button,
  .wanderly-button span {
    transition: none;
  }
}

/* Starbucks case study */
.starbucks-page {
  --starbucks-dark: #1e3932;
  --starbucks-green: #02754b;
  --starbucks-green-hover: #036242;
  --starbucks-mint: #d4e9e2;
  --starbucks-mint-strong: #a9d5c7;
  --starbucks-cream: #f2f0ea;
  --starbucks-paper: #f4f6fb;
  min-height: 100vh;
  background: var(--starbucks-paper);
  color: #2b2b2b;
}

.starbucks-nav {
  position: sticky;
  z-index: 50;
  top: 0;
}

.starbucks-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: var(--starbucks-dark);
}

.starbucks-hero-image,
.starbucks-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.starbucks-hero-image-backdrop {
  object-fit: cover;
  object-position: center 40%;
}

.starbucks-hero-image-focus {
  inset: 0 0 0 auto;
  width: 74%;
  object-fit: cover;
  object-position: center 33%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 16%, #000 100%);
}

.starbucks-hero-overlay {
  background: rgb(17 55 45 / 82%);
}

.starbucks-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: center;
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
  padding: 54px 0 72px;
  color: #fff;
}

.starbucks-hero-kicker {
  margin: 0 0 26px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -.2px;
}

.starbucks-hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: clamp(52px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -2.2px;
  line-height: 1.04;
}

.starbucks-hero-description {
  max-width: 900px;
  margin: 24px 0 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.33;
}

.starbucks-hero-description strong,
.starbucks-copy strong,
.starbucks-insight-list strong,
.starbucks-decisions-card strong {
  font-weight: 500;
}

.starbucks-project-summary {
  display: flex;
  align-items: flex-end;
  gap: clamp(44px, 5vw, 76px);
  margin-top: 44px;
}

.starbucks-project-meta {
  display: flex;
  gap: 76px;
  margin: 0;
}

.starbucks-project-meta div {
  min-width: 150px;
}

.starbucks-project-meta dt,
.starbucks-project-meta dd {
  margin: 0;
}

.starbucks-project-meta dt {
  font-family: var(--font-spline-mono), monospace;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
}

.starbucks-project-meta dd {
  margin-top: 7px;
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.starbucks-hero-figma-button,
.starbucks-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-family: var(--font-inter), Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    box-shadow 180ms ease, transform 180ms ease;
}

.starbucks-hero-figma-button {
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--starbucks-dark);
  background: var(--starbucks-mint);
  box-shadow: 0 8px 18px rgb(0 0 0 / 12%);
  color: var(--starbucks-dark);
  font-size: 16px;
}

.starbucks-hero-figma-button span,
.starbucks-button span {
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

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

.starbucks-hero-figma-button:hover span,
.starbucks-button:hover span {
  transform: translate(2px, -2px);
}

.starbucks-hero-figma-button:focus-visible,
.starbucks-button:focus-visible {
  outline: 3px solid #02754b;
  outline-offset: 4px;
}

.starbucks-case-study {
  position: relative;
  z-index: 3;
  margin-top: -32px;
  padding: 112px 0 128px;
  border-radius: 34px 34px 0 0;
  background: var(--starbucks-paper);
}

.starbucks-inner {
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
}

.starbucks-section + .starbucks-section {
  margin-top: 124px;
}

.starbucks-section h2 {
  margin: 0 0 68px;
  color: var(--starbucks-dark);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.1px;
  line-height: 1.12;
  text-wrap: balance;
}

.starbucks-info-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 140px;
  align-items: start;
}

.starbucks-label {
  margin: 3px 0 0;
  color: var(--starbucks-green);
  font-family: var(--font-spline-mono), monospace;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.32;
  text-transform: uppercase;
  text-wrap: pretty;
}

.starbucks-copy {
  max-width: 950px;
}

.starbucks-copy p {
  margin: 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
}

.starbucks-copy p + p {
  margin-top: 22px;
}

.starbucks-old-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(30px, 4vw, 56px);
  width: min(850px, 100%);
  margin: 48px auto 0;
}

.starbucks-old-screens img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 530px;
  object-fit: contain;
  justify-self: center;
}

.starbucks-problem-row {
  margin-top: 64px;
}

.starbucks-frictions-row,
.starbucks-findings-row,
.starbucks-subsection-row {
  margin-top: 68px;
}

.starbucks-friction-cards {
  display: grid;
  gap: 16px;
}

.starbucks-friction-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 88px;
  padding: 14px 20px;
  border: 1px solid rgb(143 47 47 / 10%);
  border-radius: 16px;
  background: #f7dddd;
}

.starbucks-square-icon,
.starbucks-round-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  background: var(--starbucks-mint-strong);
}

.starbucks-square-icon {
  border-radius: 10px;
}

.starbucks-friction-card .starbucks-square-icon {
  width: 52px;
  height: 52px;
  background: #edb5b5;
}

.starbucks-friction-card .starbucks-square-icon img {
  width: 26px;
  height: 26px;
}

.starbucks-round-icon {
  border-radius: 50%;
}

.starbucks-square-icon img,
.starbucks-round-icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.starbucks-friction-card h3,
.starbucks-opportunity-card h3,
.starbucks-criteria-card h3 {
  margin: 0;
  font-family: var(--font-poppins), Arial, sans-serif;
  font-weight: 500;
}

.starbucks-friction-card h3 {
  color: #7f2929;
  font-size: 19px;
}

.starbucks-friction-card p,
.starbucks-opportunity-card p,
.starbucks-criteria-card p {
  margin: 6px 0 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.35;
}

.starbucks-friction-card p {
  font-size: 16px;
}

.starbucks-opportunity-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 70px;
}

.starbucks-opportunity-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 40px 28px 24px;
  border: 1px solid var(--starbucks-green);
  border-radius: 16px;
  background: transparent;
}

.starbucks-opportunity-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 18px;
  background: var(--starbucks-green);
  content: '';
}

.starbucks-opportunity-card .starbucks-round-icon {
  margin-bottom: 24px;
  background: var(--starbucks-mint);
}

.starbucks-opportunity-card h3 {
  color: var(--starbucks-green);
  font-size: 22px;
}

.starbucks-solution-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px;
  width: min(1100px, 100%);
  margin: 70px auto 0;
}

.starbucks-solution-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 60px;
  padding: 10px 24px 10px 12px;
  border-radius: 999px;
  background: var(--starbucks-mint);
}

.starbucks-solution-pill span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--starbucks-cream);
}

.starbucks-solution-pill img {
  width: 24px;
  height: 24px;
}

.starbucks-solution-pill p {
  margin: 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.starbucks-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 94px);
  width: min(1040px, 100%);
  margin: 76px auto 88px;
}

.starbucks-metric {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 28px 26px;
  border-radius: 16px;
  background: var(--starbucks-mint);
  text-align: center;
}

.starbucks-metric > img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
}

.starbucks-metric > strong {
  color: var(--starbucks-dark);
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
}

.starbucks-metric p {
  max-width: 220px;
  margin: 14px 0 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.28;
}

.starbucks-metric p strong {
  font-weight: 500;
}

.starbucks-insight-list,
.starbucks-maze-results {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.starbucks-copy .starbucks-insight-list p,
.starbucks-copy .starbucks-maze-results p {
  margin: 0;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--starbucks-cream);
  font-size: 19px;
}

.starbucks-copy .starbucks-key-insight {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--starbucks-green);
  border-radius: 14px;
  background: var(--starbucks-mint);
  font-size: 20px;
}

.starbucks-benchmark-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  width: min(1120px, 100%);
  margin: 76px auto 0;
}

.starbucks-benchmark-logos img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: contain;
}

.starbucks-criteria-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 72px;
}

.starbucks-criteria-card {
  min-height: 0;
  padding: 28px 22px 22px;
  border-radius: 12px;
  background: var(--starbucks-mint);
}

.starbucks-criteria-card > span {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--starbucks-green);
}

.starbucks-criteria-card h3 {
  color: var(--starbucks-green);
  font-size: 21px;
}

.starbucks-subsection-row {
  margin-top: 92px;
}

.starbucks-maze-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 64px minmax(300px, .8fr);
  align-items: center;
  gap: 34px;
  margin-top: 76px;
}

.starbucks-maze-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.starbucks-maze-stack img {
  display: block;
  width: auto;
  height: 390px;
  border: 2px solid var(--starbucks-green);
  border-radius: 18px;
  object-fit: cover;
  object-position: top center;
}

.starbucks-maze-stack img + img {
  margin-left: -26px;
}

.starbucks-maze-arrow {
  display: block;
  width: 54px;
  height: auto;
  justify-self: center;
}

.starbucks-decisions-card {
  min-height: 390px;
  padding: 34px 32px;
  border-radius: 16px;
  background: var(--starbucks-mint);
}

.starbucks-decisions-card .starbucks-round-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  background: var(--starbucks-mint-strong);
}

.starbucks-decisions-card p {
  margin: 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.42;
}

.starbucks-ui-kit-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--starbucks-mint);
}

.starbucks-evolution-card {
  display: block;
  width: min(700px, calc(100% - 390px));
  margin: 64px 0 0 390px;
  padding: 0;
  background: transparent;
}

.starbucks-evolution-card img {
  display: block;
  width: 100%;
  height: auto;
}

.starbucks-ui-kit-card {
  width: calc(100% - 390px);
  margin: 66px 0 0 390px;
  box-shadow: 0 8px 24px rgb(30 57 50 / 5%);
}

.starbucks-ui-kit-card img {
  display: block;
  width: 100%;
  height: auto;
}

.starbucks-final-prototype {
  display: block;
  width: min(820px, 100%);
  height: auto;
  margin: 76px auto 0;
}

.starbucks-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 110px 0 16px;
}

.starbucks-project-credit {
  max-width: none;
  margin: 56px 0 0;
  color: var(--annotation);
  font-family: var(--font-spline-mono), monospace;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
  white-space: nowrap;
}

.starbucks-button {
  min-height: 56px;
  padding: 16px 28px;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgb(30 57 50 / 12%);
  font-size: 18px;
}

.starbucks-button-figma {
  background: var(--starbucks-green);
  color: #fff;
}

.starbucks-button-figma:hover {
  background: var(--starbucks-green-hover);
  transform: translateY(-2px);
}

.starbucks-button-home {
  border-color: var(--starbucks-green-hover);
  background: var(--starbucks-mint);
  color: var(--starbucks-dark);
}

.starbucks-button-home:hover {
  background: var(--starbucks-cream);
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .starbucks-hero-content,
  .starbucks-inner {
    width: calc(100% - 64px);
  }

  .starbucks-project-summary {
    gap: clamp(44px, 5vw, 76px);
  }

  .starbucks-project-meta {
    gap: 32px;
  }

  .starbucks-info-row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
  }

  .starbucks-label {
    font-size: 18px;
  }

  .starbucks-copy p {
    font-size: 20px;
  }

  .starbucks-ui-kit-card {
    width: calc(100% - 224px);
    margin-left: 224px;
  }

  .starbucks-evolution-card {
    width: min(650px, calc(100% - 224px));
    margin-left: 224px;
  }

  .starbucks-old-screens img {
    height: min(520px, 48vw);
  }

  .starbucks-opportunity-card,
  .starbucks-criteria-card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .starbucks-opportunity-card p,
  .starbucks-criteria-card p {
    font-size: 16px;
  }

  .starbucks-maze-visual {
    grid-template-columns: minmax(0, 1fr) 48px 300px;
    gap: 20px;
  }

  .starbucks-maze-stack img {
    height: 320px;
  }

  .starbucks-decisions-card {
    min-height: 320px;
    padding: 26px 24px;
  }

  .starbucks-decisions-card p {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .starbucks-hero {
    min-height: 530px;
  }

  .starbucks-hero-image {
    inset: 0;
    width: 100%;
    object-position: 62% center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .starbucks-hero-image-backdrop {
    display: none;
  }

  .starbucks-hero-overlay {
    background: rgb(17 55 45 / 84%);
  }

  .starbucks-hero-content {
    min-height: 530px;
    width: calc(100% - 40px);
    padding: 52px 0 64px;
  }

  .starbucks-hero-kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .starbucks-hero-title {
    font-size: clamp(42px, 12vw, 52px);
    letter-spacing: -1.2px;
  }

  .starbucks-hero-description {
    max-width: 520px;
    margin-top: 18px;
    font-size: 18px;
  }

  .starbucks-project-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }

  .starbucks-project-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .starbucks-project-meta div {
    min-width: 0;
  }

  .starbucks-project-meta dt {
    font-size: 11px;
  }

  .starbucks-project-meta dd {
    font-size: 15px;
  }

  .starbucks-hero-figma-button {
    min-height: 46px;
    padding: 11px 19px;
    font-size: 14px;
  }

  .starbucks-case-study {
    margin-top: -24px;
    padding: 68px 0 84px;
    border-radius: 26px 26px 0 0;
  }

  .starbucks-inner {
    width: calc(100% - 40px);
  }

  .starbucks-section + .starbucks-section {
    margin-top: 82px;
  }

  .starbucks-section h2 {
    margin-bottom: 38px;
    font-size: 36px;
    letter-spacing: -.7px;
    line-height: 1.15;
  }

  .starbucks-info-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .starbucks-label {
    margin: 0;
    font-size: 15px;
    white-space: normal;
  }

  .starbucks-label-break {
    display: none;
  }

  .starbucks-copy p {
    font-size: 18px;
  }

  .starbucks-copy p + p {
    margin-top: 18px;
  }

  .starbucks-old-screens {
    gap: 10px;
    margin-top: 36px;
  }

  .starbucks-old-screens img {
    height: clamp(190px, 52vw, 350px);
  }

  .starbucks-problem-row {
    margin-top: 48px;
  }

  .starbucks-frictions-row,
  .starbucks-findings-row,
  .starbucks-subsection-row {
    margin-top: 52px;
  }

  .starbucks-friction-cards {
    gap: 14px;
  }

  .starbucks-friction-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 15px 16px;
    border-radius: 12px;
  }

  .starbucks-square-icon,
  .starbucks-round-icon {
    width: 44px;
    height: 44px;
  }

  .starbucks-square-icon img,
  .starbucks-round-icon img {
    width: 23px;
    height: 23px;
  }

  .starbucks-friction-card h3 {
    font-size: 16px;
  }

  .starbucks-friction-card p {
    margin-top: 4px;
    font-size: 13px;
  }

  .starbucks-opportunity-cards,
  .starbucks-criteria-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .starbucks-opportunity-card {
    min-height: 0;
    padding: 34px 22px 24px;
    border-radius: 14px;
  }

  .starbucks-opportunity-card::before {
    height: 10px;
  }

  .starbucks-opportunity-card .starbucks-round-icon {
    margin-bottom: 18px;
  }

  .starbucks-opportunity-card h3 {
    font-size: 19px;
  }

  .starbucks-opportunity-card p {
    font-size: 15px;
  }

  .starbucks-solution-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 46px;
  }

  .starbucks-solution-pill {
    min-height: 54px;
    padding: 8px 18px 8px 10px;
  }

  .starbucks-solution-pill p {
    font-size: 15px;
  }

  .starbucks-metrics {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 46px auto 54px;
  }

  .starbucks-metric {
    min-height: 0;
    align-items: flex-start;
    padding: 34px 22px 24px;
    border-radius: 14px;
    text-align: left;
  }

  .starbucks-metric > img {
    position: static;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .starbucks-metric > strong {
    font-size: 42px;
  }

  .starbucks-metric p {
    max-width: none;
    margin-top: 8px;
    font-size: 15px;
  }

  .starbucks-insight-list,
  .starbucks-maze-results {
    gap: 12px;
    margin-top: 28px;
  }

  .starbucks-copy .starbucks-insight-list p,
  .starbucks-copy .starbucks-maze-results p,
  .starbucks-copy .starbucks-key-insight {
    padding: 14px 16px;
    font-size: 15px;
  }

  .starbucks-benchmark-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 34px;
    margin-top: 50px;
  }

  .starbucks-benchmark-logos img {
    height: 76px;
  }

  .starbucks-criteria-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .starbucks-criteria-card > span {
    margin-bottom: 18px;
  }

  .starbucks-criteria-card h3 {
    font-size: 18px;
  }

  .starbucks-criteria-card p {
    font-size: 15px;
  }

  .starbucks-maze-visual {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 48px;
  }

  .starbucks-maze-stack img {
    width: 29%;
    height: auto;
    aspect-ratio: .47 / 1;
    border-width: 1px;
    border-radius: 10px;
  }

  .starbucks-maze-stack img + img {
    margin-left: -6%;
  }

  .starbucks-maze-arrow {
    width: 38px;
    transform: rotate(90deg);
  }

  .starbucks-decisions-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .starbucks-decisions-card .starbucks-round-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }

  .starbucks-decisions-card p {
    font-size: 16px;
  }

  .starbucks-evolution-card {
    width: min(88%, 610px);
    margin-top: 46px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    border-radius: 0;
  }

  .starbucks-evolution-card img {
    height: auto;
  }

  .starbucks-ui-kit-card {
    width: 100%;
    margin-top: 46px;
    margin-left: 0;
    border-radius: 12px;
  }

  .starbucks-final-prototype {
    margin-top: 48px;
  }

  .starbucks-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    width: min(100%, 360px);
    margin: 76px auto 8px;
  }

  .starbucks-button {
    min-height: 52px;
    padding: 15px 22px;
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .starbucks-section h2 {
    font-size: 33px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .starbucks-hero-figma-button,
  .starbucks-hero-figma-button span,
  .starbucks-button,
  .starbucks-button span {
    transition: none;
  }
}

/* Shared title typography */
h1,
.projects-inner h2,
.project-card h3,
.etreum-hero-title,
.wanderly-hero-title,
.starbucks-hero-title,
.etreum-section h2,
.wanderly-section h2,
.starbucks-section h2 {
  font-family: var(--font-bricolage), Arial, sans-serif;
  font-optical-sizing: auto;
}

h1 {
  font-weight: 800;
}

.projects-inner h2,
.project-card h3,
.etreum-section h2,
.wanderly-section h2,
.starbucks-section h2 {
  font-weight: 600;
}

.etreum-hero-title,
.wanderly-hero-title,
.starbucks-hero-title {
  font-weight: 700;
}

/* DONIUS — project page */
.donius-page {
  --donius-pink: #ef82ab;
  --donius-pink-hover: #dc4872;
  --donius-pink-text: #c73b69;
  --donius-red: #e45355;
  --donius-red-text: #a8373f;
  --donius-lilac: #c1aad2;
  --donius-purple: #6b3e91;
  --donius-peach: #fcce9e;
  --donius-paper: #f5f6fa;
  --donius-ink: #2b2b2b;
  background: #fff;
}

.donius-nav {
  position: sticky;
  z-index: 50;
  top: 0;
}

.donius-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: #fff;
}

.donius-hero-image,
.donius-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.donius-hero-image {
  object-fit: cover;
  object-position: center;
}

.donius-hero-overlay {
  background: linear-gradient(
    90deg,
    rgb(220 72 114 / 92%) 0%,
    rgb(220 72 114 / 82%) 45%,
    rgb(220 72 114 / 50%) 100%
  );
}

.donius-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: center;
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.donius-hero-kicker {
  margin: 0 0 24px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.35;
}

.donius-hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-bricolage), Arial, sans-serif;
  font-size: 70px;
  font-optical-sizing: auto;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 1.03;
}

.donius-hero-description {
  max-width: 880px;
  margin: 18px 0 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  text-wrap: pretty;
}

.donius-project-summary {
  display: flex;
  align-items: flex-end;
  gap: clamp(44px, 5vw, 76px);
  margin: 38px 0 0;
}

.donius-project-meta {
  display: flex;
  gap: clamp(92px, 10vw, 150px);
  margin: 0;
}

.donius-project-meta div {
  min-width: 120px;
}

.donius-project-meta dt,
.donius-project-meta dd {
  margin: 0;
  line-height: 1.3;
}

.donius-manual-jump {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 25px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgb(107 62 145 / 16%);
  color: #b11f52;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.donius-manual-jump span {
  font-size: 21px;
  line-height: 1;
  transition: transform 180ms ease;
}

.donius-manual-jump:hover {
  border-color: #6b3e91;
  background: #6b3e91;
  box-shadow: 0 12px 24px rgb(107 62 145 / 24%);
  color: #fff;
  transform: translateY(-2px);
}

.donius-manual-jump:hover span {
  transform: translateY(3px);
}

.donius-manual-jump:focus-visible {
  outline: 3px solid #6b3e91;
  outline-offset: 3px;
}

.donius-manual-section {
  scroll-margin-top: 36px;
}

.donius-project-meta dt {
  margin-bottom: 6px;
  font-family: var(--font-spline-mono), monospace;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.donius-project-meta dd {
  font-family: var(--font-poppins), Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.donius-case-study {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 112px 0 128px;
  border-radius: 34px 34px 0 0;
  background: var(--donius-paper);
}

.donius-inner {
  width: min(1288px, calc(100% - 96px));
  margin: 0 auto;
}

.donius-section + .donius-section {
  margin-top: 124px;
}

.donius-section h2 {
  margin: 0 0 68px;
  color: var(--donius-pink-hover);
  font-family: var(--font-bricolage), Arial, sans-serif;
  font-size: 48px;
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -1.1px;
  line-height: 1.12;
  text-wrap: balance;
}

.donius-info-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 140px;
  align-items: start;
}

.donius-label {
  margin: 3px 0 0;
  color: var(--donius-pink-text);
  font-family: var(--font-spline-mono), monospace;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.32;
  text-transform: uppercase;
  text-wrap: pretty;
}

.donius-copy {
  max-width: 950px;
}

.donius-copy p {
  margin: 0;
  color: var(--donius-ink);
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
}

.donius-copy p + p {
  margin-top: 22px;
}

.donius-copy strong {
  font-weight: 500;
}

.donius-feature-image,
.donius-brand-visual,
.donius-promo-gallery img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.donius-feature-image {
  width: min(1120px, 100%);
  margin: 64px auto 0;
}

.donius-brand-visual {
  width: calc(100% - 390px);
  margin: 58px 0 0 390px;
  background: transparent;
}

.donius-subbrand {
  margin-top: 88px;
}

.donius-subbrand + .donius-subbrand {
  margin-top: 104px;
}

.donius-subbrand h3 {
  margin: 0 0 42px;
  font-family: var(--font-bricolage), Arial, sans-serif;
  font-size: 32px;
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1.15;
}

.donius-subbrand-fruits h3 {
  color: var(--donius-red);
}

.donius-subbrand-animals h3 {
  color: #804eaa;
}

.donius-subbrand-fruits .donius-label {
  color: var(--donius-red-text);
}

.donius-subbrand-animals .donius-label {
  color: #804eaa;
}

.donius-carousel {
  position: relative;
  width: min(1380px, calc(100vw - 48px));
  margin: 64px 0 0 50%;
  transform: translateX(-50%);
  touch-action: pan-y;
}

.donius-carousel:focus-visible {
  border-radius: 18px;
  outline: 3px solid #6b3e91;
  outline-offset: 8px;
}

.donius-carousel-viewport {
  aspect-ratio: 3503 / 1240;
  overflow: hidden;
  border: 1px solid rgb(107 62 145 / 10%);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgb(107 62 145 / 7%);
}

.donius-carousel-viewport img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.donius-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.donius-carousel-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9a3f67;
  cursor: pointer;
  font: inherit;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.donius-carousel-controls button span {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.donius-carousel-controls button:hover {
  background: #fcecf2;
  color: #9a3f67;
  transform: translateY(-1px);
}

.donius-carousel-controls button:focus-visible {
  outline: 3px solid #9a3f67;
  outline-offset: 4px;
}

.donius-carousel-controls p {
  min-width: 58px;
  margin: 0;
  color: var(--donius-purple);
  font-family: var(--font-spline-mono), monospace;
  font-size: 13px;
  text-align: center;
}

.donius-carousel-controls strong {
  font-weight: 400;
}

.donius-promo-gallery {
  display: grid;
  gap: 32px;
  width: min(1120px, 100%);
  margin: 64px auto 0;
}

.donius-promo-gallery img {
  width: 100%;
}

.donius-cenefa-frame {
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  border-radius: 16px;
}

.donius-cenefa-frame img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transform: scale(1.09);
  transform-origin: center bottom;
}

.donius-actions {
  display: flex;
  justify-content: center;
  margin: 110px 0 16px;
}

.donius-home-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #c74385;
  color: #fff;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.donius-home-button span {
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.donius-home-button:hover {
  background: #b11f52;
  color: #fff;
  transform: translateY(-2px);
}

.donius-home-button:hover span {
  transform: translate(2px, -2px);
}

.donius-home-button:focus-visible {
  outline: 3px solid #6b3e91;
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .donius-hero-content,
  .donius-inner {
    width: calc(100% - 64px);
  }

  .donius-hero-title {
    font-size: 52px;
  }

  .donius-info-row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
  }

  .donius-label {
    font-size: 18px;
  }

  .donius-copy p {
    font-size: 20px;
  }

  .donius-brand-visual {
    width: calc(100% - 224px);
    margin-left: 224px;
  }
}

@media (max-width: 760px) {
  .donius-hero {
    min-height: 470px;
  }

  .donius-hero-image {
    object-position: 66% center;
  }

  .donius-hero-overlay {
    background: rgb(220 72 114 / 84%);
  }

  .donius-hero-content {
    min-height: 470px;
    width: calc(100% - 40px);
    padding: 54px 0 66px;
  }

  .donius-hero-kicker {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .donius-hero-title {
    font-size: clamp(42px, 12vw, 52px);
    letter-spacing: -1px;
    line-height: 1.06;
  }

  .donius-hero-description {
    max-width: 520px;
    margin-top: 15px;
    font-size: 18px;
  }

  .donius-project-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }

  .donius-project-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .donius-project-meta div {
    min-width: 0;
  }

  .donius-project-meta dt {
    font-size: 11px;
  }

  .donius-project-meta dd {
    font-size: 15px;
  }

  .donius-manual-jump {
    min-height: 48px;
    padding: 12px 21px;
    font-size: 15px;
  }

  .donius-case-study {
    margin-top: -24px;
    padding: 68px 0 84px;
    border-radius: 26px 26px 0 0;
  }

  .donius-inner {
    width: calc(100% - 40px);
  }

  .donius-section + .donius-section {
    margin-top: 82px;
  }

  .donius-section h2 {
    margin-bottom: 38px;
    font-size: 36px;
    letter-spacing: -.7px;
    line-height: 1.15;
  }

  .donius-info-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .donius-label {
    margin: 0;
    font-size: 15px;
  }

  .donius-label br {
    display: none;
  }

  .donius-copy p {
    font-size: 18px;
  }

  .donius-copy p + p {
    margin-top: 18px;
  }

  .donius-feature-image,
  .donius-promo-gallery,
  .donius-carousel {
    margin-top: 46px;
  }

  .donius-brand-visual {
    width: 100%;
    margin: 42px 0 0;
    border-radius: 12px;
  }

  .donius-subbrand {
    margin-top: 64px;
  }

  .donius-subbrand + .donius-subbrand {
    margin-top: 76px;
  }

  .donius-subbrand h3 {
    margin-bottom: 28px;
    font-size: 27px;
  }

  .donius-carousel-viewport,
  .donius-feature-image,
  .donius-promo-gallery img {
    border-radius: 12px;
  }

  .donius-carousel-controls {
    gap: 16px;
    margin-top: 18px;
  }

  .donius-carousel-controls button {
    width: 36px;
    height: 36px;
  }

  .donius-promo-gallery {
    gap: 20px;
  }

  .donius-actions {
    width: min(100%, 360px);
    margin: 76px auto 8px;
  }

  .donius-home-button {
    width: 100%;
    min-height: 52px;
    padding: 15px 22px;
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .donius-section h2 {
    font-size: 33px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .donius-carousel-controls button,
  .donius-manual-jump,
  .donius-manual-jump span,
  .donius-home-button,
  .donius-home-button span {
    transition: none;
  }
}

@media (max-width: 760px) {
  .manual-expand-button {
    top: 13px;
    right: 13px;
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .manual-expand-label {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .manual-lightbox {
    padding: 0;
  }

  .manual-lightbox-panel {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .manual-lightbox-topbar {
    min-height: 58px;
    padding-left: 16px;
  }

  .manual-lightbox-stage {
    padding: 12px 8px;
  }

  .manual-lightbox-controls {
    min-height: 62px;
  }

  .etreum-project-credit,
  .starbucks-project-credit {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manual-expand-button,
  .manual-lightbox-close,
  .manual-lightbox-controls button {
    transition: none;
  }
}

@media (forced-colors: active) and (max-width: 760px) {
  .mobile-menu-toggle,
  .nav-shell.is-menu-ready .nav-links {
    border: 1px solid CanvasText;
  }
}

/* 404 page */
.not-found-body {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
  background: #f5f6fa;
}

.not-found-page {
  display: grid;
  flex: 1;
  place-items: center;
  width: 100%;
  padding: clamp(48px, 8vw, 96px) 24px;
  background: #f5f6fa;
}

.not-found-content {
  width: min(680px, 100%);
  margin: auto;
  text-align: center;
}

.not-found-content h1 {
  margin: 0 0 18px;
  color: #673b9d;
  font-family: var(--font-bricolage), sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
}

.not-found-content p {
  margin: 0;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.not-found-home-link {
  margin-top: 28px;
}
