@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&family=Instrument+Sans:wght@500;600;700&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --black: #010101;
  --ink: #483f3f;
  --muted: #746d6d;
  --paper: #f0f0f0;
  --panel: #ffffff;
  --line: #e5e0e0;
  --blue: #1f46d2;
  --pink: #d21fae;
  --max: 1408px;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Geist", "Instrument Sans", Arial, sans-serif;
  --display: "Instrument Sans", "Geist", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #ececec;
  background: rgba(1, 1, 1, 0.42);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-light,
body:not(.home) .site-header {
  color: var(--black);
  background: rgba(240, 240, 240, 0.86);
  border-bottom: 1px solid rgba(72, 63, 63, 0.12);
}

.nav-wrap {
  width: min(calc(100% - 48px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: currentColor;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.brand-glyph {
  color: var(--pink);
}

.site-header.is-light .brand-mark img,
body:not(.home) .site-header .brand-mark img {
  filter: brightness(0);
}

.site-header.is-light .brand-glyph,
body:not(.home) .brand-glyph {
  color: var(--black);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-family: var(--serif);
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: left 220ms ease, right 220ms ease, opacity 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 8px;
  padding: 0 38px;
  border: 1px solid transparent;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding-inline: 30px;
  color: #ececec;
  background: var(--blue);
}

.nav-cta:hover,
.button:hover,
.text-link-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: #1537a7;
  border-color: #1537a7;
}

.button-outline {
  color: var(--black);
  background: var(--panel);
  border-color: var(--black);
}

.button-ghost-light {
  color: #ffffff;
  border-color: #ffffff;
  background: transparent;
}

.button-soft {
  width: 100%;
  color: var(--ink);
  background: #ffffff;
  box-shadow: -1px 2px 8px rgba(0, 0, 0, 0.06);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 120px 24px 64px;
  color: #ffffff;
  background: var(--black);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.5vw, 80px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-content h1 span {
  color: var(--pink);
}

.hero-content p {
  max-width: 650px;
  margin: 10px auto 0;
  color: #ececec;
  font-size: 15px;
  line-height: 1.26;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-wordmark {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 1;
  margin: 0;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  font-family: var(--display);
  font-size: clamp(140px, 14vw, 186px);
  font-weight: 600;
  line-height: 0.58;
  letter-spacing: 0;
  user-select: none;
}

.projects-section,
.services-section,
.page-hero,
.content-section {
  padding: 140px 24px;
  background: var(--paper);
}

.section-top,
.footer-row,
.page-inner,
.content-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

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

h2,
.page-hero h1 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.03;
}

.section-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  min-width: min(100%, 485px);
}

.section-actions .button-primary {
  flex: 1 1 auto;
}

.section-lede {
  max-width: 620px;
  margin: 16px 0 0;
  color: #483f3f;
  font-size: 20px;
  line-height: 1.35;
}

.project-stage {
  position: relative;
  width: min(100%, var(--max));
  min-height: 600px;
  margin: 92px auto 0;
}

.project-card {
  position: absolute;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #f8f1f1;
  border-radius: 8px;
  background: #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(1, 1, 1, 0.08);
}

.project-card-main {
  left: 0;
  top: 0;
  z-index: 3;
  width: min(38vw, 540px);
}

.project-card-mid {
  left: 30%;
  top: 10px;
  z-index: 2;
  width: min(37vw, 518px);
}

.project-card-small {
  right: 0;
  top: 72px;
  z-index: 1;
  width: min(26vw, 364px);
}

.project-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.82 / 1;
  border-radius: 8px;
  background: #f2f2f2;
}

.project-visual span {
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.visual-slumber {
  background: radial-gradient(circle at 30% 28%, #ffffff 0 10%, transparent 11%), linear-gradient(135deg, #d21fae, #1f46d2);
}

.visual-cove {
  background: linear-gradient(135deg, #f6f6f6 0 48%, #010101 49% 51%, #f6f6f6 52% 100%);
}

.visual-pulse {
  background: repeating-linear-gradient(90deg, #1f46d2 0 22px, #f0f0f0 22px 44px);
}

.project-copy {
  min-height: 168px;
  padding: 28px 8px 8px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.project-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.project-copy p {
  max-width: 240px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.project-copy a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  font-size: 12px;
}

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

.text-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  min-height: 60px;
  padding: 0 40px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--panel);
  font-family: var(--serif);
  font-size: 18px;
  text-decoration: underline;
  transition: transform 180ms ease;
}

.services-layout {
  width: min(100%, var(--max));
  margin: 92px auto 0;
  display: block;
  overflow: visible;
}

.srv-motion-section {
  padding-top: 76px;
}

.service-carousel {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.service-rail {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  width: min(100vw, 100%);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  margin-inline: max(-24px, calc((var(--max) - 100vw) / 2));
  scroll-padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  cursor: grab;
}

.service-rail::-webkit-scrollbar {
  display: none;
}

.service-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.service-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.service-arrow {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(1, 1, 1, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.service-arrow::before {
  font-size: 20px;
}

.service-arrow[data-service-prev]::before {
  content: "\2190";
}

.service-arrow[data-service-next]::before {
  content: "\2192";
}

.service-arrow:hover,
.service-arrow:focus-visible {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-1px);
  outline: none;
}

.service-arrow:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
}

.service-card {
  position: relative;
  flex: 0 0 clamp(300px, 29vw, 405px);
  height: clamp(342px, 31vw, 430px);
  scroll-snap-align: center;
  border: 8px solid #ffffff;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(38, 32, 32, 0.05);
  cursor: pointer;
  transition: background 360ms ease, color 360ms ease, transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease, opacity 360ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #f8e1e4;
  content: "";
  transition: background 320ms ease, border-radius 320ms ease, transform 320ms ease;
}

.service-card span {
  position: absolute;
  left: 12px;
  top: 20px;
  z-index: 1;
  color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}

.service-card-icon {
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 1;
  width: clamp(54px, 4.8vw, 72px);
  height: clamp(54px, 4.8vw, 72px);
  object-fit: contain;
  pointer-events: none;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(22%) sepia(100%) saturate(2788%) hue-rotate(296deg) brightness(92%) contrast(93%);
  transition: filter 360ms ease, opacity 360ms ease, transform 360ms ease;
}

.service-card strong {
  position: absolute;
  left: 50%;
  top: 72%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: min(76%, 290px);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(38, 32, 32, 0.09);
  outline: none;
}

.service-rail:hover .service-card:not(:hover):not(.is-selected) {
  opacity: 0.78;
}

.service-card.is-selected {
  border-width: 10px;
  border-radius: 10px;
  color: #ffffff;
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 28px 72px rgba(38, 32, 32, 0.13);
}

.service-card.is-selected::before {
  background: #d21fae;
  border-radius: 20px;
}

.service-card.is-selected .service-card-icon {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.service-card.is-selected span {
  color: #ffffff;
}

.service-card.is-selected strong {
  left: 42px;
  right: 34px;
  top: auto;
  bottom: 36px;
  transform: none;
  width: auto;
  font-size: clamp(36px, 3.1vw, 50px);
  line-height: 1;
  text-align: left;
  white-space: normal;
}

.service-summary {
  width: min(100%, var(--max));
  max-width: 488px;
  margin: 46px auto 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 0.95;
  letter-spacing: -0.0205em;
}

.service-detail {
  position: sticky;
  top: 112px;
  min-height: 458px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-left: 1px solid rgba(72, 63, 63, 0.2);
}

.detail-number {
  margin: 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
}

.service-detail h3 {
  margin: 0 0 20px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.service-detail p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.service-detail ul,
.list,
.service-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(72, 63, 63, 0.16);
  color: var(--ink);
}

.page-hero {
  padding-top: 170px;
}

.page-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
}

.content-section {
  padding-top: 40px;
}

.content-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-card {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #f8f1f1;
  border-radius: 8px;
  background: #ffffff;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.content-card p,
.content-card li {
  color: var(--ink);
  line-height: 1.45;
}

.content-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
}

.content-card input,
.content-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--black);
  background: var(--paper);
}

.content-card textarea {
  min-height: 118px;
  resize: vertical;
}

/* FAQ Section */
.faq-section {
  padding: 140px 24px;
  background: #ffffff;
}

.faq-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 680px);
  gap: 80px;
  align-items: start;
}

.faq-inner h2 {
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  margin-top: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(72, 63, 63, 0.16);
  padding: 24px 0;
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(72, 63, 63, 0.16);
}

.faq-item summary {
  list-style: none;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
  transition: color 200ms ease;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 240ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--blue);
}

