@font-face {
  font-family: "Caveat";
  src: url("public/fonts/caveat-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("public/fonts/cormorant-garamond-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #fbf4e9;
  --paper-deep: #f3e8da;
  --ink: #29231f;
  --muted: #706760;
  --coral: #e86f62;
  --coral-dark: #c95147;
  --coral-soft: #f4b5a6;
  --sand: #dfc19d;
  --line: rgba(41, 35, 31, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --brand-script: "Brittany Signature", "Caveat", "Segoe Print", cursive;
  --display-script: "Playlist Script", "Caveat", "Segoe Print", cursive;
  --script: var(--display-script);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1180px;
  --leaf: url("public/images/background-elements/botanical-sprig.webp");
  --monstera: url("public/images/background-elements/monstera-leaf.webp");
  --coral-brush: url("public/images/background-elements/coral-brush.webp");
  --sand-brush: url("public/images/background-elements/sand-brush.webp");
  --branch-wide: url("public/images/background-elements/branch-wide.webp");
  --branch-tall: url("public/images/background-elements/branch-tall.webp");
  --branch-open: url("public/images/background-elements/branch-open.webp");
  --heart-leaf: url("public/images/background-elements/heart-leaf.webp");
  --berry-branch: url("public/images/background-elements/berry-branch.webp");
  --round-leaf-branch: url("public/images/background-elements/round-leaf-branch.webp");
  --long-leaf: url("public/images/background-elements/long-leaf.webp");
  --paint-heart: url("public/images/background-elements/heart-paint-soft.webp");
  --wordmark-underline: url("public/images/background-elements/quinn-art-underline.webp");
  --coral-dab: url("public/images/background-elements/coral-paint-dab.webp");
  --blush-stroke: url("public/images/background-elements/blush-paint-stroke.webp");
  --peach-dab: url("public/images/background-elements/peach-paint-dab.webp");
  --page-brush: var(--coral-brush);
  --page-leaf: var(--leaf);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(244, 181, 166, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 48%, rgba(223, 193, 157, 0.16), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  position: fixed;
  z-index: -2;
  width: 390px;
  height: 390px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  pointer-events: none;
}

.site-shell::before {
  top: -180px;
  left: -170px;
  background-image: var(--page-brush);
  opacity: 0.64;
  transform: rotate(-11deg);
}

.site-shell::after {
  right: -185px;
  bottom: -155px;
  background-image: var(--page-leaf);
  opacity: 0.25;
  transform: rotate(12deg);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  padding: 2px 4px 7px 0;
  white-space: nowrap;
}

.wordmark::after {
  position: absolute;
  right: -2px;
  bottom: -1px;
  left: 2px;
  height: 11px;
  background: var(--coral-brush) center / 100% 100% no-repeat;
  content: "";
  opacity: 0.95;
  transform: rotate(-2deg);
}

.wordmark__quinn {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.wordmark__art {
  color: var(--coral);
  font-family: var(--brand-script);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.site-nav {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: 92px 34px 44px;
  background:
    linear-gradient(rgba(251, 244, 233, 0.94), rgba(251, 244, 233, 0.97)),
    var(--coral-brush) center / 520px auto no-repeat;
  opacity: 0;
  transform: translateY(-14px);
  transition:
    visibility 0s linear 260ms,
    opacity 260ms ease,
    transform 260ms ease;
}

.menu-open .site-nav {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.site-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 8vw, 2.2rem);
  font-weight: 550;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--coral-dark);
}

.site-nav .nav-cta {
  margin-top: 24px;
  border: 0;
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 2rem;
}

.menu-button {
  position: relative;
  z-index: 60;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251, 244, 233, 0.82);
  cursor: pointer;
}

.menu-button span:not(.sr-only),
.menu-button::before,
.menu-button::after {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button::before {
  transform: translateY(-6px);
}

.menu-button::after {
  transform: translateY(6px);
}

.menu-open .menu-button span:not(.sr-only) {
  opacity: 0;
}

.menu-open .menu-button::before {
  transform: rotate(45deg);
}

.menu-open .menu-button::after {
  transform: rotate(-45deg);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 13.5vw, 5.4rem);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.display-title em {
  color: var(--coral);
  font-family: var(--display-script);
  font-size: 1.08em;
  font-weight: 500;
}

.lead {
  max-width: 36rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button--primary:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-dark);
  font-weight: 750;
}

.text-link::after {
  content: "↗";
}

/* Homepage */

.home-hero {
  display: grid;
  min-height: calc(100svh - 82px);
  align-items: center;
  gap: 34px;
  padding-block: 54px 72px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-collage {
  position: relative;
  min-height: 390px;
}

.hero-collage::before {
  position: absolute;
  z-index: -1;
  top: -68px;
  right: -88px;
  width: 390px;
  height: 585px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.82;
  transform: rotate(7deg);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--paper-deep);
  box-shadow: 0 26px 65px rgba(66, 44, 34, 0.15);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo--large {
  top: 0;
  right: 0;
  width: 78%;
  height: 325px;
  border-radius: 48% 48% 15px 15px;
}

.hero-photo--small {
  bottom: 0;
  left: 0;
  width: 42%;
  height: 180px;
  border: 8px solid var(--paper);
  border-radius: 50% 50% 12px 12px;
  transform: rotate(-4deg);
}

.hero-note {
  position: absolute;
  right: 5px;
  bottom: 3px;
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 1.65rem;
  transform: rotate(-5deg);
}

.service-glance {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  overflow: hidden;
  padding: 17px 0;
  border-block: 1px solid var(--line);
  background: rgba(251, 244, 233, 0.88);
  backdrop-filter: blur(12px);
}

.service-glance__inner {
  display: flex;
  gap: 8px 22px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

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

.service-glance a {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
}

.service-glance a::before {
  margin-right: 10px;
  color: var(--coral);
  content: "◆";
  font-size: 0.52em;
  vertical-align: 0.2em;
}

.home-services,
.home-work {
  position: relative;
  padding-block: 90px;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.section-heading p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 200px;
  padding: 30px 22px;
  overflow: hidden;
  background: rgba(251, 244, 233, 0.96);
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -115px;
  width: 240px;
  height: 360px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.service-card:hover::after {
  opacity: 0.52;
  transform: rotate(8deg);
}

.service-card__number {
  display: block;
  margin-bottom: 36px;
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 1.25rem;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.work-preview {
  display: grid;
  gap: 14px;
}

.work-preview figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.work-preview figure:first-child {
  min-height: 390px;
}

.work-preview img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.work-preview figure:hover img {
  transform: scale(1.025);
}

.work-preview figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 15px 17px;
  background: rgba(251, 244, 233, 0.92);
  backdrop-filter: blur(10px);
}

.work-preview figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.work-preview figcaption span {
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 1.1rem;
}

/* Interior pages */

.page-main {
  padding-bottom: 88px;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  align-items: end;
  padding-block: 66px 52px;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -230px;
  bottom: -180px;
  width: 500px;
  height: 750px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.52;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 14vw, 7.2rem);
  font-weight: 550;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.page-hero h1 em {
  color: var(--coral);
  font-family: var(--display-script);
  font-weight: 500;
}

.page-hero .lead {
  margin-top: 26px;
}

.about-layout {
  display: grid;
  gap: 42px;
}

.about-portrait {
  position: relative;
  min-height: 480px;
  margin: 0;
}

.about-portrait::before {
  position: absolute;
  z-index: -1;
  inset: -40px -60px -55px -70px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.75;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 48% 48% 12px 12px;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 3.8rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.signature {
  margin-top: 26px;
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 1.8rem;
  transform: rotate(-3deg);
}

.portfolio-grid {
  display: grid;
  gap: 12px;
}

.portfolio-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.025);
}

.portfolio-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(28, 22, 18, 0.78));
  color: white;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail__number {
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 1.4rem;
}

.service-detail h2 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 8vw, 2.65rem);
  font-weight: 600;
  line-height: 1;
}

.service-detail p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-detail a {
  align-self: center;
  justify-self: start;
}

.conversation-panel {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  padding: 72px 24px;
  overflow: hidden;
  text-align: center;
}

.conversation-panel::before {
  position: absolute;
  z-index: -1;
  width: 480px;
  height: 720px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.95;
  transform: rotate(-8deg);
}

.conversation-panel h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 17vw, 8rem);
  font-weight: 550;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.conversation-panel h1 em {
  color: var(--coral);
  font-family: var(--display-script);
  font-weight: 500;
}

