:root {
  --ink: #111116;
  --muted: #646675;
  --soft: #f5f5f7;
  --paper: #ffffff;
  --line: #e0e0e6;
  --blue: #dbeafe;
  --blue-strong: #1967ff;
  --lilac: #eee6ff;
  --mint: #ddf8ef;
  --citrus: #fff0aa;
  --peach: #ffe3d8;
  --dark-card: #17171f;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(17, 17, 22, 0.14);
  --page-background:
    radial-gradient(circle at 20% 8%, rgba(219, 234, 254, 0.9), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 240, 170, 0.75), transparent 24%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 42%, #ffffff 100%);
  --page-background-color: #fbfbfd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background-color: var(--page-background-color);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  overflow-x: clip;
  isolation: isolate;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body::before {
  content: "";
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) * -1);
  right: calc(env(safe-area-inset-right, 0px) * -1);
  bottom: calc(env(safe-area-inset-bottom, 0px) * -1);
  left: calc(env(safe-area-inset-left, 0px) * -1);
  z-index: 0;
  pointer-events: none;
  background-color: var(--page-background-color);
  background-image: var(--page-background);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100vw 100lvh;
}

main {
  position: relative;
  z-index: 1;
  overflow: visible;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: max-content;
  max-width: calc(100vw - 24px);
  display: flex;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(17, 17, 22, 0.06),
    0 18px 55px rgba(17, 17, 22, 0.13);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(22px) saturate(1.7);
  backdrop-filter: blur(22px) saturate(1.7);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #33343c;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-header nav a.home-link {
  width: 40px;
  padding: 0;
}

.site-header nav a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header nav a:hover,
.site-header nav a.is-active {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  width: 100%;
  min-height: min(86vh, 700px);
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 82px 16px 26px;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(880px, 100%);
  text-align: center;
}

.hero-copy h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  font-size: clamp(3.35rem, 6.6vw, 6.45rem);
}

.hero-copy p:not(.eyebrow),
.intro-panel p,
.contact-card p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-copy p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-link {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 17, 22, 0.18);
}

.secondary-link {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-3px);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 1400px;
  pointer-events: none;
  overflow: visible;
}

.hero-layer {
  position: absolute;
  opacity: 1;
  transform: var(--rest-transform, none);
  will-change: transform;
  filter: drop-shadow(0 24px 42px rgba(17, 17, 22, 0.15));
}

.hero-stage.is-preparing .hero-layer,
.hero-stage.is-entering .hero-layer {
  animation: none;
}

.hero-stage.is-preparing .hero-layer {
  opacity: 0;
  transform: var(--enter-transform, var(--rest-transform, none));
}

.hero-stage.is-entering .hero-layer {
  opacity: 1;
  transform: var(--rest-transform, none);
  transition:
    opacity 700ms ease var(--enter-delay, 0ms),
    transform 1350ms cubic-bezier(0.18, 1.22, 0.22, 1) var(--enter-delay, 0ms);
}

.hero-ipad {
  --rest-transform: rotate(-8deg) translate3d(0, 0, 0);
  --enter-transform: translate3d(-52vw, -18vh, 0) rotate(-8deg);
  --enter-delay: 80ms;
  top: -18px;
  left: max(-430px, -24vw);
  width: min(530px, 38vw);
  animation: drift-ipad 13s ease-in-out infinite;
}

.hero-inout {
  --rest-transform: rotate(9deg) translate3d(0, 0, 0);
  --enter-transform: translate3d(30vw, -16vh, 0) rotate(9deg);
  --enter-delay: 260ms;
  top: 22px;
  right: max(-96px, -5vw);
  width: min(184px, 13vw);
  animation: drift-inout 12s ease-in-out infinite;
}

.hero-timeline {
  --rest-transform: rotate(20deg) translate3d(0, 0, 0);
  --enter-transform: translate3d(-34vw, 24vh, 0) rotate(20deg);
  --enter-delay: 420ms;
  left: max(26px, 2vw);
  top: 390px;
  width: min(148px, 10.5vw);
  animation: drift-timeline 11.5s ease-in-out infinite;
}

.hero-litebooks-icon {
  --rest-transform: rotate(-13deg) translate3d(0, 0, 0);
  --enter-transform: translate3d(-18vw, 30vh, 0) rotate(-13deg);
  --enter-delay: 620ms;
  left: max(270px, 18vw);
  top: 522px;
  width: min(92px, 6.4vw);
  animation: drift-litebooks-icon 10.5s ease-in-out infinite;
}

.hero-inout-icon {
  --rest-transform: rotate(12deg) translate3d(0, 0, 0);
  --enter-transform: translate3d(16vw, 30vh, 0) rotate(12deg);
  --enter-delay: 720ms;
  display: none;
}

.hero-moodcount {
  --rest-transform: rotate(-5deg) translate3d(0, 0, 0);
  --enter-transform: translate3d(34vw, 22vh, 0) rotate(-5deg);
  --enter-delay: 540ms;
  top: 444px;
  right: max(-132px, -7vw);
  width: min(270px, 20vw);
  animation: drift-moodcount 14s ease-in-out infinite;
}