.faq-answer {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
}

/* Shared Figma FAQ section */
.portfolio-faq-section {
  padding: 112px 24px 80px;
  background: var(--paper);
}

.portfolio-faq-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.portfolio-faq-heading {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.portfolio-faq-inner h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.portfolio-faq-inner h2 em {
  font-style: italic;
}

.portfolio-faq-heading > p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.portfolio-faq-panel {
  width: 100%;
  margin: 0;
  padding: clamp(6px, 1vw, 12px);
  display: block;
  border: 1px solid rgba(72, 63, 63, 0.1);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(38, 32, 32, 0.055);
}

.portfolio-faq-media {
  display: none;
}

.portfolio-faq-media img {
  width: 100%;
  max-width: 619px;
  height: auto;
  aspect-ratio: 619 / 413;
  object-fit: cover;
}

.portfolio-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portfolio-faq-list .faq-item {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(72, 63, 63, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 220ms ease;
}

.portfolio-faq-list .faq-item:hover {
  background: rgba(31, 70, 210, 0.025);
}

.portfolio-faq-list .faq-item:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.portfolio-faq-list .faq-item:last-of-type {
  border-bottom: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-faq-list summary {
  min-height: 76px;
  padding: 24px clamp(18px, 3vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.portfolio-faq-list summary::after {
  content: "+";
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(72, 63, 63, 0.14);
  border-radius: 50%;
  color: var(--blue);
  background: #ffffff;
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1;
  opacity: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.portfolio-faq-list .faq-item[open] summary::after {
  content: "-";
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.portfolio-faq-list .faq-item[open] {
  position: relative;
  background: linear-gradient(90deg, rgba(210, 31, 174, 0.08), rgba(31, 70, 210, 0.035));
}

.portfolio-faq-list .faq-item[open]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: var(--pink);
}

.portfolio-faq-list .faq-answer {
  margin: 0;
  padding: 0 clamp(18px, 3vw, 34px) 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

.portfolio-faq-list .faq-answer p {
  margin: 0;
  max-width: 760px;
}

.portfolio-faq-cta {
  position: relative;
  width: min(100%, 1120px);
  min-height: 360px;
  margin: 72px auto 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 74px 24px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 28px 80px rgba(31, 70, 210, 0.16);
}

.portfolio-faq-cta::before,
.portfolio-faq-cta::after {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.6);
  font-family: var(--display);
  font-size: clamp(110px, 13vw, 186px);
  font-weight: 500;
  line-height: 0.58;
  opacity: 0.6;
  pointer-events: none;
}

.portfolio-faq-cta::before {
  content: "ayo";
  left: 11%;
  top: 76px;
}

.portfolio-faq-cta::after {
  content: "dsgn";
  right: 6%;
  bottom: 76px;
}

.portfolio-faq-cta-content {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.portfolio-faq-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.15;
}

.portfolio-faq-cta p {
  margin: -8px 0 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.portfolio-faq-cta-actions {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

/* Premium Footer */
.site-footer {
  padding: 77px 24px 64px;
  color: var(--ink);
  background: #f7f7f7;
  border-top: none;
}

.footer-inner {
  width: min(100%, 1588px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 500px) minmax(0, 1063px);
  gap: 32px;
}

.footer-card-blue {
  background: var(--blue);
  border-radius: 20px;
  height: 608px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.footer-card-blue::before {
  content: "";
  position: absolute;
  left: 51px;
  top: 46px;
  width: 113px;
  height: 110px;
  background: url("/assets/figma/footer/footer-logo.svg") center / contain no-repeat;
}

.footer-logo-wrap {
  position: absolute;
  left: -8px;
  bottom: 54px;
  display: flex;
  flex-direction: column;
  line-height: 0.59;
  user-select: none;
  pointer-events: none;
  opacity: 0.72;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.footer-logo-glyph {
  font-family: var(--display);
  font-size: clamp(150px, 12.5vw, 226px);
  font-weight: 500;
}

.footer-logo-sub {
  font-family: var(--display);
  font-size: clamp(150px, 12.5vw, 226px);
  font-weight: 500;
  padding-left: 0;
}

.footer-card-white {
  background: #ffffff;
  border-radius: 20px;
  height: 608px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 79px 112px 32px 113px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.footer-card-white::after {
  content: "ayo.\A dsgn";
  white-space: pre;
  position: absolute;
  right: 22px;
  bottom: 8px;
  color: transparent;
  -webkit-text-stroke: 0.25px rgba(130, 119, 119, 0.6);
  font-family: var(--display);
  font-size: clamp(82px, 6.8vw, 114px);
  font-weight: 500;
  line-height: 0.59;
  opacity: 0.6;
  pointer-events: none;
}

.footer-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(320px, 1fr);
  gap: clamp(56px, 7vw, 118px);
  align-items: start;
}

.footer-nav-col {
  order: -1;
}

.footer-cta-col h2 {
  font-family: var(--sans);
  font-size: clamp(25px, 1.75vw, 29px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--black);
  margin: 0 0 40px;
  max-width: 350px;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button-pink {
  background: var(--pink);
  border-color: var(--pink);
  color: #ffffff;
  min-height: 60px;
  padding-inline: 48px;
  border-radius: 10px;
}

.button-pink:hover {
  background: #b51594;
  border-color: #b51594;
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--pink);
  color: #ffffff;
  border-radius: 50%;
  transition: transform 220ms ease, background 220ms ease;
}

.button-arrow:hover {
  background: #b51594;
  transform: translateX(2px);
}

.footer-nav-col h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 39px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 29px;
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
}

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

.footer-card-bottom {
  position: relative;
  z-index: 1;
  border-top: 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(230px, auto);
  align-items: start;
  gap: 40px;
}

.footer-social-section {
  justify-self: start;
  padding-top: 18px;
}

.footer-social-section h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 8px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0;
  font-weight: 500;
  color: var(--ink);
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0;
  color: var(--ink);
  transition: color 220ms ease, transform 220ms ease, background 220ms ease;
}

.footer-social-links a::before {
  content: "";
  width: var(--footer-icon-size, 23px);
  height: var(--footer-icon-size, 23px);
  display: block;
  background: currentColor;
  transition: transform 220ms ease;
}

.footer-social-links a[href*="behance"]::before {
  --footer-icon-size: 34px;
  -webkit-mask: url("/assets/figma/footer/footer-behance.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-behance.svg") center / contain no-repeat;
}

.footer-social-links a[href*="dribbble"]::before {
  --footer-icon-size: 34px;
  -webkit-mask: url("/assets/figma/footer/footer-dribbble.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-dribbble.svg") center / contain no-repeat;
}

.footer-social-links a[href*="github"]::before {
  -webkit-mask: url("/assets/figma/footer/footer-github.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-github.svg") center / contain no-repeat;
}

.footer-social-links a[href*="x.com"]::before {
  --footer-icon-size: 34px;
  -webkit-mask: url("/assets/figma/footer/footer-x.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-x.svg") center / contain no-repeat;
}

.footer-social-links a[href*="linkedin"]::before {
  -webkit-mask: url("/assets/figma/footer/footer-linkedin.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-linkedin.svg") center / contain no-repeat;
}

.footer-social-links a:hover {
  color: var(--blue);
  background: transparent;
  transform: translateY(-2px);
}

.footer-social-links .divider {
  width: 1px;
  height: 28px;
  background: rgba(72, 63, 63, 0.16);
}

.footer-copyright {
  font-size: 19px;
  color: var(--muted);
  font-weight: 500;
  max-width: 280px;
  justify-self: end;
  padding-top: 52px;
}

.process-section,
.about-preview-section {
  padding: 140px 24px;
  background: var(--paper);
}

.process-inner,
.testimonials-top,
.about-preview-inner,
.testimonial-meta {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.process-inner h2,
.testimonials-top h2,
.about-preview-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.03;
}

.process-inner em,
.about-preview-copy em {
  font-style: italic;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  margin-top: 128px;
  align-items: end;
}

.process-step {
  color: var(--ink);
  cursor: pointer;
  transition: transform 320ms ease, opacity 320ms ease;
}

.process-steps:hover .process-step,
.process-steps:focus-within .process-step {
  opacity: 0.78;
}

.process-step:hover,
.process-step:focus-within,
.process-step.is-selected {
  opacity: 1;
  transform: translateY(-4px);
}

.process-icon {
  width: 126px;
  height: 109px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 5px;
  transition: transform 320ms ease, filter 320ms ease;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-step:hover .process-icon,
.process-step:focus-within .process-icon,
.process-step.is-selected .process-icon {
  transform: translateY(-3px);
}

.process-step h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 2.2vw, 35px);
  font-weight: 400;
  line-height: 0.9;
}

.process-step p {
  margin: 0;
  max-width: 325px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.process-cta {
  margin-top: 86px;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 8vw, 112px);
  border-radius: 4px;
  color: #ffffff;
  background: var(--pink);
}

.process-cta p {
  width: min(100%, 856px);
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 140px 24px 92px;
  color: #ffffff;
  background: var(--blue);
}

.testimonials-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.testimonials-top h2 {
  color: #ffffff;
}

.button-pink {
  color: #ffffff;
  background: var(--pink);
  border-color: var(--pink);
}

.button-pink:hover {
  background: #b81796;
  border-color: #b81796;
}

.testimonial-watermark {
  position: absolute;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  font-family: var(--display);
  font-size: clamp(120px, 15vw, 186px);
  font-weight: 600;
  line-height: 0.58;
  user-select: none;
}

.watermark-one {
  left: -48px;
  top: 120px;
}

.watermark-two {
  right: -12px;
  bottom: 260px;
}

.testimonial-ticker {
  position: relative;
  z-index: 2;
  width: calc(100% + 48px);
  margin: 74px -24px 0;
  overflow: hidden;
  outline: none;
}

.testimonial-ticker::before,
.testimonial-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(14vw, 170px);
  pointer-events: none;
}

.testimonial-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue), rgba(31, 70, 210, 0));
}

.testimonial-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--blue), rgba(31, 70, 210, 0));
}