.conversation-panel p {
  max-width: 31rem;
  margin: 28px auto 0;
  line-height: 1.7;
}

.conversation-panel .actions {
  justify-content: center;
}

.contact-layout {
  display: grid;
  gap: 52px;
  padding-top: 20px;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 0;
  font-style: normal;
}

.contact-list a,
.contact-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--coral-soft);
  border-radius: 50%;
  color: var(--coral-dark);
}

.contact-list b {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-art {
  position: relative;
  min-height: 390px;
}

.contact-art::before {
  position: absolute;
  inset: -80px;
  background: var(--leaf) center / contain no-repeat;
  content: "";
  opacity: 0.25;
  transform: rotate(-8deg);
}

.contact-art p {
  position: absolute;
  top: 48%;
  right: 8%;
  left: 8%;
  margin: 0;
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: clamp(2.4rem, 11vw, 4rem);
  line-height: 0.9;
  text-align: center;
  transform: rotate(-6deg);
}

.site-footer {
  padding-block: 40px 30px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 25px;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--coral-dark);
}

@media (min-width: 700px) {
  .container,
  .site-header {
    width: min(calc(100% - 72px), var(--content));
  }

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

  .work-preview {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 250px);
  }

  .work-preview figure:first-child {
    grid-row: 1 / 3;
    min-height: 514px;
  }

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

  .portfolio-card:nth-child(3n) {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .service-detail {
    grid-template-columns: 55px minmax(0, 1fr) auto;
    align-items: center;
    padding: 42px 0;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr);
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 920px) {
  .site-header {
    min-height: 94px;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    gap: 29px;
    padding: 0;
    background: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-nav a {
    padding: 9px 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .site-nav a[aria-current="page"] {
    box-shadow: inset 0 -2px var(--coral);
  }

  .site-nav .nav-cta {
    min-height: 42px;
    margin: 0 0 0 7px;
    padding: 9px 17px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--paper);
    background: var(--ink);
    font-family: var(--sans);
    font-size: 0.76rem;
  }

  .home-hero {
    min-height: min(720px, calc(100svh - 94px));
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.8fr);
    gap: 70px;
    padding-block: 68px 92px;
  }

  .hero-collage {
    min-height: 520px;
  }

  .hero-photo--large {
    width: 82%;
    height: 440px;
  }

  .hero-photo--small {
    width: 44%;
    height: 235px;
  }

  .service-glance {
    margin-top: -38px;
  }

  .service-glance__inner {
    justify-content: space-between;
    overflow: visible;
  }

  .home-services,
  .home-work {
    padding-block: 128px;
  }

  .section-heading {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    margin-bottom: 58px;
  }

  .service-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-card {
    grid-column: span 2;
    min-height: 260px;
    padding: 34px 28px;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 3;
  }

  .page-hero {
    min-height: 500px;
    padding-block: 90px 72px;
  }

  .about-layout {
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
    gap: 100px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }

  .portfolio-card {
    grid-column: span 5;
    min-height: 460px;
  }

  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(4) {
    grid-column: span 7;
  }

  .portfolio-card:nth-child(3n) {
    grid-column: span 7;
    min-height: 460px;
  }

  .conversation-panel {
    min-height: calc(100svh - 94px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Current responsive composition */

.nav-services {
  display: flex;
  flex-direction: column;
}

.nav-services > a {
  position: relative;
}

.nav-services > a::after {
  float: right;
  color: var(--coral-dark);
  content: "＋";
  font-family: var(--sans);
  font-size: 0.72em;
}

.nav-submenu {
  display: grid;
  padding: 4px 0 8px 18px;
  border-left: 1px solid var(--coral-soft);
}

.nav-submenu a {
  padding: 8px 0;
  border: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-services--active > a {
  color: var(--coral-dark);
}

.home-intro {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  align-items: center;
  gap: 34px;
  padding-block: 50px 80px;
}

.home-intro__copy {
  position: relative;
  z-index: 3;
}

.home-intro__copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 18vw, 7.6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.72;
  text-transform: uppercase;
}

.home-intro__copy h1 em {
  display: inline-block;
  margin-top: 0.19em;
  color: var(--coral);
  font-family: var(--display-script);
  font-size: 0.72em;
  font-weight: 500;
  line-height: 0.75;
  text-transform: none;
  transform: rotate(-4deg);
}

.home-intro__copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 28px 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-intro__gallery {
  position: relative;
  min-height: 430px;
}

.home-intro__gallery::before {
  position: absolute;
  top: -52px;
  right: -84px;
  width: 330px;
  height: 180px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.78;
  transform: rotate(7deg);
}

.home-intro__gallery::after {
  position: absolute;
  right: -64px;
  bottom: -40px;
  width: 210px;
  height: 260px;
  background: var(--leaf) center / contain no-repeat;
  content: "";
  opacity: 0.32;
  transform: rotate(21deg);
}

.intro-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid var(--paper);
  background: var(--paper-deep);
  box-shadow: 0 22px 55px rgba(53, 37, 29, 0.15);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image--main {
  top: 0;
  right: 0;
  width: 75%;
  height: 330px;
  border-radius: 50% 50% 10px 10px;
}

.intro-image--tattoo {
  bottom: 0;
  left: 0;
  width: 42%;
  height: 205px;
  border-radius: 46% 46% 9px 9px;
  transform: rotate(-5deg);
}

.intro-image--board {
  right: 5px;
  bottom: -18px;
  width: 34%;
  height: 145px;
  transform: rotate(5deg);
}

.home-service-section {
  position: relative;
  padding-block: 84px 104px;
}

.home-service-section::before {
  position: absolute;
  z-index: -1;
  top: 16px;
  left: -220px;
  width: 410px;
  height: 270px;
  background: var(--sand-brush) center / contain no-repeat;
  content: "";
  opacity: 0.5;
  transform: rotate(-10deg);
}

.home-service-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.home-service-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 13vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.home-service-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-tablets {
  display: grid;
  gap: 12px;
}

.service-tablet {
  position: relative;
  display: grid;
  min-height: 210px;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 25px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(251, 244, 233, 0.88);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-tablet::before {
  position: absolute;
  right: -85px;
  bottom: -55px;
  width: 220px;
  height: 160px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.22;
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-tablet:hover {
  box-shadow: 0 22px 50px rgba(48, 34, 27, 0.12);
  transform: translateY(-5px);
}

.service-tablet:hover::before {
  opacity: 0.55;
  transform: rotate(7deg);
}

.service-tablet > span {
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 1.3rem;
}

.service-tablet h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 650;
  line-height: 0.95;
}

.service-tablet p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-tablet > b {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
}

.service-tablet--mural::before,
.service-tablet--lettering::before {
  background-image: var(--sand-brush);
}

.about-wireframe {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  gap: 45px;
  align-items: center;
  padding-block: 64px 96px;
}

.about-wireframe::before {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -160px;
  width: 320px;
  height: 390px;
  background: var(--leaf) center / contain no-repeat;
  content: "";
  opacity: 0.25;
  transform: rotate(18deg);
}

.about-wireframe__portrait {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
}

.about-wireframe__portrait::before {
  position: absolute;
  z-index: -1;
  inset: -70px -70px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.85;
  transform: rotate(-8deg);
}

.about-wireframe__portrait img {
  width: min(100%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.about-wireframe__copy h1 {
  margin: 0 0 32px;
  line-height: 0.72;
}

.about-wireframe__copy h1 span {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 17vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.about-wireframe__copy h1 em {
  display: block;
  margin-left: 0.3em;
  color: var(--coral);
  font-family: var(--display-script);
  font-size: clamp(3.6rem, 18vw, 6.4rem);
  font-weight: 500;
  transform: rotate(-5deg);
}

.about-wireframe__copy > p:not(.eyebrow, .signature) {
  max-width: 630px;
  margin: 0 0 17px;
  color: var(--muted);
  line-height: 1.72;
}

.page-hero--compact {
  min-height: 360px;
}

.portfolio-section {
  padding-bottom: 60px;
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 13px;
  scrollbar-width: none;
}

.portfolio-filters::-webkit-scrollbar {
  display: none;
}

.portfolio-filters button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.portfolio-filters button[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.portfolio-grid--dynamic {
  grid-auto-flow: dense;
}

.portfolio-grid--dynamic .portfolio-card,
.portfolio-grid--dynamic .portfolio-card:nth-child(3n) {
  min-height: 360px;
}

.portfolio-grid--dynamic .portfolio-card img {
  min-height: 360px;
}

.portfolio-card figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  padding-top: 65px;
}

.portfolio-card figcaption strong {
  font-family: var(--serif);
  font-size: 1.28rem;
}

.portfolio-card figcaption span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  gap: 42px;
  align-items: center;
  padding-block: 64px 90px;
}

.service-hero::before {
  position: absolute;
  z-index: -1;
  top: 15%;
  left: -210px;
  width: 400px;
  height: 260px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.5;
}

.service-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 16vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.service-hero h1 em {
  display: block;
  color: var(--coral);
  font-family: var(--display-script);
  font-size: 0.86em;
  font-weight: 500;
  transform: rotate(-4deg);
}

.service-hero .button {
  margin-top: 28px;
}

.service-hero figure {
  position: relative;
  min-height: 430px;
  margin: 0;
}

.service-hero figure::before {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -70px;
  width: 230px;
  height: 280px;
  background: var(--leaf) center / contain no-repeat;
  content: "";
  opacity: 0.3;
  transform: rotate(20deg);
}

.service-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: 48% 48% 14px 14px;
  object-fit: cover;
}

.service-explanation {
  display: grid;
  gap: 28px;
  padding-block: 72px;
  border-block: 1px solid var(--line);
}

.service-explanation h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 10vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.service-explanation p {
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.72;
}

.service-portfolio {
  padding-block: 100px 30px;
}

.contact-page {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  gap: 55px;
  align-items: center;
  padding-block: 65px 90px;
}

.contact-page::before {
  position: absolute;
  z-index: -1;
  top: 6%;
  left: -150px;
  width: 340px;
  height: 220px;
  background: var(--coral-brush) center / contain no-repeat;
  content: "";
  opacity: 0.65;
}

.contact-page__intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 16vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.contact-page__intro h1 em {
  display: block;
  color: var(--coral);
  font-family: var(--display-script);
  font-weight: 500;
}

.contact-page__intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 21px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(251, 244, 233, 0.82);
  box-shadow: 0 26px 70px rgba(52, 38, 31, 0.09);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: var(--sans);
}

.form-field input,
.form-field select {
  min-height: 46px;
}

.form-field textarea {
  min-height: 125px;
  padding-block: 10px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--coral-dark);
}

.contact-form .button {
  justify-self: start;
}

.form-note,
.form-feedback {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.form-feedback:not(:empty) {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  background: rgba(244, 181, 166, 0.28);
}

@media (min-width: 700px) {
  .service-tablets {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wireframe {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
  }

  .portfolio-grid--dynamic {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid--dynamic .portfolio-card,
  .portfolio-grid--dynamic .portfolio-card:nth-child(3n) {
    grid-column: auto;
  }
}

@media (min-width: 920px) {
  .site-nav {
    overflow: visible;
  }

  .nav-services {
    position: relative;
    flex-direction: row;
    align-items: center;
  }

  .nav-services > a {
    padding: 9px 0;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .nav-services > a::after {
    float: none;
    margin-left: 5px;
    content: "⌄";
  }

  .nav-services--active > a {
    box-shadow: inset 0 -2px var(--coral);
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 17px);
    left: 50%;
    display: grid;
    visibility: hidden;
    width: 248px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 244, 233, 0.98);
    box-shadow: 0 20px 60px rgba(47, 33, 27, 0.14);
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: visibility 0s linear 180ms, opacity 180ms ease, transform 180ms ease;
  }

  .nav-services:hover .nav-submenu,
  .nav-services:focus-within .nav-submenu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    transition-delay: 0s;
  }

  .nav-submenu a {
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .nav-submenu a:hover,
  .nav-submenu a[aria-current="page"] {
    color: var(--coral-dark);
    background: rgba(244, 181, 166, 0.18);
  }

  .home-intro {
    min-height: min(690px, calc(100svh - 94px));
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 75px;
    padding-block: 72px 95px;
  }

  .home-intro__gallery {
    min-height: 535px;
  }

  .intro-image--main {
    width: 72%;
    height: 430px;
  }

  .intro-image--tattoo {
    width: 40%;
    height: 250px;
  }

  .intro-image--board {
    width: 31%;
    height: 190px;
  }

  .home-service-section {
    padding-block: 125px 145px;
  }

  .home-service-heading {
    grid-template-columns: 1fr 0.65fr;
    align-items: end;
    margin-bottom: 58px;
  }

  .service-tablets {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-tablet {
    min-height: 310px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    padding: 30px 24px;
  }

  .service-tablet > span {
    grid-column: 1;
  }

  .service-tablet > div {
    grid-column: 1 / -1;
    align-self: end;
  }

  .service-tablet > b {
    grid-column: 2;
    grid-row: 1;
  }

  .about-wireframe {
    min-height: calc(100svh - 94px);
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
    gap: 100px;
    padding-block: 85px 110px;
  }

  .page-hero--compact {
    min-height: 430px;
  }

  .portfolio-grid--dynamic {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid--dynamic .portfolio-card,
  .portfolio-grid--dynamic .portfolio-card:nth-child(3n) {
    grid-column: auto;
    min-height: 430px;
  }

  .portfolio-grid--dynamic .portfolio-card img {
    min-height: 430px;
  }

  .portfolio-grid--dynamic .portfolio-card:nth-child(7n + 1) {
    grid-row: span 2;
    min-height: 876px;
  }

  .portfolio-grid--dynamic .portfolio-card:nth-child(7n + 1) img {
    min-height: 876px;
  }

  .service-hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.78fr);
    gap: 95px;
    min-height: 690px;
  }

  .service-explanation {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    padding-block: 105px;
  }

  .contact-page {
    min-height: calc(100svh - 94px);
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.8fr);
    gap: 110px;
    padding-block: 85px 110px;
  }

  .contact-form {
    padding: 38px 36px;
  }
}

/* Artwork variation and final composition refinements */

.home-page {
  --page-brush: var(--blush-stroke);
  --page-leaf: var(--branch-wide);
}

.about-page {
  --page-brush: var(--peach-dab);
  --page-leaf: var(--branch-tall);
}

.work-page {
  --page-brush: var(--coral-dab);
  --page-leaf: var(--branch-open);
}

.contact-page-body {
  --page-brush: var(--sand-brush);
  --page-leaf: var(--branch-open);
}

.service-tattoo-page {
  --page-brush: var(--coral-dab);
  --page-leaf: var(--monstera);
}

.service-mural-page {
  --page-brush: var(--peach-dab);
  --page-leaf: var(--branch-wide);
}

.service-board-page {
  --page-brush: var(--sand-brush);
  --page-leaf: var(--branch-open);
}

.service-lettering-page {
  --page-brush: var(--blush-stroke);
  --page-leaf: var(--branch-tall);
}

.site-shell::before {
  animation: paint-drift 11s ease-in-out infinite alternate;
}

.site-shell::after {
  transform-origin: 45% 88%;
  animation: plant-grow 9s ease-in-out infinite alternate;
}

@keyframes paint-drift {
  from {
    transform: rotate(-11deg) translate3d(-5px, 0, 0) scale(0.96);
  }

  to {
    transform: rotate(-7deg) translate3d(12px, 8px, 0) scale(1.05);
  }
}

@keyframes plant-grow {
  from {
    transform: rotate(9deg) scale(0.93);
  }

  to {
    transform: rotate(14deg) scale(1.06);
  }
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro-image,
.intro-image--main,
.intro-image--tattoo,
.intro-image--board {
  border-radius: 9px;
}

.intro-image {
  transition: z-index 0s linear 180ms, box-shadow 300ms ease, transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro-image img {
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-intro__gallery:hover .intro-image {
  filter: saturate(0.88);
}

.home-intro__gallery .intro-image:hover {
  z-index: 5;
  box-shadow: 0 34px 78px rgba(53, 37, 29, 0.24);
  filter: none;
  transform: translateY(-8px) rotate(0);
  transition-delay: 0s;
}

.home-intro__gallery .intro-image:hover img {
  transform: scale(1.035);
}

.home-service-section::after {
  position: absolute;
  z-index: -1;
  right: -200px;
  bottom: 10px;
  width: 420px;
  height: 330px;
  background: var(--branch-tall) center / contain no-repeat;
  content: "";
  opacity: 0.22;
  transform: rotate(18deg);
  transform-origin: bottom center;
  animation: corner-plant 8s ease-in-out infinite alternate;
}

@keyframes corner-plant {
  from {
    transform: rotate(15deg) scale(0.95);
  }

  to {
    transform: rotate(20deg) scale(1.04);
  }
}

.service-tablet {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: 8px;
}

.service-tablet::before {
  display: none;
}

.service-tablet figure {
  position: relative;
  height: 245px;
  flex: 0 0 245px;
  margin: 0;
  overflow: hidden;
}

.service-tablet figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41, 35, 31, 0.12), transparent 42%);
  content: "";
}

.service-tablet figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-tablet:hover figure img {
  transform: scale(1.045);
}

.service-tablet__body {
  position: relative;
  display: flex;
  min-height: 195px;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.service-tablet__body > span {
  margin-bottom: 18px;
  color: var(--coral-dark);
  font-family: var(--display-script);
  font-size: 1.25rem;
}

.service-tablet__body h3 {
  margin: 0 42px 10px 0;
}

.service-tablet__body p {
  margin-top: auto;
}

.service-tablet__body > b {
  position: absolute;
  top: 22px;
  right: 20px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
}

.work-page .portfolio-section {
  position: relative;
}

.work-page .portfolio-section::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: -250px;
  width: 420px;
  height: 350px;
  background: var(--branch-wide) center / contain no-repeat;
  content: "";
  opacity: 0.17;
  transform: rotate(-13deg);
}

.portfolio-grid--dynamic {
  gap: 0;
}

.portfolio-grid--dynamic .portfolio-card {
  border-radius: 0;
}

@media (min-width: 920px) {
  .site-shell::before,
  .site-shell::after {
    width: 590px;
    height: 590px;
  }

  .site-shell::before {
    top: -255px;
    left: -250px;
  }

  .site-shell::after {
    right: -285px;
    bottom: -250px;
  }

  .service-tablet {
    min-height: 510px;
    display: flex;
    padding: 0;
  }

  .service-tablet figure {
    height: 290px;
    flex-basis: 290px;
  }

  .service-tablet__body {
    min-height: 220px;
    padding: 26px 23px 24px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .site-shell::before,
  .site-shell::after,
  .home-service-section::after {
    animation: none !important;
  }
}

/* Sticky navigation, editorial pages and artwork composition */

.site-shell {
  overflow-x: clip;
  overflow-y: visible;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 0;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 244, 233, 0.9);
  content: "";
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header > .wordmark {
  position: relative;
  z-index: 60;
}

.site-shell::before {
  z-index: -3;
}

.site-shell::after {
  z-index: -2;
  opacity: 0.46;
  mix-blend-mode: multiply;
}

.home-page .site-shell::after,
.work-page .site-shell::after,
.blog-page .site-shell::after {
  top: -150px;
  right: auto;
  bottom: auto;
  left: -115px;
  background-image: var(--branch-wide);
  background-position: left top;
  transform-origin: 15% 85%;
}

.about-page .site-shell::after,
.service-mural-page .site-shell::after {
  top: -145px;
  right: -95px;
  bottom: auto;
  left: auto;
  background-image: var(--branch-tall);
  background-position: right top;
  transform-origin: 75% 90%;
}

.contact-page-body .site-shell::after,
.service-board-page .site-shell::after {
  top: auto;
  right: auto;
  bottom: -135px;
  left: -105px;
  background-image: var(--branch-open);
  background-position: left bottom;
  transform-origin: 15% 85%;
}

.service-tattoo-page .site-shell::after,
.service-lettering-page .site-shell::after {
  top: auto;
  right: -120px;
  bottom: -145px;
  left: auto;
  background-image: var(--branch-wide);
  background-position: right bottom;
  transform-origin: 75% 85%;
}

.blog-page {
  --page-brush: var(--blush-stroke);
  --page-leaf: var(--branch-wide);
}

.work-page {
  --page-leaf: var(--branch-open);
}

.service-lettering-page {
  --page-leaf: var(--branch-tall);
}

.work-main {
  padding-top: 18px;
}

.work-page .portfolio-section {
  padding-bottom: 60px;
}

.portfolio-filters {
  position: sticky;
  z-index: 35;
  top: 82px;
  margin-bottom: 8px;
  padding: 12px 0;
  background: rgba(251, 244, 233, 0.92);
  backdrop-filter: blur(16px);
}

.about-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper-deep);
}

.about-wireframe__portrait {
  width: min(100%, 470px);
}

.about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 650ms, opacity 650ms ease;
}

.about-slide.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.about-wireframe__portrait .about-slide img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.about-slide-controls {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 12px;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(41, 35, 31, 0.12);
  border-radius: 999px;
  background: rgba(251, 244, 233, 0.88);
  box-shadow: 0 10px 28px rgba(48, 35, 28, 0.13);
  transform: translateX(50%);
  backdrop-filter: blur(12px);
}

.about-slide-controls > button,
.about-slide-dots button {
  display: grid;
  width: 29px;
  height: 29px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.about-slide-controls > button:hover {
  background: rgba(232, 111, 98, 0.15);
}

.about-slide-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-slide-dots button {
  width: 7px;
  height: 7px;
  background: rgba(41, 35, 31, 0.24);
}

.about-slide-dots button[aria-current="true"] {
  background: var(--coral-dark);
  transform: scale(1.35);
}

.signature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signature img {
  width: 27px;
  height: 32px;
  object-fit: contain;
}

.blog-main {
  padding-block: clamp(42px, 8vw, 90px) 100px;
}

.blog-heading {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 35px;
}

.blog-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.85;
}

.blog-heading img {
  width: 76px;
  margin: 4px 0 0 15px;
  transform: rotate(9deg);
}

.blog-grid {
  display: grid;
  gap: 20px;
}

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 244, 233, 0.72);
}