.hero-voice {
  --rest-transform: rotate(7deg) translate3d(0, 0, 0);
  --enter-transform: translate3d(24vw, 32vh, 0) rotate(7deg);
  --enter-delay: 360ms;
  right: calc(50% - 520px);
  top: 486px;
  width: min(172px, 13vw);
  animation: drift-voice 12.5s ease-in-out infinite;
}

.intro-panel {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100vw - 32px));
  margin: 172px auto 32px;
  padding: clamp(88px, 9vw, 118px) clamp(28px, 5vw, 58px) clamp(28px, 5vw, 58px);
  border-radius: 38px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: visible;
}

.about-photo {
  position: absolute;
  top: -132px;
  left: 50%;
  width: clamp(172px, 22vw, 220px);
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  border: 8px solid var(--soft);
  filter: drop-shadow(0 24px 42px rgba(17, 17, 22, 0.2));
  animation: drift-about-photo 12s ease-in-out infinite;
}

@keyframes drift-ipad {
  0%,
  100% {
    transform: rotate(-8deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-7deg) translate3d(8px, -10px, 0);
  }
}

@keyframes drift-inout {
  0%,
  100% {
    transform: rotate(9deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(10deg) translate3d(-8px, -12px, 0);
  }
}

@keyframes drift-timeline {
  0%,
  100% {
    transform: rotate(20deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(18deg) translate3d(9px, -8px, 0);
  }
}

@keyframes drift-litebooks-icon {
  0%,
  100% {
    transform: rotate(-13deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-10deg) translate3d(7px, -6px, 0);
  }
}

@keyframes drift-inout-icon {
  0%,
  100% {
    transform: rotate(12deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(15deg) translate3d(-5px, -6px, 0);
  }
}

@keyframes drift-moodcount {
  0%,
  100% {
    transform: rotate(-5deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-4deg) translate3d(-10px, 8px, 0);
  }
}

@keyframes drift-voice {
  0%,
  100% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(8deg) translate3d(-8px, 9px, 0);
  }
}

@keyframes drift-about-photo {
  0%,
  100% {
    transform: translateX(-50%) rotate(-3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateX(-50%) rotate(-2deg) translate3d(0, -8px, 0);
  }
}

@keyframes drift-timeline-mobile {
  0%,
  100% {
    transform: rotate(-22deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-20deg) translate3d(5px, -5px, 0);
  }
}

@keyframes drift-inout-mobile {
  0%,
  100% {
    transform: rotate(20deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(18deg) translate3d(-5px, -5px, 0);
  }
}

.intro-panel p {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.4rem, 4vw, 3rem);
  line-height: 1.13;
  letter-spacing: -0.055em;
  text-align: center;
}

@media (max-width: 1240px) {
  .hero-moodcount {
    right: -220px;
  }

  .hero-voice {
    right: 60px;
  }
}

.section {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(78px, 11vw, 150px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

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

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 22, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:nth-child(1) {
  background: var(--blue);
}

.service-card:nth-child(2) {
  background: var(--citrus);
}

.service-card:nth-child(3) {
  background: var(--mint);
}

.service-card:nth-child(4) {
  background: var(--lilac);
}

.service-card:nth-child(5) {
  background: var(--dark-card);
  color: #fff;
}

.service-card:nth-child(5) p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card:nth-child(6) {
  background: var(--peach);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(17, 17, 22, 0.14);
}

.service-icon {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 22, 0.08);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
}

.ios-icon::before {
  inset: 13px 21px;
  border: 4px solid var(--ink);
  border-radius: 14px;
}

.web-icon::before {
  inset: 18px 12px;
  border: 4px solid var(--ink);
  border-radius: 10px;
}

.web-icon::after {
  left: 18px;
  right: 18px;
  top: 30px;
  height: 4px;
  background: var(--ink);
}

.shop-icon::before {
  left: 17px;
  top: 22px;
  width: 44px;
  height: 34px;
  border: 4px solid var(--ink);
  border-radius: 7px;
}

.shop-icon::after {
  left: 25px;
  top: 14px;
  width: 24px;
  height: 20px;
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.auto-icon::before {
  inset: 15px;
  border: 4px solid var(--ink);
  border-radius: 999px;
}

.auto-icon::after {
  left: 35px;
  top: 8px;
  width: 8px;
  height: 60px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(45deg);
}

.ops-icon::before {
  inset: 18px;
  border-radius: 999px;
  background: #fff;
}

.ops-icon::after {
  left: 20px;
  top: 34px;
  width: 38px;
  height: 9px;
  border-radius: 999px;
  background: var(--ink);
}

.brand-icon::before {
  inset: 16px;
  border-radius: 18px;
  border: 4px solid var(--ink);
  transform: rotate(8deg);
}

.brand-icon::after {
  left: 31px;
  top: 31px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--ink);
}

.service-card h3 {
  margin: 42px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.45;
}

.work-section {
  width: min(1280px, calc(100vw - 32px));
}

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

.work-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 4vw, 40px);
  border-radius: 36px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 22, 0.06);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.work-shot {
  width: min(270px, 76%);
  max-height: 360px;
  object-fit: contain;
  align-self: center;
  filter: drop-shadow(0 26px 42px rgba(17, 17, 22, 0.14));
}

.work-shot-wide {
  width: min(470px, 96%);
  max-height: 330px;
}

.work-type {
  margin: 0 0 10px;
  color: var(--blue-strong);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.84rem;
}

.work-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.work-card p:last-child {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.45;
}

.client-card {
  grid-column: 1 / -1;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 240, 170, 0.2), transparent 26%),
    radial-gradient(circle at 12% 12%, rgba(25, 103, 255, 0.34), transparent 28%),
    var(--dark-card);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.client-copy h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.client-copy p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.5;
}