.testimonial-track {
  width: max-content;
  min-height: 340px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 44px 0 56px;
  animation: testimonialTicker 34s linear infinite;
  will-change: transform;
}

.testimonial-ticker:hover .testimonial-track,
.testimonial-ticker:focus-visible .testimonial-track,
.testimonial-ticker.is-paused .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  position: relative;
  flex: 0 0 360px;
  width: 360px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px 24px;
  border: 1px solid #f7e1e1;
  border-radius: 4px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 24px 42px rgba(1, 1, 1, 0.08);
  font-size: 13px;
  transform: rotate(var(--tilt, 0deg));
  transform-origin: center;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  z-index: 6;
  transform: rotate(0deg) scale(1.22);
  box-shadow: 0 30px 70px rgba(1, 1, 1, 0.18);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  left: 26px;
  top: 8px;
  color: #233e9f;
  font-family: var(--serif);
  font-size: 112px;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 48px 0 0;
  line-height: 1.3;
}

.rating {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  display: grid;
  gap: 3px;
  color: var(--blue);
  text-align: right;
  font-family: var(--display);
  font-weight: 600;
}

.rating strong {
  color: var(--pink);
  font-size: 0.95em;
  letter-spacing: 0;
}

.rating strong {
  font-size: 0;
}

.rating strong::before {
  content: "\2605\2605\2605\2605\2606";
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
}

