:root {
  --cream: #f3f4f5;
  --paper: #fff;
  --clay: #777d85;
  --terracotta: #34383d;
  --olive: #59616a;
  --ink: #202327;
  --muted: #646a71;
  --line: #dfe2e5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.7 "DM Sans",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(5vw, 24px);
  position: absolute;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid #51493e25;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.brand span {
  width: 36px;
  height: 36px;
  border: 1px solid #777d85;
  display: grid;
  place-items: center;
  font:
    700 14px "DM Sans",
    sans-serif;
  letter-spacing: -0.03em;
}
.nav nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: #53574f;
}
.text-link,
.quiet-link {
  font-weight: 600;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 3px;
}
.hero {
  min-height: 700px;
  padding: 145px max(5vw, 24px) 90px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background: #f4f5f6;
  overflow: hidden;
}
.hero-copy {
  max-width: 850px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
}
h1,
h2 {
  font:
    600 clamp(54px, 7vw, 104px)/0.98 "DM Sans",
    sans-serif;
  letter-spacing: -0.045em;
  margin: 24px 0;
}
h1 em,
h2 em {
  color: var(--terracotta);
  font-weight: 500;
}
.hero-copy > p {
  max-width: 660px;
  font-size: 19px;
  color: #5f625b;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  background: var(--ink);
  color: #fff;
  padding: 15px 24px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.25s;
}
.button:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.quiet-link {
  font-size: 14px;
}
.hero-art {
  height: 520px;
  position: relative;
}
.window {
  position: absolute;
  width: 570px;
  height: 420px;
  left: -70px;
  top: 20px;
  background: #fff;
  box-shadow: 0 35px 90px #20232714;
  transform: rotate(2deg);
}
.window-bar {
  height: 38px;
  border-bottom: 1px solid var(--line);
  padding: 13px 16px;
}
.window-bar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfc7ba;
  margin-right: 5px;
}
.site-preview {
  height: 382px;
  padding: 70px 65px;
  background: #f0f2f3;
}
.site-preview span {
  font:
    500 16px "DM Sans",
    sans-serif;
  color: var(--olive);
}
.site-preview b {
  display: block;
  font:
    600 42px/1.05 "DM Sans",
    sans-serif;
  margin: 30px 0;
}
.site-preview b em {
  color: var(--terracotta);
}
.site-preview div {
  width: 88px;
  height: 34px;
  background: var(--clay);
}
.hero-art > p {
  position: absolute;
  right: 0;
  bottom: 10px;
  font:
    500 18px/1.8 "DM Sans",
    sans-serif;
  color: #646a71;
}
.intro,
.about,
.visual-service {
  display: grid;
  grid-template-columns: 28% 72%;
  gap: 30px;
  padding: 120px max(5vw, 24px) 60px;
}
.intro h2,
.section-head h2,
.about h2,
.visual-service h2,
.cta h2 {
  font-size: clamp(42px, 5.5vw, 78px);
  margin: 0;
}
.intro p,
.about p,
.visual-service p {
  max-width: 680px;
  font-size: 18px;
  color: var(--muted);
}
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0 max(5vw, 24px) 24px;
}
.service-card {
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
  min-height: 390px;
  display: grid;
  grid-template-rows: auto auto 1fr 100px auto;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px #20232712;
  background: #f8f9fa;
}
.service-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.services span {
  font:
    500 16px "DM Sans",
    sans-serif;
  color: var(--clay);
}
.price {
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}
.service-sketch {
  width: 118px;
  height: 90px;
  object-fit: contain;
  align-self: center;
  justify-self: end;
  margin: 0;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.08);
}
.service-mouse {
  object-fit: contain;
  padding: 8px;
}
.services h3 {
  font:
    600 24px "DM Sans",
    sans-serif;
  margin: 18px 0 0;
}
.services p {
  color: var(--muted);
  margin: 8px 0 16px;
}
.included-service {
  margin: 0 max(5vw, 24px) 24px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: #f8f9fa;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 28px;
}
.included-service span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #59616a;
}
.included-service h3 {
  font:
    600 24px "DM Sans",
    sans-serif;
  margin: 7px 0;
}
.included-service p {
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}
.included-service img {
  width: 125px;
  height: 100px;
  object-fit: contain;
  justify-self: end;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.08);
}
.service-cta {
  font-size: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.visual-service {
  background: #f3f4f5;
  padding-bottom: 120px;
}
.visual-service > div:last-child {
  padding-top: 14px;
}
.authentic {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--terracotta);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
}
.authentic span {
  color: var(--muted);
}
.philosophy {
  background: var(--olive);
  color: #fff;
  padding: 110px max(5vw, 24px);
  display: grid;
  grid-template-columns: 64% 36%;
  gap: 70px;
}
.philosophy blockquote {
  font:
    600 clamp(36px, 4.5vw, 68px)/1.12 "DM Sans",
    sans-serif;
  margin: 0;
}
.philosophy div {
  align-self: end;
  color: #e3e5df;
}
.refs,
.process,
.journal,
.faq {
  padding: 120px max(5vw, 24px);
}
.section-head {
  display: grid;
  grid-template-columns: 28% 72%;
  gap: 30px;
  margin-bottom: 60px;
}
.ref-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project {
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.3s;
}
.project:hover,
.article-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px #5e4e3820;
}
.mock {
  height: 390px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease;
}
.project:hover .mock img {
  transform: scale(1.025);
}
.mock-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 8px 11px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink);
  box-shadow: 0 5px 18px #0002;
}
.mock.unavailable {
  padding: 40px;
}
.mock.unavailable > span {
  font-size: 13px;
  color: var(--muted);
}
.mock small {
  letter-spacing: 0.13em;
}
.mock strong {
  font:
    600 46px/1 "DM Sans",
    sans-serif;
}
.p1 .mock {
  background: #dfe3df;
  color: #364039;
}
.p2 .mock {
  background: #f0f2f3;
  color: #30343a;
}
.p3 .mock {
  background: #f0f2f3;
  color: #30343a;
}
.project footer {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.project footer span {
  color: var(--muted);
}
.process {
  background: var(--cream);
}
.process ol {
  list-style: none;
  padding: 0;
  margin: 0 0 0 28%;
}
.process li {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-top: 1px solid #cfc8bc;
  padding: 34px 0;
}
.process li > b {
  font:
    600 18px "DM Sans",
    sans-serif;
  color: var(--terracotta);
}
.process h3 {
  font:
    600 27px "DM Sans",
    sans-serif;
  margin: 0;
}
.process li p {
  color: var(--muted);
  max-width: 680px;
}
.journal {
  background: #fff;
}
.article-grid a {
  border-top: 1px solid var(--line);
  padding: 28px 20px 28px 0;
  transition: 0.3s;
}
.article-grid a > span {
  font-size: 12px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.article-grid h3 {
  font:
    600 30px/1.15 "DM Sans",
    sans-serif;
  margin: 26px 0 18px;
}
.article-grid p {
  color: var(--muted);
}
.article-grid b {
  font-size: 14px;
  color: var(--terracotta);
}
.about {
  display: block;
  background: var(--cream);
  padding-bottom: 120px;
}
.about > div {
  max-width: 920px;
  margin-left: 28%;
}
.about p {
  max-width: 820px;
}
.about-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.about-contact a {
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}
.about-cta {
  margin-top: 34px;
}
.faq {
  background: #fff;
}
.faq-list {
  margin-left: 28%;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding: 24px 50px 24px 0;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 8px;
  font-size: 26px;
  font-weight: 400;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 26px;
}
.related {
  padding: 45px max(5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid var(--line);
}
.related span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--olive);
}
.related p {
  margin: 5px 0 0;
}
.related-links {
  display: flex;
  gap: 34px;
}
.related-links a {
  border-bottom: 1px solid var(--clay);
}
.contact {
  padding: 120px max(5vw, 24px);
  background: #eef0f2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: clamp(50px, 8vw, 130px);
}
.contact h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 22px 0;
}
.contact-copy > p {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}
.direct-contact {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.direct-contact a {
  display: flex;
  flex-direction: column;
}
.direct-contact small {
  color: var(--muted);
}
.direct-contact strong {
  font-size: 19px;
}
.contact-form {
  background: #fff;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 24px 70px #20232712;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}
.contact-form label > span {
  font-weight: 400;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfd3d7;
  background: #fff;
  padding: 13px 14px;
  font:
    16px/1.5 "DM Sans",
    sans-serif;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}
.contact-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
}
.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  flex: 0 0 auto;
}
.contact-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form-status {
  font-weight: 600;
  margin: 18px 0 0;
}
.form-status.success {
  color: #23633d;
}
.form-status.error {
  color: #9b2c2c;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 8px 25px #2023271f;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: #fff;
}
.footer {
  padding: 70px max(5vw, 24px) 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 50px;
  background: var(--ink);
  color: #cacbc6;
  font-size: 14px;
}
.footer-brand p {
  max-width: 370px;
  color: #999ea4;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col b {
  color: #fff;
  margin-bottom: 6px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #ffffff20;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s ease var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.article-nav {
  position: static;
  background: var(--paper);
  border-color: var(--line);
}
.article-shell {
  max-width: 820px;
  margin: auto;
  padding: 90px 24px 120px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--olive);
  margin-bottom: 45px;
}
.article-header h1 {
  font-size: clamp(48px, 7vw, 82px);
}
.article-lead {
  font:
    500 24px/1.5 "DM Sans",
    sans-serif;
  color: #585b54;
}
.article-meta {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  margin: 28px 0 55px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.article-body h2 {
  font-size: 40px;
  margin: 60px 0 20px;
}
.article-body h3 {
  font:
    600 26px "DM Sans",
    sans-serif;
  margin: 38px 0 12px;
}
.article-body p,
.article-body li {
  font-size: 18px;
  color: #53564f;
}
.article-body a {
  color: var(--terracotta);
  text-decoration: underline;
}
.article-body .callout {
  padding: 30px;
  background: var(--cream);
  border-left: 3px solid var(--clay);
  margin: 42px 0;
}
.article-cta {
  margin-top: 70px;
  padding: 38px;
  background: var(--olive);
  color: white;
}
.article-cta h2 {
  margin-top: 0;
  color: white;
}
.article-cta p {
  color: #e3e5df;
}
.article-cta a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

@media (max-width: 900px) {
  .nav nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }
  .hero-art {
    height: 370px;
  }
  .window {
    left: 8%;
    width: 92%;
    height: 330px;
  }
  .site-preview {
    height: 292px;
    padding: 45px;
  }
  .hero-art > p {
    display: none;
  }
  .intro,
  .about,
  .section-head,
  .philosophy,
  .visual-service {
    grid-template-columns: 1fr;
  }
  .services,
  .ref-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
  }
  .services h3 {
    margin-top: 14px;
  }
  .process ol {
    margin-left: 0;
  }
  .related {
    align-items: flex-start;
    gap: 25px;
    flex-direction: column;
  }
  .about > div {
    margin-left: 0;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  .footer-bottom {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .nav {
    height: 70px;
  }
  .nav .text-link {
    font-size: 12px;
  }
  .hero {
    padding-top: 110px;
    min-height: auto;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .window {
    left: 0;
  }
  .site-preview {
    padding: 35px 25px;
  }
  .site-preview b {
    font-size: 34px;
  }
  .intro,
  .refs,
  .process,
  .journal,
  .about,
  .faq,
  .contact,
  .philosophy,
  .visual-service {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .services {
    padding-bottom: 75px;
  }
  .mock {
    height: 300px;
  }
  .process li {
    grid-template-columns: 55px 1fr;
  }
  .related-links {
    flex-direction: column;
    gap: 10px;
  }
  .article-shell {
    padding-top: 55px;
  }
  .article-body h2 {
    font-size: 34px;
  }
}

/* Clean, neutral visual direction */
:root {
  --cream: #f3f4f5;
  --paper: #fff;
  --clay: #777d85;
  --terracotta: #34383d;
  --olive: #59616a;
  --ink: #202327;
  --muted: #646a71;
  --line: #dfe2e5;
}
body {
  background: #fff;
}
.nav {
  border-color: #20232718;
}
.brand span {
  border-color: #777d85;
}
.brand span,
h1,
h2,
h3,
h1 em,
h2 em,
.services span,
.services h3,
.philosophy blockquote,
.mock strong,
.process li > b,
.process h3,
.article-grid h3,
.portrait-mark,
.article-lead,
.article-body h3 {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
}
h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.045em;
}
h1 em,
h2 em {
  color: var(--ink);
  font-weight: 600;
}
.hero {
  grid-template-columns: 1fr;
  min-height: 700px;
  background: #f4f5f6;
}
.hero-copy {
  max-width: 960px;
}
.visual-service,
.process,
.about {
  background: #f3f4f5;
}
.philosophy {
  background: #30343a;
}
.cta {
  background: #eef0f2;
}
.p1 .mock,
.p2 .mock,
.p3 .mock {
  background: #f0f2f3;
  color: #30343a;
}
.services span,
.process li > b,
.article-grid b,
.article-body a {
  color: #59616a;
}
.project:hover,
.article-grid a:hover {
  box-shadow: 0 20px 50px #20232714;
}
.portrait-mark {
  color: #d9dde0;
}

/* Pencil illustrations and interactive calls to action */
.hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(30px, 5vw, 80px);
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.sketch-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
  display: block;
}
.sketch-button img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.05);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.45s ease;
}
.sketch-button:hover img,
.sketch-button:focus-visible img {
  transform: scale(1.045) rotate(-1deg);
  filter: grayscale(1) contrast(1.14);
}
.sketch-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}
.hero-sketch {
  width: min(100%, 570px);
  justify-self: end;
  animation: sketchFloat 6s ease-in-out infinite;
}
.service-with-sketch {
  position: relative;
  overflow: hidden;
}
.mouse-sketch {
  position: absolute;
  width: 155px;
  right: 18px;
  bottom: 5px;
  opacity: 0.7;
}
.idea-sketch {
  width: min(380px, 30vw);
  float: left;
  margin: -25px 45px 25px max(0px, calc(28% - 110px));
  opacity: 0.88;
}
.mid-cta {
  margin: 0 max(5vw, 24px) 105px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: #f3f4f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.mid-cta p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.button {
  border: 1px solid var(--ink);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 8px 22px #20232718;
}
.button-primary {
  position: relative;
  overflow: hidden;
  padding: 17px 28px;
  font-size: 15px;
}
.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-105%);
  transition: transform 0.35s ease;
  mix-blend-mode: difference;
}
.button-primary:hover::before,
.button-primary:focus-visible::before {
  transform: translateX(0);
}
.button-primary span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.button-primary:hover span,
.button-primary:focus-visible span {
  transform: translateX(5px);
}
.button-large {
  padding: 19px 32px;
  font-size: 16px;
}
.nav-cta {
  padding: 11px 19px;
  box-shadow: none;
}
.zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #f7f8f9f2;
  display: grid;
  place-items: center;
  padding: 60px;
  cursor: zoom-out;
}
.zoom-overlay[hidden] {
  display: none;
}
.zoom-overlay img {
  max-width: min(1050px, 90vw);
  max-height: 82vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease both;
}
.zoom-open {
  overflow: hidden;
}
.zoom-close {
  position: absolute;
  right: 28px;
  top: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font:
    400 30px/1 "DM Sans",
    sans-serif;
  cursor: pointer;
}
@keyframes sketchFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0.2deg);
  }
  50% {
    transform: translateY(-9px) rotate(-0.4deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-sketch {
    width: min(520px, 85vw);
    justify-self: center;
  }
  .idea-sketch {
    width: min(390px, 75vw);
    float: none;
    margin: 0 auto 35px;
  }
  .mouse-sketch {
    width: 135px;
  }
  .included-service {
    grid-template-columns: 1fr 120px;
  }
}
@media (max-width: 700px) {
  .nav nav {
    display: none;
  }
  .nav-cta {
    padding: 9px 12px;
    font-size: 12px;
  }
  .mid-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 75px;
  }
  .mouse-sketch {
    position: static;
    width: 130px;
    margin: 15px 0 -18px auto;
  }
  .zoom-overlay {
    padding: 25px;
  }
  .button-large {
    padding: 17px 20px;
  }
  .hero-sketch {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .sketch-button img,
  .button-primary::before,
  .button-primary span {
    transition: none;
  }
  .hero-sketch {
    animation: none;
  }
  .zoom-overlay img {
    animation: none;
  }
}
@media (max-width: 900px) {
  .faq-list {
    margin-left: 0;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .contact-form {
    padding: 22px;
  }
  .direct-contact {
    flex-direction: column;
    gap: 14px;
  }
  .faq summary {
    font-size: 18px;
  }
  .about h2 {
    font-size: 38px;
  }
  .about p {
    font-size: 16px;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .back-to-top {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
  }
  .service-card {
    min-height: 0;
    padding: 24px;
  }
  .service-sketch {
    width: 96px;
    height: 76px;
  }
  .included-service {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .included-service img {
    width: 96px;
    height: 76px;
    justify-self: end;
  }
}