.flag-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 260px;
}

.flag-circle {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-left: -16px;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 3.1rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.contact-section {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 70px 0 28px;
}

.contact-card {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 6vw, 72px);
  border-radius: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 240, 170, 0.2), transparent 24%),
    radial-gradient(circle at 18% 10%, rgba(25, 103, 255, 0.24), transparent 30%),
    var(--dark-card);
  overflow: hidden;
}

.contact-card .eyebrow {
  color: #9fc2ff;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.contact-option {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}

.contact-option span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-option strong {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.email-option {
  grid-column: span 2;
  min-height: 160px;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.email-option:hover {
  background: #fff;
  border-color: #fff;
}

.email-option span {
  color: var(--blue-strong);
}

.email-option strong {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}

.site-footer {
  width: min(1180px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 42px 0 76px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-pointer {
  display: inline-flex;
  border-radius: 999px;
  outline-offset: 8px;
}

.site-footer span {
  font-size: 80px;
  line-height: 1;
  filter: drop-shadow(0 22px 34px rgba(17, 17, 22, 0.12));
  transition: transform 360ms cubic-bezier(0.2, 1, 0.2, 1);
}

.footer-pointer:hover span,
.footer-pointer:focus-visible span {
  transform: rotate(-6deg) translateY(-8px) scale(1.04);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
    padding: 112px 16px 48px;
  }

  .hero-copy {
    width: min(760px, 100%);
  }

  .hero-ipad {
    top: -4px;
    left: -330px;
    width: 460px;
  }

  .hero-inout {
    top: 34px;
    right: -86px;
    width: 150px;
  }

  .hero-timeline {
    top: 408px;
    left: -54px;
    width: 128px;
  }

  .hero-litebooks-icon {
    left: 164px;
    top: 512px;
    width: 76px;
  }

  .hero-moodcount {
    top: 482px;
    right: -214px;
    width: 218px;
  }

  .hero-voice {
    top: 392px;
    right: 24px;
    width: 142px;
  }

  .service-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    grid-template-columns: 1fr;
  }

  .flag-row {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  html,
  body {
    min-height: 100%;
  }

  body {
    min-height: 100lvh;
  }

  body::before {
    min-height: 100lvh;
  }

  .site-header {
    top: 10px;
    padding: 5px;
  }

  .site-header nav a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .site-header nav a.home-link {
    width: 36px;
  }

  .hero {
    min-height: 720px;
    padding: 116px 11px 70px;
    place-items: start center;
  }

  .hero-copy {
    width: min(100%, 352px);
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-card h2 {
    font-size: clamp(2.25rem, 8.9vw, 3.35rem);
    letter-spacing: -0.052em;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.42;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-actions {
    justify-content: stretch;
  }

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

  .email-option {
    grid-column: span 1;
  }

  .hero-ipad {
    display: none;
  }

  .hero-inout {
    display: none;
  }

  .hero-timeline {
    display: none;
  }

  .hero-litebooks-icon {
    top: 582px;
    left: calc(50% - 76px);
    width: 58px;
  }

  .hero-inout-icon {
    display: block;
    top: 612px;
    left: calc(50% + 18px);
    width: 58px;
    animation: drift-inout-icon 11s ease-in-out infinite;
  }

  .hero-moodcount {
    top: 560px;
    right: -54px;
    width: 150px;
  }

  .hero-voice {
    top: 548px;
    left: -34px;
    width: 104px;
  }

  .intro-panel,
  .section,
  .contact-section,
  .work-section,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .about-photo {
    top: -104px;
  }

  .intro-panel {
    margin-top: 108px;
  }

  .service-card {
    min-height: 300px;
  }

  .work-card {
    min-height: auto;
  }

  .work-shot,
  .work-shot-wide {
    width: min(270px, 92%);
    max-height: 310px;
  }

  .flag-row {
    min-width: 0;
  }

  .flag-circle {
    width: 74px;
    height: 74px;
    font-size: 2.35rem;
  }

  .contact-card {
    min-height: 78vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