.testimonial-card footer strong {
  color: var(--ink);
  font-size: 0.9em;
  font-weight: 600;
}

.testimonial-card footer span {
  color: #7a7474;
  font-size: 0.78em;
}

.tilt-left {
  --tilt: -14deg;
}

.tilt-right {
  --tilt: 14deg;
}

.tilt-soft {
  --tilt: -8deg;
}

.testimonial-meta {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(220px, 485px) 1fr;
  gap: 60px;
  align-items: center;
}

.testimonial-meta p {
  margin: 0;
  max-width: 485px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.proof-stats span {
  display: grid;
  gap: 4px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

.proof-stats strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
}

.trusted-strip {
  position: relative;
  z-index: 2;
  width: min(100%, 1092px);
  margin: 54px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 7vw, 100px);
}

.trusted-strip img {
  width: auto;
  max-width: 138px;
  height: auto;
  max-height: 95px;
  object-fit: contain;
  filter: saturate(1.08);
}

.trusted-strip img:first-child {
  width: 129px;
  max-height: 20px;
}

.trusted-note {
  position: relative;
  z-index: 2;
  margin: 48px 0 0;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

.about-preview-inner {
  display: grid;
  grid-template-columns: minmax(320px, 486px) minmax(420px, 1fr);
  gap: clamp(60px, 9vw, 145px);
  align-items: center;
}

.about-preview-copy {
  display: grid;
  gap: 20px;
}

.about-preview-copy h2 {
  color: var(--black);
}

.about-preview-copy p {
  margin: 0;
  max-width: 486px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.about-preview-copy .about-lede {
  color: #141414;
  font-size: 24px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-top: 18px;
}

.skill-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 14px;
  border: 1px solid #767373;
  border-radius: 100px;
  color: #767373;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
  cursor: default;
}

.skill-tags span:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 16px;
}

