:root {
  --page-bg: #f3f2f3;
  --ink-900: #393939;
  --ink-700: #565656;
  --ink-600: #5f5f5f;
  --black: #000000;
  --lilac-100: #ffdcf6;
  --lilac-300: #ccb7c7;
  --white: #ffffff;
  --line-soft: rgba(255, 255, 255, 0.58);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page-bg);
  color: var(--ink-900);
  font-family: "Syne", sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page {
  margin: 0 auto;
  max-width: 1440px;
  min-height: 100vh;
}

.topbar {
  align-items: flex-end;
  display: flex;
  margin-left: calc(50% - 50vw);
  padding: 48px 32px;
  width: 100vw;
}

.mobile-brand-star {
  display: none;
}

.mobile-home-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.brand {
  color: var(--black);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 33px;
  margin-left: auto;
}

.nav a {
  color: var(--black);
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  line-height: 1;
  padding: 10px;
  text-decoration: none;
}

.section-animate {
  animation: rise 650ms ease both;
}

.topbar {
  animation: rise 520ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.eyebrow {
  color: var(--ink-700);
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  margin: 0 0 32px;
}

.accent {
  color: var(--lilac-300);
  font-family: "Annie Use Your Telescope", cursive;
  font-weight: 400;
}

.sparkle {
  display: inline-block;
  height: 32px;
  margin-left: 10px;
  vertical-align: middle;
  width: 36px;
}

.sparkle.small {
  height: 45px;
  margin-left: 0;
  width: 50px;
}

.home-hero {
  margin: 253px auto 402px;
  text-align: center;
}

.home-hero h1 {
  color: var(--ink-900);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 852px;
}

.home-works {
  margin-bottom: 100px;
}

.home-works h2 {
  font-family: "Anonymous Pro", monospace;
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  padding: 10px 64px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 61px;
}

.project-meta {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  padding: 0 64px;
}

.badge {
  background: var(--lilac-100);
  color: var(--black);
  display: inline-block;
  font-size: 32px;
  line-height: 1.15;
  margin: 0;
  padding: 16px 32px;
}

.project-title-wrap {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  justify-self: center;
  text-decoration: none;
}

.project-title-wrap h3 {
  color: var(--black);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.project-kicker {
  color: var(--black);
  font-size: 16px;
  justify-self: end;
  line-height: 1.18;
  margin: 0;
  max-width: 149px;
  text-align: left;
}

.project-images {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 650px));
  justify-content: center;
  padding: 0 62px;
  text-decoration: none;
}