.blog-card figure {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
}

.blog-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card:hover figure img {
  transform: scale(1.035);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__body > p:first-child {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 0 20px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.blog-card__body > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 700px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .portfolio-filters {
    top: 94px;
  }

  .site-nav {
    gap: 24px;
  }
}

@media (max-width: 699px) {
  .about-slide-controls {
    bottom: 8px;
  }

  .blog-card {
    margin-inline: -20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-slide {
    transition: none;
  }
}

/* Final Quinn.Art visual rhythm */

.wordmark {
  width: max-content;
}

.wordmark::after {
  right: 0;
  bottom: -2px;
  left: 0;
  height: 8px;
  background-image: var(--wordmark-underline);
  background-size: 100% 100%;
  opacity: 0.78;
  transform: rotate(-1deg) scaleX(0.98);
}

.footer-inner .wordmark {
  width: max-content;
  justify-self: start;
}

.site-shell::after {
  --leaf-direction: 1;
  animation: plant-grow-directed 9s ease-in-out infinite alternate;
}

.about-page .site-shell::after,
.service-mural-page .site-shell::after,
.service-tattoo-page .site-shell::after,
.service-lettering-page .site-shell::after {
  --leaf-direction: -1;
}

@keyframes plant-grow-directed {
  from {
    transform: scaleX(var(--leaf-direction)) rotate(8deg) scale(0.94);
  }

  to {
    transform: scaleX(var(--leaf-direction)) rotate(13deg) scale(1.055);
  }
}

.home-intro__gallery::after {
  display: none;
}

.intro-image {
  --intro-rotation: 0deg;
  z-index: 1;
  filter: none;
  transform: translate3d(0, 0, 0) rotate(var(--intro-rotation));
  transition:
    box-shadow 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.intro-image--tattoo {
  --intro-rotation: -5deg;
}

.intro-image--board {
  --intro-rotation: 5deg;
}

.home-intro__gallery:hover .intro-image {
  filter: none;
}

.home-intro__gallery .intro-image:hover {
  z-index: 6;
  box-shadow: 0 30px 65px rgba(53, 37, 29, 0.22);
  transform: translate3d(0, -4px, 0) rotate(var(--intro-rotation)) scale(1.012);
}

.home-intro__gallery .intro-image:hover img {
  transform: scale(1.018);
}

.section-cue {
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 11px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.section-cue b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral-dark);
  font-size: 1rem;
  animation: cue-breathe 2.4s ease-in-out infinite;
}

.section-cue:hover {
  color: var(--coral-dark);
  transform: translateY(2px);
}

@keyframes cue-breathe {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(3px);
  }
}

.home-service-section {
  padding-top: 56px;
  scroll-margin-top: 100px;
}

.home-service-heading {
  position: relative;
  margin-bottom: 32px;
}

.home-service-heading::after {
  position: absolute;
  z-index: -1;
  top: -40px;
  right: 4%;
  width: 110px;
  height: 95px;
  background: var(--paint-heart) center / contain no-repeat;
  content: "";
  opacity: 0.48;
  transform: rotate(10deg);
}

.service-tablets {
  position: relative;
}

.service-tablets::before {
  position: absolute;
  z-index: -1;
  top: 36%;
  left: 44%;
  width: 330px;
  height: 180px;
  background: var(--blush-stroke) center / contain no-repeat;
  content: "";
  opacity: 0.34;
  transform: translateX(-50%) rotate(-5deg);
}

.home-service-section::after {
  right: -155px;
  bottom: -75px;
  width: 390px;
  height: 300px;
  background-image: var(--berry-branch);
  opacity: 0.42;
  transform-origin: right bottom;
  animation: corner-plant-left 8s ease-in-out infinite alternate;
}

@keyframes corner-plant-left {
  from {
    transform: scaleX(-1) rotate(5deg) scale(0.95);
  }

  to {
    transform: scaleX(-1) rotate(0deg) scale(1.04);
  }
}

.about-wireframe::before {
  top: 12%;
  right: -190px;
  width: 380px;
  height: 330px;
  background-image: var(--long-leaf);
  opacity: 0.36;
  transform: scaleX(-1) rotate(-6deg);
}

.about-wireframe__copy {
  position: relative;
}

.about-wireframe__copy::after {
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: -45px;
  width: 92px;
  height: 80px;
  background: url("public/images/background-elements/heart-paint-blush.webp") center / contain no-repeat;
  content: "";
  opacity: 0.42;
  transform: rotate(-9deg);
}

.about-slide {
  clip-path: circle(0% at 50% 58%);
  transform: scale(1.055);
  transition:
    visibility 0s linear 850ms,
    opacity 500ms ease,
    clip-path 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-slide.is-active {
  clip-path: circle(72% at 50% 50%);
  transform: scale(1);
}

.about-slide.is-active img {
  animation: portrait-settle 5s ease-out both;
}

@keyframes portrait-settle {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

.work-page {
  --work-surround: #e8dac9;
}

.work-main {
  padding-top: 30px;
}

.work-page .portfolio-section {
  isolation: isolate;
}

.work-page .portfolio-section::after {
  position: absolute;
  z-index: -2;
  inset: -30px 50% 0;
  width: 100vw;
  background: var(--work-surround);
  content: "";
  transform: translateX(-50%);
}

.work-page .portfolio-section::before {
  z-index: -1;
  opacity: 0.27;
}

.portfolio-filters {
  top: 96px;
  width: max-content;
  max-width: calc(100% - 24px);
  margin: 0 auto 18px;
  padding: 7px;
  border: 1px solid rgba(41, 35, 31, 0.13);
  border-radius: 999px;
  background: rgba(251, 244, 233, 0.72);
  box-shadow: 0 14px 38px rgba(53, 37, 29, 0.18);
  backdrop-filter: blur(18px) saturate(1.08);
}

.portfolio-filters button {
  min-height: 38px;
  padding: 8px 15px;
  border-color: transparent;
}

.portfolio-filters button:not([aria-pressed="true"]):hover {
  background: rgba(251, 244, 233, 0.56);
}

.blog-main {
  padding-block: clamp(34px, 6vw, 64px) 82px;
}

.blog-heading {
  display: flex;
  width: 100%;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.blog-heading > div {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.blog-heading h1 {
  font-size: clamp(2.9rem, 7vw, 4.8rem);
}

.blog-heading img {
  width: 65px;
}

.blog-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-grid {
  gap: 14px;
}

.blog-card {
  display: block;
  border-radius: 0;
  background: rgba(251, 244, 233, 0.78);
}

.blog-card__link {
  display: grid;
  height: 100%;
}

.blog-card figure {
  min-height: 210px;
  aspect-ratio: 4 / 3;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-card__body > p:first-child {
  margin-bottom: 15px;
}

.blog-card h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.blog-card__body > p:last-of-type {
  font-size: 0.88rem;
  line-height: 1.55;
}

.blog-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 750;
}

.article-page {
  --page-brush: var(--peach-dab);
  --page-leaf: var(--heart-leaf);
}

.article-page .site-shell::after {
  --leaf-direction: -1;
  top: -145px;
  right: -100px;
  bottom: auto;
  left: auto;
  background-image: var(--heart-leaf);
  transform-origin: right top;
}

.article-main {
  padding-block: clamp(42px, 7vw, 88px) 100px;
}

.article-post {
  width: min(100%, 920px);
  margin-inline: auto;
}

.article-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-header > p:first-of-type {
  display: flex;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.article-header > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.article-hero {
  max-height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.article-hero img {
  width: 100%;
  height: min(68vw, 680px);
  object-fit: cover;
}

.article-copy {
  display: grid;
  max-width: 720px;
  gap: 18px;
  margin: 54px auto;
}

.article-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.article-gallery {
  display: grid;
  gap: 10px;
}

.article-gallery figure {
  min-height: 300px;
  margin: 0;
  overflow: hidden;
}

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

.article-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  margin-top: 44px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.article-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral-dark);
  font-size: 0.8rem;
  font-weight: 750;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  pointer-events: none;
}

.site-footer::before {
  bottom: -90px;
  left: -115px;
  width: 310px;
  height: 190px;
  background-image: var(--blush-stroke);
  opacity: 0.35;
  transform: rotate(8deg);
}

.site-footer::after {
  right: -120px;
  bottom: -125px;
  width: 310px;
  height: 260px;
  background-image: var(--round-leaf-branch);
  opacity: 0.27;
  transform: scaleX(-1) rotate(4deg);
  transform-origin: right bottom;
  animation: footer-leaf 8s ease-in-out infinite alternate;
}

@keyframes footer-leaf {
  from {
    transform: scaleX(-1) rotate(4deg) scale(0.96);
  }

  to {
    transform: scaleX(-1) rotate(-1deg) scale(1.04);
  }
}

.nav-services-toggle {
  display: grid;
  width: 50px;
  min-height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(251, 244, 233, 0.75);
  cursor: pointer;
}

.nav-services-toggle span {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 200ms ease;
}

.nav-services-toggle[aria-expanded="true"] span {
  transform: translateY(2px) rotate(225deg);
}

@media (max-width: 919px) {
  .site-shell > .site-header {
    left: 0;
    width: 100%;
    padding-inline: 20px;
    transform: none;
  }

  .site-nav {
    width: 100%;
    height: 100dvh;
    max-height: none;
    justify-content: flex-start;
    gap: 8px;
    padding: 104px 20px 36px;
    background: var(--paper);
  }

  .site-nav > a,
  .nav-services > a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid rgba(41, 35, 31, 0.09);
    border-radius: 12px;
    background: rgba(251, 244, 233, 0.68);
    font-family: var(--serif);
    font-size: clamp(1.3rem, 6.5vw, 1.8rem);
  }

  .site-nav > a[aria-current="page"],
  .nav-services--active > a {
    border-color: rgba(232, 111, 98, 0.38);
    background: rgba(244, 181, 166, 0.16);
  }

  .nav-services {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 8px;
  }

  .nav-services > a::after {
    display: none;
  }

  .nav-submenu {
    grid-column: 1 / -1;
    max-height: 0;
    gap: 6px;
    overflow: hidden;
    padding: 0 0 0 14px;
    border-left: 0;
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease;
  }

  .nav-services.is-open .nav-submenu {
    max-height: 280px;
    padding-block: 3px 7px;
    opacity: 1;
  }

  .nav-submenu a {
    display: flex;
    min-height: 43px;
    align-items: center;
    padding: 7px 13px;
    border: 1px solid rgba(41, 35, 31, 0.08);
    border-radius: 10px;
    background: rgba(251, 244, 233, 0.56);
    font-size: 0.88rem;
  }

  .site-nav .nav-cta {
    min-height: 52px;
    margin-top: 6px;
    border: 1px solid var(--ink);
    color: var(--paper);
    background: var(--ink);
    font-family: var(--sans);
    font-size: 0.9rem;
  }

  .work-page .portfolio-section.container {
    width: 100%;
  }

  .portfolio-filters {
    top: 96px;
    max-width: calc(100% - 20px);
    gap: 2px;
    padding: 5px;
  }

  .portfolio-filters button {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .work-page .portfolio-grid {
    width: 100%;
  }

  .blog-heading {
    align-items: center;
  }

  .blog-heading > a {
    flex: 0 0 auto;
  }
}

@media (min-width: 700px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 920px) {
  .section-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-cue:hover {
    transform: translateX(-50%) translateY(2px);
  }

  .home-service-section {
    padding-top: 76px;
  }

  .portfolio-filters {
    top: 110px;
  }

  .nav-services-toggle {
    display: none;
  }
}

@media (max-width: 699px) {
  .section-cue {
    margin-top: 8px;
  }

  .home-service-heading::after {
    top: -24px;
    right: -12px;
    width: 82px;
  }

  .work-main {
    padding-top: 26px;
  }

  .portfolio-grid--dynamic .portfolio-card,
  .portfolio-grid--dynamic .portfolio-card:nth-child(3n) {
    width: 100%;
  }

  .blog-main {
    width: 100%;
  }

  .blog-heading {
    width: calc(100% - 40px);
    margin-inline: auto;
  }

  .blog-grid {
    gap: 0;
  }

  .blog-card {
    margin-inline: 0;
  }

  .blog-card__link {
    min-height: 188px;
    grid-template-columns: 42% minmax(0, 58%);
  }

  .blog-card figure {
    min-height: 188px;
    aspect-ratio: auto;
  }

  .blog-card__body {
    padding: 15px 14px;
  }

  .blog-card__body > p:first-child {
    display: grid;
    justify-content: start;
    gap: 3px;
    margin-bottom: 10px;
    font-size: 0.59rem;
  }

  .blog-card h2 {
    margin-bottom: 7px;
    font-size: 1.28rem;
    line-height: 0.96;
  }

  .blog-card__body > p:last-of-type {
    display: none;
  }

  .blog-card__action {
    margin-top: auto;
  }

  .article-main {
    width: 100%;
  }

  .article-header,
  .article-copy,
  .article-footer {
    width: calc(100% - 40px);
    margin-inline: auto;
  }

  .article-hero,
  .article-gallery figure {
    border-radius: 0;
  }

  .article-hero img {
    height: 118vw;
  }

  .article-gallery {
    gap: 0;
  }

  .article-gallery figure {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-cue b,
  .about-slide.is-active img,
  .site-footer::after {
    animation: none;
  }
}

/* Page-level artwork
 *
 * Each route composes the same hand-painted asset library differently. The
 * layer belongs to the page rather than to a card or section, so artwork can
 * continue naturally behind the editorial layout.
 */

.page-artwork {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-shell > :not(.page-artwork) {
  position: relative;
  z-index: 1;
}

.site-shell > .site-header {
  z-index: 100;
}

.page-artwork__item {
  position: absolute;
  top: var(--art-y);
  left: var(--art-x);
  width: min(calc(var(--art-width) + 54px), 58vw);
  aspect-ratio: var(--art-ratio, 1);
  background: var(--art-image) center / contain no-repeat;
  filter: saturate(0.96) hue-rotate(var(--art-hue, 0deg));
  mix-blend-mode: multiply;
  opacity: min(0.82, calc(var(--art-opacity) + 0.1));
  scale: 1;
  translate: 0 0;
  transform:
    translate3d(
      var(--art-item-parallax-x, 0),
      var(--art-item-parallax-y, 0),
      0
    )
    scaleX(var(--art-flip))
    rotate(var(--art-rotation));
  transform-origin: center;
  will-change: transform, translate, scale;
}

.page-artwork__item--breeze {
  width: min(calc(var(--art-width) + 78px), 61vw);
  transform-origin: 15% 85%;
  animation: page-artwork-breeze var(--art-motion-duration) ease-in-out infinite alternate;
  animation-delay: var(--art-motion-delay);
}

.page-artwork__item--paint {
  width: min(calc(var(--art-width) + 118px), 66vw);
  animation: page-artwork-paint-drift var(--art-motion-duration) ease-in-out infinite alternate;
  animation-delay: var(--art-motion-delay);
}

.page-artwork__item--heart {
  cursor: pointer;
  animation: page-artwork-heart-float var(--art-motion-duration) ease-in-out infinite alternate;
  animation-delay: var(--art-motion-delay);
  transition:
    filter 250ms ease,
    opacity 250ms ease,
    scale 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-artwork__item--heart:hover,
.page-artwork__item--heart.is-hovered {
  filter: saturate(1.04);
  opacity: min(1, calc(var(--art-opacity) + 0.16));
  scale: 1.06;
}

.page-artwork__item--heart.is-touched {
  animation: page-artwork-heart-tap 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes page-artwork-breeze {
  from {
    transform:
      translate3d(
        var(--art-item-parallax-x, 0),
        var(--art-item-parallax-y, 0),
        0
      )
      scaleX(var(--art-flip))
      rotate(var(--art-rotation));
  }

  to {
    transform:
      translate3d(
        calc(var(--art-item-parallax-x, 0px) + 8px),
        calc(var(--art-item-parallax-y, 0px) - 7px),
        0
      )
      scaleX(var(--art-flip))
      rotate(calc(var(--art-rotation) + 3.2deg));
  }
}

@keyframes page-artwork-heart-tap {
  0%,
  100% {
    scale: 1;
  }

  45% {
    scale: 1.13;
  }
}

@keyframes page-artwork-paint-drift {
  from {
    scale: 0.96;
    translate: -8px 5px;
  }

  to {
    scale: 1.075;
    translate: 12px -10px;
  }
}

@keyframes page-artwork-heart-float {
  from {
    scale: 0.95;
    translate: 0 6px;
  }

  to {
    scale: 1.075;
    translate: 7px -12px;
  }
}

/*
 * These decorations predate the page-artwork layer and were attached to
 * individual sections. Keeping them hidden avoids duplicate leaves and makes
 * the background read as one continuous printed composition.
 */
.site-shell::before,
.site-shell::after,
.home-intro__gallery::before,
.home-intro__gallery::after,
.home-service-section::before,
.home-service-section::after,
.home-service-heading::after,
.service-tablets::before,
.about-wireframe::before,
.about-wireframe__portrait::before,
.about-wireframe__copy::after,
.service-hero::before,
.service-hero figure::before,
.contact-page::before,
.site-footer::before,
.site-footer::after {
  display: none;
}

.work-page {
  --work-surround: #15110f;
  --work-scroll-dim: 0;
  --work-spotlight-x: 50vw;
  --work-spotlight-y: 48vh;
  color: #f8efe5;
  background: var(--paper);
}

.work-page .site-shell {
  background:
    linear-gradient(
      180deg,
      var(--paper) 0,
      #f7e9df 240px,
      #d5b9af 520px,
      #8a6a63 800px,
      #483330 1080px,
      #211716 1320px,
      #15110f 1520px,
      #15110f calc(100% - 760px),
      #2d201e calc(100% - 570px),
      #795d57 calc(100% - 360px),
      #d7bcb2 calc(100% - 170px),
      var(--paper) 100%
    );
}

.work-page .site-header,
.work-page .portfolio-filters {
  color: var(--ink);
}

.work-page .portfolio-section::after {
  display: none;
}

.work-page .page-artwork__item {
  width: min(var(--art-width), 12vw);
  filter: saturate(2.4) contrast(1.16) brightness(0.96);
  mix-blend-mode: normal;
  opacity: min(1, calc(var(--art-opacity) + 0.2));
}

.work-page .site-footer {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.work-page .site-footer .wordmark__quinn,
.work-page .site-footer a {
  color: var(--ink);
}

.work-page .site-footer .footer-copy {
  color: var(--muted);
}

.work-page .portfolio-section::before {
  position: fixed;
  z-index: -1;
  inset: 94px 0 0;
  display: block;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.72);
  content: "";
  opacity: calc(var(--work-scroll-dim) * 0.56);
  pointer-events: none;
  transform: none;
  transition: opacity 500ms linear;
}

/* The active route is redrawn as one hand-painted circle on each navigation. */

.site-nav {
  --nav-brush-height: 0px;
  --nav-brush-width: 0px;
  --nav-brush-x: 0px;
  --nav-brush-y: 0px;
}

.site-nav > a,
.site-nav > .nav-services {
  position: relative;
  z-index: 1;
}

.nav-brush {
  position: absolute;
  z-index: 0;
  top: var(--nav-brush-y);
  left: var(--nav-brush-x);
  display: block;
  width: var(--nav-brush-width);
  height: var(--nav-brush-height);
  pointer-events: none;
}

.nav-brush svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: center;
}

.nav-brush path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-brush__body {
  stroke: rgba(232, 111, 98, 0.8);
  stroke-width: 4.5;
}

.nav-brush__texture {
  stroke: rgba(244, 181, 166, 0.72);
  stroke-dasharray: 7 3 15 4;
  stroke-width: 1.65;
}

.nav-brush.is-drawing .nav-brush__body,
.nav-brush.is-drawing .nav-brush__texture {
  animation: navigation-brush-draw 680ms cubic-bezier(0.32, 0, 0.2, 1) both;
}

.nav-brush.is-drawing .nav-brush__texture {
  animation-delay: 90ms;
}

.nav-brush.is-drawing svg {
  animation: navigation-brush-settle 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes navigation-brush-draw {
  from {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  to {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
  }
}

@keyframes navigation-brush-settle {
  0% {
    transform: rotate(-1.5deg) scaleX(0.96);
  }

  62% {
    transform: rotate(0.8deg) scaleX(1.025);
  }

  100% {
    transform: rotate(0) scaleX(1);
  }
}

@media (min-width: 920px) {
  .site-nav {
    position: relative;
  }

  .site-nav a[aria-current="page"],
  .nav-services--active > a {
    box-shadow: none;
  }

  .section-cue {
    bottom: 5px;
    gap: 14px;
    padding: 11px 14px;
    font-size: 0.79rem;
  }

  .section-cue b {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

@media (max-width: 919px) {
  .nav-brush {
    display: none;
  }

  .section-cue {
    gap: 13px;
    margin-top: 18px;
  }

  .section-cue b {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

@media (max-width: 699px) {
  .page-artwork__item {
    width: min(var(--art-width), 72vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-artwork__item--breeze,
  .page-artwork__item--paint,
  .page-artwork__item--heart,
  .page-artwork__item--heart.is-touched {
    animation: none;
  }

  .page-artwork__item--heart {
    transition: none;
  }

  .page-artwork {
    transform: none;
    will-change: auto;
  }

  .nav-brush {
    transition: none;
  }
}

/* Stronger editorial contrast and stable sticky layering */

body {
  overflow-x: clip;
}

html {
  overflow-x: clip;
}

.site-shell {
  width: 100%;
  max-width: 100%;
  padding-top: 82px;
  overflow: visible;
}

.site-shell > .site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;
  isolation: isolate;
  transform: translateX(-50%) translateZ(0);
}

.site-header::before {
  box-shadow: 0 1px 0 rgba(41, 35, 31, 0.04);
}

.wordmark::after {
  right: -14px;
  bottom: -14px;
  left: -14px;
  height: 20px;
  background-size: 100% 100%;
  filter: saturate(1.22) contrast(1.06);
  opacity: 1;
  transform: rotate(-1.2deg) scaleY(0.96);
}

.page-artwork__growth {
  position: absolute;
  top: var(--art-growth-y);
  left: var(--art-growth-x);
  width: min(var(--art-growth-width), 46vw);
  aspect-ratio: 1;
  filter: contrast(1.1);
  mix-blend-mode: multiply;
  opacity: var(--art-growth-opacity);
  pointer-events: none;
  transform:
    translate3d(0, var(--art-growth-parallax-y, 0), 0)
    rotate(var(--art-growth-rotation));
  transform-origin: center bottom;
  will-change: transform;
}

.page-artwork__growth img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 1.15s ease-in-out;
}

.page-artwork__growth-intro {
  opacity: 1;
  transform-origin: center bottom;
}

.page-artwork__growth.is-grown .page-artwork__growth-intro {
  animation: plant-resting 11s ease-in-out infinite alternate;
}

.about-wireframe__portrait {
  position: relative;
  aspect-ratio: 1;
  isolation: isolate;
}

.about-wireframe__portrait::before,
.about-wireframe__portrait::after {
  display: none;
}

.about-circle-intro {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.about-circle-intro::before {
  position: absolute;
  z-index: 0;
  inset: 9%;
  border-radius: 50%;
  background: rgba(251, 244, 233, 0.94);
  box-shadow: 0 0 32px 18px rgba(251, 244, 233, 0.8);
  content: "";
  opacity: 1;
  transition: opacity 900ms ease;
}

.about-circle-intro.is-revealing::before,
.about-circle-intro.is-complete::before {
  opacity: 0;
}

.about-circle-intro img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 500ms ease;
}

.about-circle-intro img:not(.about-circle-intro__draw) {
  opacity: 0;
}

.about-circle-intro.is-complete .about-circle-intro__draw {
  opacity: 0;
}

.about-circle-intro.is-complete img:not(.about-circle-intro__draw) {
  opacity: 1;
}

.about-slides {
  position: absolute;
  z-index: 4;
  inset: 12.25%;
  width: auto;
  border-radius: 50%;
  opacity: 0;
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    #000 0 90%,
    rgba(0, 0, 0, 0.94) 94%,
    rgba(0, 0, 0, 0.58) 97%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle at 50% 50%,
    #000 0 90%,
    rgba(0, 0, 0, 0.94) 94%,
    rgba(0, 0, 0, 0.58) 97%,
    transparent 100%
  );
  transition: opacity 3.35s cubic-bezier(0.22, 0.7, 0.25, 1);
}

.about-circle-intro.is-revealing ~ .about-slides {
  opacity: 1;
}

.about-circle-intro.is-complete ~ .about-slides {
  opacity: 1;
  transition-duration: 300ms;
}

.about-wireframe__portrait .about-slide-controls {
  z-index: 8;
  bottom: 8.5%;
  border-color: rgba(41, 35, 31, 0.16);
  background: rgba(255, 250, 243, 0.94);
  opacity: 0;
  transition: opacity 500ms ease 600ms, transform 220ms ease;
}

.about-circle-intro.is-complete ~ .about-slide-controls {
  opacity: 1;
}

.signature {
  gap: 13px;
  font-size: clamp(2.25rem, 4.8vw, 3.25rem);
  line-height: 1;
}

.signature img {
  width: clamp(48px, 7vw, 68px);
  height: clamp(52px, 8vw, 76px);
}

.home-intro__copy h1 {
  font-size: clamp(4.45rem, 19vw, 8.45rem);
}

@keyframes plant-resting {
  from {
    transform: rotate(-0.8deg) scale(0.995);
  }

  to {
    transform: rotate(1.1deg) scale(1.012);
  }
}

/* Homepage service cards use an editorial palette instead of page-colour boxes. */

.service-tablet {
  border: 1px solid rgba(41, 35, 31, 0.11);
  border-radius: 0;
  background: #fffaf3;
  box-shadow: 0 18px 46px rgba(49, 36, 29, 0.08);
}

.service-tablet figure,
.service-tablet figure img {
  border-radius: 0;
}

.service-tablet--tattoo .service-tablet__body {
  background: #f4cec5;
}

.service-tablet--mural .service-tablet__body {
  background: #e7d0aa;
}

.service-tablet--board .service-tablet__body {
  background: #cedbd2;
}

.service-tablet--lettering .service-tablet__body {
  background: #d8d7e8;
}

.service-tablet__body {
  border-top: 1px solid rgba(41, 35, 31, 0.1);
}

.blog-card {
  border-color: rgba(41, 35, 31, 0.12);
  background: #fffaf3;
  box-shadow: 0 18px 46px rgba(49, 36, 29, 0.06);
}

.blog-card:nth-child(2) .blog-card__body {
  background: #e8d9c2;
}

.blog-card:nth-child(3) .blog-card__body {
  background: #d8e1dc;
}

.contact-form {
  border-color: rgba(41, 35, 31, 0.12);
  background: #fffaf3;
}

/* Compact service pages: one image, useful copy and a small related gallery. */

.service-hero {
  min-height: auto;
  padding-block: clamp(48px, 7vw, 82px) clamp(42px, 6vw, 70px);
}

.service-hero h1 {
  max-width: 100%;
  color: rgba(41, 35, 31, 0.8);
  font-size: clamp(2.35rem, 4.1vw, 3.45rem);
  line-height: 0.92;
  white-space: nowrap;
}

.service-hero h1 em {
  display: inline-block;
  margin-left: 0.025em;
  color: var(--coral);
  font-size: 1.28em;
  vertical-align: -0.05em;
}

.service-hero .service-showcase {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.service-hero .service-showcase::before {
  z-index: -1;
  right: -13%;
  bottom: -9%;
  display: block;
  width: 63%;
  height: 45%;
  background: var(--coral-brush) center / 100% 100% no-repeat;
  opacity: 0.58;
  transform: rotate(-8deg);
}

.service-showcase__frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #dfc3a9;
  box-shadow: 0 28px 70px rgba(48, 35, 28, 0.18);
}

.service-showcase__frame::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 250, 243, 0.38);
  box-shadow: inset 0 0 0 8px rgba(255, 250, 243, 0.08);
  content: "";
  pointer-events: none;
}

.service-hero .service-showcase img {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  transform: scale(1.01);
  will-change: opacity, transform;
}

.service-showcase img.is-entering {
  animation: service-showcase-enter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-showcase img.is-entering-reverse {
  animation: service-showcase-enter-reverse 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-showcase figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 64px 124px 22px 24px;
  background: linear-gradient(transparent, rgba(30, 24, 21, 0.78));
  color: #fffaf3;
}

.service-showcase figcaption strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
}

.service-showcase figcaption span {
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-showcase figcaption b {
  color: #f4b5a6;
  font-size: 0.9rem;
}

.service-showcase__controls {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: -20px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(41, 35, 31, 0.12);
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 12px 30px rgba(48, 35, 28, 0.16);
  backdrop-filter: blur(12px);
}

.service-showcase__controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 180ms ease, color 180ms ease;
}

.service-showcase__controls button:hover,
.service-showcase__controls button:focus-visible {
  background: var(--coral);
  color: #fffaf3;
}

@keyframes service-showcase-enter {
  from {
    opacity: 0.28;
    transform: translateX(3%) scale(1.045);
  }

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

@keyframes service-showcase-enter-reverse {
  from {
    opacity: 0.28;
    transform: translateX(-3%) scale(1.045);
  }

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

@media (min-width: 920px) and (hover: hover) and (pointer: fine) {
  .has-art-cursor,
  .has-art-cursor * {
    cursor: none !important;
  }

  .art-cursor {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 44px;
    height: 52px;
    opacity: 0;
    pointer-events: none;
    transform:
      translate3d(
        calc(var(--cursor-x, -50px) - 2px),
        calc(var(--cursor-y, -50px) - 2px),
        0
      );
    transform-origin: 2px 2px;
    transition: opacity 140ms ease;
    will-change: transform;
  }

  .art-cursor.is-visible {
    opacity: 1;
  }

  .art-cursor svg {
    display: block;
    overflow: visible;
    filter: drop-shadow(0 3px 3px rgba(41, 35, 31, 0.2));
  }

  .art-cursor__handle {
    fill: url("#quinn-brush-wood");
    stroke: #29231f;
    stroke-width: 1;
  }

  .art-cursor__ferrule {
    fill: url("#quinn-brush-metal");
    stroke: #29231f;
    stroke-width: 0.9;
  }

  .art-cursor__bristles {
    fill: url("#quinn-brush-paint");
    stroke: #29231f;
    stroke-width: 0.9;
  }

  .art-cursor__bristle-line,
  .art-cursor__ferrule-detail {
    fill: none;
    stroke-linecap: round;
  }

  .art-cursor__bristle-line {
    stroke: rgba(120, 43, 38, 0.58);
    stroke-width: 0.7;
  }

  .art-cursor__ferrule-detail {
    stroke: rgba(68, 60, 54, 0.48);
    stroke-width: 0.65;
  }

  .art-cursor__shine {
    fill: none;
    stroke: rgba(255, 250, 243, 0.58);
    stroke-linecap: round;
    stroke-width: 1.25;
  }

  .art-cursor__handle-hole {
    fill: #33251d;
    stroke: rgba(255, 250, 243, 0.42);
    stroke-width: 0.7;
  }

  .art-cursor-mark {
    position: fixed;
    z-index: 2999;
    width: 20px;
    height: 20px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: art-cursor-mark 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .art-cursor-mark::before,
  .art-cursor-mark i {
    position: absolute;
    border-radius: 50% 42% 55% 46%;
    background: var(--coral);
    content: "";
  }

  .art-cursor-mark::before {
    inset: 6px 4px 5px;
    transform: rotate(-17deg);
  }

  .art-cursor-mark i {
    width: 4px;
    height: 4px;
  }

  .art-cursor-mark i:nth-child(1) {
    top: 1px;
    left: 3px;
  }

  .art-cursor-mark i:nth-child(2) {
    top: 3px;
    right: 0;
  }

  .art-cursor-mark i:nth-child(3) {
    right: 3px;
    bottom: 0;
  }
}

@keyframes art-cursor-mark {
  from {
    opacity: 0.85;
    scale: 0.55;
  }

  to {
    opacity: 0;
    scale: 1.75;
  }
}

.service-story {
  padding-block: clamp(46px, 7vw, 78px);
  border-block: 1px solid var(--line);
}

.service-story p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.42;
}

.service-portfolio {
  padding-block: clamp(62px, 8vw, 96px) 50px;
}

.service-portfolio__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.service-portfolio__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.service-portfolio__heading a {
  flex: 0 0 auto;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--coral);
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.service-portfolio .portfolio-grid--dynamic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-portfolio .portfolio-grid--dynamic .portfolio-card,
.service-portfolio .portfolio-grid--dynamic .portfolio-card:nth-child(3n),
.service-portfolio .portfolio-grid--dynamic .portfolio-card:nth-child(7n + 1) {
  width: auto;
  min-height: 280px;
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 5;
}

.service-portfolio .portfolio-grid--dynamic .portfolio-card img,
.service-portfolio .portfolio-grid--dynamic .portfolio-card:nth-child(7n + 1) img {
  min-height: 0;
}

@keyframes page-artwork-paint-drift {
  from {
    rotate: -2deg;
    scale: 0.94;
    translate: -12px 7px;
  }

  to {
    rotate: 2deg;
    scale: 1.09;
    translate: 16px -13px;
  }
}

@keyframes page-artwork-heart-float {
  from {
    rotate: -3deg;
    scale: 0.94;
    translate: -2px 8px;
  }

  to {
    rotate: 3deg;
    scale: 1.085;
    translate: 8px -14px;
  }
}

@media (min-width: 920px) {
  .site-shell {
    padding-top: 94px;
  }

  .service-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: clamp(70px, 9vw, 130px);
  }

  .service-portfolio .portfolio-grid--dynamic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-portfolio .portfolio-grid--dynamic .portfolio-card,
  .service-portfolio .portfolio-grid--dynamic .portfolio-card:nth-child(3n),
  .service-portfolio .portfolio-grid--dynamic .portfolio-card:nth-child(7n + 1) {
    min-height: 330px;
  }
}

@media (max-width: 699px) {
  .page-artwork__item {
    width: min(calc(var(--art-width) + 54px), 82vw);
  }

  .page-artwork__item--breeze {
    width: min(calc(var(--art-width) + 78px), 88vw);
  }

  .page-artwork__item--paint {
    width: min(calc(var(--art-width) + 118px), 94vw);
  }

  .page-artwork__growth {
    width: min(var(--art-growth-width), 82vw);
    opacity: calc(var(--art-growth-opacity) * 0.82);
  }

  .service-hero {
    gap: 34px;
  }

  .service-hero h1 {
    font-size: clamp(1.95rem, 9.2vw, 2.65rem);
  }

  .service-hero h1 em {
    font-size: 1.25em;
  }

  .service-hero .service-showcase {
    width: calc(100% + 40px);
    margin: 12px -20px 22px;
    aspect-ratio: 5 / 6;
  }

  .service-showcase__controls {
    right: 20px;
    bottom: 16px;
  }

  .service-showcase figcaption {
    padding-right: 122px;
  }

  .service-story {
    width: calc(100% - 40px);
  }

  .service-portfolio {
    width: 100%;
  }

  .service-portfolio__heading {
    width: calc(100% - 40px);
    align-items: start;
    margin-inline: auto;
  }

  .service-portfolio__heading a {
    max-width: 132px;
    text-align: right;
  }

  .service-portfolio .portfolio-grid--dynamic {
    gap: 0;
  }

  .service-portfolio .portfolio-grid--dynamic .portfolio-card,
  .service-portfolio .portfolio-grid--dynamic .portfolio-card:nth-child(3n),
  .service-portfolio .portfolio-grid--dynamic .portfolio-card:nth-child(7n + 1) {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .page-artwork__item--right,
  .page-artwork__growth--right {
    display: none;
  }

  .page-artwork__item {
    width: min(var(--art-width), 62vw);
    opacity: min(0.68, var(--art-opacity));
  }

  .page-artwork__item--breeze {
    width: min(calc(var(--art-width) + 24px), 70vw);
  }

  .page-artwork__item--paint {
    width: min(calc(var(--art-width) + 42px), 76vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-wireframe__portrait::after {
    animation: none;
  }

  .page-artwork__item {
    will-change: auto;
  }

  .page-artwork__growth {
    transform: rotate(var(--art-growth-rotation));
    will-change: auto;
  }

  .page-artwork__growth img {
    transition: none;
  }

  .service-showcase img.is-entering,
  .service-showcase img.is-entering-reverse {
    animation: none;
  }
}