.social-row a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.social-row a::after {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
}

.social-row a[aria-label="Behance"]::after {
  -webkit-mask: url("/assets/figma/footer/footer-behance.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-behance.svg") center / contain no-repeat;
}

.social-row a[aria-label="Dribbble"]::after {
  -webkit-mask: url("/assets/figma/footer/footer-dribbble.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-dribbble.svg") center / contain no-repeat;
}

.social-row a[aria-label="GitHub"]::after {
  -webkit-mask: url("/assets/figma/footer/footer-github.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-github.svg") center / contain no-repeat;
}

.social-row a[aria-label="X"]::after {
  -webkit-mask: url("/assets/figma/footer/footer-x.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-x.svg") center / contain no-repeat;
}

.social-row a[aria-label="LinkedIn"]::after {
  -webkit-mask: url("/assets/figma/footer/footer-linkedin.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-linkedin.svg") center / contain no-repeat;
}

.social-row a:hover,
.social-row a:focus-visible {
  color: var(--blue);
  transform: translateY(-2px);
}

.social-row a + a {
  position: relative;
}

.social-row a + a::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 1px;
  height: 24px;
  background: rgba(72, 63, 63, 0.2);
}

.about-actions {
  display: flex;
  gap: 11px;
  margin-top: 48px;
}

.about-actions .button-primary {
  flex: 1 1 auto;
}

.about-image-stack {
  position: relative;
  min-height: clamp(360px, 34vw, 568px);
  border-radius: 4px;
  overflow: visible;
}

.stack-card {
  position: absolute;
  display: block;
  padding: 8px;
  border: 1px solid #f7e1e1;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(72, 63, 63, 0.12);
  cursor: pointer;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 260ms ease, box-shadow 260ms ease;
}

.stack-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 3px;
}

.stack-card.is-front {
  z-index: 3;
  left: 0;
  right: 0;
  top: 64px;
  height: min(512px, 30vw);
  min-height: 330px;
}

.stack-card.is-middle {
  z-index: 2;
  left: 30px;
  right: 34px;
  top: 36px;
  height: min(468px, 27vw);
  min-height: 300px;
  transform: translateX(28px) scale(0.92);
}

.stack-card.is-back {
  z-index: 1;
  left: 60px;
  right: 68px;
  top: 12px;
  height: min(420px, 24vw);
  min-height: 270px;
  transform: translateX(58px) scale(0.84);
  opacity: 0.92;
}

.stack-card:hover,
.stack-card:focus-visible {
  box-shadow: 0 34px 76px rgba(72, 63, 63, 0.18);
  outline: none;
}

@keyframes testimonialTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Projects Grid & Tile Styles */
.project-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 22px;
  width: min(1436px, calc(100% - 48px));
  margin: 0 auto;
}

.project-tile {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.07);
  border-radius: 8px;
  background: var(--surface);
}

.project-tile-tall {
  grid-row: span 2;
}

.project-image {
  height: 360px;
  overflow: hidden;
  background: #e9e9e9;
}

.project-tile-tall .project-image {
  height: 500px;
}

.project-image img,
.project-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 18px 22px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
}

.project-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}

.project-copy p {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.35;
}