.project-images img {
  display: block;
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.case-study {
  align-self: flex-end;
  color: var(--ink-900);
  font-family: "Roboto Mono", monospace;
  font-size: 24px;
  line-height: 1;
  margin-right: 64px;
  text-decoration: none;
}

.gallery-page main {
  padding-bottom: 100px;
}

.gallery-hero {
  margin: 40px 0 88px;
  text-align: center;
}

.gallery-hero h1 {
  color: var(--black);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.gallery-grid-wrap {
  padding: 0 21px;
}

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

.gallery-grid img {
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.carematch-page {
  max-width: 1440px;
}

.case-main {
  margin: 46px auto 140px;
  max-width: 720px;
  padding: 0 24px;
}

.case-intro {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.case-intro h1 {
  color: var(--ink-900);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.case-intro .subtitle {
  color: var(--ink-900);
  font-family: "Roboto Mono", monospace;
  font-size: 24px;
  margin: 6px 0 0;
}

.case-intro .badge {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  padding: 8px 16px;
}

.case-hero-image {
  margin-top: 100px;
}

.case-hero-image img {
  display: block;
  width: 100%;
}

.case-block,
.case-feature-stack {
  margin-top: 64px;
}

.mono-label {
  color: var(--ink-900);
  font-family: "Anonymous Pro", monospace;
  font-size: 26px;
  margin: 0 0 32px;
}

.case-block h2 {
  color: var(--ink-900);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.28;
  margin: 0 0 24px;
}

.case-block h3,
.case-feature h3 {
  color: var(--ink-900);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 18px;
}

.case-block p,
.case-block li,
.case-feature p {
  color: var(--ink-600);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.72;
  margin-top: 0;
}

.case-block ul,
.case-block ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.content-image {
  background: #fff;
  display: block;
  margin-top: 30px;
  width: 100%;
}

.case-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.case-feature {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-feature-copy {
  max-width: 640px;
  text-align: center;
}

.content-image.tall {
  aspect-ratio: 311 / 588;
  margin-top: 0;
  object-fit: cover;
  width: min(311px, 100%);
}

.crop-top {
  object-position: center top;
}

.crop-mid {
  object-position: center 24%;
}

.crop-lower {
  object-position: center 48%;
}

.crop-bottom {
  object-position: center 72%;
}

.crop-settings {
  object-position: center bottom;
}

.double-tall-images {
  display: grid;
  gap: 24px;
  grid-template-columns: 252px 274px;
  justify-content: center;
  margin-top: 30px;
}

.double-tall-images img {
  display: block;
  height: 547px;
  object-fit: cover;
  width: 100%;
}

.site-footer {
  background: var(--lilac-300);
  color: var(--white);
  margin-left: calc(50% - 50vw);
  margin-top: 100px;
  min-height: 366px;
  padding: 0 0 128px;
  width: 100vw;
}

.footer-rule {
  background: var(--line-soft);
  height: 1px;
  width: 100%;
}

.footer-inner {
  padding: 64px 32px 0;
}

.site-footer h4 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 29px;
}

.footer-row {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.contact {
  min-width: 215px;
}

.contact p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0 0 6px;
}

.contact a {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  text-decoration: none;
}

.copyright {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .topbar {
    padding: 40px 32px;
  }

  .home-hero {
    margin: 180px auto 260px;
  }

  .home-hero h1,
  .gallery-hero h1 {
    font-size: 56px;
  }

  .project-meta {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 0 32px;
  }

  .project-title-wrap {
    justify-self: start;
  }

  .project-kicker {
    justify-self: start;
    max-width: none;
  }

  .project-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 32px;
  }

  .project-images img {
    height: 320px;
  }

  .home-works h2 {
    padding: 10px 32px;
  }

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

  .case-main {
    max-width: 760px;
  }

  .case-block h2 {
    font-size: 32px;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: center;
    padding: 24px 16px;
  }

  .brand {
    font-size: 32px;
  }

  .nav {
    gap: 8px;
  }

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

  .home-hero {
    margin: 140px auto 170px;
    padding: 0 16px;
  }

  .eyebrow {
    font-size: 14px;
  }

  .home-hero h1,
  .gallery-hero h1 {
    font-size: 42px;
  }

  .sparkle {
    height: 27px;
    width: 30px;
  }

  .home-works h2 {
    font-size: 20px;
    padding: 10px 16px;
  }

  .project-card {
    margin-top: 32px;
  }

  .project-meta,
  .project-images {
    padding: 0 16px;
  }

  .badge {
    font-size: 22px;
    padding: 10px 16px;
  }

  .project-title-wrap h3 {
    font-size: 42px;
  }

  .project-kicker {
    font-size: 14px;
  }

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

  .project-images img {
    height: auto;
  }

  .case-study {
    font-size: 20px;
    margin-right: 16px;
  }

  .gallery-hero {
    margin: 44px 0 52px;
  }

  .gallery-grid-wrap {
    padding: 0 16px;
  }

  .gallery-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .case-main {
    margin-top: 16px;
    max-width: 720px;
    padding: 0 16px;
  }

  .case-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .case-intro h1 {
    font-size: 42px;
  }

  .case-intro .subtitle {
    font-size: 20px;
  }

  .case-hero-image {
    margin-top: 52px;
  }

  .mono-label {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .case-block,
  .case-feature-stack {
    margin-top: 48px;
  }

  .case-block h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  .case-block h3,
  .case-feature h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .case-block p,
  .case-block li,
  .case-feature p {
    font-size: 16px;
    line-height: 1.62;
  }

  .case-feature-stack {
    gap: 64px;
  }

  .double-tall-images {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .double-tall-images img {
    height: auto;
  }

  .site-footer {
    margin-top: 72px;
    min-height: 0;
    padding-bottom: 42px;
  }

  .footer-inner {
    padding: 32px 16px 0;
  }

  .site-footer h4 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .footer-row,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .contact p {
    font-size: 14px;
  }

  .contact a {
    font-size: 16px;
  }

  .copyright {
    font-size: 12px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .page {
    max-width: 376px;
  }

  .topbar {
    padding: 16px;
  }

  .mobile-brand-star {
    display: block;
    height: 37px;
    width: 39px;
  }

  .brand {
    display: none;
  }

  .home-hero {
    margin: 130px auto 120px;
  }

  .home-hero h1 {
    font-size: 40px;
    line-height: 1.14;
  }

  .home-works h2 {
    font-size: 16px;
    padding: 10px 32px;
  }

  .project-meta,
  .project-images {
    padding: 0 32px;
  }

  .project-title-wrap h3 {
    font-size: 40px;
  }

  .case-main {
    max-width: 343px;
    padding: 0 16px;
  }

  .case-intro .badge {
    font-size: 20px;
  }

  .mono-label {
    font-size: 16px;
  }

  .case-block h2 {
    font-size: 24px;
  }

  .content-image.tall {
    width: min(311px, 100%);
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .footer-inner {
    padding-top: 21px;
  }

  .site-footer h4 {
    font-size: 24px;
  }
}
.about-page {
  max-width: 1440px;
}

.about-main {
  margin: 40px auto 160px;
  max-width: 1200px;
  padding: 0 48px;
}

.about-title {
  display: flex;
  justify-content: center;
  margin: 0 0 54px;
}

.about-title h1 {
  align-items: center;
  color: var(--black);
  display: inline-flex;
  font-size: 64px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  margin: 0;
}

.about-sparkle {
  height: 46px;
  width: 52px;
}

.about-profile {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 260px;
  margin: 0 auto 116px;
  max-width: 1050px;
}

.about-photo {
  background: #ddd6d9;
  height: 320px;
  width: 100%;
}

.about-copy {
  padding-top: 30px;
}

.about-copy p {
  color: var(--ink-900);
  font-family: "Roboto Mono", monospace;
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 34px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.tools-section {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.tools-section h2 {
  color: var(--ink-900);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 48px;
}

.tools-grid {
  column-gap: 86px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 42px;
}

.tool-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-icon-frame {
  align-items: center;
  background: #050505;
  border-radius: 20px;
  display: flex;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.tool-icon-frame-light {
  background: #ffd92d;
}

.tool-icon-frame-vscode,
.tool-icon-frame-firebase {
  background: transparent;
}

.tool-icon {
  display: block;
  height: 44px;
  width: 44px;
}

.tool-item p {
  color: var(--ink-900);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 1120px) {
  .about-main {
    margin-top: 24px;
    padding: 0 32px;
  }

  .about-title h1,
  .tools-section h2 {
    font-size: 56px;
  }

  .about-profile {
    grid-template-columns: 1fr 300px;
    max-width: 980px;
  }
}

@media (max-width: 760px) {
  .about-main {
    margin: 24px auto 100px;
    padding: 0 16px;
  }

  .about-title {
    margin-bottom: 36px;
  }

  .about-title h1,
  .tools-section h2 {
    font-size: 40px;
  }

  .about-profile {
    gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .about-photo {
    height: 240px;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .tools-grid {
    column-gap: 20px;
    row-gap: 28px;
  }
}

@media (max-width: 480px) {
  .about-title h1,
  .tools-section h2 {
    font-size: 32px;
  }

  .about-sparkle {
    height: 34px;
    width: 38px;
  }

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