.project-copy button,
.project-copy a {
  flex: 0 0 auto;
  min-width: 104px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-family: var(--serif);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Contact Page Styles */
.contact-page {
  padding-top: 76px;
}

.contact-page .page-hero {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.contact-page .page-hero p {
  margin-top: 22px;
}

.contact-page .contact-section {
  padding-bottom: 104px !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 390px;
  gap: 24px;
  width: min(1436px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-form,
.contact-info {
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(72, 63, 63, 0.2);
  border-radius: 8px;
  outline: 0;
  background: #ffffff;
  color: var(--ink);
  font-size: 16px;
}

.contact-form input {
  min-height: 56px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 180px;
  padding: 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form button {
  min-height: 56px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-family: var(--serif);
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background 180ms ease;
}

.contact-form button:hover {
  background: #193dbb;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 32px;
}

.contact-info h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.contact-info a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border-bottom: 1px solid rgba(72, 63, 63, 0.16);
  color: var(--ink);
  font-size: 16px;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.contact-info a::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  justify-self: center;
  background: currentColor;
  opacity: 0.86;
}

.contact-info a[href^="mailto:"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-info a[href*="wa.me"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.92.33 1.82.62 2.68a2 2 0 0 1-.45 2.11L8 9.79a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.86.29 1.76.5 2.68.62A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.92.33 1.82.62 2.68a2 2 0 0 1-.45 2.11L8 9.79a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.86.29 1.76.5 2.68.62A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-info a[href*="behance"]::before {
  -webkit-mask: url("/assets/figma/footer/footer-behance.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-behance.svg") center / contain no-repeat;
}

.contact-info a[href*="github"]::before {
  -webkit-mask: url("/assets/figma/footer/footer-github.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-github.svg") center / contain no-repeat;
}

.contact-info a[href*="linkedin"]::before {
  -webkit-mask: url("/assets/figma/footer/footer-linkedin.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-linkedin.svg") center / contain no-repeat;
}

.contact-info a[href*="x.com"]::before {
  -webkit-mask: url("/assets/figma/footer/footer-x.svg") center / contain no-repeat;
  mask: url("/assets/figma/footer/footer-x.svg") center / contain no-repeat;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  color: var(--blue);
  border-color: rgba(31, 70, 210, 0.2);
  transform: translateX(2px);
  outline: none;
}

.contact-info a:last-child {
  border-bottom: 0;
}

/* About Hero Styles */
.about-hero {
  width: min(1436px, calc(100% - 48px));
  margin: 110px auto 0;
  padding: 56px 0 90px;
}

.about-photo-row {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  align-items: end;
  gap: 22px;
}

.about-photo-row img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  background: #dedede;
}

.about-photo-row img:nth-child(2) {
  height: 640px;
}

.about-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 34px;
  margin-top: 42px;
}

.about-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 400;
  line-height: 0.98;
}

.about-hero-copy h1 em {
  color: var(--pink);
  font-style: italic;
  font-weight: 400;
}

.about-hero-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.about-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 11px;
  margin-top: 24px;
}

/* Playground Board & Toolbar Styles */
.playground-board {
  width: min(1436px, calc(100% - 48px));
  min-height: 820px;
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid #f1e5e5;
  border-radius: 4px;
  background-color: #ffffff;
}

.playground-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px 26px 14px;
}

.search-box {
  display: block;
  min-width: 0;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  outline: 0;
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
}

.search-box input:focus {
  border-color: var(--blue);
}

.mode-control {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
  min-width: 160px;
}

.mode-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 160px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(72, 63, 63, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  cursor: pointer;
}

.mode-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
}

.mode-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: none;
  min-width: 160px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(38, 32, 32, 0.14);
}

.mode-menu.is-open {
  display: grid;
}

.mode-menu button {
  min-height: 44px;
  padding: 0 16px;
  text-align: left;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
}

.mode-menu button:hover,
.mode-menu button.active {
  color: #ffffff;
  background: var(--blue);
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 26px 14px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pills button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(72, 63, 63, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  transition: all 180ms ease;
}

.filter-pills button.active,
.filter-pills button:hover {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.reset-link {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.canvas-view {
  position: relative;
  height: 680px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  background-color: #f7f7f7;
  background-image: radial-gradient(rgba(72, 63, 63, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  overscroll-behavior: contain;
}

.canvas-view.is-dragging {
  cursor: grabbing;
}

.canvas-view::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(72, 63, 63, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.canvas-feature {
  display: none;
}

#canvas-cards-container {
  position: absolute;
  inset: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.canvas-view.is-dragging #canvas-cards-container {
  transition: none;
}

.canvas-feature-media {
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
  background: #ededed;
}

.canvas-feature-media img,
.canvas-feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.canvas-feature h3 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.canvas-card {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: grid;
  width: clamp(174px, 14vw, 214px);
  min-height: 154px;
  padding: 7px;
  border: 1px solid #f8f1f1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(38, 32, 32, 0.08);
  text-align: left;
  transform-origin: center;
  transition: box-shadow 180ms ease, opacity 180ms ease;
  cursor: pointer;
  appearance: none;
  will-change: transform;
}

.canvas-card:hover,
.canvas-card:focus-visible {
  box-shadow: 0 24px 64px rgba(38, 32, 32, 0.16);
  z-index: 20;
  outline: none;
}

.canvas-card:hover .canvas-thumb,
.canvas-card:focus-visible .canvas-thumb {
  transform: scale(1.045);
}

.canvas-card.is-dragging {
  z-index: 30;
  cursor: grabbing;
  box-shadow: 0 30px 76px rgba(38, 32, 32, 0.18);
}

.canvas-thumb {
  display: block;
  aspect-ratio: 1.36 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #f0eeee;
  transition: transform 220ms ease;
}

.canvas-thumb img,
.canvas-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.canvas-card-meta {
  position: absolute;
  inset: auto 12px 12px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(38, 32, 32, 0.12);
  color: var(--ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.canvas-card:hover .canvas-card-meta,
.canvas-card:focus-visible .canvas-card-meta {
  opacity: 1;
  transform: translateY(0);
}

.canvas-card-meta span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.canvas-card-meta strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.canvas-card-meta em {
  justify-self: start;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-family: var(--serif);
  font-size: 12px;
  font-style: normal;
}

.list-view {
  max-height: 680px;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 8px 26px 32px;
  display: none;
}

.list-view.active {
  display: block;
}

.list-count {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.list-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 118px;
  align-items: center;
  gap: 24px;
  min-height: 130px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.list-media {
  padding: 0;
  border: 0;
  height: 96px;
  overflow: hidden;
  border-radius: 4px;
  background: #eeeeee;
  cursor: pointer;
}

.list-media img,
.list-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-row h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.list-row p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.list-row > button,
.list-row > a {
  min-height: 44px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-family: var(--serif);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.canvas-helper-pill {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border: 1px solid rgba(1, 1, 1, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(38, 32, 32, 0.14);
  color: #010101;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.1;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 200ms ease, transform 200ms ease;
  white-space: nowrap;
}

.canvas-helper-pill.is-quiet {
  opacity: 0.46;
  transform: translateX(-50%) translateY(2px) scale(0.98);
}

body.lightbox-open {
  overflow: hidden;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 8, 8, 0.84);
  backdrop-filter: blur(12px);
}

.media-lightbox-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(100vw - 36px, 1280px);
  height: min(100dvh - 36px, 860px);
}

.media-lightbox-frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  min-width: 0;
  height: 100%;
  margin: 0;
}

.media-lightbox-frame img,
.media-lightbox-frame video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 118px);
  min-height: 0;
  object-fit: contain;
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.media-lightbox-frame figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--serif);
  font-size: 18px;
  text-align: center;
}

.media-lightbox-close,
.media-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #010101;
  font-family: var(--serif);
  font-size: 15px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.media-lightbox-close:hover,
.media-lightbox-nav:hover,
.media-lightbox-close:focus-visible,
.media-lightbox-nav:focus-visible {
  background: #ffffff;
  transform: translateY(-1px);
}

.media-lightbox-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  min-height: 44px;
  padding: 0 18px;
}

.media-lightbox-nav {
  width: 58px;
  height: 58px;
}

.playground-page-board {
  padding: 0 0 80px;
}

.playground-page-board .playground-board {
  margin-top: 20px;
}

@media (max-width: 1060px) {
  .nav-wrap {
    gap: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(72, 63, 63, 0.14);
    border-radius: 8px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.96);
  }

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

  .main-nav a {
    padding: 14px 8px;
  }

  .nav-cta {
    display: none;
  }

  .section-top,
  .testimonials-top {
    grid-template-columns: 1fr;
    display: grid;
  }

  .services-layout {
    display: block;
  }

  .section-actions {
    justify-content: start;
  }

  .project-stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .project-card,
  .project-card-main,
  .project-card-mid,
  .project-card-small {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
  }

  .content-inner {
    grid-template-columns: 1fr;
  }

  .process-steps,
  .about-preview-inner,
  .testimonial-meta {
    grid-template-columns: 1fr;
  }

  .process-steps {
    margin-top: 72px;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 30px;
  }

  .testimonial-meta {
    gap: 34px;
  }

  .proof-stats {
    justify-content: flex-start;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio-faq-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portfolio-faq-panel {
    margin-top: 0;
  }

  .portfolio-faq-media {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-card-blue,
  .footer-card-white {
    height: auto;
    min-height: 400px;
    padding: 40px 24px;
  }
  
  .footer-logo-glyph,
  .footer-logo-sub {
    font-size: 120px;
  }

  .about-photo-row {
    grid-template-columns: 1fr;
  }

  .about-photo-row img,
  .about-photo-row img:nth-child(2) {
    height: 410px;
  }

  .about-hero-copy {
    grid-template-columns: 1fr;
  }

  .about-image-stack {
    min-height: 520px;
  }

  .stack-card.is-front {
    height: 420px;
  }

  .stack-card.is-middle {
    height: 382px;
  }

  .stack-card.is-back {
    height: 344px;
  }

  .about-hero-copy h1 {
    font-size: 48px;
  }

  .project-tile {
    grid-column: span 6;
  }

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

@media (max-width: 700px) {
  .nav-wrap {
    width: min(calc(100% - 32px), var(--max));
  }

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

  .hero-section {
    min-height: 780px;
    padding-inline: 16px;
  }

  .hero-content h1 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link-button {
    width: 100%;
  }

  .projects-section,
  .services-section,
  .process-section,
  .testimonials-section,
  .about-preview-section,
  .page-hero,
  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-page {
    padding-top: 76px;
  }

  .contact-page .page-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .contact-page .page-hero p {
    font-size: 16px;
  }

  .service-card {
    flex-basis: 78vw;
    height: 330px;
  }

  .service-card.is-selected {
    flex-basis: 78vw;
    height: 330px;
  }

  .service-card.is-selected strong {
    left: 34px;
    right: 28px;
    bottom: 30px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .service-arrows {
    justify-content: center;
  }

  .service-summary {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.15;
  }

  .project-copy {
    min-height: 140px;
    align-items: flex-start;
    flex-direction: column;
  }

  .process-section,
  .about-preview-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .testimonials-section {
    padding-top: 96px;
  }

  .process-steps {
    gap: 42px;
  }

  .process-step-large p,
  .process-cta p {
    font-size: 15px;
  }

  .process-cta {
    margin-top: 58px;
    padding: 24px;
  }

  .testimonial-ticker {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .testimonial-track {
    gap: 28px;
    animation-duration: 26s;
  }

  .testimonial-card {
    flex-basis: min(78vw, 330px);
    width: min(78vw, 330px);
    min-height: 230px;
    font-size: 13px;
  }

  .testimonial-card:hover,
  .testimonial-card:focus-within {
    transform: rotate(0deg) scale(1.08);
  }

  .proof-stats,
  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .trusted-strip {
    flex-wrap: wrap;
    gap: 28px 42px;
  }

  .trusted-strip img {
    max-width: 112px;
    max-height: 72px;
  }

  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .portfolio-faq-section {
    padding: 96px 16px 64px;
  }

  .portfolio-faq-inner h2 {
    margin-bottom: 0;
  }

  .portfolio-faq-panel {
    padding: 6px;
    border-radius: 10px;
  }

  .portfolio-faq-media {
    display: none;
  }

  .portfolio-faq-list summary {
    align-items: center;
    min-height: 64px;
    padding: 20px 16px;
    font-size: 16px;
    gap: 16px;
  }

  .portfolio-faq-list summary::after {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 19px;
  }

  .portfolio-faq-list .faq-answer {
    padding: 0 16px 22px;
    font-size: 15px;
  }

  .portfolio-faq-cta {
    min-height: 340px;
    margin-top: 48px;
    border-radius: 10px;
  }

  .portfolio-faq-cta-actions {
    width: 100%;
  }
  
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .footer-card-content {
    grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1fr);
    gap: 36px;
  }

  .footer-card-bottom {
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 24px;
  }

  .footer-copyright {
    padding-top: 38px;
  }

  .footer-cta-col h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .footer-cta-actions {
    flex-wrap: wrap;
  }

  .footer-card-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .footer-social-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  
  .footer-logo-glyph,
  .footer-logo-sub {
    font-size: 80px;
  }

  .about-image-stack {
    min-height: 420px;
  }

  .stack-card {
    padding: 6px;
  }

  .stack-card.is-front {
    top: 52px;
    height: 310px;
  }

  .stack-card.is-middle {
    left: 18px;
    right: 18px;
    height: 286px;
    transform: translateX(14px) scale(0.92);
  }

  .stack-card.is-back {
    left: 36px;
    right: 36px;
    height: 260px;
    transform: translateX(28px) scale(0.84);
  }

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

  .project-tile,
  .project-tile-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .project-image,
  .project-tile-tall .project-image {
    height: 330px;
  }

  .section-lede {
    font-size: 16px;
  }

  .playground-board {
    width: calc(100% - 32px);
    min-height: 720px;
    margin-top: 32px;
  }

  .playground-toolbar,
  .filter-row {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .mode-control,
  .mode-trigger {
    width: 100%;
  }

  .canvas-view {
    height: 620px;
  }

  .canvas-feature {
    width: min(82vw, 340px);
  }

  .canvas-feature-media {
    height: 210px;
  }

  .canvas-card {
    width: 128px;
    padding: 6px;
  }

  .canvas-helper-pill {
    width: max-content;
    white-space: normal;
    text-align: center;
  }

  .media-lightbox {
    padding: 16px;
  }

  .media-lightbox-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    height: calc(100vh - 32px);
  }

  .media-lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .media-lightbox-close {
    right: 0;
    top: 0;
  }

  .media-lightbox-nav {
    width: 100%;
    height: 44px;
  }

  .media-lightbox-nav.is-prev {
    grid-column: 1;
    grid-row: 1;
  }

  .media-lightbox-nav.is-next {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 860px) {
  .footer-card-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-card-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-social-section,
  .footer-copyright {
    justify-self: start;
  }

  .footer-social-section {
    padding-top: 0;
  }

  .footer-copyright {
    padding-top: 0;
    max-width: none;
    font-size: 16px;
  }

  .footer-social-section h4 {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .footer-social-links {
    gap: 12px;
  }

  .footer-social-links a {
    width: 34px;
    height: 34px;
  }

  .footer-social-links a::before {
    width: var(--footer-icon-size, 21px);
    height: var(--footer-icon-size, 21px);
  }

  .footer-social-links .divider {
    height: 22px;
  }
}

@media (max-width: 560px) {
  .process-inner h2,
  .testimonials-top h2,
  .about-preview-copy h2 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .footer-card-blue,
  .footer-card-white {
    border-radius: 14px;
    min-height: 0;
  }

  .footer-card-white {
    padding: 34px 20px 28px;
  }

  .footer-cta-actions .button-pink {
    width: calc(100% - 76px);
    padding-inline: 18px;
  }

  .button-arrow {
    flex: 0 0 60px;
  }

  .playground-toolbar {
    gap: 12px;
    padding-top: 16px;
  }

  .search-box input {
    min-height: 50px;
    font-size: 13px;
  }

  .filter-row {
    align-items: stretch;
  }

  .filter-pills button {
    flex: 1 1 auto;
    min-width: calc(50% - 6px);
  }

  .reset-link {
    align-self: flex-start;
  }

  .canvas-view {
    height: 560px;
  }

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

  .list-media {
    width: 100%;
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
    transform: none;
  }

  .canvas-card,
  #canvas-cards-container,
  .canvas-helper-pill {
    transition: none;
  }
}
